結果

問題 No.2982 Logic Battle
ユーザー noriocnorioc
提出日時 2024-12-07 02:26:54
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 425 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 1,705,088 KB
最終ジャッジ日時 2024-12-07 02:28:30
合計ジャッジ時間 93,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,088 KB
testcase_01 MLE -
testcase_02 AC 40 ms
57,088 KB
testcase_03 MLE -
testcase_04 AC 45 ms
57,344 KB
testcase_05 MLE -
testcase_06 AC 50 ms
64,000 KB
testcase_07 MLE -
testcase_08 AC 41 ms
56,832 KB
testcase_09 AC 43 ms
57,600 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 TLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 TLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 AC 91 ms
57,728 KB
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
cards = []
for _ in range(N):
    A, B, C = map(int, input().split())
    cards.append((A, B, C))


dp = [(-1, 0, 0)]
for i in range(N):
    pp = []
    dp, pp = pp, dp
    for s, x, tot in pp:
        for j in range(3):
            if s == j: continue
            nx = x + cards[i][j]
            ntot = tot + nx
            dp.append((j, max(0, nx-1), ntot))

ans = max(tot for _, _, tot in dp)
print(ans)
0