結果

問題 No.258 回転寿司(2)
ユーザー kept1994kept1994
提出日時 2022-05-07 02:01:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 62,128 KB
最終ジャッジ日時 2024-07-06 05:49:54
合計ジャッジ時間 5,936 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,392 KB
testcase_01 AC 40 ms
62,128 KB
testcase_02 AC 37 ms
59,936 KB
testcase_03 AC 33 ms
52,992 KB
testcase_04 AC 36 ms
54,744 KB
testcase_05 AC 37 ms
54,336 KB
testcase_06 AC 45 ms
60,384 KB
testcase_07 AC 33 ms
53,884 KB
testcase_08 AC 35 ms
54,264 KB
testcase_09 AC 34 ms
53,832 KB
testcase_10 AC 34 ms
52,776 KB
testcase_11 AC 34 ms
54,156 KB
testcase_12 AC 33 ms
54,028 KB
testcase_13 AC 33 ms
53,088 KB
testcase_14 AC 38 ms
61,648 KB
testcase_15 AC 34 ms
52,708 KB
testcase_16 AC 34 ms
53,408 KB
testcase_17 AC 37 ms
52,996 KB
testcase_18 AC 39 ms
61,228 KB
testcase_19 AC 33 ms
53,244 KB
testcase_20 AC 36 ms
59,060 KB
testcase_21 AC 40 ms
61,376 KB
testcase_22 AC 35 ms
53,192 KB
testcase_23 AC 34 ms
52,728 KB
testcase_24 AC 35 ms
52,376 KB
testcase_25 AC 32 ms
53,224 KB
testcase_26 AC 35 ms
59,372 KB
testcase_27 AC 33 ms
53,560 KB
testcase_28 AC 40 ms
61,756 KB
testcase_29 AC 35 ms
53,584 KB
testcase_30 AC 37 ms
53,648 KB
testcase_31 AC 33 ms
52,668 KB
testcase_32 AC 35 ms
53,632 KB
testcase_33 AC 38 ms
61,136 KB
testcase_34 AC 36 ms
58,936 KB
testcase_35 AC 33 ms
54,884 KB
testcase_36 AC 31 ms
52,388 KB
testcase_37 AC 31 ms
52,788 KB
testcase_38 AC 32 ms
53,428 KB
testcase_39 AC 33 ms
53,096 KB
testcase_40 AC 37 ms
59,444 KB
testcase_41 AC 38 ms
61,556 KB
testcase_42 AC 33 ms
54,168 KB
testcase_43 AC 31 ms
53,288 KB
testcase_44 AC 39 ms
60,624 KB
testcase_45 AC 38 ms
60,620 KB
testcase_46 AC 32 ms
53,224 KB
testcase_47 AC 37 ms
60,724 KB
testcase_48 AC 32 ms
53,124 KB
testcase_49 AC 32 ms
53,088 KB
testcase_50 AC 32 ms
52,552 KB
testcase_51 AC 35 ms
59,116 KB
testcase_52 AC 33 ms
53,232 KB
testcase_53 AC 33 ms
52,940 KB
testcase_54 AC 38 ms
60,564 KB
testcase_55 AC 40 ms
60,628 KB
testcase_56 AC 40 ms
59,844 KB
testcase_57 AC 33 ms
53,432 KB
testcase_58 AC 34 ms
53,804 KB
testcase_59 AC 40 ms
61,144 KB
testcase_60 AC 36 ms
52,504 KB
testcase_61 AC 40 ms
60,328 KB
testcase_62 AC 35 ms
52,536 KB
testcase_63 AC 39 ms
59,632 KB
testcase_64 AC 40 ms
61,160 KB
testcase_65 AC 40 ms
59,200 KB
testcase_66 AC 34 ms
53,112 KB
testcase_67 AC 40 ms
60,200 KB
testcase_68 AC 39 ms
60,808 KB
testcase_69 AC 37 ms
59,532 KB
testcase_70 AC 33 ms
54,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
MOD = 998244353
def main():
    N = int(input())
    A = list(map(int, input().split()))
    dp = [[0 for _ in range(2)] for _ in range(N + 1)]
    for i in range(N):
        dp[i + 1][0] = max(dp[i])
        dp[i + 1][1] = dp[i][0] + A[i]
    now = max(dp[-1])
    print(now)
    ans = []
    for i in range(N + 1)[::-1]:
        if now == 0:
            break
        if dp[i][1] == now:
            ans.append(i)
            now -= A[i - 1]
    print(*ans[::-1], sep= " ")
    return

if __name__ == '__main__':
    main()
0