結果

問題 No.1950 片道きゃっちぼーる
ユーザー noriocnorioc
提出日時 2024-07-13 19:37:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 459 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 405,072 KB
最終ジャッジ日時 2024-07-13 19:37:50
合計ジャッジ時間 15,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,244 KB
testcase_01 AC 38 ms
51,740 KB
testcase_02 AC 37 ms
53,464 KB
testcase_03 AC 1,253 ms
316,212 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,548 KB
testcase_06 AC 644 ms
313,588 KB
testcase_07 AC 274 ms
166,108 KB
testcase_08 AC 327 ms
165,396 KB
testcase_09 WA -
testcase_10 AC 445 ms
165,584 KB
testcase_11 AC 334 ms
165,600 KB
testcase_12 AC 342 ms
165,488 KB
testcase_13 AC 411 ms
141,568 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 842 ms
242,172 KB
testcase_17 AC 39 ms
52,200 KB
testcase_18 AC 393 ms
163,828 KB
testcase_19 WA -
testcase_20 AC 322 ms
165,564 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 6)

N = int(input())
X = list(map(int, input().split()))
A = list(map(int, input().split()))

m = {x: a for x, a in zip(X, A)}

memo = {}
def f(x: int, used) -> int:
    if x in memo: return memo[x]
    if x not in m: return 0
    if x in used: return 0
    used.add(x)

    d = m[x]
    res = max(f(x-d, used) - d, f(x+d, used) + d)
    memo[x] = res
    return res


for x in X:
    used = set()
    print(f(x, used))
0