結果

問題 No.1083 余りの余り
ユーザー tentententen
提出日時 2024-07-22 16:12:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 86 ms / 3,000 ms
コード長 1,746 bytes
コンパイル時間 2,993 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 39,404 KB
最終ジャッジ日時 2024-07-22 16:13:05
合計ジャッジ時間 5,929 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,152 KB
testcase_01 AC 53 ms
37,032 KB
testcase_02 AC 54 ms
37,376 KB
testcase_03 AC 59 ms
37,180 KB
testcase_04 AC 54 ms
37,280 KB
testcase_05 AC 54 ms
37,380 KB
testcase_06 AC 52 ms
36,944 KB
testcase_07 AC 53 ms
37,484 KB
testcase_08 AC 52 ms
37,376 KB
testcase_09 AC 54 ms
37,472 KB
testcase_10 AC 54 ms
36,944 KB
testcase_11 AC 54 ms
37,180 KB
testcase_12 AC 54 ms
37,376 KB
testcase_13 AC 54 ms
37,224 KB
testcase_14 AC 52 ms
37,300 KB
testcase_15 AC 52 ms
37,476 KB
testcase_16 AC 52 ms
37,236 KB
testcase_17 AC 55 ms
37,376 KB
testcase_18 AC 54 ms
37,324 KB
testcase_19 AC 54 ms
37,324 KB
testcase_20 AC 56 ms
37,372 KB
testcase_21 AC 57 ms
37,108 KB
testcase_22 AC 54 ms
37,080 KB
testcase_23 AC 54 ms
37,376 KB
testcase_24 AC 54 ms
37,404 KB
testcase_25 AC 53 ms
37,228 KB
testcase_26 AC 54 ms
37,148 KB
testcase_27 AC 54 ms
37,384 KB
testcase_28 AC 86 ms
39,404 KB
testcase_29 AC 52 ms
37,284 KB
testcase_30 AC 52 ms
37,328 KB
testcase_31 AC 53 ms
37,384 KB
testcase_32 AC 52 ms
36,944 KB
testcase_33 AC 55 ms
37,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] values;
    static List<Map<Integer, Integer>> dp = new ArrayList<>();
    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