結果

問題 No.800 四平方定理
ユーザー FromBooskaFromBooska
提出日時 2023-03-03 05:04:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 837 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 190,592 KB
最終ジャッジ日時 2024-09-17 20:40:53
合計ジャッジ時間 6,640 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
63,744 KB
testcase_01 AC 59 ms
65,920 KB
testcase_02 AC 57 ms
65,152 KB
testcase_03 AC 59 ms
65,536 KB
testcase_04 AC 58 ms
65,280 KB
testcase_05 AC 57 ms
65,280 KB
testcase_06 AC 61 ms
66,560 KB
testcase_07 AC 67 ms
66,360 KB
testcase_08 AC 63 ms
65,920 KB
testcase_09 AC 61 ms
65,920 KB
testcase_10 AC 176 ms
127,360 KB
testcase_11 AC 200 ms
135,048 KB
testcase_12 AC 184 ms
133,632 KB
testcase_13 AC 168 ms
130,432 KB
testcase_14 AC 175 ms
135,296 KB
testcase_15 AC 200 ms
134,656 KB
testcase_16 AC 166 ms
135,552 KB
testcase_17 AC 177 ms
135,936 KB
testcase_18 AC 208 ms
135,936 KB
testcase_19 AC 230 ms
135,808 KB
testcase_20 AC 44 ms
53,504 KB
testcase_21 AC 44 ms
53,376 KB
testcase_22 AC 199 ms
135,936 KB
testcase_23 AC 336 ms
190,592 KB
testcase_24 AC 292 ms
190,144 KB
testcase_25 AC 342 ms
190,208 KB
testcase_26 AC 44 ms
53,888 KB
testcase_27 AC 44 ms
53,504 KB
testcase_28 AC 309 ms
189,312 KB
testcase_29 AC 317 ms
190,208 KB
testcase_30 AC 293 ms
189,696 KB
testcase_31 AC 277 ms
181,120 KB
testcase_32 AC 312 ms
190,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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