結果

問題 No.1231 Make a Multiple of Ten
ユーザー kokatsukokatsu
提出日時 2021-11-14 21:06:05
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 506 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 208,892 KB
実行使用メモリ 26,124 KB
最終ジャッジ日時 2024-06-22 13:17:22
合計ジャッジ時間 3,761 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 40 ms
11,848 KB
testcase_05 AC 33 ms
10,764 KB
testcase_06 AC 15 ms
6,944 KB
testcase_07 AC 43 ms
14,064 KB
testcase_08 AC 20 ms
9,212 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 AC 35 ms
11,208 KB
testcase_11 AC 45 ms
12,564 KB
testcase_12 AC 80 ms
22,028 KB
testcase_13 AC 81 ms
24,596 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 82 ms
26,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N;
    readf("%d\n", N);

    auto A = readln.chomp.split.to!(int[]);

    auto dp = new int[][](N+1, 10);
    foreach (i; 0 .. N+1) {
        dp[i][] = -1;
    }
    dp[0][0] = 0;

    foreach (i, a; A) {
        dp[i+1][] = dp[i][];

        foreach (j; 0 .. 10) {
            if (dp[i][j] == -1) {
                continue;
            }

            long k = (a + j) % 10;
            dp[i+1][k] = max(dp[i+1][k], dp[i][j]+1);
        }
    }

    dp[N][0].writeln;
}
0