結果

問題 No.781 円周上の格子点の数え上げ
ユーザー stngstng
提出日時 2022-06-12 17:50:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 217,392 KB
最終ジャッジ日時 2024-09-23 04:08:53
合計ジャッジ時間 3,276 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,744 KB
testcase_02 AC 37 ms
52,828 KB
testcase_03 WA -
testcase_04 AC 36 ms
53,332 KB
testcase_05 WA -
testcase_06 AC 43 ms
60,508 KB
testcase_07 AC 44 ms
61,320 KB
testcase_08 AC 225 ms
139,180 KB
testcase_09 AC 228 ms
138,324 KB
testcase_10 AC 44 ms
59,140 KB
testcase_11 AC 45 ms
61,132 KB
testcase_12 AC 249 ms
180,872 KB
testcase_13 AC 264 ms
217,392 KB
testcase_14 AC 49 ms
65,532 KB
testcase_15 AC 43 ms
58,800 KB
testcase_16 AC 43 ms
59,676 KB
testcase_17 AC 165 ms
154,916 KB
testcase_18 AC 137 ms
107,564 KB
testcase_19 AC 141 ms
109,020 KB
testcase_20 AC 144 ms
108,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x,y = map(int,input().split())

ans = 0
dp = [0]*(y+1)

Y = int(y**0.5+50)
for i in range(1,Y+1):
    tmp = i**2
    for j in range(1,Y+1):
        idx = tmp+j**2
        if idx > y:
            break
        dp[idx] += 1
#print(dp)
print(max(dp[x:y+1])*4)
0