結果

問題 No.1231 Make a Multiple of Ten
ユーザー tentententen
提出日時 2023-04-14 18:50:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 2,130 bytes
コンパイル時間 4,403 ms
コンパイル使用メモリ 91,524 KB
実行使用メモリ 80,656 KB
最終ジャッジ日時 2024-04-18 16:38:32
合計ジャッジ時間 8,534 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,332 KB
testcase_01 AC 55 ms
37,360 KB
testcase_02 AC 53 ms
37,140 KB
testcase_03 AC 54 ms
37,464 KB
testcase_04 AC 305 ms
59,096 KB
testcase_05 AC 268 ms
57,900 KB
testcase_06 AC 207 ms
48,272 KB
testcase_07 AC 308 ms
59,168 KB
testcase_08 AC 224 ms
50,972 KB
testcase_09 AC 169 ms
45,104 KB
testcase_10 AC 278 ms
58,020 KB
testcase_11 AC 335 ms
59,536 KB
testcase_12 AC 450 ms
79,888 KB
testcase_13 AC 452 ms
80,656 KB
testcase_14 AC 54 ms
37,096 KB
testcase_15 AC 436 ms
78,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    static int[] values;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt() % 10;
        }
        dp = new int[n][10];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n - 1, 0));
    }
    
    static int dfw(int idx, int v) {
        if (idx < 0) {
            if (v == 0) {
                return 0;
            } else {
                return Integer.MIN_VALUE;
            }
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = Math.max(dfw(idx - 1, v), dfw(idx - 1, (v + values[idx]) % 10) + 1);
        }
        return dp[idx][v];
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0