結果

問題 No.1231 Make a Multiple of Ten
ユーザー Example0911Example0911
提出日時 2020-09-18 21:41:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 1,582 ms
コンパイル使用メモリ 169,872 KB
実行使用メモリ 20,472 KB
最終ジャッジ日時 2024-06-23 13:41:11
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
19,108 KB
testcase_01 AC 7 ms
19,132 KB
testcase_02 AC 8 ms
19,100 KB
testcase_03 AC 8 ms
18,956 KB
testcase_04 AC 45 ms
19,500 KB
testcase_05 AC 40 ms
19,432 KB
testcase_06 AC 20 ms
19,096 KB
testcase_07 AC 48 ms
19,620 KB
testcase_08 AC 20 ms
19,280 KB
testcase_09 AC 14 ms
19,252 KB
testcase_10 AC 42 ms
19,500 KB
testcase_11 AC 51 ms
19,616 KB
testcase_12 AC 86 ms
20,464 KB
testcase_13 AC 91 ms
20,344 KB
testcase_14 AC 7 ms
19,092 KB
testcase_15 AC 92 ms
20,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

//#include <atcoder/all>

using namespace std;
//using namespace atcoder;

//#define int long long
#define ll long long

ll INF = (1LL << 60);
int mod = 1000000007;

using P = pair<int, int>;
ll dp[200010][10];
signed main() {
	int N; cin >> N;
	vector<ll>A(N); for (int i = 0; i < N; i++)cin >> A[i];
	for (int i = 0; i < 200010; i++) {
		for (int j = 0; j < 10; j++) {
			dp[i][j] = -INF;
		}
	}
	dp[0][0] = 0;
	for (int i = 0; i < N; i++) {
		for (int j = 0; j < 10; j++) {
			dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]);

			dp[i + 1][(j + A[i]) % 10] = max(dp[i + 1][(j + A[i]) % 10], dp[i][j] + 1);
		
		}
	}
	ll ans = dp[N][0];
	cout << ans << endl;
	return 0;
}
0