結果

問題 No.800 四平方定理
ユーザー 👑 KazunKazun
提出日時 2021-02-25 04:36:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 127,160 KB
最終ジャッジ日時 2024-09-25 04:26:13
合計ジャッジ時間 4,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,880 KB
testcase_01 AC 49 ms
63,244 KB
testcase_02 AC 48 ms
63,600 KB
testcase_03 AC 49 ms
62,060 KB
testcase_04 AC 48 ms
63,284 KB
testcase_05 AC 50 ms
63,664 KB
testcase_06 AC 50 ms
62,972 KB
testcase_07 AC 50 ms
64,080 KB
testcase_08 AC 46 ms
61,460 KB
testcase_09 AC 49 ms
62,848 KB
testcase_10 AC 108 ms
95,128 KB
testcase_11 AC 120 ms
97,488 KB
testcase_12 AC 115 ms
98,288 KB
testcase_13 AC 118 ms
95,528 KB
testcase_14 AC 120 ms
97,812 KB
testcase_15 AC 121 ms
98,568 KB
testcase_16 AC 120 ms
98,232 KB
testcase_17 AC 126 ms
98,944 KB
testcase_18 AC 123 ms
97,668 KB
testcase_19 AC 126 ms
98,248 KB
testcase_20 AC 37 ms
52,856 KB
testcase_21 AC 37 ms
52,552 KB
testcase_22 AC 125 ms
98,100 KB
testcase_23 AC 205 ms
125,708 KB
testcase_24 AC 191 ms
125,228 KB
testcase_25 AC 202 ms
125,232 KB
testcase_26 AC 38 ms
52,128 KB
testcase_27 AC 38 ms
52,596 KB
testcase_28 AC 183 ms
125,280 KB
testcase_29 AC 195 ms
125,460 KB
testcase_30 AC 188 ms
125,864 KB
testcase_31 AC 177 ms
122,076 KB
testcase_32 AC 188 ms
127,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

T=[0]*(2*N*N+1)
for x in range(1,N+1):
    for y in range(1,N+1):
        T[x*x+y*y]+=1

X=0
for z in range(1,N+1):
    for w in range(1,N+1):
        if 0<=w*w+D-z*z<=2*N*N:
            X+=T[w*w+D-z*z]
print(X)
0