結果

問題 No.1950 片道きゃっちぼーる
ユーザー noriocnorioc
提出日時 2024-07-15 07:59:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 403,020 KB
最終ジャッジ日時 2024-07-15 07:59:20
合計ジャッジ時間 14,788 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,252 KB
testcase_01 AC 36 ms
53,556 KB
testcase_02 AC 36 ms
52,876 KB
testcase_03 AC 1,093 ms
310,636 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,520 KB
testcase_06 AC 630 ms
304,072 KB
testcase_07 AC 245 ms
166,516 KB
testcase_08 AC 341 ms
166,020 KB
testcase_09 WA -
testcase_10 AC 338 ms
165,472 KB
testcase_11 AC 323 ms
165,712 KB
testcase_12 AC 318 ms
165,296 KB
testcase_13 AC 349 ms
141,356 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 840 ms
237,888 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 349 ms
164,012 KB
testcase_19 WA -
testcase_20 AC 349 ms
165,888 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 x
    if x in used: return x
    used.add(x)

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


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