結果

問題 No.107 モンスター
ユーザー roarisroaris
提出日時 2019-12-04 12:32:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 5,000 ms
コード長 556 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 77,732 KB
最終ジャッジ日時 2024-05-07 12:38:27
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,068 KB
testcase_01 AC 37 ms
52,568 KB
testcase_02 AC 34 ms
52,068 KB
testcase_03 AC 34 ms
52,728 KB
testcase_04 AC 34 ms
52,556 KB
testcase_05 AC 34 ms
52,216 KB
testcase_06 AC 35 ms
52,344 KB
testcase_07 AC 33 ms
52,068 KB
testcase_08 AC 34 ms
53,088 KB
testcase_09 AC 34 ms
53,608 KB
testcase_10 AC 37 ms
52,772 KB
testcase_11 AC 35 ms
52,984 KB
testcase_12 AC 36 ms
52,336 KB
testcase_13 AC 65 ms
72,156 KB
testcase_14 AC 70 ms
73,172 KB
testcase_15 AC 69 ms
73,120 KB
testcase_16 AC 33 ms
52,964 KB
testcase_17 AC 76 ms
76,420 KB
testcase_18 AC 94 ms
77,136 KB
testcase_19 AC 93 ms
77,008 KB
testcase_20 AC 63 ms
72,756 KB
testcase_21 AC 76 ms
76,668 KB
testcase_22 AC 88 ms
76,892 KB
testcase_23 AC 94 ms
77,732 KB
testcase_24 AC 107 ms
77,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
D = list(map(int, input().split()))
dp = [-float('inf')]*(1<<N)
dp[0] = 100

for i in range(1<<N):
    max_hp = 100
    
    for j in range(N):
        if (i>>j)&1 and D[j]<0:
            max_hp += 100
            
    for j in range(N):
        if not (i>>j)&1:
            if D[j]>0:
                dp[i|(1<<j)] = max(dp[i|(1<<j)], min(dp[i]+D[j], max_hp))
            else:
                if dp[i]+D[j]>0:
                    dp[i|(1<<j)] = max(dp[i|(1<<j)], dp[i]+D[j])

if dp[-1]==-float('inf'):
    print(0)
else:
    print(dp[-1])
0