結果

問題 No.800 四平方定理
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-10-17 16:33:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 383 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 204,288 KB
最終ジャッジ日時 2024-07-21 02:52:27
合計ジャッジ時間 7,512 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
78,464 KB
testcase_01 AC 74 ms
80,128 KB
testcase_02 AC 72 ms
79,616 KB
testcase_03 AC 72 ms
80,000 KB
testcase_04 AC 72 ms
79,744 KB
testcase_05 AC 72 ms
79,360 KB
testcase_06 AC 74 ms
80,768 KB
testcase_07 AC 72 ms
79,872 KB
testcase_08 AC 72 ms
80,000 KB
testcase_09 AC 72 ms
80,000 KB
testcase_10 AC 219 ms
141,184 KB
testcase_11 AC 220 ms
148,608 KB
testcase_12 AC 222 ms
147,072 KB
testcase_13 AC 200 ms
143,360 KB
testcase_14 AC 213 ms
148,224 KB
testcase_15 AC 226 ms
148,136 KB
testcase_16 AC 221 ms
149,248 KB
testcase_17 AC 217 ms
149,120 KB
testcase_18 AC 249 ms
149,248 KB
testcase_19 AC 242 ms
149,760 KB
testcase_20 AC 53 ms
67,456 KB
testcase_21 AC 53 ms
67,456 KB
testcase_22 AC 234 ms
149,504 KB
testcase_23 AC 371 ms
204,288 KB
testcase_24 AC 344 ms
203,904 KB
testcase_25 AC 383 ms
203,648 KB
testcase_26 AC 53 ms
67,200 KB
testcase_27 AC 53 ms
67,456 KB
testcase_28 AC 348 ms
202,880 KB
testcase_29 AC 367 ms
203,904 KB
testcase_30 AC 340 ms
203,392 KB
testcase_31 AC 327 ms
194,432 KB
testcase_32 AC 348 ms
204,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
c1, c2 = [0] * (2 * n ** 2 + 10 ** 6), [0] * (2 * n ** 2 + 10 ** 6)
for i in range(1, n + 1):
    for j in range(1, n + 1):
        c1[i ** 2 + j ** 2 - 1] += 1
for i in range(1, n + 1):
    for j in range(1, n + 1):
        if i ** 2 - j ** 2 + d - 1 >= 0:
            c2[i ** 2 - j ** 2 + d - 1] += 1
ans = 0
for i in range(2 * n ** 2 + 1):
    ans += c1[i] * c2[i]
print(ans)
0