結果

問題 No.800 四平方定理
ユーザー s_shoheis_shohei
提出日時 2020-06-13 14:06:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 366 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 417 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 203,904 KB
最終ジャッジ日時 2024-06-25 03:05:12
合計ジャッジ時間 7,107 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
61,696 KB
testcase_01 AC 58 ms
63,872 KB
testcase_02 AC 56 ms
63,360 KB
testcase_03 AC 57 ms
63,360 KB
testcase_04 AC 57 ms
63,360 KB
testcase_05 AC 56 ms
63,360 KB
testcase_06 AC 59 ms
64,512 KB
testcase_07 AC 61 ms
65,152 KB
testcase_08 AC 63 ms
68,608 KB
testcase_09 AC 58 ms
64,000 KB
testcase_10 AC 194 ms
132,352 KB
testcase_11 AC 204 ms
136,576 KB
testcase_12 AC 206 ms
140,288 KB
testcase_13 AC 180 ms
128,256 KB
testcase_14 AC 187 ms
132,864 KB
testcase_15 AC 216 ms
140,800 KB
testcase_16 AC 187 ms
133,248 KB
testcase_17 AC 193 ms
133,376 KB
testcase_18 AC 229 ms
148,992 KB
testcase_19 AC 229 ms
148,992 KB
testcase_20 AC 40 ms
51,840 KB
testcase_21 AC 41 ms
51,840 KB
testcase_22 AC 233 ms
149,760 KB
testcase_23 AC 363 ms
203,776 KB
testcase_24 AC 306 ms
188,160 KB
testcase_25 AC 366 ms
203,904 KB
testcase_26 AC 40 ms
51,712 KB
testcase_27 AC 59 ms
73,216 KB
testcase_28 AC 317 ms
187,648 KB
testcase_29 AC 337 ms
195,840 KB
testcase_30 AC 320 ms
187,904 KB
testcase_31 AC 289 ms
179,072 KB
testcase_32 AC 323 ms
189,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d = map(int, input().split())

leng=max(1+2*n*n, 1+2*n*n + d)

cnt1=[0]*(leng)
for x in range(1,n+1):
    for y in range(1,n+1):
        cnt1[x**2 + y**2]+=1

cnt2=[0]*(leng)
for w in range(1,n+1):
    for z in range(1,n+1):
        ind = w**2 - z**2 + d
        if ind >= 0:
            cnt2[ind]+=1

ans=0
for i in range(len(cnt1)):
    ans+=(cnt1[i]*cnt2[i])
print(ans)
0