結果

問題 No.800 四平方定理
ユーザー hogeandfugahogeandfuga
提出日時 2019-03-17 22:06:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 386 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 352,436 KB
最終ジャッジ日時 2024-07-07 23:12:50
合計ジャッジ時間 22,386 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
72,988 KB
testcase_01 AC 78 ms
80,444 KB
testcase_02 AC 67 ms
75,320 KB
testcase_03 AC 70 ms
77,824 KB
testcase_04 AC 66 ms
75,580 KB
testcase_05 AC 68 ms
77,476 KB
testcase_06 AC 80 ms
84,188 KB
testcase_07 AC 71 ms
78,620 KB
testcase_08 AC 78 ms
83,016 KB
testcase_09 AC 76 ms
79,940 KB
testcase_10 AC 1,153 ms
248,464 KB
testcase_11 AC 1,352 ms
245,984 KB
testcase_12 AC 1,363 ms
245,284 KB
testcase_13 AC 1,247 ms
240,452 KB
testcase_14 AC 1,320 ms
245,984 KB
testcase_15 AC 1,400 ms
245,524 KB
testcase_16 AC 1,331 ms
246,316 KB
testcase_17 AC 1,376 ms
246,524 KB
testcase_18 AC 1,339 ms
246,292 KB
testcase_19 AC 1,308 ms
246,200 KB
testcase_20 AC 41 ms
53,940 KB
testcase_21 AC 40 ms
54,920 KB
testcase_22 AC 1,400 ms
246,476 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 39 ms
55,328 KB
testcase_27 AC 41 ms
55,288 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = defaultdict(int)
check = set()
for x in range(1, n+1):
    for y in range(1, n+1):
        tmp = x**2 + y**2
        cnt[tmp] += 1
        if cnt[tmp] == 1:
            check.add(tmp)

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