結果

問題 No.258 回転寿司(2)
ユーザー roiti46roiti46
提出日時 2015-07-31 22:38:50
言語 Python2
(2.7.18)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-06 18:44:30
合計ジャッジ時間 14,201 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 446 ms
10,880 KB
testcase_01 AC 463 ms
11,136 KB
testcase_02 AC 192 ms
8,448 KB
testcase_03 AC 13 ms
6,400 KB
testcase_04 AC 94 ms
7,424 KB
testcase_05 AC 113 ms
7,552 KB
testcase_06 AC 345 ms
10,112 KB
testcase_07 AC 49 ms
6,784 KB
testcase_08 AC 106 ms
7,552 KB
testcase_09 AC 54 ms
6,912 KB
testcase_10 AC 19 ms
6,528 KB
testcase_11 AC 65 ms
7,040 KB
testcase_12 AC 94 ms
7,296 KB
testcase_13 AC 42 ms
6,912 KB
testcase_14 AC 316 ms
9,728 KB
testcase_15 AC 54 ms
6,912 KB
testcase_16 AC 51 ms
6,912 KB
testcase_17 AC 49 ms
6,656 KB
testcase_18 AC 386 ms
10,368 KB
testcase_19 AC 13 ms
6,272 KB
testcase_20 AC 219 ms
8,704 KB
testcase_21 AC 328 ms
9,728 KB
testcase_22 AC 12 ms
6,400 KB
testcase_23 AC 12 ms
6,400 KB
testcase_24 AC 12 ms
6,272 KB
testcase_25 AC 12 ms
6,400 KB
testcase_26 AC 191 ms
8,320 KB
testcase_27 AC 56 ms
7,040 KB
testcase_28 AC 447 ms
10,880 KB
testcase_29 AC 77 ms
7,168 KB
testcase_30 AC 20 ms
6,528 KB
testcase_31 AC 19 ms
6,400 KB
testcase_32 AC 57 ms
7,040 KB
testcase_33 AC 259 ms
9,088 KB
testcase_34 AC 153 ms
8,064 KB
testcase_35 AC 129 ms
7,680 KB
testcase_36 AC 23 ms
6,400 KB
testcase_37 AC 19 ms
6,400 KB
testcase_38 AC 69 ms
7,168 KB
testcase_39 AC 64 ms
6,912 KB
testcase_40 AC 189 ms
8,320 KB
testcase_41 AC 267 ms
9,088 KB
testcase_42 AC 53 ms
6,816 KB
testcase_43 AC 32 ms
6,528 KB
testcase_44 AC 315 ms
9,728 KB
testcase_45 AC 209 ms
8,576 KB
testcase_46 AC 13 ms
6,272 KB
testcase_47 AC 218 ms
8,576 KB
testcase_48 AC 28 ms
6,528 KB
testcase_49 AC 53 ms
6,912 KB
testcase_50 AC 13 ms
6,400 KB
testcase_51 AC 164 ms
8,192 KB
testcase_52 AC 133 ms
7,936 KB
testcase_53 AC 21 ms
6,528 KB
testcase_54 AC 205 ms
8,576 KB
testcase_55 AC 443 ms
11,008 KB
testcase_56 AC 208 ms
8,576 KB
testcase_57 AC 28 ms
6,400 KB
testcase_58 AC 127 ms
7,680 KB
testcase_59 AC 383 ms
10,240 KB
testcase_60 AC 16 ms
6,400 KB
testcase_61 AC 258 ms
8,960 KB
testcase_62 AC 60 ms
6,912 KB
testcase_63 AC 187 ms
8,320 KB
testcase_64 AC 441 ms
10,880 KB
testcase_65 AC 197 ms
8,448 KB
testcase_66 AC 13 ms
6,400 KB
testcase_67 AC 294 ms
9,344 KB
testcase_68 AC 304 ms
9,600 KB
testcase_69 AC 237 ms
8,960 KB
testcase_70 AC 48 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
N = int(raw_input())
V = map(int, raw_input().split())

dp = [[[0, []], [0, []]] for i in xrange(N)]
dp[0][0] = [V[0], [1]]
for i in xrange(1, N):
    dp[i][0] = copy.deepcopy(dp[i - 1][1])
    dp[i][0][0] += V[i]
    dp[i][0][1].append(i + 1)

    if dp[i - 1][0][0] >= dp[i - 1][1][0]:
        dp[i][1] = copy.deepcopy(dp[i - 1][0])
    else:
        dp[i][1] = copy.deepcopy(dp[i - 1][1])

if dp[N - 1][0][0] >= dp[N - 1][1][0]:
    print dp[N - 1][0][0]
    print " ".join(map(str, dp[N - 1][0][1]))
else:
    print dp[N - 1][1][0]
    print " ".join(map(str, dp[N - 1][1][1]))
    
0