結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | YamaKasa |
提出日時 | 2020-09-27 02:22:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 717 bytes |
コンパイル時間 | 1,463 ms |
コンパイル使用メモリ | 168,528 KB |
実行使用メモリ | 17,828 KB |
最終ジャッジ日時 | 2024-06-30 03:19:19 |
合計ジャッジ時間 | 5,601 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { int N; cin >> N; int A[N]; for (int i = 0; i < N; i++) { cin >> A[i]; A[i] %= 10; } ll dp[N + 1][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++) { dp[i + 1][j] = dp[i][j]; } for (int j = 0; j < N; j++) { if (dp[i][j] == -1) continue; int t = (j + A[i]) % 10; dp[i + 1][t] = max(dp[i + 1][t], dp[i][j] + 1); } } cout << dp[N][0] << "\n"; return 0; }