結果

問題 No.1231 Make a Multiple of Ten
ユーザー Ren SuzugamoriRen Suzugamori
提出日時 2020-09-23 11:27:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 581 bytes
コンパイル時間 1,481 ms
コンパイル使用メモリ 166,888 KB
実行使用メモリ 20,716 KB
最終ジャッジ日時 2024-06-27 16:55:30
合計ジャッジ時間 3,044 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
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 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
const int maxn=2e5;
int a[maxn],d[maxn][10];
signed main()
{
	int n;
	cin>>n;
	cout<<"\n";
	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