結果

問題 No.800 四平方定理
ユーザー lloyzlloyz
提出日時 2022-11-03 13:24:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 322 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,764 KB
実行使用メモリ 286,188 KB
最終ジャッジ日時 2024-07-17 23:15:27
合計ジャッジ時間 34,319 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
70,244 KB
testcase_01 AC 72 ms
76,248 KB
testcase_02 AC 67 ms
72,696 KB
testcase_03 AC 68 ms
74,296 KB
testcase_04 AC 66 ms
72,264 KB
testcase_05 AC 69 ms
73,904 KB
testcase_06 AC 76 ms
78,824 KB
testcase_07 AC 71 ms
75,548 KB
testcase_08 AC 78 ms
78,456 KB
testcase_09 AC 72 ms
75,320 KB
testcase_10 AC 1,067 ms
214,256 KB
testcase_11 AC 1,192 ms
225,800 KB
testcase_12 AC 1,094 ms
225,996 KB
testcase_13 AC 1,090 ms
215,024 KB
testcase_14 AC 1,099 ms
225,828 KB
testcase_15 AC 1,077 ms
225,648 KB
testcase_16 AC 1,161 ms
225,828 KB
testcase_17 AC 1,209 ms
225,632 KB
testcase_18 AC 1,096 ms
225,824 KB
testcase_19 AC 1,113 ms
225,948 KB
testcase_20 AC 42 ms
54,116 KB
testcase_21 AC 42 ms
55,292 KB
testcase_22 AC 1,126 ms
225,628 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 42 ms
54,656 KB
testcase_27 AC 41 ms
53,788 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())

counter = defaultdict(int)
for w in range(1, n + 1):
    for z in range(1, n + 1):
        counter[w**2 - z**2] += 1

ans = 0
for x in range(1, n + 1):
    for y in range(1, n + 1):
        res = x**2 + y**2 - d
        ans += counter[res]
print(ans)
0