結果

問題 No.800 四平方定理
ユーザー ayaoniayaoni
提出日時 2020-11-27 03:20:54
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 336 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 303,560 KB
最終ジャッジ日時 2024-07-23 21:18:31
合計ジャッジ時間 19,328 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
69,760 KB
testcase_01 AC 76 ms
75,904 KB
testcase_02 AC 73 ms
71,936 KB
testcase_03 AC 71 ms
74,624 KB
testcase_04 AC 74 ms
71,424 KB
testcase_05 AC 72 ms
73,344 KB
testcase_06 AC 77 ms
78,208 KB
testcase_07 AC 72 ms
74,112 KB
testcase_08 AC 78 ms
78,312 KB
testcase_09 AC 74 ms
75,648 KB
testcase_10 AC 1,163 ms
248,196 KB
testcase_11 AC 1,233 ms
246,456 KB
testcase_12 AC 1,286 ms
259,592 KB
testcase_13 AC 1,220 ms
259,072 KB
testcase_14 AC 1,270 ms
246,252 KB
testcase_15 AC 1,338 ms
260,300 KB
testcase_16 AC 1,264 ms
246,732 KB
testcase_17 AC 1,375 ms
246,988 KB
testcase_18 AC 1,284 ms
246,592 KB
testcase_19 AC 1,270 ms
246,724 KB
testcase_20 AC 42 ms
54,016 KB
testcase_21 AC 42 ms
53,248 KB
testcase_22 AC 1,372 ms
246,788 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 43 ms
53,632 KB
testcase_27 AC 43 ms
53,760 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
def MI(): return map(int,sys.stdin.readline().rstrip().split())


N,D = MI()

count = defaultdict(int)
for i in range(1,N+1):
    for j in range(1,N+1):
        count[i**2+j**2] += 1

ans = 0
for i in range(1,N+1):
    for j in range(1,N+1):
        ans += count[-i**2+j**2+D]

print(ans)
0