結果

問題 No.2982 Logic Battle
ユーザー 👑 rin204rin204
提出日時 2024-12-07 00:13:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 632 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-12-07 00:14:42
合計ジャッジ時間 55,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 40 ms
52,480 KB
testcase_10 AC 1,937 ms
80,384 KB
testcase_11 AC 967 ms
77,696 KB
testcase_12 AC 804 ms
77,696 KB
testcase_13 AC 1,066 ms
78,080 KB
testcase_14 TLE -
testcase_15 AC 159 ms
76,672 KB
testcase_16 AC 1,411 ms
79,488 KB
testcase_17 AC 644 ms
77,312 KB
testcase_18 AC 1,839 ms
80,128 KB
testcase_19 AC 250 ms
76,544 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 1,965 ms
82,816 KB
testcase_31 AC 40 ms
51,968 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
inf = 1 << 60
dp = [-inf] * (3 * n)
dp[0] = dp[n] = dp[2 * n] = 0

for t in range(n):
    A = list(map(int, input().split()))
    ndp = [-inf] * (3 * n)

    for i1 in range(3):
        for i2 in range(3):
            if i1 == i2:
                continue

            for j in range(n):
                nj = j + A[i2]
                nv = dp[i1 * n + j]
                if nj >= n:
                    nv += (n - t) * (nj - n + 1)
                    nj = n - 1

                nv += nj
                nj = max(nj - 1, 0)
                ndp[i2 * n + nj] = max(ndp[i2 * n + nj], nv)
    dp = ndp

print(max(dp))
0