結果

問題 No.1231 Make a Multiple of Ten
ユーザー ha71ha71
提出日時 2020-09-20 16:19:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 673 bytes
コンパイル時間 1,431 ms
コンパイル使用メモリ 166,928 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-06-24 10:47:38
合計ジャッジ時間 2,789 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
11,264 KB
testcase_01 AC 6 ms
11,248 KB
testcase_02 AC 6 ms
11,312 KB
testcase_03 AC 7 ms
11,336 KB
testcase_04 AC 44 ms
12,008 KB
testcase_05 AC 40 ms
11,852 KB
testcase_06 AC 20 ms
11,520 KB
testcase_07 AC 46 ms
11,904 KB
testcase_08 AC 20 ms
11,552 KB
testcase_09 AC 15 ms
11,388 KB
testcase_10 AC 42 ms
11,904 KB
testcase_11 AC 49 ms
11,904 KB
testcase_12 AC 84 ms
12,800 KB
testcase_13 AC 89 ms
12,928 KB
testcase_14 AC 6 ms
11,264 KB
testcase_15 AC 88 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include "atcoder/all"
typedef long long int ll;
using namespace std;
// using namespace atcoder;
#define MAXN 200005
int dp[MAXN][10];
int main() {
    int n;
    cin >> n;
    ll a[n + 1];
    for (int i = 1; i <= n; i++) {
        cin >> a[i];
    }
    for (int i = 0; i < MAXN; i++) {
        for (int j = 0; j < 10; j++) {
            dp[i][j] = -1000;
        } 
    }
    dp[0][0] = 0;
    for (int i = 1; i <= n; i++) {
        for (int j = 0; j < 10; j++) {
            dp[i][(j + a[i]) % 10] = max(dp[i - 1][j] + 1, max(dp[i - 1][(j + a[i]) % 10], dp[i][(j + a[i]) % 10]));
        }
    }
    cout << dp[n][0] << endl;
    return 0;
}
0