結果

問題 No.800 四平方定理
ユーザー mkawa2mkawa2
提出日時 2021-02-13 17:18:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 445 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 200,960 KB
最終ジャッジ日時 2024-07-20 20:30:41
合計ジャッジ時間 7,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
64,128 KB
testcase_01 AC 56 ms
67,712 KB
testcase_02 AC 57 ms
65,920 KB
testcase_03 AC 58 ms
66,944 KB
testcase_04 AC 55 ms
65,792 KB
testcase_05 AC 53 ms
66,304 KB
testcase_06 AC 61 ms
69,120 KB
testcase_07 AC 54 ms
66,816 KB
testcase_08 AC 54 ms
68,224 KB
testcase_09 AC 55 ms
68,096 KB
testcase_10 AC 225 ms
137,472 KB
testcase_11 AC 241 ms
145,152 KB
testcase_12 AC 247 ms
144,128 KB
testcase_13 AC 222 ms
140,432 KB
testcase_14 AC 217 ms
145,536 KB
testcase_15 AC 244 ms
144,744 KB
testcase_16 AC 224 ms
145,968 KB
testcase_17 AC 226 ms
145,920 KB
testcase_18 AC 264 ms
146,048 KB
testcase_19 AC 264 ms
145,764 KB
testcase_20 AC 39 ms
51,712 KB
testcase_21 AC 40 ms
51,712 KB
testcase_22 AC 270 ms
146,432 KB
testcase_23 AC 407 ms
200,832 KB
testcase_24 AC 361 ms
200,576 KB
testcase_25 AC 430 ms
200,064 KB
testcase_26 AC 39 ms
51,968 KB
testcase_27 AC 39 ms
51,840 KB
testcase_28 AC 445 ms
200,192 KB
testcase_29 AC 386 ms
200,304 KB
testcase_30 AC 376 ms
200,128 KB
testcase_31 AC 343 ms
191,820 KB
testcase_32 AC 379 ms
200,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def MI(): return map(int, sys.stdin.buffer.readline().split())

n, d = MI()
lim = 2*n*n
cnt1 = [0]*(lim+1)
cnt2 = [0]*(lim+1)

for x in range(1, n+1):
    s = x*x
    for y in range(1, n+1):
        t = y*y
        cnt1[s+t] += 1
        if 0 <= s+d-t <= lim: cnt2[s+d-t] += 1

ans=sum(c1*c2 for c1,c2 in zip(cnt1,cnt2))
print(ans)
0