結果

問題 No.2982 Logic Battle
ユーザー detteiuudetteiuu
提出日時 2024-12-07 00:25:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 78,660 KB
最終ジャッジ日時 2024-12-07 00:27:03
合計ジャッジ時間 3,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 WA -
testcase_03 AC 35 ms
52,480 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 34 ms
51,584 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 80 ms
77,780 KB
testcase_11 AC 80 ms
77,312 KB
testcase_12 WA -
testcase_13 AC 78 ms
77,312 KB
testcase_14 AC 103 ms
78,080 KB
testcase_15 WA -
testcase_16 AC 80 ms
77,708 KB
testcase_17 AC 81 ms
77,220 KB
testcase_18 WA -
testcase_19 AC 68 ms
72,320 KB
testcase_20 AC 85 ms
77,440 KB
testcase_21 AC 85 ms
77,688 KB
testcase_22 AC 83 ms
77,696 KB
testcase_23 AC 80 ms
77,696 KB
testcase_24 AC 81 ms
77,440 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 90 ms
77,696 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 35 ms
51,968 KB
testcase_32 AC 77 ms
78,048 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [list(map(int, input().split())) for _ in range(N)]

INF = 10**18

dp = [[0]*3 for _ in range(N+1)]
power = [[-INF]*3 for _ in range(N+1)]
for i in range(3):
    power[0][i] = 0
for i in range(N):
    for j in range(3):
        for k in range(3):
            if j == k:
                continue
            if power[i+1][j] < max(power[i][k]+A[i][j]-1, 0):
                dp[i+1][j] = dp[i][k]+power[i][k]+A[i][j]
                power[i+1][j] = max(power[i][k]+A[i][j]-1, 0)

print(max(dp[-1]))
0