結果

問題 No.2999 Long Long Friedrice
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-12-24 00:02:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 1,225 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 112,896 KB
最終ジャッジ日時 2024-12-24 00:02:15
合計ジャッジ時間 6,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
112,412 KB
testcase_01 AC 122 ms
112,384 KB
testcase_02 AC 95 ms
112,500 KB
testcase_03 AC 108 ms
112,280 KB
testcase_04 AC 105 ms
111,936 KB
testcase_05 AC 97 ms
111,540 KB
testcase_06 AC 98 ms
111,632 KB
testcase_07 AC 96 ms
111,744 KB
testcase_08 AC 97 ms
111,652 KB
testcase_09 AC 97 ms
111,744 KB
testcase_10 AC 96 ms
112,040 KB
testcase_11 AC 92 ms
112,348 KB
testcase_12 AC 93 ms
112,384 KB
testcase_13 AC 94 ms
112,304 KB
testcase_14 AC 94 ms
112,000 KB
testcase_15 AC 93 ms
112,276 KB
testcase_16 AC 95 ms
112,012 KB
testcase_17 AC 96 ms
111,784 KB
testcase_18 AC 105 ms
112,384 KB
testcase_19 AC 94 ms
112,536 KB
testcase_20 AC 95 ms
112,832 KB
testcase_21 AC 93 ms
112,696 KB
testcase_22 AC 94 ms
112,484 KB
testcase_23 AC 92 ms
112,776 KB
testcase_24 AC 95 ms
112,512 KB
testcase_25 AC 91 ms
112,436 KB
testcase_26 AC 92 ms
112,640 KB
testcase_27 AC 92 ms
112,760 KB
testcase_28 AC 95 ms
112,524 KB
testcase_29 AC 95 ms
112,512 KB
testcase_30 AC 94 ms
112,548 KB
testcase_31 AC 95 ms
112,512 KB
testcase_32 AC 92 ms
112,520 KB
testcase_33 AC 103 ms
112,768 KB
testcase_34 AC 89 ms
112,548 KB
testcase_35 AC 93 ms
112,508 KB
testcase_36 AC 94 ms
112,768 KB
testcase_37 AC 103 ms
112,896 KB
testcase_38 AC 93 ms
112,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
dp=[0]*1000005
dp[1]=1
use=[[] for i in range(1000005)]
for i in range(N):
	use[A[i]].append(B[i])
ans=0
for i in range(1000005):
	if dp[i]==0:
		continue
	ans=i
	for j in use[i]:
		dp[i+j]=1
print(ans)
0