結果

問題 No.1231 Make a Multiple of Ten
ユーザー MATSUMATMATSUMAT
提出日時 2019-03-20 22:43:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 1,715 ms
コンパイル使用メモリ 166,860 KB
実行使用メモリ 15,936 KB
最終ジャッジ日時 2024-06-23 13:36:25
合計ジャッジ時間 3,159 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 45 ms
9,136 KB
testcase_05 AC 40 ms
8,432 KB
testcase_06 AC 18 ms
6,940 KB
testcase_07 AC 46 ms
9,376 KB
testcase_08 AC 18 ms
6,944 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 41 ms
8,700 KB
testcase_11 AC 50 ms
9,824 KB
testcase_12 AC 89 ms
15,268 KB
testcase_13 AC 96 ms
15,936 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 93 ms
15,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  int A[N];
  for(int i=0;i<N;i++){
    cin >> A[i];
    A[i]%=10;
  }
  int dp[N+5][15];
  for(int i=0;i<=N;i++){
    for(int j=0;j<=9;j++){
      dp[i][j] = -10000000;
    }
  }
  dp[0][0] = 0;
  for(int i=0;i<N;i++){
    for(int j=0;j<=9;j++){
      dp[i+1][j] = max(dp[i+1][j], dp[i][(10+j-A[i])%10]+1);
      dp[i+1][j] = max(dp[i+1][j], dp[i][j]);
    }
  }
  cout << dp[N][0] << endl;
  return 0;
}
0