結果

問題 No.800 四平方定理
ユーザー ayaoniayaoni
提出日時 2020-11-27 01:53:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 946 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 323,972 KB
最終ジャッジ日時 2024-07-23 21:14:50
合計ジャッジ時間 30,452 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
69,336 KB
testcase_01 AC 74 ms
74,880 KB
testcase_02 AC 68 ms
72,064 KB
testcase_03 AC 69 ms
72,576 KB
testcase_04 AC 66 ms
71,424 KB
testcase_05 AC 68 ms
72,848 KB
testcase_06 AC 76 ms
77,824 KB
testcase_07 AC 72 ms
73,856 KB
testcase_08 AC 73 ms
77,056 KB
testcase_09 AC 74 ms
75,264 KB
testcase_10 AC 1,049 ms
235,996 KB
testcase_11 AC 1,150 ms
227,908 KB
testcase_12 AC 1,295 ms
227,976 KB
testcase_13 AC 1,214 ms
238,664 KB
testcase_14 AC 1,257 ms
228,168 KB
testcase_15 AC 1,272 ms
227,812 KB
testcase_16 AC 1,247 ms
227,848 KB
testcase_17 AC 1,286 ms
227,844 KB
testcase_18 AC 1,228 ms
227,864 KB
testcase_19 AC 1,252 ms
227,984 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 38 ms
52,352 KB
testcase_22 AC 1,283 ms
227,840 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 39 ms
52,352 KB
testcase_27 AC 40 ms
52,480 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,D = MI()

count0 = {}
count1 = {}
for i in range(1,N+1):
    for j in range(1,N+1):
        a = i**2+j**2
        if a in count0.keys():
            count0[a] += 1
        else:
            count0[a] = 1
for i in range(1,N+1):
    for j in range(1,N+1):
        a = -i**2+j**2+D
        if a in count1.keys():
            count1[a] += 1
        else:
            count1[a] = 1

ans = 0
for key in count0.keys():
    if key in count1.keys():
        ans += count0[key]*count1[key]

print(ans)
0