結果

問題 No.1231 Make a Multiple of Ten
ユーザー parsee1053parsee1053
提出日時 2020-09-27 14:48:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 824 ms
コンパイル使用メモリ 89,120 KB
実行使用メモリ 27,492 KB
最終ジャッジ日時 2024-06-30 12:02:06
合計ジャッジ時間 3,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 54 ms
14,336 KB
testcase_05 AC 48 ms
13,056 KB
testcase_06 AC 20 ms
7,040 KB
testcase_07 AC 55 ms
14,720 KB
testcase_08 AC 23 ms
9,984 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 51 ms
13,440 KB
testcase_11 AC 59 ms
15,704 KB
testcase_12 AC 108 ms
26,124 KB
testcase_13 AC 113 ms
27,492 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 115 ms
27,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstdio>
#include <deque>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <vector>

using namespace std;

typedef long long ll;

#define MOD 1000000007

int main() {
  int n;
  cin >> n;
  vector<int> a(n + 1);
  for (int i = 1; i <= n; ++i) {
    cin >> a[i];
  }
  vector<vector<ll> > dp(n + 1, vector<ll>(10, -1));
  dp[0][0] = 0;
  for (int i = 1; i <= n; ++i) {
    for (int j = 0; j <= 9; ++j) {
      dp[i][j] = max(dp[i][j], dp[i - 1][j]);
      if (dp[i - 1][j] != -1) {
        dp[i][(j + a[i]) % 10] = max(dp[i][(j + a[i]) % 10], dp[i - 1][j] + 1);
      }
    }
  }
  cout << dp[n][0] << endl;
  return 0;
}
0