結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | Ren Suzugamori |
提出日時 | 2020-09-23 11:41:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 607 bytes |
コンパイル時間 | 1,797 ms |
コンパイル使用メモリ | 166,460 KB |
実行使用メモリ | 19,200 KB |
最終ジャッジ日時 | 2024-06-27 17:37:12 |
合計ジャッジ時間 | 2,514 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 11 ms
19,072 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 11 ms
19,200 KB |
testcase_15 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long const int maxn=2e5+1; int d[maxn][10]; signed main() { freopen("t.txt","r",stdin); int n; cin>>n; int a[n+1]; for(int i=1;i<=n;i++) { cin>>a[i]; } for(int i=0;i<=maxn;i++) { for(int j=0;j<=9;j++) { d[i][j]=INT_MIN; } } d[0][0]=0; for(int i=1;i<=n;i++) { for(int j=0;j<=9;j++) { int k = j + a[i]; d[i][k % 10] = max(d[i][k%10], max(d[i - 1][k % 10], d[i - 1][j] + 1)); } } cout<<d[n][0]; exit(0); }