結果

問題 No.2982 Logic Battle
ユーザー 👑 rin204rin204
提出日時 2024-12-07 00:03:43
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 660 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 722,428 KB
最終ジャッジ日時 2024-12-07 00:04:07
合計ジャッジ時間 22,877 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,344 KB
testcase_01 MLE -
testcase_02 AC 38 ms
57,856 KB
testcase_03 MLE -
testcase_04 AC 39 ms
57,472 KB
testcase_05 MLE -
testcase_06 AC 38 ms
57,216 KB
testcase_07 MLE -
testcase_08 AC 38 ms
57,728 KB
testcase_09 MLE -
testcase_10 AC 116 ms
82,220 KB
testcase_11 AC 137 ms
77,824 KB
testcase_12 AC 106 ms
76,928 KB
testcase_13 AC 98 ms
76,544 KB
testcase_14 AC 100 ms
77,312 KB
testcase_15 AC 89 ms
77,268 KB
testcase_16 AC 96 ms
76,828 KB
testcase_17 AC 117 ms
77,708 KB
testcase_18 AC 114 ms
77,136 KB
testcase_19 AC 102 ms
76,772 KB
testcase_20 AC 107 ms
76,800 KB
testcase_21 AC 146 ms
77,696 KB
testcase_22 AC 126 ms
77,204 KB
testcase_23 AC 113 ms
77,328 KB
testcase_24 AC 118 ms
76,916 KB
testcase_25 AC 115 ms
76,700 KB
testcase_26 AC 117 ms
77,068 KB
testcase_27 AC 129 ms
77,700 KB
testcase_28 AC 168 ms
77,480 KB
testcase_29 AC 95 ms
76,672 KB
testcase_30 TLE -
testcase_31 AC 36 ms
51,968 KB
testcase_32 AC 87 ms
76,544 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
dp = [[(0, 0)] for _ in range(3)]
for _ in range(n):
    ndp = [[] for _ in range(3)]
    A = list(map(int, input().split()))
    for i in range(3):
        for j in range(3):
            if i == j:
                continue
            for pow, dam in dp[i]:
                ndp[j].append((max(0, pow + A[j] - 1), dam + pow + A[j]))

    for i in range(3):
        ndp[i].sort(key=lambda x: -x[0])
        dp[i] = [ndp[i][0]]
        for j in range(1, len(ndp[i])):
            if ndp[i][j][1] > dp[i][0][1]:
                dp[i].append(ndp[i][j])

ans = 0
for i in range(3):
    for pow, dam in dp[i]:
        ans = max(ans, dam)
print(ans)
0