結果

問題 No.45 回転寿司
ユーザー convexineqconvexineq
提出日時 2020-12-01 07:55:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 275 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 53,940 KB
最終ジャッジ日時 2024-09-13 02:49:03
合計ジャッジ時間 2,780 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 36 ms
53,404 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 40 ms
53,592 KB
testcase_04 AC 38 ms
53,880 KB
testcase_05 AC 36 ms
52,540 KB
testcase_06 AC 36 ms
52,992 KB
testcase_07 AC 37 ms
53,752 KB
testcase_08 AC 37 ms
52,576 KB
testcase_09 AC 39 ms
52,704 KB
testcase_10 AC 36 ms
53,292 KB
testcase_11 AC 36 ms
53,620 KB
testcase_12 AC 37 ms
53,532 KB
testcase_13 AC 37 ms
52,336 KB
testcase_14 AC 36 ms
52,076 KB
testcase_15 AC 37 ms
52,708 KB
testcase_16 AC 37 ms
53,084 KB
testcase_17 AC 36 ms
53,448 KB
testcase_18 AC 36 ms
53,148 KB
testcase_19 AC 37 ms
52,912 KB
testcase_20 AC 36 ms
52,280 KB
testcase_21 AC 36 ms
53,752 KB
testcase_22 AC 37 ms
53,256 KB
testcase_23 AC 36 ms
53,208 KB
testcase_24 AC 36 ms
53,152 KB
testcase_25 AC 36 ms
52,540 KB
testcase_26 AC 36 ms
52,620 KB
testcase_27 AC 36 ms
52,620 KB
testcase_28 AC 37 ms
52,204 KB
testcase_29 AC 38 ms
53,940 KB
testcase_30 AC 37 ms
53,692 KB
testcase_31 AC 37 ms
52,068 KB
testcase_32 AC 36 ms
52,000 KB
testcase_33 AC 37 ms
53,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
read = sys.stdin.read
readline = sys.stdin.readline

#n = int(readline())
n, = map(int,readline().split())
*a, = map(int,readline().split())

dp0 = dp1 = 0
for i in a:
    dp0, dp1 = max(dp0,dp1),max(dp1,dp0+i)
print(max(dp0,dp1))
0