結果

問題 No.781 円周上の格子点の数え上げ
ユーザー stngstng
提出日時 2022-06-12 17:53:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 216,516 KB
最終ジャッジ日時 2024-09-23 04:10:43
合計ジャッジ時間 3,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,904 KB
testcase_01 AC 37 ms
53,140 KB
testcase_02 AC 37 ms
53,616 KB
testcase_03 AC 37 ms
53,424 KB
testcase_04 AC 38 ms
53,152 KB
testcase_05 AC 37 ms
52,284 KB
testcase_06 AC 44 ms
59,688 KB
testcase_07 AC 44 ms
60,888 KB
testcase_08 AC 239 ms
138,304 KB
testcase_09 AC 223 ms
138,016 KB
testcase_10 AC 43 ms
59,776 KB
testcase_11 AC 45 ms
61,348 KB
testcase_12 AC 261 ms
180,964 KB
testcase_13 AC 269 ms
216,516 KB
testcase_14 AC 50 ms
65,892 KB
testcase_15 AC 42 ms
59,012 KB
testcase_16 AC 42 ms
59,564 KB
testcase_17 AC 168 ms
154,476 KB
testcase_18 AC 139 ms
106,124 KB
testcase_19 AC 141 ms
107,716 KB
testcase_20 AC 146 ms
108,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

Y = int(y**0.5+50)
for i in range(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