結果

問題 No.781 円周上の格子点の数え上げ
ユーザー chun1182chun1182
提出日時 2019-01-11 22:28:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 259 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-11-30 13:19:31
合計ジャッジ時間 15,498 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 625 ms
31,452 KB
testcase_01 AC 635 ms
31,580 KB
testcase_02 AC 695 ms
31,584 KB
testcase_03 AC 674 ms
31,452 KB
testcase_04 AC 626 ms
31,536 KB
testcase_05 AC 712 ms
31,452 KB
testcase_06 AC 666 ms
31,360 KB
testcase_07 AC 650 ms
31,332 KB
testcase_08 WA -
testcase_09 AC 614 ms
31,456 KB
testcase_10 AC 709 ms
31,456 KB
testcase_11 AC 626 ms
31,496 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 640 ms
31,416 KB
testcase_15 AC 607 ms
31,424 KB
testcase_16 AC 608 ms
31,584 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

kai=[i**2 for i in range(1001)]
d=dict()
for i in range(1000):
    for j in range(1,1000):
        d[kai[i]+kai[j]]=d.get(kai[i]+kai[j],0)+1
a,b=map(int, input().split())
dl=[i for i in d if a<=i<=b]
ans=0
for i in dl:
    ans=max(ans,d.get(i,0))
print(ans*4)
0