結果

問題 No.1231 Make a Multiple of Ten
ユーザー 👑 CleyLCleyL
提出日時 2021-11-13 15:47:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 69,376 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-11-27 12:18:34
合計ジャッジ時間 2,764 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 42 ms
7,040 KB
testcase_05 AC 36 ms
6,528 KB
testcase_06 AC 15 ms
5,248 KB
testcase_07 AC 43 ms
7,168 KB
testcase_08 AC 15 ms
5,632 KB
testcase_09 AC 10 ms
5,248 KB
testcase_10 AC 39 ms
6,912 KB
testcase_11 AC 47 ms
7,552 KB
testcase_12 AC 83 ms
11,264 KB
testcase_13 AC 89 ms
11,648 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 92 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int dp[200010][10];
int main(){
  int n;cin>>n;
  vector<int> A(n);
  for(int i = 0; n > i; i++){
    cin>>A[i];
  }

  
  for(int i = 0; n > i; i++){
    for(int j = 0; 10 > j; j++){
      dp[i][j] = -1;
    }
  }
  dp[0][0] = 0;
  for(int i = 1; n >= i; i++){
    for(int j = 0; 10 > j; j++){
      if(dp[i-1][j] == -1)continue;
      dp[i][(j+A[i-1])%10] = max(dp[i-1][j]+1,dp[i][(j+A[i-1])%10]);
      dp[i][j] = max(dp[i][j],dp[i-1][j]);
    }
  }
  // for(int i = 0; n >= i; i++){
  //   for(int j = 0; 10 > j; j++){
  //     cout << dp[i][j] << " ";
  //   }
  //   cout << endl;
  // }
  cout << dp[n][0] << endl;
}
0