結果

問題 No.1231 Make a Multiple of Ten
ユーザー tentententen
提出日時 2023-08-02 09:56:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 2,131 bytes
コンパイル時間 2,581 ms
コンパイル使用メモリ 95,796 KB
実行使用メモリ 80,856 KB
最終ジャッジ日時 2024-04-20 09:20:27
合計ジャッジ時間 7,643 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,328 KB
testcase_01 AC 53 ms
36,880 KB
testcase_02 AC 53 ms
36,976 KB
testcase_03 AC 53 ms
37,316 KB
testcase_04 AC 272 ms
58,804 KB
testcase_05 AC 259 ms
57,748 KB
testcase_06 AC 188 ms
48,220 KB
testcase_07 AC 303 ms
59,060 KB
testcase_08 AC 201 ms
50,720 KB
testcase_09 AC 164 ms
44,136 KB
testcase_10 AC 271 ms
58,048 KB
testcase_11 AC 295 ms
59,588 KB
testcase_12 AC 415 ms
78,856 KB
testcase_13 AC 434 ms
80,764 KB
testcase_14 AC 54 ms
37,360 KB
testcase_15 AC 424 ms
80,856 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