結果

問題 No.107 モンスター
ユーザー efunyoefunyo
提出日時 2020-03-27 19:22:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 5,000 ms
コード長 1,319 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-06-10 16:32:43
合計ジャッジ時間 2,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,272 KB
testcase_01 AC 44 ms
54,400 KB
testcase_02 AC 45 ms
54,400 KB
testcase_03 AC 42 ms
54,144 KB
testcase_04 AC 44 ms
54,272 KB
testcase_05 AC 43 ms
54,400 KB
testcase_06 AC 41 ms
54,528 KB
testcase_07 AC 42 ms
54,272 KB
testcase_08 AC 43 ms
54,144 KB
testcase_09 AC 43 ms
54,144 KB
testcase_10 AC 41 ms
54,400 KB
testcase_11 AC 42 ms
54,272 KB
testcase_12 AC 41 ms
54,272 KB
testcase_13 AC 69 ms
68,096 KB
testcase_14 AC 71 ms
68,352 KB
testcase_15 AC 73 ms
68,224 KB
testcase_16 AC 44 ms
54,656 KB
testcase_17 AC 69 ms
70,272 KB
testcase_18 AC 66 ms
68,992 KB
testcase_19 AC 64 ms
68,224 KB
testcase_20 AC 74 ms
69,888 KB
testcase_21 AC 76 ms
70,016 KB
testcase_22 AC 82 ms
72,192 KB
testcase_23 AC 79 ms
71,040 KB
testcase_24 AC 80 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#https://yukicoder.me/problems/102

def main():
    import sys
    input = sys.stdin.readline
    sys.setrecursionlimit(10**7)
    from collections import Counter, deque
    #from collections import defaultdict
    from itertools import combinations, permutations, accumulate
    #from itertools import product
    from bisect import bisect_left,bisect_right
    import heapq
    from math import floor, ceil
    #from operator import itemgetter

    #inf = 10**17
    #mod = 10**9 + 7

    N = int(input())
    D = list(map(int, input().split()))
    dp = [0]*(1<<N)
    mod = 10**4

    #dp[s]:sまで倒したときの体力と最大体力
    #         値%modが体力/値//modが最大体力
    dp[0] = 100 + 100*mod
    for i in range(1<<N):
        if dp[i] == 0:
            continue
        for j in range(N):
            hp = dp[i] % mod
            mhp = dp[i] // mod
            if i&(1<<j):
                continue
            if D[j] < 0:
                if hp+D[j] <= 0:
                    dp[i|(1<<j)] = 0
                    continue
                else:
                    hp += D[j]
                    mhp += 100
            else:
                hp = min(mhp, hp+D[j])
            dp[i|(1<<j)] = max(hp, dp[i|(1<<j)]%mod) + mhp*mod
    print(dp[-1]%mod)

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