結果

問題 No.2982 Logic Battle
ユーザー むつあるむつある
提出日時 2024-12-07 00:51:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,078 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 128,512 KB
最終ジャッジ日時 2024-12-07 00:52:15
合計ジャッジ時間 21,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 45 ms
51,968 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 666 ms
107,008 KB
testcase_11 AC 342 ms
87,168 KB
testcase_12 AC 299 ms
83,584 KB
testcase_13 AC 407 ms
88,448 KB
testcase_14 AC 814 ms
122,752 KB
testcase_15 AC 133 ms
76,928 KB
testcase_16 AC 478 ms
95,744 KB
testcase_17 AC 258 ms
81,792 KB
testcase_18 AC 598 ms
102,656 KB
testcase_19 AC 133 ms
77,568 KB
testcase_20 AC 836 ms
124,544 KB
testcase_21 AC 861 ms
124,672 KB
testcase_22 AC 868 ms
126,208 KB
testcase_23 AC 864 ms
123,648 KB
testcase_24 AC 854 ms
123,392 KB
testcase_25 AC 880 ms
125,056 KB
testcase_26 AC 866 ms
124,672 KB
testcase_27 AC 843 ms
123,648 KB
testcase_28 AC 892 ms
123,520 KB
testcase_29 AC 860 ms
125,440 KB
testcase_30 AC 825 ms
124,544 KB
testcase_31 AC 40 ms
52,352 KB
testcase_32 AC 851 ms
124,800 KB
testcase_33 AC 1,078 ms
127,488 KB
testcase_34 AC 1,043 ms
127,360 KB
testcase_35 AC 1,027 ms
127,616 KB
testcase_36 AC 1,017 ms
128,512 KB
testcase_37 AC 1,056 ms
127,616 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(v)]
  a=list(map(int,input().split()))
  for i in range(v):
    for j in range(3):
      if dp[i][j]==-1:
        continue
      for k in range(3):
        if j==k:
          continue
        p=min(v-1,max(0,i+a[k]-1))
        if p!=v-1:
          ndp[p][k]=max(ndp[p][k],dp[i][j]+i+a[k])
        else:
          ndp[p][k]=max(ndp[p][k],dp[i][j]+(i+a[k]-1)*v+1)
  for j in range(3):
    if dp[v][j]==-1:
      continue
    for k in range(3):
      if j==k:
        continue
      ndp[v-1][k]=max(ndp[v-1][k],dp[v][j]+(a[k]-1)*v+1)
  dp=ndp
  
print(max(dp[0]))
0