結果

問題 No.800 四平方定理
ユーザー i_takui_taku
提出日時 2023-09-29 10:27:59
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 498 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 352,220 KB
最終ジャッジ日時 2024-07-22 05:03:26
合計ジャッジ時間 21,850 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
76,272 KB
testcase_01 AC 87 ms
80,128 KB
testcase_02 AC 85 ms
77,568 KB
testcase_03 AC 83 ms
78,208 KB
testcase_04 AC 80 ms
76,672 KB
testcase_05 AC 84 ms
78,080 KB
testcase_06 AC 93 ms
83,712 KB
testcase_07 AC 85 ms
79,360 KB
testcase_08 AC 92 ms
82,944 KB
testcase_09 AC 91 ms
81,024 KB
testcase_10 AC 1,174 ms
242,900 KB
testcase_11 AC 1,283 ms
247,300 KB
testcase_12 AC 1,279 ms
247,508 KB
testcase_13 AC 1,230 ms
247,276 KB
testcase_14 AC 1,278 ms
247,436 KB
testcase_15 AC 1,271 ms
247,532 KB
testcase_16 AC 1,294 ms
247,440 KB
testcase_17 AC 1,304 ms
247,420 KB
testcase_18 AC 1,285 ms
247,544 KB
testcase_19 AC 1,325 ms
247,672 KB
testcase_20 AC 43 ms
53,504 KB
testcase_21 AC 43 ms
53,888 KB
testcase_22 AC 1,296 ms
247,832 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 42 ms
55,548 KB
testcase_27 AC 42 ms
54,292 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
# from time import time

# start = time()
N, D = map(int, input().split())
cnt_1, cnt_2 = defaultdict(int), defaultdict(int)
for x in range(1, N + 1):
    cnt_1[2 * x**2 - D] += 1
    cnt_2[0] += 1
    for y in range(x + 1, N + 1):
        cnt_1[x**2 + y**2 - D] += 2
        cnt_2[x**2 - y**2] += 1
        cnt_2[y**2 - x**2] += 1
# print(time() - start)
ans = 0
for key, value in cnt_1.items():
    if key in cnt_2:
        ans += value * cnt_2[key]
print(ans)
0