結果

問題 No.107 モンスター
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-13 16:41:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,820 KB
実行使用メモリ 74,376 KB
最終ジャッジ日時 2024-09-18 23:54:34
合計ジャッジ時間 2,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,580 KB
testcase_01 AC 41 ms
53,292 KB
testcase_02 AC 39 ms
52,924 KB
testcase_03 AC 40 ms
53,016 KB
testcase_04 AC 39 ms
53,556 KB
testcase_05 AC 40 ms
52,412 KB
testcase_06 AC 39 ms
51,808 KB
testcase_07 AC 41 ms
52,764 KB
testcase_08 AC 39 ms
52,416 KB
testcase_09 AC 40 ms
54,172 KB
testcase_10 AC 39 ms
52,428 KB
testcase_11 AC 40 ms
52,452 KB
testcase_12 AC 39 ms
52,508 KB
testcase_13 AC 66 ms
68,540 KB
testcase_14 AC 67 ms
68,508 KB
testcase_15 AC 66 ms
68,116 KB
testcase_16 AC 39 ms
53,748 KB
testcase_17 AC 71 ms
71,072 KB
testcase_18 AC 66 ms
69,692 KB
testcase_19 AC 66 ms
69,296 KB
testcase_20 AC 67 ms
68,880 KB
testcase_21 AC 71 ms
70,332 KB
testcase_22 AC 77 ms
72,448 KB
testcase_23 AC 74 ms
71,800 KB
testcase_24 AC 78 ms
74,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(1<<n):
    if dp[i] < 0:
        continue

    num = 0
    for j in range(n):
        if i >> j & 1 and D[j] < 0:
            num += 1
    for j in range(n):
        if i >> j & 1:
            continue
        d = D[j]
        
        if d < 0:
            if d+dp[i] > 0:
                dp[i|1<<j] = max(dp[i|1<<j],dp[i]+d)
        else:
            hp = min(dp[i]+d,100*(num+1))
            dp[i|1<<j] = max(dp[i|1<<j],hp)
print(max(dp[-1],0))
0