結果

問題 No.800 四平方定理
ユーザー dangodango
提出日時 2023-07-08 09:19:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 322,168 KB
最終ジャッジ日時 2024-07-22 05:12:26
合計ジャッジ時間 9,513 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 202 ms
320,740 KB
testcase_01 AC 202 ms
321,644 KB
testcase_02 AC 203 ms
321,244 KB
testcase_03 AC 211 ms
320,060 KB
testcase_04 AC 190 ms
320,624 KB
testcase_05 AC 193 ms
320,704 KB
testcase_06 AC 192 ms
320,376 KB
testcase_07 AC 191 ms
320,896 KB
testcase_08 AC 193 ms
319,912 KB
testcase_09 AC 191 ms
320,540 KB
testcase_10 AC 248 ms
320,544 KB
testcase_11 AC 257 ms
320,972 KB
testcase_12 AC 267 ms
321,240 KB
testcase_13 AC 254 ms
320,708 KB
testcase_14 AC 253 ms
320,660 KB
testcase_15 AC 260 ms
320,412 KB
testcase_16 AC 251 ms
320,048 KB
testcase_17 AC 255 ms
320,872 KB
testcase_18 AC 270 ms
320,528 KB
testcase_19 AC 275 ms
321,252 KB
testcase_20 AC 184 ms
315,792 KB
testcase_21 AC 184 ms
316,344 KB
testcase_22 AC 265 ms
322,168 KB
testcase_23 AC 320 ms
321,132 KB
testcase_24 AC 308 ms
322,016 KB
testcase_25 AC 326 ms
321,024 KB
testcase_26 AC 182 ms
315,952 KB
testcase_27 AC 184 ms
317,248 KB
testcase_28 AC 312 ms
321,748 KB
testcase_29 AC 321 ms
321,836 KB
testcase_30 AC 308 ms
320,408 KB
testcase_31 AC 304 ms
321,924 KB
testcase_32 AC 316 ms
321,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c = [0] * (1 << 25)
s = 0
n, d = map(int, input().split())
for i in range(1, n + 1):
    for j in range(1, n + 1):
        t = i * i - j * j + d
        if t > 0:
            c[t] += 1
for k in range(1, n + 1):
    for j in range(1, n + 1):
        s += c[k * k + j * j]
print(s)
0