結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
16,896 KB
testcase_01 AC 72 ms
11,904 KB
testcase_02 AC 60 ms
11,648 KB
testcase_03 AC 61 ms
11,776 KB
testcase_04 AC 59 ms
11,392 KB
testcase_05 AC 64 ms
11,520 KB
testcase_06 AC 81 ms
12,032 KB
testcase_07 AC 77 ms
11,776 KB
testcase_08 AC 80 ms
12,032 KB
testcase_09 AC 71 ms
11,776 KB
testcase_10 AC 1,511 ms
41,600 KB
testcase_11 AC 1,578 ms
45,312 KB
testcase_12 AC 1,663 ms
44,840 KB
testcase_13 AC 1,343 ms
43,008 KB
testcase_14 AC 1,484 ms
45,312 KB
testcase_15 AC 1,707 ms
45,336 KB
testcase_16 AC 1,470 ms
45,696 KB
testcase_17 AC 1,409 ms
45,696 KB
testcase_18 AC 1,826 ms
45,916 KB
testcase_19 AC 1,896 ms
45,628 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 31 ms
10,752 KB
testcase_22 AC 1,809 ms
45,652 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def FI(): return float(sys.stdin.buffer.readline())
def MI(): return map(int, sys.stdin.buffer.readline().split())
def MF(): return map(float, sys.stdin.buffer.readline().split())
def MI1(): return map(int1, sys.stdin.buffer.readline().split())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
inf = 10**16
# md = 998244353
md = 10**9+7

n, d = MI()
lim = 2*n*n
cnt = [0]*(lim+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 > lim: continue
        if t < 0: break
        ans += cnt[t]

print(ans)
0