結果

問題 No.800 四平方定理
ユーザー FromBooskaFromBooska
提出日時 2023-03-03 04:47:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 513 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 371,108 KB
最終ジャッジ日時 2024-09-17 20:28:38
合計ジャッジ時間 22,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
82,376 KB
testcase_01 AC 76 ms
82,864 KB
testcase_02 AC 69 ms
78,644 KB
testcase_03 AC 71 ms
81,236 KB
testcase_04 AC 68 ms
77,664 KB
testcase_05 AC 72 ms
79,808 KB
testcase_06 AC 82 ms
86,784 KB
testcase_07 AC 71 ms
80,720 KB
testcase_08 AC 81 ms
87,152 KB
testcase_09 AC 83 ms
83,376 KB
testcase_10 AC 1,373 ms
252,320 KB
testcase_11 AC 1,632 ms
299,012 KB
testcase_12 AC 1,537 ms
298,164 KB
testcase_13 AC 1,440 ms
269,428 KB
testcase_14 AC 1,612 ms
299,000 KB
testcase_15 AC 1,638 ms
298,896 KB
testcase_16 AC 1,509 ms
299,076 KB
testcase_17 AC 1,659 ms
299,368 KB
testcase_18 AC 1,581 ms
299,044 KB
testcase_19 AC 1,572 ms
299,068 KB
testcase_20 AC 42 ms
54,332 KB
testcase_21 AC 40 ms
54,056 KB
testcase_22 AC 1,663 ms
299,016 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)
wDz = defaultdict(int)
for x in range(1, N+1):
    for y in range(1, N+1):
        calc1 = x**2+y**2
        xy[calc1] += 1
        calc2 = x**2+D-y**2
        wDz[calc2] += 1

ans = 0
for num in xy:
    ans += xy[num]*wDz[num]
print(ans)
0