結果

問題 No.800 四平方定理
ユーザー wgrapewgrape
提出日時 2023-10-31 13:57:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 349 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 310,540 KB
最終ジャッジ日時 2024-09-25 17:38:43
合計ジャッジ時間 21,679 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
70,584 KB
testcase_01 AC 74 ms
75,884 KB
testcase_02 AC 68 ms
72,260 KB
testcase_03 AC 72 ms
75,088 KB
testcase_04 AC 67 ms
72,008 KB
testcase_05 AC 70 ms
74,488 KB
testcase_06 AC 78 ms
78,376 KB
testcase_07 AC 71 ms
73,960 KB
testcase_08 AC 79 ms
79,364 KB
testcase_09 AC 75 ms
76,228 KB
testcase_10 AC 1,145 ms
251,624 KB
testcase_11 AC 1,241 ms
260,204 KB
testcase_12 AC 1,215 ms
259,968 KB
testcase_13 AC 1,134 ms
258,800 KB
testcase_14 AC 1,251 ms
260,248 KB
testcase_15 AC 1,256 ms
260,200 KB
testcase_16 AC 1,231 ms
246,720 KB
testcase_17 AC 1,247 ms
246,796 KB
testcase_18 AC 1,229 ms
246,724 KB
testcase_19 AC 1,182 ms
246,824 KB
testcase_20 AC 42 ms
55,056 KB
testcase_21 AC 42 ms
54,848 KB
testcase_22 AC 1,248 ms
246,884 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 42 ms
53,976 KB
testcase_27 AC 42 ms
54,060 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())

from collections import defaultdict
# x^2 + y^2で作れる数を全列挙
XY = defaultdict(int)
for x in range(1, N + 1):
    for y in range(1, N + 1):
        XY[x**2 + y ** 2] += 1
        
ans = 0
for z in range(1, N + 1):
    for w in range(1, N + 1):
        ans += XY[D - (z ** 2 - w ** 2)]
        
print(ans)
0