結果

問題 No.800 四平方定理
ユーザー hogeandfugahogeandfuga
提出日時 2019-03-17 22:19:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,473 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 266,000 KB
最終ジャッジ日時 2024-07-08 00:01:52
合計ジャッジ時間 19,310 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
68,992 KB
testcase_01 AC 81 ms
74,880 KB
testcase_02 AC 64 ms
71,296 KB
testcase_03 AC 59 ms
73,984 KB
testcase_04 AC 56 ms
70,912 KB
testcase_05 AC 58 ms
73,088 KB
testcase_06 AC 62 ms
77,440 KB
testcase_07 AC 58 ms
73,600 KB
testcase_08 AC 63 ms
77,312 KB
testcase_09 AC 60 ms
74,752 KB
testcase_10 AC 580 ms
240,288 KB
testcase_11 AC 611 ms
242,080 KB
testcase_12 AC 602 ms
241,648 KB
testcase_13 AC 597 ms
240,732 KB
testcase_14 AC 627 ms
241,912 KB
testcase_15 AC 614 ms
241,812 KB
testcase_16 AC 622 ms
241,768 KB
testcase_17 AC 624 ms
242,044 KB
testcase_18 AC 615 ms
241,748 KB
testcase_19 AC 584 ms
242,092 KB
testcase_20 AC 37 ms
53,504 KB
testcase_21 AC 36 ms
53,888 KB
testcase_22 AC 618 ms
242,108 KB
testcase_23 AC 1,473 ms
266,000 KB
testcase_24 AC 1,269 ms
265,772 KB
testcase_25 AC 1,288 ms
259,284 KB
testcase_26 AC 37 ms
53,120 KB
testcase_27 AC 36 ms
53,376 KB
testcase_28 AC 1,265 ms
265,796 KB
testcase_29 AC 1,265 ms
265,688 KB
testcase_30 AC 1,271 ms
265,820 KB
testcase_31 AC 1,110 ms
260,716 KB
testcase_32 AC 1,296 ms
265,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n, d = map(int, input().split())

cnt = defaultdict(int)
for x in range(1, n+1):
    for y in range(x, n+1):
        if y == x:
            cnt[x**2+y**2] += 1
        else:
            cnt[x**2+y**2] += 2

ans = 0
for w in range(1, n+1):
    tmp = w**2+d
    for z in range(1, min(tmp, n+1)):
        ans += cnt[tmp - z**2]
print(ans)
0