結果

問題 No.1231 Make a Multiple of Ten
ユーザー MATSUMATMATSUMAT
提出日時 2018-12-31 15:36:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 1,497 ms
コンパイル使用メモリ 167,720 KB
実行使用メモリ 28,400 KB
最終ジャッジ日時 2024-06-23 13:35:45
合計ジャッジ時間 2,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 49 ms
14,792 KB
testcase_05 AC 44 ms
13,436 KB
testcase_06 AC 19 ms
7,424 KB
testcase_07 AC 53 ms
15,260 KB
testcase_08 AC 20 ms
10,320 KB
testcase_09 AC 12 ms
6,940 KB
testcase_10 AC 46 ms
14,092 KB
testcase_11 AC 56 ms
16,252 KB
testcase_12 AC 110 ms
27,068 KB
testcase_13 AC 110 ms
28,296 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 111 ms
28,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
  long long N, sum = 0;
  cin >> N;
  long long A[N];
  for(int i = 0; i < N; i++) {
    cin >> A[i];
    sum += A[i];
  }
  long long dp[N + 5][15];
  for(int i = 0; i < N + 5; i++) {
    for(int j = 0; j < 15; j++) {
      if (j == 0) {
        dp[i][j] = 0;
      }else {
        dp[i][j] = N;
      }
    }
  }
  for (int i = 0; i <= 9; i++) {
    for (int j = 0; j < N; j++) {
      dp[j + 1][(i + A[j]) % 10LL] = min(dp[j + 1][(i + A[j]) % 10LL], dp[j][i] + 1LL);
      dp[j + 1][i] = min(dp[j + 1][i], dp[j][i]);
    }
  }
  cout << N - dp[N][sum % 10LL] << endl;
  return 0;
}
0