結果

問題 No.2386 Udon Coupon (Easy)
ユーザー tentententen
提出日時 2023-07-24 10:50:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 2,083 bytes
コンパイル時間 2,714 ms
コンパイル使用メモリ 84,876 KB
実行使用メモリ 49,084 KB
最終ジャッジ日時 2024-10-01 06:14:42
合計ジャッジ時間 7,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,912 KB
testcase_01 AC 48 ms
37,064 KB
testcase_02 AC 51 ms
36,784 KB
testcase_03 AC 50 ms
36,732 KB
testcase_04 AC 48 ms
37,084 KB
testcase_05 AC 48 ms
36,892 KB
testcase_06 AC 48 ms
36,904 KB
testcase_07 AC 340 ms
49,056 KB
testcase_08 AC 52 ms
37,156 KB
testcase_09 AC 49 ms
37,056 KB
testcase_10 AC 60 ms
39,384 KB
testcase_11 AC 53 ms
37,840 KB
testcase_12 AC 87 ms
46,400 KB
testcase_13 AC 102 ms
48,616 KB
testcase_14 AC 97 ms
47,284 KB
testcase_15 AC 106 ms
48,800 KB
testcase_16 AC 80 ms
45,612 KB
testcase_17 AC 127 ms
47,932 KB
testcase_18 AC 81 ms
41,540 KB
testcase_19 AC 56 ms
37,564 KB
testcase_20 AC 77 ms
44,724 KB
testcase_21 AC 141 ms
47,804 KB
testcase_22 AC 79 ms
43,208 KB
testcase_23 AC 79 ms
42,456 KB
testcase_24 AC 60 ms
38,468 KB
testcase_25 AC 81 ms
44,288 KB
testcase_26 AC 74 ms
47,192 KB
testcase_27 AC 326 ms
49,084 KB
testcase_28 AC 80 ms
42,832 KB
testcase_29 AC 60 ms
39,888 KB
testcase_30 AC 52 ms
37,528 KB
testcase_31 AC 77 ms
42,432 KB
testcase_32 AC 56 ms
37,448 KB
testcase_33 AC 374 ms
49,076 KB
testcase_34 AC 82 ms
43,544 KB
testcase_35 AC 93 ms
45,880 KB
testcase_36 AC 247 ms
48,988 KB
testcase_37 AC 87 ms
45,960 KB
testcase_38 AC 87 ms
43,976 KB
testcase_39 AC 80 ms
41,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] base = new int[]{3, 5, 10};
    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[]{sc.nextInt(), sc.nextInt(), sc.nextInt()};
        dp = new int[3][n + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(2, n));
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return Integer.MIN_VALUE;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = Math.max(dfw(idx - 1, v), dfw(idx, v - base[idx]) + values[idx]);
        }
        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