結果

問題 No.107 モンスター
ユーザー rlangevinrlangevin
提出日時 2023-10-17 19:41:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,864 KB
実行使用メモリ 70,144 KB
最終ジャッジ日時 2024-09-17 16:54:31
合計ジャッジ時間 2,598 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 36 ms
51,712 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 36 ms
51,584 KB
testcase_12 AC 36 ms
52,096 KB
testcase_13 AC 59 ms
66,816 KB
testcase_14 AC 61 ms
66,176 KB
testcase_15 AC 59 ms
66,304 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 60 ms
67,328 KB
testcase_18 AC 59 ms
66,176 KB
testcase_19 AC 59 ms
67,072 KB
testcase_20 AC 63 ms
67,200 KB
testcase_21 AC 66 ms
66,688 KB
testcase_22 AC 69 ms
67,840 KB
testcase_23 AC 71 ms
68,608 KB
testcase_24 AC 74 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N2 = 1 << N
dp = [0] * N2
dp[0] = 100
for s in range(N2):
    if dp[s] == 0:
        continue
    ma = 100
    for i in range(N):
        if ((s >> i) & 1) and D[i] < 0:
            ma += 100
    for i in range(N):
        if (s >> i) & 1:
            continue
        nex = s | (1 << i)
        dp[nex] = max(dp[nex], min(ma, dp[s] + D[i]))

print(dp[-1])
0