結果
問題 | No.14 最小公倍数ソート |
ユーザー | mastersatoshi |
提出日時 | 2015-08-05 17:11:53 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,824 bytes |
コンパイル時間 | 2,041 ms |
コンパイル使用メモリ | 82,896 KB |
実行使用メモリ | 63,292 KB |
最終ジャッジ日時 | 2024-07-18 03:31:06 |
合計ジャッジ時間 | 8,637 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
48,260 KB |
testcase_01 | AC | 108 ms
48,092 KB |
testcase_02 | AC | 124 ms
47,876 KB |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] a = new int[n]; ArrayList<Integer> in = new ArrayList(); ArrayList<Integer> out = new ArrayList(); //1個目は固定 out.add(sc.nextInt()); for (int i = 1; i < n; i++) { in.add(sc.nextInt()); } in.sort(null); while (!in.isEmpty()) { int fixed = out.get(out.size() - 1); ArrayList<Integer> primes = getPrime(fixed); boolean get = false; for (int i = 0; i < in.size(); i++) { int target = in.get(i); if(target == 1){ break; } for (int prime : primes) { if (target % prime == 0) { out.add(target); in.remove(i); i--; get = true; } } } if (!get) { out.add(in.get(0)); in.remove(0); } } System.out.print(out.get(0)); for (int i = 1; i < out.size(); i++) { System.out.print(" " + out.get(i)); } System.out.println(); } private static ArrayList<Integer> getPrime(int source) { ArrayList<Integer> ret = new ArrayList(); for (int i = 2; source != 1; i++) { while (source % i == 0) { ret.add(i); source /= i; } } return ret; } }