結果

問題 No.800 四平方定理
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-16 20:29:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 188,848 KB
最終ジャッジ日時 2024-06-22 03:34:20
合計ジャッジ時間 6,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,008 KB
testcase_01 AC 50 ms
64,848 KB
testcase_02 AC 51 ms
64,156 KB
testcase_03 AC 48 ms
63,672 KB
testcase_04 AC 48 ms
63,308 KB
testcase_05 AC 49 ms
63,968 KB
testcase_06 AC 50 ms
64,016 KB
testcase_07 AC 51 ms
64,376 KB
testcase_08 AC 47 ms
63,148 KB
testcase_09 AC 50 ms
64,100 KB
testcase_10 AC 171 ms
125,088 KB
testcase_11 AC 178 ms
134,008 KB
testcase_12 AC 183 ms
131,876 KB
testcase_13 AC 160 ms
128,292 KB
testcase_14 AC 163 ms
133,148 KB
testcase_15 AC 183 ms
133,068 KB
testcase_16 AC 167 ms
133,580 KB
testcase_17 AC 170 ms
133,528 KB
testcase_18 AC 203 ms
134,192 KB
testcase_19 AC 200 ms
133,884 KB
testcase_20 AC 39 ms
52,064 KB
testcase_21 AC 37 ms
52,068 KB
testcase_22 AC 197 ms
134,432 KB
testcase_23 AC 313 ms
188,844 KB
testcase_24 AC 278 ms
188,848 KB
testcase_25 AC 311 ms
187,608 KB
testcase_26 AC 37 ms
52,552 KB
testcase_27 AC 34 ms
52,964 KB
testcase_28 AC 277 ms
187,364 KB
testcase_29 AC 299 ms
188,840 KB
testcase_30 AC 280 ms
187,164 KB
testcase_31 AC 264 ms
178,656 KB
testcase_32 AC 289 ms
188,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def MI():
    return map(int, input().split())

n,d=MI()
upper=2*(n**2)
xydic=[0]*(upper+1)
wzdic=[0]*(upper+1)
for i in range(1,n+1):
    for j in range(1,n+1):
        r=i**2-j**2+d
        l=i**2+j**2
        if 0<r<=upper:
            wzdic[r]+=1
        xydic[l]+=1

ans=0
for i in range(1,upper+1):
    ans+=wzdic[i]*xydic[i]
print(ans)
0