結果

問題 No.781 円周上の格子点の数え上げ
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-30 10:22:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 665 ms / 2,000 ms
コード長 498 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 154,036 KB
最終ジャッジ日時 2024-11-14 18:06:50
合計ジャッジ時間 15,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 640 ms
153,168 KB
testcase_01 AC 632 ms
153,500 KB
testcase_02 AC 639 ms
153,620 KB
testcase_03 AC 640 ms
153,432 KB
testcase_04 AC 644 ms
153,512 KB
testcase_05 AC 642 ms
153,620 KB
testcase_06 AC 635 ms
153,436 KB
testcase_07 AC 650 ms
153,556 KB
testcase_08 AC 651 ms
153,272 KB
testcase_09 AC 637 ms
153,512 KB
testcase_10 AC 644 ms
153,416 KB
testcase_11 AC 638 ms
153,372 KB
testcase_12 AC 649 ms
153,372 KB
testcase_13 AC 665 ms
153,692 KB
testcase_14 AC 651 ms
153,620 KB
testcase_15 AC 662 ms
153,848 KB
testcase_16 AC 649 ms
154,036 KB
testcase_17 AC 656 ms
153,948 KB
testcase_18 AC 642 ms
153,428 KB
testcase_19 AC 640 ms
153,712 KB
testcase_20 AC 645 ms
153,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():

    F = [0]*(10**7+1)
    for x in range(3200):
        for y in range(3200):
            r = x**2+y**2
            if 0 <= r <= 10**7:
                if x == 0 and y == 0:
                    F[r] += 1
                elif x == 0 or y == 0:
                    F[r] += 2
                else:
                    F[r] += 4
    x, y = map(int, input().split())
    ans = 0
    for i in range(x, y+1):
        ans = max(F[i], ans)
    print(ans)

if __name__ == '__main__':
    main()
0