結果
問題 | No.1083 余りの余り |
ユーザー | ks2m |
提出日時 | 2020-06-19 21:46:39 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 765 bytes |
コンパイル時間 | 2,443 ms |
コンパイル使用メモリ | 77,316 KB |
実行使用メモリ | 63,584 KB |
最終ジャッジ日時 | 2024-07-03 14:14:23 |
合計ジャッジ時間 | 7,404 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
60,960 KB |
testcase_01 | AC | 127 ms
54,264 KB |
testcase_02 | AC | 132 ms
53,836 KB |
testcase_03 | AC | 125 ms
54,128 KB |
testcase_04 | AC | 169 ms
54,372 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
ソースコード
import java.util.Scanner; public class Main { static int n, k, n2; static int[] a, memo; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); n = sc.nextInt(); k = sc.nextInt(); a = new int[n]; for (int i = 0; i < n; i++) { a[i] = sc.nextInt(); } sc.close(); n2 = 1 << n; memo = new int[n2]; int ans = dfs(k, 0); System.out.println(ans); } static int dfs(int x, int bit) { if (x <= memo[bit]) { return memo[bit]; } if (bit == n2 - 1) { return x; } int max = 0; for (int i = 0; i < n; i++) { if ((bit >> i & 1) == 0) { int val = dfs(x % a[i], bit + (1 << i)); max = Math.max(max, val); } } memo[bit] = Math.max(memo[bit], max); return memo[bit]; } }