結果

問題 No.800 四平方定理
ユーザー i_takui_taku
提出日時 2023-09-29 10:17:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 343 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 406,096 KB
最終ジャッジ日時 2024-07-22 04:50:47
合計ジャッジ時間 26,639 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
73,972 KB
testcase_01 AC 80 ms
82,944 KB
testcase_02 AC 77 ms
77,952 KB
testcase_03 AC 74 ms
78,848 KB
testcase_04 AC 72 ms
76,544 KB
testcase_05 AC 74 ms
79,360 KB
testcase_06 AC 84 ms
87,168 KB
testcase_07 AC 77 ms
81,536 KB
testcase_08 AC 82 ms
86,144 KB
testcase_09 AC 80 ms
83,200 KB
testcase_10 AC 1,163 ms
257,752 KB
testcase_11 AC 1,157 ms
265,944 KB
testcase_12 AC 1,226 ms
261,316 KB
testcase_13 AC 1,195 ms
259,012 KB
testcase_14 AC 1,123 ms
265,304 KB
testcase_15 AC 1,159 ms
265,188 KB
testcase_16 AC 1,195 ms
266,132 KB
testcase_17 AC 1,220 ms
266,480 KB
testcase_18 AC 1,142 ms
265,416 KB
testcase_19 AC 1,171 ms
265,704 KB
testcase_20 AC 43 ms
53,760 KB
testcase_21 AC 43 ms
53,504 KB
testcase_22 AC 1,160 ms
265,500 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 42 ms
54,920 KB
testcase_27 AC 43 ms
54,352 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N, D = map(int, input().split())
xpy = []
for x in range(1, N + 1):
    for y in range(1, N + 1):
        xpy.append(x**2 + y**2)
wmz = []
for w in range(1, N + 1):
    for z in range(1, N + 1):
        wmz.append(w**2 - z**2)
cnt = Counter(wmz)

ans = 0
for xy in xpy:
    ans += cnt.get(xy - D, 0)
print(ans)
0