goo blog サービス終了のお知らせ 

ねおぺぶろぐ

プライバシーポリシーはdocomo社のものに準拠します

メモ 最大公約数・最小公倍数

2023年06月25日 | Pythonチャレンジ
【Python】最大公約数と最小公倍数の求め方https://yumarublog.com/python/gcd-lcm/015 - Calculate GCD https://atcoder.jp/contests/math-and-algorithm/tasks/math_and_algorithm_oC - Snack https://atcoder.jp/contest . . . 本文を読む

メモ 距離

2023年06月24日 | Pythonチャレンジ
https://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ITP1_10_D&lang=ja【python】ユークリッド距離, マンハッタン距離, チェビシェフ距離, ミンコフスキー距離 https://kagglenote.com/misc/various-distance/ 言葉は難しいけど、やってることは難しくない . . . 本文を読む

メモ 統計

2023年06月24日 | Pythonチャレンジ
Pythonで平均、中央値、最頻値、分散、標準偏差を計算するhttps://qiita.com/JunJun0706/items/9d1befb90a823c466c32statistics— 数学的統計関数https://docs.python.org/3/library/statistics.html#from statistics import mean, median,vari . . . 本文を読む

メモ △関数

2023年06月24日 | Pythonチャレンジ
1ラジアンはだいたい🧀1弧↓#3133561さんfrom enum import Enumimport sysimport mathBIG_NUM = 2000000000MOD = 1000000007EPS = 0.000000001#辺A、Bとその間の角度(DEGREE)A,B,DEGREE = map(int,input().split())#角度をラジアンになおすrad = m . . . 本文を読む

メモ dp4 

2023年06月19日 | Pythonチャレンジ
B - ニコニコレベル  300 点 https://atcoder.jp/contests/dwacon2017-prelims/tasks/dwango2017qual_b提出 #3229454さん #☆は1組のニコニコの始まりのタイミングで保存される #◆は1組のニコニコの終わりのタイミングで保存される s=input()#入力例4:2???5???? dp=[[0]* . . . 本文を読む