結果

問題 No.800 四平方定理
ユーザー kurimupykurimupy
提出日時 2020-06-16 00:03:30
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 328 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 424,300 KB
最終ジャッジ日時 2024-07-03 11:42:26
合計ジャッジ時間 22,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
74,268 KB
testcase_01 AC 83 ms
81,948 KB
testcase_02 AC 74 ms
78,148 KB
testcase_03 AC 74 ms
80,268 KB
testcase_04 AC 69 ms
77,128 KB
testcase_05 AC 72 ms
79,224 KB
testcase_06 AC 84 ms
86,348 KB
testcase_07 AC 75 ms
80,840 KB
testcase_08 AC 82 ms
85,028 KB
testcase_09 AC 78 ms
83,000 KB
testcase_10 AC 1,160 ms
269,616 KB
testcase_11 AC 1,345 ms
276,776 KB
testcase_12 AC 1,330 ms
273,340 KB
testcase_13 AC 1,222 ms
263,284 KB
testcase_14 AC 1,326 ms
276,776 KB
testcase_15 AC 1,319 ms
273,700 KB
testcase_16 AC 1,308 ms
276,504 KB
testcase_17 AC 1,352 ms
276,396 KB
testcase_18 AC 1,377 ms
276,576 KB
testcase_19 AC 1,312 ms
276,636 KB
testcase_20 AC 39 ms
55,416 KB
testcase_21 AC 39 ms
54,680 KB
testcase_22 AC 1,364 ms
276,508 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 39 ms
54,948 KB
testcase_27 AC 38 ms
55,984 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

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
for key in d.keys():
    ans+=d[key]*e[key]
print(ans)
0