結果

問題 No.107 モンスター
ユーザー ckawatakckawatak
提出日時 2019-04-30 20:30:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 556 bytes
コンパイル時間 672 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-06-10 01:38:44
合計ジャッジ時間 7,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 AC 33 ms
52,224 KB
testcase_04 AC 32 ms
52,096 KB
testcase_05 AC 33 ms
52,736 KB
testcase_06 AC 33 ms
51,712 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 35 ms
52,224 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 35 ms
52,736 KB
testcase_12 AC 42 ms
59,648 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations

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

patterns = []
for i in range(N):
    patterns.append(i)

answer = 0
for pattern in permutations(patterns):
    level = 100
    max_level = 100
    for p in pattern:
        if 0 < D[p]:
            level = min(max_level, level + D[p])
        elif D[p] < 0:
            level = level + D[p]
            max_level = max_level + 100
            if level <= 0:
                break
    answer = max(answer, level)

if answer <= 0:
    print(0)
else:
    print(answer)
0