結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
62,976 KB
testcase_01 AC 53 ms
64,384 KB
testcase_02 AC 54 ms
64,000 KB
testcase_03 AC 52 ms
64,128 KB
testcase_04 AC 56 ms
64,000 KB
testcase_05 AC 53 ms
64,256 KB
testcase_06 AC 53 ms
64,896 KB
testcase_07 AC 55 ms
64,256 KB
testcase_08 AC 52 ms
64,000 KB
testcase_09 AC 54 ms
64,768 KB
testcase_10 AC 121 ms
96,128 KB
testcase_11 AC 133 ms
99,968 KB
testcase_12 AC 129 ms
99,584 KB
testcase_13 AC 127 ms
97,536 KB
testcase_14 AC 128 ms
99,968 KB
testcase_15 AC 132 ms
100,224 KB
testcase_16 AC 138 ms
100,352 KB
testcase_17 AC 134 ms
100,864 KB
testcase_18 AC 138 ms
100,224 KB
testcase_19 AC 145 ms
100,404 KB
testcase_20 AC 42 ms
53,632 KB
testcase_21 AC 42 ms
53,888 KB
testcase_22 AC 138 ms
100,096 KB
testcase_23 AC 223 ms
127,460 KB
testcase_24 AC 208 ms
127,808 KB
testcase_25 AC 222 ms
127,588 KB
testcase_26 AC 41 ms
53,376 KB
testcase_27 AC 41 ms
53,376 KB
testcase_28 AC 206 ms
127,204 KB
testcase_29 AC 220 ms
127,616 KB
testcase_30 AC 208 ms
127,232 KB
testcase_31 AC 193 ms
123,008 KB
testcase_32 AC 207 ms
127,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(ans)
0