結果

問題 No.45 回転寿司
ユーザー shokayamorishokayamori
提出日時 2020-11-29 18:31:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 537 ms / 5,000 ms
コード長 289 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,436 KB
最終ジャッジ日時 2024-09-13 02:02:51
合計ジャッジ時間 20,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
44,044 KB
testcase_01 AC 532 ms
44,428 KB
testcase_02 AC 524 ms
43,788 KB
testcase_03 AC 526 ms
43,796 KB
testcase_04 AC 524 ms
44,312 KB
testcase_05 AC 523 ms
43,924 KB
testcase_06 AC 522 ms
44,172 KB
testcase_07 AC 530 ms
44,308 KB
testcase_08 AC 524 ms
43,916 KB
testcase_09 AC 524 ms
44,056 KB
testcase_10 AC 522 ms
44,176 KB
testcase_11 AC 522 ms
43,916 KB
testcase_12 AC 521 ms
44,172 KB
testcase_13 AC 520 ms
43,796 KB
testcase_14 AC 537 ms
44,052 KB
testcase_15 AC 513 ms
44,436 KB
testcase_16 AC 517 ms
43,916 KB
testcase_17 AC 518 ms
43,924 KB
testcase_18 AC 519 ms
43,924 KB
testcase_19 AC 520 ms
44,044 KB
testcase_20 AC 517 ms
43,924 KB
testcase_21 AC 524 ms
43,920 KB
testcase_22 AC 521 ms
43,788 KB
testcase_23 AC 521 ms
43,916 KB
testcase_24 AC 518 ms
43,900 KB
testcase_25 AC 518 ms
44,052 KB
testcase_26 AC 517 ms
43,884 KB
testcase_27 AC 526 ms
44,308 KB
testcase_28 AC 531 ms
44,300 KB
testcase_29 AC 533 ms
44,176 KB
testcase_30 AC 529 ms
43,900 KB
testcase_31 AC 529 ms
44,180 KB
testcase_32 AC 524 ms
43,792 KB
testcase_33 AC 535 ms
43,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N = int(input())
Vs = list(map(int, input().split()))

dp = np.full_like(Vs, -1)
for i in range(len(Vs)):
    if i == 0:
        dp[i] = Vs[i]
    elif i == 1:
        dp[i] = max(dp[i-1], Vs[i])
    else:
        dp[i] = max(dp[i-1], dp[i-2] + Vs[i]) 

print(dp[N-1])
0