結果

問題 No.800 四平方定理
ユーザー FromBooskaFromBooska
提出日時 2023-03-03 04:57:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 595 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 423,880 KB
最終ジャッジ日時 2024-09-17 20:35:30
合計ジャッジ時間 20,071 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
78,976 KB
testcase_01 AC 79 ms
79,896 KB
testcase_02 AC 74 ms
76,384 KB
testcase_03 AC 75 ms
75,852 KB
testcase_04 AC 75 ms
76,480 KB
testcase_05 AC 76 ms
76,372 KB
testcase_06 AC 84 ms
80,884 KB
testcase_07 AC 89 ms
83,912 KB
testcase_08 AC 97 ms
89,912 KB
testcase_09 AC 81 ms
79,324 KB
testcase_10 AC 1,285 ms
248,276 KB
testcase_11 AC 1,361 ms
253,796 KB
testcase_12 AC 1,456 ms
266,688 KB
testcase_13 AC 1,064 ms
242,120 KB
testcase_14 AC 1,166 ms
238,816 KB
testcase_15 AC 1,421 ms
267,416 KB
testcase_16 AC 1,176 ms
241,928 KB
testcase_17 AC 1,169 ms
239,268 KB
testcase_18 AC 1,692 ms
281,728 KB
testcase_19 AC 1,596 ms
284,248 KB
testcase_20 AC 40 ms
54,020 KB
testcase_21 AC 41 ms
54,292 KB
testcase_22 AC 1,614 ms
279,212 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 公式解説より
# 2重ループは可能、を押し進めるべきだった
# x, yで作れる数を全探索
# w, D, zで作れる数を全探索
# その組合せ数が答え

N, D = map(int, input().split())
from collections import defaultdict
xy = defaultdict(int)
for x in range(1, N+1):
    for y in range(1, N+1):
        calc = x**2+y**2
        xy[calc] += 1
wDz = defaultdict(int)
for w in range(1, N+1):
    for z in range(1, N+1):
        calc = w**2+D-z**2
        if calc > 0:
            wDz[calc] += 1
        
ans = 0
for num in wDz:
    ans += xy[num]*wDz[num]
print(ans)
0