結果

問題 No.2999 Long Long Friedrice
ユーザー tassei903tassei903
提出日時 2024-12-26 16:34:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 675 bytes
コンパイル時間 1,268 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 99,712 KB
最終ジャッジ日時 2024-12-26 16:34:34
合計ジャッジ時間 5,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
77,824 KB
testcase_01 AC 76 ms
77,824 KB
testcase_02 AC 75 ms
77,568 KB
testcase_03 AC 83 ms
80,512 KB
testcase_04 AC 85 ms
80,896 KB
testcase_05 AC 82 ms
81,664 KB
testcase_06 AC 80 ms
80,896 KB
testcase_07 AC 133 ms
99,456 KB
testcase_08 AC 114 ms
99,712 KB
testcase_09 AC 111 ms
99,328 KB
testcase_10 AC 73 ms
78,208 KB
testcase_11 AC 71 ms
77,696 KB
testcase_12 AC 69 ms
78,080 KB
testcase_13 AC 70 ms
78,080 KB
testcase_14 AC 78 ms
79,616 KB
testcase_15 AC 72 ms
78,208 KB
testcase_16 AC 82 ms
78,080 KB
testcase_17 AC 71 ms
78,976 KB
testcase_18 AC 68 ms
77,568 KB
testcase_19 AC 70 ms
77,440 KB
testcase_20 AC 73 ms
77,952 KB
testcase_21 AC 74 ms
77,696 KB
testcase_22 AC 73 ms
77,824 KB
testcase_23 AC 74 ms
78,080 KB
testcase_24 AC 69 ms
77,952 KB
testcase_25 AC 75 ms
77,696 KB
testcase_26 AC 74 ms
77,824 KB
testcase_27 AC 71 ms
77,568 KB
testcase_28 AC 69 ms
78,080 KB
testcase_29 AC 75 ms
77,824 KB
testcase_30 AC 75 ms
77,824 KB
testcase_31 AC 70 ms
77,952 KB
testcase_32 AC 72 ms
78,080 KB
testcase_33 AC 79 ms
78,848 KB
testcase_34 AC 91 ms
77,952 KB
testcase_35 AC 70 ms
77,824 KB
testcase_36 AC 71 ms
77,824 KB
testcase_37 AC 72 ms
77,824 KB
testcase_38 AC 72 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

m = 5 * 10 ** 5 + 10
n = ni()
a = na() 
b = na()

f = [[] for i in range(m)]
for i in range(n):
    f[a[i]].append(b[i] + a[i])
dp = [i for i in range(m)]

for i in range(m-1, 0, -1):
    for j in f[i]:
        if j >= m:
            dp[i] = max(dp[i], j)
        else:
            dp[i] = max(dp[i], dp[j])

print(dp[1])
0