結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | semisagi |
提出日時 | 2020-09-18 21:33:09 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 145 ms / 2,000 ms |
コード長 | 1,532 bytes |
コンパイル時間 | 4,480 ms |
コンパイル使用メモリ | 110,724 KB |
実行使用メモリ | 41,984 KB |
最終ジャッジ日時 | 2024-06-23 13:39:09 |
合計ジャッジ時間 | 3,674 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
18,048 KB |
testcase_01 | AC | 22 ms
17,920 KB |
testcase_02 | AC | 23 ms
17,920 KB |
testcase_03 | AC | 22 ms
17,664 KB |
testcase_04 | AC | 80 ms
31,360 KB |
testcase_05 | AC | 73 ms
30,336 KB |
testcase_06 | AC | 43 ms
22,648 KB |
testcase_07 | AC | 78 ms
31,488 KB |
testcase_08 | AC | 53 ms
25,856 KB |
testcase_09 | AC | 38 ms
22,016 KB |
testcase_10 | AC | 73 ms
30,592 KB |
testcase_11 | AC | 82 ms
32,256 KB |
testcase_12 | AC | 132 ms
41,216 KB |
testcase_13 | AC | 137 ms
41,984 KB |
testcase_14 | AC | 23 ms
17,664 KB |
testcase_15 | AC | 145 ms
41,856 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp3 { class Program { static void Main(string[] args) { var scanner = new Scanner(); int N = scanner.NextInt(); int[] A = new int[N]; for (int i = 0; i < N; i++) { A[i] = scanner.NextInt(); } int[] dp = new int[10]; for (int i = 0; i < 10; i++) { dp[i] = int.MinValue; } dp[0] = 0; foreach (int x in A) { int[] to = new int[10]; for (int i = 0; i < 10; i++) { to[i] = dp[i]; } for (int i = 0; i < 10; i++) { to[(i + x) % 10] = Math.Max(to[(i + x) % 10], dp[i] + 1); } dp = to; } Console.WriteLine(dp[0]); } } class Scanner { int index = 0; string[] tokens = { }; public string Next() { if (index == tokens.Length) { index = 0; tokens = Console.ReadLine().Split(' '); } return tokens[index++]; } public int NextInt() { return int.Parse(Next()); } public long NextLong() { return long.Parse(Next()); } public double NextDouble() { return double.Parse(Next()); } } }