結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | SAAD AHMAD |
提出日時 | 2022-08-01 04:49:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 49 ms / 2,000 ms |
コード長 | 815 bytes |
コンパイル時間 | 1,179 ms |
コンパイル使用メモリ | 97,912 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-07-21 12:21:07 |
合計ジャッジ時間 | 2,226 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 25 ms
9,984 KB |
testcase_05 | AC | 22 ms
9,216 KB |
testcase_06 | AC | 10 ms
5,632 KB |
testcase_07 | AC | 26 ms
10,368 KB |
testcase_08 | AC | 14 ms
7,296 KB |
testcase_09 | AC | 6 ms
5,376 KB |
testcase_10 | AC | 23 ms
9,472 KB |
testcase_11 | AC | 26 ms
10,880 KB |
testcase_12 | AC | 46 ms
17,220 KB |
testcase_13 | AC | 49 ms
17,920 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 49 ms
18,048 KB |
ソースコード
#include<iostream> #include<stdio.h> #include<stdlib.h> #include<algorithm> #include<vector> #include<string.h> #include<math.h> #include<map> #include<iomanip> #include<queue> using namespace std; using ll = long long; using ull = unsigned long long; ll mod = 1e9 + 7; int main(){ cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector<int> a(n); for(int i = 0; i < n; i++){ ll x; cin >> x; a[i] = x % 10; } vector<vector<int>> dp(n , vector<int> (10 , -1)); dp[0][0] = 0; dp[0][a[0]] = 1; for(int i = 1; i < n; i++){ for(int j = 0; j < 10; j++){ dp[i][j] = dp[i - 1][j]; } for(int j = 0; j < 10; j++){ if(dp[i - 1][j] == -1)continue; dp[i][(a[i] + j) % 10] = max(dp[i][(a[i] + j) % 10] , dp[i - 1][j] + 1); } } cout << dp[n - 1][0] << endl; return 0; }