結果

問題 No.800 四平方定理
ユーザー FromBooskaFromBooska
提出日時 2023-03-03 04:45:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 569 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 348,708 KB
最終ジャッジ日時 2024-09-17 20:26:08
合計ジャッジ時間 22,776 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
82,132 KB
testcase_01 AC 82 ms
82,168 KB
testcase_02 AC 73 ms
78,192 KB
testcase_03 AC 76 ms
80,444 KB
testcase_04 AC 78 ms
78,604 KB
testcase_05 AC 76 ms
80,896 KB
testcase_06 AC 89 ms
86,152 KB
testcase_07 AC 80 ms
81,544 KB
testcase_08 AC 87 ms
85,152 KB
testcase_09 AC 82 ms
82,812 KB
testcase_10 AC 1,389 ms
269,368 KB
testcase_11 AC 1,581 ms
273,808 KB
testcase_12 AC 1,590 ms
273,204 KB
testcase_13 AC 1,451 ms
271,072 KB
testcase_14 AC 1,592 ms
273,816 KB
testcase_15 AC 1,594 ms
272,920 KB
testcase_16 AC 1,619 ms
275,944 KB
testcase_17 AC 1,628 ms
276,156 KB
testcase_18 AC 1,590 ms
276,060 KB
testcase_19 AC 1,671 ms
276,064 KB
testcase_20 AC 43 ms
53,880 KB
testcase_21 AC 40 ms
54,752 KB
testcase_22 AC 1,725 ms
276,320 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
        wDz[calc] += 1
        
ans = 0
for num in xy:
    ans += xy[num]*wDz[num]
print(ans)
0