結果
問題 | No.1083 余りの余り |
ユーザー | tenten |
提出日時 | 2020-12-04 11:22:11 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 839 bytes |
コンパイル時間 | 3,183 ms |
コンパイル使用メモリ | 74,172 KB |
実行使用メモリ | 61,476 KB |
最終ジャッジ日時 | 2024-09-14 21:39:34 |
合計ジャッジ時間 | 8,053 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
46,528 KB |
testcase_01 | AC | 129 ms
41,248 KB |
testcase_02 | AC | 134 ms
41,572 KB |
testcase_03 | AC | 136 ms
41,312 KB |
testcase_04 | AC | 329 ms
41,328 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.*; public class Main { static int n; static int[] values; static int max = 0; public static void main(String[] args) { Scanner sc = new Scanner(System.in); n = sc.nextInt(); int k = sc.nextInt(); values = new int[n]; for (int i = 0; i < n; i++) { values[i] = sc.nextInt(); } search(k, 0, new boolean[n]); System.out.println(max); } static void search(int value, int idx, boolean[] used) { if (idx == n) { max = Math.max(max, value); return; } for (int i = 0; i < n; i++) { if (used[i]) { continue; } used[i] = true; search(value % values[i], idx + 1, used); used[i] = false; } } }