結果

問題 No.2982 Logic Battle
ユーザー amesyuamesyu
提出日時 2024-12-13 23:49:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 905 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 154,516 KB
最終ジャッジ日時 2024-12-13 23:49:53
合計ジャッジ時間 10,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,372 KB
testcase_01 AC 37 ms
52,988 KB
testcase_02 AC 39 ms
53,784 KB
testcase_03 AC 38 ms
52,552 KB
testcase_04 AC 36 ms
53,088 KB
testcase_05 AC 38 ms
52,204 KB
testcase_06 AC 37 ms
53,260 KB
testcase_07 AC 37 ms
53,280 KB
testcase_08 AC 37 ms
53,308 KB
testcase_09 AC 38 ms
53,536 KB
testcase_10 AC 120 ms
77,880 KB
testcase_11 AC 122 ms
77,352 KB
testcase_12 AC 126 ms
78,160 KB
testcase_13 AC 148 ms
77,704 KB
testcase_14 AC 126 ms
77,740 KB
testcase_15 AC 114 ms
77,260 KB
testcase_16 AC 124 ms
77,560 KB
testcase_17 AC 124 ms
77,384 KB
testcase_18 AC 128 ms
77,664 KB
testcase_19 AC 116 ms
77,924 KB
testcase_20 AC 133 ms
78,048 KB
testcase_21 AC 136 ms
77,632 KB
testcase_22 AC 126 ms
77,380 KB
testcase_23 AC 127 ms
77,780 KB
testcase_24 AC 138 ms
77,848 KB
testcase_25 AC 134 ms
77,756 KB
testcase_26 AC 129 ms
77,736 KB
testcase_27 AC 143 ms
78,032 KB
testcase_28 AC 123 ms
77,304 KB
testcase_29 AC 124 ms
78,028 KB
testcase_30 TLE -
testcase_31 AC 37 ms
52,556 KB
testcase_32 AC 81 ms
76,832 KB
testcase_33 AC 327 ms
77,204 KB
testcase_34 AC 256 ms
77,368 KB
testcase_35 AC 598 ms
77,012 KB
testcase_36 AC 584 ms
77,216 KB
testcase_37 AC 527 ms
154,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [[(0, 0)], [(0, 0)], [(0, 0)]]
# power = 0, deal_damage = 0

for _ in range(n):
    a = list(map(int, input().split()))
    pre = [[], [], []]
    for i in range(3):
        for s, c in dp[i]:
            power = s + a[i]
            for j in range(3):
                if i == j: continue
                pre[j].append((max(0, power - 1), c + power))
    
    nxt = [[], [], []]

    for i in range(3):
        for p in range(len(pre[i])):
            add = True
            for q in range(len(pre[i])):
                if p == q: continue
                s1, c1 = pre[i][p]
                s2, c2 = pre[i][q]
                if p >= q and s1 == s2 and c1 == c2: add = False
                if s2 > s1 and c2 > c1: add = False
            if add: nxt[i].append(pre[i][p])
    
    dp = nxt[::]

ans = 0
for i in range(3):
    for p, c in dp[i]:
        ans = max(ans, c)

print(ans)
0