結果

問題 No.1083 余りの余り
ユーザー tentententen
提出日時 2024-03-12 15:35:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 78 ms / 3,000 ms
コード長 1,742 bytes
コンパイル時間 3,205 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 38,892 KB
最終ジャッジ日時 2024-09-29 22:20:38
合計ジャッジ時間 5,374 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,212 KB
testcase_01 AC 50 ms
37,088 KB
testcase_02 AC 54 ms
37,284 KB
testcase_03 AC 51 ms
37,152 KB
testcase_04 AC 51 ms
37,212 KB
testcase_05 AC 54 ms
37,072 KB
testcase_06 AC 52 ms
37,140 KB
testcase_07 AC 53 ms
37,292 KB
testcase_08 AC 51 ms
37,016 KB
testcase_09 AC 51 ms
36,920 KB
testcase_10 AC 51 ms
37,168 KB
testcase_11 AC 50 ms
37,340 KB
testcase_12 AC 49 ms
36,896 KB
testcase_13 AC 50 ms
37,224 KB
testcase_14 AC 54 ms
37,292 KB
testcase_15 AC 51 ms
37,276 KB
testcase_16 AC 51 ms
36,880 KB
testcase_17 AC 51 ms
37,048 KB
testcase_18 AC 51 ms
37,276 KB
testcase_19 AC 48 ms
37,040 KB
testcase_20 AC 50 ms
36,876 KB
testcase_21 AC 51 ms
37,148 KB
testcase_22 AC 50 ms
36,988 KB
testcase_23 AC 51 ms
37,276 KB
testcase_24 AC 51 ms
37,256 KB
testcase_25 AC 52 ms
36,848 KB
testcase_26 AC 52 ms
37,092 KB
testcase_27 AC 50 ms
37,212 KB
testcase_28 AC 78 ms
38,892 KB
testcase_29 AC 50 ms
37,316 KB
testcase_30 AC 49 ms
37,260 KB
testcase_31 AC 52 ms
37,120 KB
testcase_32 AC 50 ms
36,844 KB
testcase_33 AC 52 ms
36,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static List<Map<Integer, Integer>> dp = new ArrayList<>();
    static int[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int k = sc.nextInt();
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
            dp.add(new HashMap<>());
        }
        Arrays.sort(values);
        System.out.println(dfw(n - 1, k));
    }
    
    static int dfw(int idx, int v) {
        if (idx == 0) {
            return v % values[idx];
        }
        if (!dp.get(idx).containsKey(v)) {
            dp.get(idx).put(v, Math.max(dfw(idx - 1, v), dfw(idx - 1, v % values[idx])));
        }
        return dp.get(idx).get(v);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0