結果

問題 No.800 四平方定理
ユーザー daku9640daku9640
提出日時 2019-03-17 23:39:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 81,628 KB
実行使用メモリ 219,636 KB
最終ジャッジ日時 2024-07-08 06:08:43
合計ジャッジ時間 8,242 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
217,844 KB
testcase_01 AC 145 ms
218,552 KB
testcase_02 AC 146 ms
218,480 KB
testcase_03 AC 145 ms
218,796 KB
testcase_04 AC 141 ms
218,444 KB
testcase_05 AC 144 ms
218,800 KB
testcase_06 AC 144 ms
218,412 KB
testcase_07 AC 142 ms
218,580 KB
testcase_08 AC 145 ms
217,440 KB
testcase_09 AC 150 ms
218,452 KB
testcase_10 AC 229 ms
219,224 KB
testcase_11 AC 231 ms
219,060 KB
testcase_12 AC 231 ms
219,172 KB
testcase_13 AC 221 ms
219,116 KB
testcase_14 AC 231 ms
219,296 KB
testcase_15 AC 232 ms
219,296 KB
testcase_16 AC 229 ms
219,200 KB
testcase_17 AC 233 ms
219,636 KB
testcase_18 AC 241 ms
219,504 KB
testcase_19 AC 242 ms
219,184 KB
testcase_20 AC 128 ms
208,872 KB
testcase_21 AC 128 ms
208,276 KB
testcase_22 AC 243 ms
219,192 KB
testcase_23 AC 325 ms
219,096 KB
testcase_24 AC 305 ms
219,520 KB
testcase_25 AC 329 ms
219,084 KB
testcase_26 AC 128 ms
208,572 KB
testcase_27 AC 128 ms
208,112 KB
testcase_28 AC 306 ms
219,072 KB
testcase_29 AC 315 ms
219,492 KB
testcase_30 AC 307 ms
219,192 KB
testcase_31 AC 294 ms
218,820 KB
testcase_32 AC 311 ms
219,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
x2y2 = [0] * int(1e7 + 10)
for i in range(1, N + 1):
    for j in range(1, N + 1):
        x2y2[i * i + j * j] += 1
w2z2D = [0] * int(1e7 + 10)
for i in range(1, N + 1):
    for j in range(1, N + 1):
        d = i * i - j * j + D
        if d >= 2:
            w2z2D[d] += 1
ans = 0
for i in range(2, N * N * 2 + 1):
    if x2y2[i] and w2z2D[i]:
        ans += x2y2[i] * w2z2D[i]
print(ans)
0