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

ねおぺぶろぐ

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

閉区間・半開区間・開区間

2023年06月16日 | Pythonチャレンジ
B - 視程の通報 https://atcoder.jp/contests/abc001/tasks/abc001_2C - 風力観測 https://atcoder.jp/contests/abc001/tasks/abc001_3 . . . 本文を読む

メモ グラフ

2023年06月15日 | Pythonチャレンジ
一次関数 y=ax+b グラフは直線二次関数 y=ax**2+bx+c      グラフは放物線が逆さまになったもの指数関数 y=ax**2対数関数 log a b . . . 本文を読む

メモ 植木算

2023年06月15日 | Pythonチャレンジ
A - Water Station https://atcoder.jp/contests/abc305/tasks/abc305_aA - 植木算 https://atcoder.jp/contests/abc007/tasks/abc007_1 . . . 本文を読む

メモ ユークリッド距離

2023年06月15日 | Pythonチャレンジ
ユークリッド距離 ...2点間の直線距離・ルートは遅いので2乗同士を比べた方が速いけど、結局、探索方法を工夫しないと計算量が制限に収まらないC - 浮気調査 https://atcoder.jp/contests/abc010/tasks/abc010_3C - Virus https://atcoder.jp/contests/abc304/tasks/abc304_c . . . 本文を読む

メモ 累積和

2023年06月11日 | Pythonチャレンジ
B - Ordinary Number  一次元累積和https://atcoder.jp/contests/abc132/tasks/abc132_bimport bisect n,x=map(int,input().split()) l=list(map(int,input().split())) ll=[0] for i in range(0,n): ll.append(l . . . 本文を読む