結果

問題 No.781 円周上の格子点の数え上げ
ユーザー chun1182chun1182
提出日時 2019-01-11 22:24:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 62,884 KB
最終ジャッジ日時 2024-11-30 08:44:32
合計ジャッジ時間 24,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 766 ms
36,824 KB
testcase_01 AC 758 ms
62,884 KB
testcase_02 AC 765 ms
36,824 KB
testcase_03 AC 766 ms
38,108 KB
testcase_04 AC 762 ms
36,704 KB
testcase_05 AC 764 ms
31,452 KB
testcase_06 AC 760 ms
31,320 KB
testcase_07 AC 757 ms
31,448 KB
testcase_08 WA -
testcase_09 AC 766 ms
31,584 KB
testcase_10 AC 807 ms
31,324 KB
testcase_11 AC 791 ms
31,320 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 821 ms
31,328 KB
testcase_15 AC 763 ms
31,320 KB
testcase_16 AC 772 ms
31,324 KB
testcase_17 TLE -
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())
ans=0
for i in range(a,b+1):
    ans=max(ans,d.get(i,0))
print(ans*4)
0