結果

問題 No.800 四平方定理
ユーザー mkawa2mkawa2
提出日時 2021-02-13 17:09:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 367 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 73,216 KB
最終ジャッジ日時 2024-07-20 20:17:38
合計ジャッジ時間 22,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
11,392 KB
testcase_01 AC 57 ms
11,648 KB
testcase_02 AC 50 ms
11,392 KB
testcase_03 AC 51 ms
11,520 KB
testcase_04 AC 48 ms
11,392 KB
testcase_05 AC 51 ms
11,392 KB
testcase_06 AC 65 ms
12,288 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 65 ms
11,776 KB
testcase_10 AC 1,275 ms
41,540 KB
testcase_11 AC 1,338 ms
45,568 KB
testcase_12 AC 1,395 ms
44,536 KB
testcase_13 AC 1,173 ms
42,880 KB
testcase_14 AC 1,288 ms
45,556 KB
testcase_15 AC 1,343 ms
44,964 KB
testcase_16 AC 1,180 ms
45,516 KB
testcase_17 AC 1,172 ms
45,696 KB
testcase_18 AC 1,507 ms
45,568 KB
testcase_19 AC 1,669 ms
45,420 KB
testcase_20 AC 26 ms
10,496 KB
testcase_21 RE -
testcase_22 AC 1,608 ms
45,568 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 27 ms
10,496 KB
testcase_27 RE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
def MI(): return map(int, sys.stdin.buffer.readline().split())

n, d = MI()
cnt = [0]*(2*n*n+1)

for x in range(1, n+1):
    for y in range(1, n+1):
        cnt[x*x+y*y] += 1

ans = 0
for w in range(1, n+1):
    s = w*w+d
    for z in range(1, n+1):
        t = s-z*z
        if t < 0: break
        ans += cnt[t]

print(ans)
0