結果

問題 No.107 モンスター
ユーザー SI1000-githubSI1000-github
提出日時 2022-10-25 14:58:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 1,083 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 77,656 KB
最終ジャッジ日時 2024-07-03 13:51:06
合計ジャッジ時間 2,770 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,588 KB
testcase_01 AC 40 ms
52,852 KB
testcase_02 AC 38 ms
54,132 KB
testcase_03 AC 39 ms
53,204 KB
testcase_04 AC 38 ms
54,072 KB
testcase_05 AC 38 ms
53,712 KB
testcase_06 AC 38 ms
53,120 KB
testcase_07 AC 37 ms
52,276 KB
testcase_08 AC 38 ms
52,192 KB
testcase_09 AC 38 ms
52,804 KB
testcase_10 AC 38 ms
53,572 KB
testcase_11 AC 39 ms
53,056 KB
testcase_12 AC 39 ms
52,648 KB
testcase_13 AC 78 ms
73,868 KB
testcase_14 AC 89 ms
77,032 KB
testcase_15 AC 89 ms
76,920 KB
testcase_16 AC 39 ms
54,120 KB
testcase_17 AC 88 ms
76,776 KB
testcase_18 AC 116 ms
77,148 KB
testcase_19 AC 114 ms
77,128 KB
testcase_20 AC 78 ms
73,888 KB
testcase_21 AC 90 ms
76,848 KB
testcase_22 AC 107 ms
77,224 KB
testcase_23 AC 114 ms
77,436 KB
testcase_24 AC 127 ms
77,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
# -*- coding: utf-8 -*-

# import
from sys import stdin, setrecursionlimit
setrecursionlimit(10**8)

def int_map():
    return map(int,input().split())

def int_list():
    return list(map(int,input().split()))

def int_mtx(N):
    x = [list(map(int, stdin.readline().split())) for _ in range(N)]
    return x

def str_mtx(N):
    x = [list(stdin.readline()[:-1]) for _ in range(N)]
    return x

def print_space(l):
    return print(" ".join([str(x) for x in l]))



"""    main code    """

N = int(input())
D = int_list()

dp = [-float("INF") for _ in range(2**N)]
dp[0] = 100

for s in range(2**N):
    level = 1
    for u in range(N):
        if s >> u & 1 == 1 and D[u] < 0:
            level += 1
    
    for u in range(N):
        if s >> u & 1 == 0:
            if D[u] < 0:
                if dp[s]+D[u] > 0:
                    dp[s+2**u] = max(dp[s+2**u], min(level*100, dp[s]+D[u]))
            else:
                dp[s+2**u] = max(dp[s+2**u], min(level*100, dp[s]+D[u]))

if dp[2**N-1] == -float("INF"):
    print(0)
else:
    print(dp[2**N-1])


0