結果
問題 | No.258 回転寿司(2) |
ユーザー | rlangevin |
提出日時 | 2023-09-28 12:32:51 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 394 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,208 KB |
実行使用メモリ | 55,324 KB |
最終ジャッジ日時 | 2024-07-21 07:11:38 |
合計ジャッジ時間 | 5,889 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,992 KB |
testcase_01 | WA | - |
testcase_02 | AC | 36 ms
52,736 KB |
testcase_03 | AC | 35 ms
51,712 KB |
testcase_04 | AC | 36 ms
52,608 KB |
testcase_05 | WA | - |
testcase_06 | AC | 37 ms
53,376 KB |
testcase_07 | AC | 35 ms
52,224 KB |
testcase_08 | WA | - |
testcase_09 | AC | 40 ms
52,736 KB |
testcase_10 | AC | 35 ms
51,968 KB |
testcase_11 | AC | 36 ms
52,352 KB |
testcase_12 | WA | - |
testcase_13 | AC | 36 ms
52,096 KB |
testcase_14 | AC | 38 ms
53,120 KB |
testcase_15 | WA | - |
testcase_16 | AC | 40 ms
51,840 KB |
testcase_17 | AC | 37 ms
52,224 KB |
testcase_18 | AC | 39 ms
53,376 KB |
testcase_19 | WA | - |
testcase_20 | AC | 38 ms
52,864 KB |
testcase_21 | WA | - |
testcase_22 | AC | 36 ms
51,968 KB |
testcase_23 | AC | 36 ms
52,096 KB |
testcase_24 | AC | 35 ms
51,968 KB |
testcase_25 | AC | 35 ms
52,096 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 35 ms
52,096 KB |
testcase_47 | AC | 40 ms
52,352 KB |
testcase_48 | AC | 36 ms
52,224 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 35 ms
52,352 KB |
testcase_54 | AC | 36 ms
52,992 KB |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | WA | - |
testcase_67 | WA | - |
testcase_68 | WA | - |
testcase_69 | WA | - |
testcase_70 | WA | - |
ソースコード
N = int(input()) V = list(map(int, input().split())) inf = 10 ** 18 dp0 = [-inf] * (N + 1) dp1 = [-inf] * (N + 1) dp0[0] = 0 for i in range(N): dp1[i + 1] = dp0[i] + V[i] dp0[i + 1] = max(dp0[i], dp1[i]) now = dp1[-1] print(now) ans = [] for i in range(N, 0, -1): if now == dp1[i] and now == dp0[i - 1] + V[i - 1]: ans.append(i) now -= V[i - 1] print(*sorted(ans))