結果

問題 No.800 四平方定理
ユーザー lumeffluxlumefflux
提出日時 2019-03-17 23:38:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 349 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 163,940 KB
最終ジャッジ日時 2024-07-08 06:03:14
合計ジャッジ時間 4,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
156,512 KB
testcase_01 AC 89 ms
156,792 KB
testcase_02 AC 88 ms
156,712 KB
testcase_03 AC 88 ms
157,764 KB
testcase_04 AC 89 ms
157,068 KB
testcase_05 AC 92 ms
156,148 KB
testcase_06 AC 90 ms
156,772 KB
testcase_07 AC 90 ms
156,564 KB
testcase_08 AC 90 ms
157,228 KB
testcase_09 AC 89 ms
156,428 KB
testcase_10 AC 132 ms
158,224 KB
testcase_11 AC 139 ms
158,656 KB
testcase_12 AC 139 ms
159,940 KB
testcase_13 AC 135 ms
159,384 KB
testcase_14 AC 141 ms
158,392 KB
testcase_15 AC 139 ms
159,240 KB
testcase_16 AC 140 ms
159,340 KB
testcase_17 AC 140 ms
159,528 KB
testcase_18 AC 140 ms
158,248 KB
testcase_19 AC 139 ms
158,416 KB
testcase_20 AC 80 ms
152,472 KB
testcase_21 AC 81 ms
152,388 KB
testcase_22 AC 147 ms
158,648 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 83 ms
152,604 KB
testcase_27 AC 86 ms
151,312 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
r1 = [0] * 6000000
r2 = [0] * 6000000
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(6000000):
    ans += r1[i] * r2[i]
print(ans)
0