結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | Inazuma_110 |
提出日時 | 2020-09-19 01:57:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 49 ms / 2,000 ms |
コード長 | 1,271 bytes |
コンパイル時間 | 3,708 ms |
コンパイル使用メモリ | 389,544 KB |
実行使用メモリ | 18,044 KB |
最終ジャッジ日時 | 2024-06-23 13:54:06 |
合計ジャッジ時間 | 4,794 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 23 ms
9,984 KB |
testcase_05 | AC | 21 ms
9,088 KB |
testcase_06 | AC | 9 ms
6,940 KB |
testcase_07 | AC | 24 ms
10,240 KB |
testcase_08 | AC | 12 ms
7,168 KB |
testcase_09 | AC | 6 ms
6,940 KB |
testcase_10 | AC | 22 ms
9,472 KB |
testcase_11 | AC | 27 ms
10,880 KB |
testcase_12 | AC | 45 ms
17,120 KB |
testcase_13 | AC | 48 ms
18,044 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 49 ms
17,892 KB |
ソースコード
#include <bits/stdc++.h> #include <boost/multiprecision/cpp_int.hpp> // #include <atcoder/all> using boost::multiprecision::cpp_int; using namespace std; // using namespace atcoder; #if __has_include("print.hpp") #include "print.hpp" #endif #define rep(i, n) for(ll i = 0; i < (ll)(n); i++) #define ALL(x) (x).begin(), (x).end() #define RALL(x) (x).rbegin(), (x).rend() #define MOD 1000000007 template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } typedef long long ll; typedef pair<ll, ll> p; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; vector<int> v(n); rep(i, n){ cin >> v[i]; v[i] %= 10; } vector<vector<int>> dp(n+10, vector<int>(10, -1)); // dp[i][j] = iまでのカードでjにする最大枚数 // rep(i, 10) dp[0][i] = 0; dp[0][v[0]] = 1; for (int i = 1; i <= n; ++i) { rep(j, 10) dp[i][j] = dp[i-1][j]; rep(j, 10){ int tmp = j - v[i]; if(tmp < 0) tmp += 10; if(dp[i-1][tmp] == -1) continue; dp[i][j] = max(dp[i-1][j], dp[i-1][tmp] + 1); } } if(dp[n-1][0] == -1) cout << 0 << endl; else cout << dp[n-1][0] << endl; }