結果

問題 No.1231 Make a Multiple of Ten
ユーザー masayamatumasayamatu
提出日時 2021-09-04 17:42:06
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,393 bytes
コンパイル時間 20,294 ms
コンパイル使用メモリ 170,584 KB
実行使用メモリ 230,068 KB
最終ジャッジ日時 2024-12-21 07:07:25
合計ジャッジ時間 23,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
30,208 KB
testcase_01 AC 63 ms
30,080 KB
testcase_02 AC 64 ms
30,208 KB
testcase_03 AC 63 ms
30,208 KB
testcase_04 AC 127 ms
50,688 KB
testcase_05 AC 126 ms
48,640 KB
testcase_06 AC 101 ms
38,656 KB
testcase_07 AC 131 ms
51,584 KB
testcase_08 AC 109 ms
42,808 KB
testcase_09 AC 90 ms
35,400 KB
testcase_10 AC 124 ms
49,704 KB
testcase_11 AC 135 ms
52,760 KB
testcase_12 AC 180 ms
70,512 KB
testcase_13 AC 187 ms
72,324 KB
testcase_14 AC 66 ms
30,592 KB
testcase_15 AC 186 ms
230,068 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (107 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;

namespace yukicoder
{
    class Program
    {
        const int intMax = 1000000000;
        const long longMax = 2000000000000000000;
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());
            var A = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var dp = new long[N + 1, 10];
            var modA = A.Select(p => p % 10).ToArray();
            dp[0, 0] = 0;
            for(int i = 1; i <= N; i++)
            {
                for(int j = 0; j < 10; j++)
                {
                    if((i == 1 && j == 0) || dp[i - 1,j] > 0)
                    {
                        dp[i, (j + modA[i - 1]) % 10] = Math.Max(dp[i - 1, j] + 1, dp[i, (j + modA[i - 1]) % 10]);
                        if(i + 1 <= N)
                        {
                            dp[i + 1, (j + modA[i - 1]) % 10] = Math.Max(dp[i + 1, (j + modA[i - 1]) % 10],dp[i, (j + modA[i - 1]) % 10]);
                        }
                    }
                    if(i + 1 <= N)
                    {
                        dp[i + 1, j] = Math.Max(dp[i + 1,j],dp[i,j]);
                    }             
                    
                }
            }
            Console.WriteLine(dp[N, 0]);
        }
    }
}
0