結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | y61mpnl |
提出日時 | 2020-10-03 14:37:40 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 592 bytes |
コンパイル時間 | 4,423 ms |
コンパイル使用メモリ | 162,624 KB |
実行使用メモリ | 20,768 KB |
最終ジャッジ日時 | 2024-07-18 04:26:17 |
合計ジャッジ時間 | 3,945 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 20 ms
11,484 KB |
testcase_05 | AC | 17 ms
10,424 KB |
testcase_06 | AC | 9 ms
6,940 KB |
testcase_07 | AC | 21 ms
11,800 KB |
testcase_08 | AC | 11 ms
8,308 KB |
testcase_09 | AC | 6 ms
6,940 KB |
testcase_10 | AC | 18 ms
10,680 KB |
testcase_11 | AC | 22 ms
12,324 KB |
testcase_12 | AC | 39 ms
19,936 KB |
testcase_13 | AC | 42 ms
20,672 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 41 ms
20,768 KB |
ソースコード
#include<bits/stdc++.h> using ll = int_fast64_t; int main(){ int n; scanf("%d", &n); ll a[n]; for(int i=0; i<n; i++){ scanf("%ld", &a[i]); a[i] %= 10; } ll dp[1+n][10]; for(int i=0; i<=n; i++) for(int j=0; j<10; j++) dp[i][j] = -1; dp[0][0] = 0; for(int i=0; i<n; i++){ for(int j=0; j<10; j++){ if(dp[i][j]<0) continue; dp[i+1][j] = std::max(dp[i+1][j], dp[i][j]); dp[i+1][(j+a[i])%10] = std::max(dp[i+1][(j+a[i])%10], dp[i][j]+1); } } printf("%ld\n", dp[n][0]); return 0; }