結果

問題 No.2982 Logic Battle
ユーザー むつあるむつある
提出日時 2024-12-07 00:28:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 722 bytes
コンパイル時間 538 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 226,432 KB
最終ジャッジ日時 2024-12-07 00:29:36
合計ジャッジ時間 40,247 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 44 ms
51,712 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 43 ms
52,096 KB
testcase_08 AC 42 ms
51,968 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 1,289 ms
166,912 KB
testcase_11 AC 674 ms
106,880 KB
testcase_12 AC 518 ms
98,304 KB
testcase_13 AC 719 ms
110,336 KB
testcase_14 AC 1,626 ms
217,856 KB
testcase_15 AC 129 ms
77,568 KB
testcase_16 AC 943 ms
122,752 KB
testcase_17 AC 409 ms
91,776 KB
testcase_18 AC 1,146 ms
152,320 KB
testcase_19 AC 174 ms
78,592 KB
testcase_20 AC 1,762 ms
221,312 KB
testcase_21 AC 1,656 ms
220,928 KB
testcase_22 AC 1,689 ms
221,184 KB
testcase_23 AC 1,747 ms
220,544 KB
testcase_24 AC 1,673 ms
220,928 KB
testcase_25 AC 1,658 ms
221,184 KB
testcase_26 AC 1,736 ms
221,184 KB
testcase_27 AC 1,675 ms
221,056 KB
testcase_28 AC 1,737 ms
221,056 KB
testcase_29 AC 1,711 ms
220,928 KB
testcase_30 AC 1,646 ms
222,720 KB
testcase_31 AC 41 ms
52,224 KB
testcase_32 AC 1,640 ms
222,464 KB
testcase_33 AC 1,900 ms
225,152 KB
testcase_34 AC 1,809 ms
225,280 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 1,813 ms
225,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

dp=[[-1]*3 for _ in range(n+1)]
dp[0]=[0]*3

for v in range(1,n+1)[::-1]:
  ndp=[[-1]*3 for _ in range(n+1)]
  a=list(map(int,input().split()))
  for i in range(n):
    for j in range(3):
      if dp[i][j]==-1:
        continue
      for k in range(3):
        if j==k:
          continue
        p=min(n,max(0,i+a[k]-1))
        if p!=n:
          ndp[p][k]=max(ndp[p][k],dp[i][j]+i+a[k])
        else:
          ndp[n][k]=max(ndp[n][k],dp[i][j]+(i+a[k]-1)*v+1)
  for j in range(3):
    if dp[n][j]==-1:
      continue
    for k in range(3):
      if j==k:
        continue
      ndp[n][k]=max(ndp[n][k],dp[n][j]+(a[k]-1)*v+1)
  dp=ndp
  
ans=0
for i in range(n+1):
  ans=max(ans,max(dp[i]))
  
print(ans)
0