結果

問題 No.258 回転寿司(2)
ユーザー convexineqconvexineq
提出日時 2021-05-06 04:40:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 63,016 KB
最終ジャッジ日時 2024-09-13 20:46:13
合計ジャッジ時間 6,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
62,132 KB
testcase_01 AC 48 ms
62,672 KB
testcase_02 AC 44 ms
59,736 KB
testcase_03 AC 39 ms
53,568 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 40 ms
53,216 KB
testcase_06 AC 46 ms
62,108 KB
testcase_07 AC 40 ms
53,964 KB
testcase_08 AC 40 ms
54,408 KB
testcase_09 AC 39 ms
53,100 KB
testcase_10 AC 39 ms
52,496 KB
testcase_11 AC 40 ms
52,888 KB
testcase_12 AC 41 ms
53,336 KB
testcase_13 AC 39 ms
54,300 KB
testcase_14 AC 47 ms
60,640 KB
testcase_15 AC 38 ms
53,496 KB
testcase_16 AC 39 ms
53,364 KB
testcase_17 AC 39 ms
52,832 KB
testcase_18 AC 47 ms
61,668 KB
testcase_19 AC 38 ms
52,508 KB
testcase_20 AC 45 ms
60,472 KB
testcase_21 AC 47 ms
61,168 KB
testcase_22 AC 37 ms
53,048 KB
testcase_23 AC 37 ms
53,152 KB
testcase_24 AC 37 ms
52,444 KB
testcase_25 AC 38 ms
52,488 KB
testcase_26 AC 45 ms
60,564 KB
testcase_27 AC 38 ms
53,288 KB
testcase_28 AC 46 ms
61,644 KB
testcase_29 AC 39 ms
53,500 KB
testcase_30 AC 39 ms
52,336 KB
testcase_31 AC 39 ms
53,808 KB
testcase_32 AC 39 ms
54,336 KB
testcase_33 AC 45 ms
60,692 KB
testcase_34 AC 44 ms
61,108 KB
testcase_35 AC 41 ms
53,156 KB
testcase_36 AC 39 ms
52,748 KB
testcase_37 AC 39 ms
54,148 KB
testcase_38 AC 40 ms
54,036 KB
testcase_39 AC 40 ms
53,996 KB
testcase_40 AC 45 ms
60,596 KB
testcase_41 AC 47 ms
61,016 KB
testcase_42 AC 39 ms
53,484 KB
testcase_43 AC 39 ms
52,964 KB
testcase_44 AC 46 ms
61,780 KB
testcase_45 AC 45 ms
60,596 KB
testcase_46 AC 38 ms
52,080 KB
testcase_47 AC 45 ms
60,972 KB
testcase_48 AC 39 ms
52,960 KB
testcase_49 AC 40 ms
53,780 KB
testcase_50 AC 38 ms
52,868 KB
testcase_51 AC 45 ms
60,172 KB
testcase_52 AC 41 ms
54,188 KB
testcase_53 AC 38 ms
52,600 KB
testcase_54 AC 44 ms
60,332 KB
testcase_55 AC 47 ms
61,772 KB
testcase_56 AC 45 ms
60,244 KB
testcase_57 AC 38 ms
52,964 KB
testcase_58 AC 40 ms
55,256 KB
testcase_59 AC 47 ms
62,668 KB
testcase_60 AC 39 ms
52,596 KB
testcase_61 AC 47 ms
61,628 KB
testcase_62 AC 39 ms
53,076 KB
testcase_63 AC 45 ms
60,376 KB
testcase_64 AC 48 ms
62,812 KB
testcase_65 AC 45 ms
61,360 KB
testcase_66 AC 38 ms
52,760 KB
testcase_67 AC 47 ms
61,024 KB
testcase_68 AC 48 ms
63,016 KB
testcase_69 AC 46 ms
61,708 KB
testcase_70 AC 40 ms
52,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
par = [-1]*n
dp = [0]*n
for i,ai in enumerate(a):
    if ai > dp[i]:
        dp[i] = ai
        par[i] = -1
    for j in range(2,4):
        if i+j >= n: continue
        if dp[i+j] < dp[i] + a[i+j]:
            dp[i+j] = dp[i] + a[i+j]
            par[i+j] = i
idx = max(range(n), key=lambda i:dp[i])
print(dp[idx])
ans = []
while idx >= 0:
    ans.append(idx+1)
    idx = par[idx]
print(*ans[::-1])
0