結果

問題 No.107 モンスター
ユーザー colognecologne
提出日時 2022-02-02 16:55:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 587 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-06-11 09:29:17
合計ジャッジ時間 2,398 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 33 ms
51,968 KB
testcase_05 AC 34 ms
51,712 KB
testcase_06 AC 33 ms
51,840 KB
testcase_07 AC 33 ms
51,840 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 33 ms
51,840 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 34 ms
51,712 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 58 ms
67,200 KB
testcase_14 AC 61 ms
68,608 KB
testcase_15 AC 63 ms
68,352 KB
testcase_16 AC 35 ms
51,712 KB
testcase_17 AC 59 ms
67,328 KB
testcase_18 AC 59 ms
66,816 KB
testcase_19 AC 60 ms
67,200 KB
testcase_20 AC 62 ms
68,096 KB
testcase_21 AC 63 ms
68,480 KB
testcase_22 AC 65 ms
69,760 KB
testcase_23 AC 70 ms
71,040 KB
testcase_24 AC 70 ms
71,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    N = int(input())
    *D, = map(int, input().split())

    DP = [0]*(1 << N)

    DP[0] = 100
    for i in range(0, 1 << N):
        if DP[i] == 0:
            continue

        mhp = 100
        for j in range(N):
            if D[j] < 0 and i & (1 << j):
                mhp += 100

        for j in range(N):
            if i & (1 << j) == 0:
                DP[i | (1 << j)] = max(
                    DP[i | (1 << j)], min(mhp, DP[i] + D[j]))

    print(DP[-1])


if __name__ == '__main__':
    main()
0