結果

問題 No.781 円周上の格子点の数え上げ
ユーザー YamadaYamada
提出日時 2019-02-25 22:38:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 191 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 89,128 KB
最終ジャッジ日時 2024-06-09 12:32:24
合計ジャッジ時間 2,785 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 25 ms
11,136 KB
testcase_07 AC 26 ms
11,392 KB
testcase_08 AC 105 ms
88,992 KB
testcase_09 AC 111 ms
88,756 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 26 ms
11,008 KB
testcase_17 RE -
testcase_18 AC 74 ms
56,964 KB
testcase_19 AC 74 ms
58,444 KB
testcase_20 AC 71 ms
58,372 KB
権限があれば一括ダウンロードができます

ソースコード

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((X-i**2)**0.5),int((Y-i**2)**0.5)+1):
        lis[i**2+j**2] += 1
print(max(lis[X:Y+1])*4)
0