結果

問題 No.800 四平方定理
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-16 20:23:51
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 352 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 349,236 KB
最終ジャッジ日時 2024-06-22 03:34:06
合計ジャッジ時間 26,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
83,016 KB
testcase_01 AC 85 ms
82,220 KB
testcase_02 AC 77 ms
77,788 KB
testcase_03 AC 79 ms
80,792 KB
testcase_04 AC 78 ms
78,072 KB
testcase_05 AC 79 ms
80,236 KB
testcase_06 AC 93 ms
86,172 KB
testcase_07 AC 79 ms
81,188 KB
testcase_08 AC 90 ms
86,600 KB
testcase_09 AC 89 ms
83,760 KB
testcase_10 AC 1,750 ms
259,052 KB
testcase_11 AC 1,926 ms
302,116 KB
testcase_12 AC 1,928 ms
299,444 KB
testcase_13 AC 1,751 ms
269,884 KB
testcase_14 TLE -
testcase_15 AC 1,927 ms
301,816 KB
testcase_16 AC 1,994 ms
302,760 KB
testcase_17 TLE -
testcase_18 AC 1,968 ms
302,212 KB
testcase_19 AC 1,978 ms
302,272 KB
testcase_20 AC 40 ms
54,380 KB
testcase_21 AC 40 ms
53,616 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
input = sys.stdin.readline
def MI():
    return map(int, input().split())

n,d=MI()
from collections import defaultdict
xydic=defaultdict(int)
wzdic=defaultdict(int)
for i in range(1,n+1):
    for j in range(1,n+1):
        wzdic[i**2-j**2+d]+=1
        xydic[i**2+j**2]+=1

ans=0
for i in xydic.keys():
    ans+=wzdic[i]*xydic[i]
print(ans)
0