結果

問題 No.258 回転寿司(2)
ユーザー ああいいああいい
提出日時 2021-12-04 20:55:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-07-07 03:49:35
合計ジャッジ時間 5,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
14,848 KB
testcase_01 AC 40 ms
14,976 KB
testcase_02 AC 31 ms
12,416 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 27 ms
11,520 KB
testcase_05 AC 29 ms
11,648 KB
testcase_06 AC 36 ms
13,952 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 28 ms
11,648 KB
testcase_09 AC 27 ms
11,136 KB
testcase_10 AC 25 ms
10,880 KB
testcase_11 AC 26 ms
11,264 KB
testcase_12 AC 27 ms
11,392 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 34 ms
13,568 KB
testcase_15 AC 26 ms
11,136 KB
testcase_16 AC 26 ms
11,264 KB
testcase_17 AC 25 ms
11,136 KB
testcase_18 AC 35 ms
14,208 KB
testcase_19 AC 26 ms
10,880 KB
testcase_20 AC 35 ms
12,544 KB
testcase_21 AC 34 ms
13,696 KB
testcase_22 AC 27 ms
10,880 KB
testcase_23 AC 25 ms
10,880 KB
testcase_24 AC 25 ms
10,752 KB
testcase_25 AC 24 ms
10,880 KB
testcase_26 AC 31 ms
12,416 KB
testcase_27 AC 26 ms
11,136 KB
testcase_28 AC 36 ms
14,720 KB
testcase_29 AC 27 ms
11,264 KB
testcase_30 AC 26 ms
10,752 KB
testcase_31 AC 26 ms
10,880 KB
testcase_32 AC 26 ms
11,008 KB
testcase_33 AC 32 ms
12,928 KB
testcase_34 AC 28 ms
12,032 KB
testcase_35 AC 29 ms
11,904 KB
testcase_36 AC 26 ms
10,880 KB
testcase_37 AC 25 ms
10,880 KB
testcase_38 AC 26 ms
11,136 KB
testcase_39 AC 26 ms
11,264 KB
testcase_40 AC 31 ms
12,416 KB
testcase_41 AC 32 ms
13,056 KB
testcase_42 AC 27 ms
11,008 KB
testcase_43 AC 26 ms
10,880 KB
testcase_44 AC 37 ms
13,440 KB
testcase_45 AC 32 ms
12,544 KB
testcase_46 AC 25 ms
10,880 KB
testcase_47 AC 35 ms
12,544 KB
testcase_48 AC 28 ms
10,880 KB
testcase_49 AC 26 ms
11,008 KB
testcase_50 AC 24 ms
10,880 KB
testcase_51 AC 29 ms
12,032 KB
testcase_52 AC 29 ms
11,776 KB
testcase_53 AC 26 ms
10,880 KB
testcase_54 AC 31 ms
12,416 KB
testcase_55 AC 37 ms
14,848 KB
testcase_56 AC 33 ms
12,672 KB
testcase_57 AC 26 ms
10,880 KB
testcase_58 AC 28 ms
11,904 KB
testcase_59 AC 36 ms
14,080 KB
testcase_60 AC 25 ms
10,880 KB
testcase_61 AC 32 ms
12,928 KB
testcase_62 AC 28 ms
11,136 KB
testcase_63 AC 33 ms
12,288 KB
testcase_64 AC 38 ms
14,720 KB
testcase_65 AC 31 ms
12,416 KB
testcase_66 AC 24 ms
10,880 KB
testcase_67 AC 34 ms
13,312 KB
testcase_68 AC 34 ms
13,440 KB
testcase_69 AC 31 ms
12,800 KB
testcase_70 AC 26 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[0] * 2 for _ in range(N)]
dplist = [[[],[]] for _ in range(N)]
dp[0][1] = V[0]
dplist[0][1].append(1)
for i in range(1,N):
    if dp[i-1][0] < dp[i-1][1]:
        dp[i][0] = dp[i-1][1]
        #dplist[i][0] = copy(dplist[i-1][1])
        dplist[i][0] = dplist[i-1][1].copy()
    else:
        dp[i][0] = dp[i-1][0]
        #dplist[i][0] = copy(dplist[i-1][0])
        dplist[i][0] = dplist[i-1][0].copy()
    dp[i][1] = dp[i-1][0] + V[i]
    #dplist[i][1] = copy(dplist[i-1][0])
    dplist[i][1] = dplist[i-1][0].copy()
    dplist[i][1].append(i+1)
if dp[N-1][0] > dp[N-1][1]:
    print(dp[N-1][0])
    for i in dplist[N-1][0]:
        print(i,end=' ')
else:
    print(dp[N-1][1])
    for i in dplist[N-1][1]:
        print(i,end=' ')
print()
0