結果

問題 No.800 四平方定理
ユーザー i_takui_taku
提出日時 2023-09-29 10:22:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 314 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 349,308 KB
最終ジャッジ日時 2024-07-22 04:56:01
合計ジャッジ時間 24,737 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
77,952 KB
testcase_01 AC 85 ms
78,592 KB
testcase_02 AC 78 ms
75,520 KB
testcase_03 AC 82 ms
75,776 KB
testcase_04 AC 81 ms
74,496 KB
testcase_05 AC 80 ms
76,288 KB
testcase_06 AC 93 ms
81,920 KB
testcase_07 AC 80 ms
76,544 KB
testcase_08 AC 92 ms
81,408 KB
testcase_09 AC 88 ms
79,488 KB
testcase_10 AC 1,624 ms
218,700 KB
testcase_11 AC 1,778 ms
246,356 KB
testcase_12 AC 1,746 ms
246,708 KB
testcase_13 AC 1,646 ms
226,532 KB
testcase_14 AC 1,784 ms
246,768 KB
testcase_15 AC 1,801 ms
246,376 KB
testcase_16 AC 1,792 ms
246,476 KB
testcase_17 AC 1,827 ms
246,756 KB
testcase_18 AC 1,814 ms
246,996 KB
testcase_19 AC 1,808 ms
246,608 KB
testcase_20 AC 42 ms
53,376 KB
testcase_21 AC 42 ms
53,504 KB
testcase_22 AC 1,828 ms
246,768 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, D = map(int, input().split())
cp, cm = defaultdict(int), defaultdict(int)
for x in range(1, N + 1):
    for y in range(1, N + 1):
        cp[x**2 + y**2] += 1
        cm[x**2 - y**2] += 1
ans = 0
for key, value in cp.items():
    ans += value * cm.get(key - D, 0)
print(ans)
0