結果

問題 No.1083 余りの余り
ユーザー tentententen
提出日時 2020-08-18 19:30:12
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,221 bytes
コンパイル時間 3,306 ms
コンパイル使用メモリ 77,100 KB
実行使用メモリ 151,636 KB
最終ジャッジ日時 2024-10-12 03:09:14
合計ジャッジ時間 14,654 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
46,352 KB
testcase_01 AC 130 ms
41,044 KB
testcase_02 AC 135 ms
41,040 KB
testcase_03 AC 133 ms
41,336 KB
testcase_04 AC 142 ms
41,056 KB
testcase_05 AC 764 ms
61,924 KB
testcase_06 AC 130 ms
41,336 KB
testcase_07 AC 142 ms
41,192 KB
testcase_08 AC 133 ms
40,936 KB
testcase_09 AC 133 ms
40,872 KB
testcase_10 AC 133 ms
40,924 KB
testcase_11 AC 140 ms
41,104 KB
testcase_12 AC 134 ms
41,304 KB
testcase_13 AC 135 ms
41,004 KB
testcase_14 AC 119 ms
39,928 KB
testcase_15 AC 118 ms
39,628 KB
testcase_16 AC 133 ms
40,892 KB
testcase_17 AC 133 ms
41,204 KB
testcase_18 AC 1,754 ms
90,540 KB
testcase_19 AC 783 ms
61,836 KB
testcase_20 AC 140 ms
41,616 KB
testcase_21 AC 193 ms
43,180 KB
testcase_22 AC 133 ms
40,804 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 134 ms
53,992 KB
testcase_28 TLE -
testcase_29 AC 129 ms
54,220 KB
testcase_30 AC 130 ms
54,140 KB
testcase_31 AC 130 ms
54,324 KB
testcase_32 AC 130 ms
54,292 KB
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    static int n;
    static int k;
    static int[] arr;
    static int[][] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        k = sc.nextInt();
        arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        dp = new int[n][1 << n];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        int max = 0;
        for (int i = 0; i < n; i++) {
            max = Math.max(max, dfw(i, (1 << n) - 1));
        }
        System.out.println(max);
    }
    
    static int dfw(int idx, int mask) {
        if (dp[idx][mask] == -1) {
            int next = (mask ^ (1 << idx));
            if (next == 0) {
                dp[idx][mask] = k % arr[idx];
            } else {
                for (int i = 0; i < n; i++) {
                    if ((next & (1 << i)) == 0) {
                        continue;
                    }
                    dp[idx][mask] = Math.max(dp[idx][mask], dfw(i, next) % arr[idx]);
                }
            }
        }
        return dp[idx][mask];
    }
} 
0