結果

問題 No.1083 余りの余り
ユーザー tentententen
提出日時 2020-08-18 18:15:38
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,145 bytes
コンパイル時間 2,736 ms
コンパイル使用メモリ 76,960 KB
実行使用メモリ 136,464 KB
最終ジャッジ日時 2024-10-12 03:05:12
合計ジャッジ時間 33,276 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,260 KB
testcase_01 AC 128 ms
41,204 KB
testcase_02 AC 130 ms
41,308 KB
testcase_03 AC 127 ms
41,272 KB
testcase_04 AC 139 ms
41,140 KB
testcase_05 AC 683 ms
61,664 KB
testcase_06 AC 125 ms
41,056 KB
testcase_07 AC 123 ms
40,616 KB
testcase_08 AC 129 ms
41,464 KB
testcase_09 AC 115 ms
39,620 KB
testcase_10 AC 130 ms
40,968 KB
testcase_11 AC 138 ms
41,184 KB
testcase_12 AC 115 ms
39,772 KB
testcase_13 AC 129 ms
41,080 KB
testcase_14 AC 115 ms
39,796 KB
testcase_15 AC 126 ms
41,060 KB
testcase_16 AC 132 ms
41,204 KB
testcase_17 AC 129 ms
41,264 KB
testcase_18 AC 1,617 ms
90,732 KB
testcase_19 AC 700 ms
62,056 KB
testcase_20 AC 142 ms
41,296 KB
testcase_21 AC 175 ms
43,108 KB
testcase_22 AC 119 ms
40,148 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 127 ms
41,000 KB
testcase_28 TLE -
testcase_29 AC 127 ms
41,108 KB
testcase_30 AC 126 ms
40,912 KB
testcase_31 AC 128 ms
40,928 KB
testcase_32 AC 114 ms
40,112 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];
        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] == 0) {
            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