結果

問題 No.1083 余りの余り
ユーザー ks2mks2m
提出日時 2020-06-19 22:02:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 574 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 58,432 KB
最終ジャッジ日時 2024-07-03 14:38:35
合計ジャッジ時間 8,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,108 KB
testcase_01 AC 108 ms
53,252 KB
testcase_02 AC 118 ms
54,008 KB
testcase_03 AC 117 ms
53,680 KB
testcase_04 WA -
testcase_05 AC 147 ms
54,124 KB
testcase_06 AC 102 ms
52,968 KB
testcase_07 AC 116 ms
54,164 KB
testcase_08 AC 109 ms
52,812 KB
testcase_09 AC 115 ms
53,864 KB
testcase_10 AC 117 ms
52,876 KB
testcase_11 WA -
testcase_12 AC 134 ms
54,288 KB
testcase_13 AC 122 ms
53,092 KB
testcase_14 AC 125 ms
54,076 KB
testcase_15 AC 102 ms
52,676 KB
testcase_16 AC 116 ms
54,184 KB
testcase_17 AC 125 ms
54,076 KB
testcase_18 WA -
testcase_19 AC 152 ms
53,356 KB
testcase_20 AC 123 ms
54,120 KB
testcase_21 AC 136 ms
54,160 KB
testcase_22 AC 110 ms
52,520 KB
testcase_23 AC 229 ms
58,264 KB
testcase_24 AC 228 ms
58,092 KB
testcase_25 AC 218 ms
57,144 KB
testcase_26 AC 237 ms
58,408 KB
testcase_27 AC 126 ms
53,840 KB
testcase_28 WA -
testcase_29 AC 106 ms
52,880 KB
testcase_30 AC 121 ms
54,096 KB
testcase_31 AC 119 ms
53,836 KB
testcase_32 AC 117 ms
53,888 KB
testcase_33 AC 233 ms
58,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		int n2 = 1 << n;
		int[] dp = new int[n2];
		dp[0] = k;
		for (int i = 1; i < n2; i++) {
			for (int j = 0; j < n; j++) {
				if ((i >> j & 1) == 1) {
					int pre = i - (1 << j);
					dp[i] = Math.max(dp[i], dp[pre] % a[j]);
				}
			}
		}
		System.out.println(dp[n2 - 1]);
	}
}
0