結果

問題 No.800 四平方定理
ユーザー kurimupykurimupy
提出日時 2020-06-16 00:06:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 391 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 383,392 KB
最終ジャッジ日時 2024-07-03 11:41:40
合計ジャッジ時間 25,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
80,768 KB
testcase_01 AC 72 ms
80,272 KB
testcase_02 AC 65 ms
78,136 KB
testcase_03 AC 66 ms
77,688 KB
testcase_04 AC 64 ms
76,396 KB
testcase_05 AC 71 ms
77,716 KB
testcase_06 AC 78 ms
84,048 KB
testcase_07 AC 70 ms
78,752 KB
testcase_08 AC 72 ms
82,980 KB
testcase_09 AC 75 ms
80,512 KB
testcase_10 AC 1,077 ms
243,220 KB
testcase_11 AC 1,323 ms
246,888 KB
testcase_12 AC 1,230 ms
243,884 KB
testcase_13 AC 1,140 ms
244,552 KB
testcase_14 AC 1,191 ms
246,736 KB
testcase_15 AC 1,211 ms
244,296 KB
testcase_16 AC 1,236 ms
247,372 KB
testcase_17 AC 1,210 ms
247,248 KB
testcase_18 AC 1,267 ms
246,852 KB
testcase_19 AC 1,221 ms
247,052 KB
testcase_20 AC 37 ms
53,700 KB
testcase_21 AC 37 ms
54,256 KB
testcase_22 AC 1,223 ms
247,372 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 38 ms
53,716 KB
testcase_27 AC 38 ms
54,724 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#4平方定理
N,D=map(int,input().split())
from collections import defaultdict
d=defaultdict(int)
e=defaultdict(int)
for i in range(1,N+1):
    for j in range(1,N+1):
        d[i**2+j**2]+=1
for i in range(1,N+1):
    for j in range(1,N+1):
        e[i**2-j**2+D]+=1
ans=0
bound=max(e.keys())
for key in d.keys():
    if key<=bound and key in e.keys():
        ans+=d[key]*e[key]
print(ans)
0