結果

問題 No.800 四平方定理
ユーザー mkawa2mkawa2
提出日時 2021-02-13 17:17:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 142,624 KB
最終ジャッジ日時 2024-07-20 20:30:24
合計ジャッジ時間 27,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
17,024 KB
testcase_01 AC 86 ms
12,800 KB
testcase_02 AC 72 ms
12,032 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 69 ms
12,160 KB
testcase_05 AC 75 ms
12,160 KB
testcase_06 AC 99 ms
13,440 KB
testcase_07 AC 91 ms
12,672 KB
testcase_08 AC 92 ms
13,312 KB
testcase_09 AC 87 ms
13,056 KB
testcase_10 AC 1,895 ms
72,316 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,818 ms
75,136 KB
testcase_14 AC 1,982 ms
80,296 KB
testcase_15 TLE -
testcase_16 AC 1,922 ms
80,896 KB
testcase_17 AC 1,963 ms
80,844 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 30 ms
10,496 KB
testcase_21 AC 31 ms
10,496 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

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