結果

問題 No.781 円周上の格子点の数え上げ
ユーザー YamadaYamada
提出日時 2019-02-25 22:35:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 173 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 138,656 KB
最終ジャッジ日時 2024-06-09 12:30:41
合計ジャッジ時間 4,135 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,696 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 36 ms
10,880 KB
testcase_07 AC 51 ms
11,520 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 31 ms
11,136 KB
testcase_11 AC 37 ms
11,520 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y =map(int,input().split())
lis =[0]*(Y+1)
for i in range(1,int(Y**0.5)+1):
    for j in range(int((Y-i**2)**0.5)+1):
        lis[i**2+j**2] += 1
print(max(lis[X:Y+1])*4)
0