結果

問題 No.1231 Make a Multiple of Ten
ユーザー bluemeganebluemegane
提出日時 2020-09-19 10:34:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 114,120 KB
実行使用メモリ 55,924 KB
最終ジャッジ日時 2024-06-23 13:55:50
合計ジャッジ時間 2,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
25,964 KB
testcase_01 AC 25 ms
23,860 KB
testcase_02 AC 26 ms
26,040 KB
testcase_03 AC 25 ms
23,792 KB
testcase_04 AC 83 ms
36,992 KB
testcase_05 AC 75 ms
33,740 KB
testcase_06 AC 48 ms
24,628 KB
testcase_07 AC 84 ms
37,480 KB
testcase_08 AC 54 ms
25,788 KB
testcase_09 AC 41 ms
25,348 KB
testcase_10 AC 78 ms
34,084 KB
testcase_11 AC 87 ms
35,768 KB
testcase_12 AC 142 ms
52,892 KB
testcase_13 AC 155 ms
55,924 KB
testcase_14 AC 25 ms
24,132 KB
testcase_15 AC 159 ms
55,864 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, x => int.Parse(x) % 10);
        getAns(n, a);
    }
    static void getAns(int n, int[] a)
    {
        var dp = new int[n, 10];
        for (int i = 0; i < n; i++)
            for (int j = 0; j < 10; j++) dp[i, j] = -1;
        dp[0, a[0]] = 1;
        for (int i = 1; i < n; i++)
        {
            for (int j = 0; j < 10; j++)
            {
                var w = (a[i] + j) % 10;
                if (dp[i - 1, j] != -1) dp[i, w] = Max(dp[i, w], Max(dp[i - 1, w], dp[i - 1, j] + 1));
            }
            for (int j = 0; j < 10; j++)
                if (dp[i, j] == -1) dp[i, j] = dp[i - 1, j];
        }
        Console.WriteLine(Max(0, dp[n - 1, 0]));
    }
}
0