結果

問題 No.800 四平方定理
ユーザー tobusakanatobusakana
提出日時 2022-10-02 17:21:20
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 601 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 303,800 KB
最終ジャッジ日時 2024-06-07 10:59:29
合計ジャッジ時間 27,259 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
70,016 KB
testcase_01 AC 77 ms
74,624 KB
testcase_02 AC 74 ms
71,808 KB
testcase_03 AC 73 ms
72,448 KB
testcase_04 AC 72 ms
72,448 KB
testcase_05 AC 76 ms
73,728 KB
testcase_06 AC 80 ms
75,520 KB
testcase_07 AC 82 ms
77,696 KB
testcase_08 AC 90 ms
81,408 KB
testcase_09 AC 77 ms
74,240 KB
testcase_10 AC 938 ms
231,036 KB
testcase_11 AC 914 ms
219,772 KB
testcase_12 AC 1,008 ms
221,076 KB
testcase_13 AC 724 ms
179,676 KB
testcase_14 AC 781 ms
194,600 KB
testcase_15 AC 1,049 ms
221,040 KB
testcase_16 AC 812 ms
195,068 KB
testcase_17 AC 792 ms
197,088 KB
testcase_18 AC 1,146 ms
211,616 KB
testcase_19 AC 1,188 ms
212,668 KB
testcase_20 AC 42 ms
53,248 KB
testcase_21 AC 44 ms
53,504 KB
testcase_22 AC 1,224 ms
212,796 KB
testcase_23 TLE -
testcase_24 AC 1,600 ms
261,872 KB
testcase_25 TLE -
testcase_26 AC 41 ms
53,632 KB
testcase_27 AC 42 ms
53,120 KB
testcase_28 AC 1,544 ms
262,636 KB
testcase_29 AC 1,941 ms
266,836 KB
testcase_30 AC 1,633 ms
263,772 KB
testcase_31 AC 1,451 ms
258,328 KB
testcase_32 AC 1,663 ms
267,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())

from collections import defaultdict
left = defaultdict(int)
MAX = N ** 2 - 1 + D
for x in range(1, N + 1):
    for y in range(1, N + 1):
        val = x**2 + y**2
        if val > MAX:
            break
        left[x**2 + y**2] += 1
        
right = defaultdict(int)
for w in range(1, N + 1):
    for z in range(1, N + 1):
        val = w**2 - z**2 + D
        if val < 0:
            break
        right[w**2 - z**2 + D] += 1
        
ans = 0
for key, value in left.items():
    if key in right:
        ans += right[key] * value
        
print(ans)
        
        
0