結果

問題 No.800 四平方定理
ユーザー lumeffluxlumefflux
提出日時 2019-03-17 23:41:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 81,772 KB
実行使用メモリ 189,824 KB
最終ジャッジ日時 2024-07-08 06:15:26
合計ジャッジ時間 8,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
186,240 KB
testcase_01 AC 155 ms
187,468 KB
testcase_02 AC 147 ms
187,172 KB
testcase_03 AC 149 ms
187,520 KB
testcase_04 AC 151 ms
187,152 KB
testcase_05 AC 148 ms
187,264 KB
testcase_06 AC 148 ms
187,264 KB
testcase_07 AC 148 ms
187,008 KB
testcase_08 AC 152 ms
186,948 KB
testcase_09 AC 152 ms
187,364 KB
testcase_10 AC 226 ms
189,312 KB
testcase_11 AC 238 ms
189,184 KB
testcase_12 AC 238 ms
189,312 KB
testcase_13 AC 224 ms
189,092 KB
testcase_14 AC 234 ms
189,568 KB
testcase_15 AC 236 ms
189,824 KB
testcase_16 AC 234 ms
189,568 KB
testcase_17 AC 228 ms
189,260 KB
testcase_18 AC 237 ms
189,812 KB
testcase_19 AC 236 ms
189,212 KB
testcase_20 AC 137 ms
182,472 KB
testcase_21 AC 135 ms
182,316 KB
testcase_22 AC 234 ms
189,392 KB
testcase_23 AC 318 ms
189,248 KB
testcase_24 AC 311 ms
189,520 KB
testcase_25 AC 326 ms
189,700 KB
testcase_26 AC 142 ms
182,192 KB
testcase_27 AC 140 ms
182,324 KB
testcase_28 AC 302 ms
188,992 KB
testcase_29 AC 311 ms
189,568 KB
testcase_30 AC 303 ms
189,696 KB
testcase_31 AC 288 ms
188,980 KB
testcase_32 AC 309 ms
189,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
r1 = [0] * 8000001
r2 = [0] * 8000001
ans = 0
for x in range(1, N + 1):
    for y in range(1, N + 1):
        r1[x**2 + y**2] += 1
for z in range(1, N + 1):
    for w in range(1, N + 1):
        if w**2 - z**2 + D > 1:
            r2[w**2 - z**2 + D] += 1
for i in range(8000001):
    ans += r1[i] * r2[i]
print(ans)
0