結果

問題 No.1231 Make a Multiple of Ten
ユーザー Ren SuzugamoriRen Suzugamori
提出日時 2020-09-23 11:44:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 1,525 ms
コンパイル使用メモリ 167,320 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-06-27 17:45:57
合計ジャッジ時間 2,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
19,156 KB
testcase_01 AC 7 ms
18,964 KB
testcase_02 AC 7 ms
19,072 KB
testcase_03 AC 8 ms
18,984 KB
testcase_04 AC 45 ms
19,712 KB
testcase_05 AC 41 ms
19,540 KB
testcase_06 AC 21 ms
19,200 KB
testcase_07 AC 47 ms
19,656 KB
testcase_08 AC 19 ms
19,340 KB
testcase_09 AC 15 ms
19,128 KB
testcase_10 AC 42 ms
19,620 KB
testcase_11 AC 50 ms
19,840 KB
testcase_12 AC 88 ms
20,396 KB
testcase_13 AC 90 ms
20,476 KB
testcase_14 AC 7 ms
18,948 KB
testcase_15 AC 91 ms
20,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
const int maxn=2e5+1;
int d[maxn][10];
signed main()
{
	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);
}
0