結果

問題 No.800 四平方定理
ユーザー wgrapewgrape
提出日時 2023-10-31 14:08:20
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 420 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 189,776 KB
最終ジャッジ日時 2024-09-25 17:39:20
合計ジャッジ時間 5,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,744 KB
testcase_01 AC 54 ms
65,280 KB
testcase_02 AC 53 ms
65,152 KB
testcase_03 AC 54 ms
65,024 KB
testcase_04 AC 57 ms
64,512 KB
testcase_05 AC 53 ms
64,896 KB
testcase_06 AC 54 ms
65,792 KB
testcase_07 AC 53 ms
64,512 KB
testcase_08 AC 53 ms
65,024 KB
testcase_09 AC 54 ms
65,408 KB
testcase_10 AC 126 ms
126,532 KB
testcase_11 AC 186 ms
134,472 KB
testcase_12 AC 144 ms
132,828 KB
testcase_13 AC 131 ms
129,288 KB
testcase_14 AC 142 ms
134,272 KB
testcase_15 AC 146 ms
133,740 KB
testcase_16 AC 150 ms
135,024 KB
testcase_17 AC 158 ms
134,912 KB
testcase_18 AC 154 ms
134,764 KB
testcase_19 AC 144 ms
134,564 KB
testcase_20 AC 41 ms
53,632 KB
testcase_21 AC 41 ms
53,888 KB
testcase_22 AC 145 ms
134,744 KB
testcase_23 AC 258 ms
189,560 KB
testcase_24 AC 246 ms
189,552 KB
testcase_25 AC 255 ms
189,336 KB
testcase_26 AC 41 ms
54,144 KB
testcase_27 RE -
testcase_28 AC 235 ms
188,952 KB
testcase_29 AC 242 ms
189,448 KB
testcase_30 AC 251 ms
189,240 KB
testcase_31 AC 225 ms
180,520 KB
testcase_32 AC 240 ms
189,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

from collections import defaultdict
# x^2 + y^2で作れる数を全列挙
XY = [0] * ((N ** 2) * 4 + 1)
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):
        target = D - (z ** 2 - w ** 2)
        if target < 0:
            continue
        ans += XY[target]

print(ans)
0