結果
問題 | No.751 Frac #2 |
ユーザー | htensai |
提出日時 | 2020-05-08 08:53:15 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 158 ms / 1,000 ms |
コード長 | 1,762 bytes |
コンパイル時間 | 2,105 ms |
コンパイル使用メモリ | 80,472 KB |
実行使用メモリ | 55,144 KB |
最終ジャッジ日時 | 2024-07-03 09:46:21 |
合計ジャッジ時間 | 8,889 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 150 ms
54,804 KB |
testcase_01 | AC | 145 ms
54,832 KB |
testcase_02 | AC | 150 ms
55,144 KB |
testcase_03 | AC | 151 ms
55,024 KB |
testcase_04 | AC | 152 ms
54,716 KB |
testcase_05 | AC | 158 ms
54,752 KB |
testcase_06 | AC | 148 ms
54,796 KB |
testcase_07 | AC | 146 ms
54,800 KB |
testcase_08 | AC | 140 ms
54,720 KB |
testcase_09 | AC | 155 ms
54,876 KB |
testcase_10 | AC | 151 ms
54,912 KB |
testcase_11 | AC | 150 ms
54,968 KB |
testcase_12 | AC | 141 ms
54,636 KB |
testcase_13 | AC | 152 ms
54,780 KB |
testcase_14 | AC | 149 ms
54,860 KB |
testcase_15 | AC | 146 ms
55,016 KB |
testcase_16 | AC | 157 ms
54,872 KB |
testcase_17 | AC | 144 ms
54,984 KB |
testcase_18 | AC | 139 ms
54,480 KB |
testcase_19 | AC | 148 ms
54,860 KB |
testcase_20 | AC | 147 ms
54,968 KB |
testcase_21 | AC | 149 ms
54,696 KB |
testcase_22 | AC | 146 ms
54,984 KB |
testcase_23 | AC | 156 ms
54,772 KB |
testcase_24 | AC | 148 ms
55,020 KB |
testcase_25 | AC | 150 ms
55,028 KB |
testcase_26 | AC | 147 ms
54,896 KB |
testcase_27 | AC | 136 ms
54,620 KB |
testcase_28 | AC | 145 ms
55,116 KB |
testcase_29 | AC | 146 ms
55,108 KB |
testcase_30 | AC | 149 ms
54,876 KB |
testcase_31 | AC | 138 ms
54,708 KB |
testcase_32 | AC | 150 ms
54,880 KB |
testcase_33 | AC | 152 ms
54,616 KB |
testcase_34 | AC | 152 ms
54,836 KB |
testcase_35 | AC | 152 ms
54,992 KB |
testcase_36 | AC | 151 ms
54,892 KB |
testcase_37 | AC | 155 ms
55,144 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n1 = sc.nextInt(); ArrayDeque<Integer> mothers = new ArrayDeque<>(); ArrayDeque<Integer> children = new ArrayDeque<>(); int x = sc.nextInt(); boolean isMPlus = true; boolean isCPlus = true; if (x < 0) { isCPlus ^= true; x *= -1; } children.add(x); for (int i = 1; i < n1; i++) { int y = sc.nextInt(); if (y < 0) { isMPlus ^= true; y *= -1; } mothers.add(y); } int n2 = sc.nextInt(); for (int i = 0; i < n2; i++) { int y = sc.nextInt(); if (i % 2 == 0) { if (y < 0) { isMPlus ^= true; y *= -1; } mothers.add(y); } else { if (y < 0) { isCPlus ^= true; y *= -1; } children.add(y); } } long mother = 1; long child = 1; ArrayDeque<Integer> next = new ArrayDeque<>(); while (mothers.size() > 0) { int m = mothers.poll(); while (children.size() > 0) { int c = children.poll(); int gcd = getGCD(m, c); m /= gcd; c /= gcd; if (c != 1) { next.add(c); } if (m == 1) { break; } } if (m != 1) { mother *= m; } children.addAll(next); next.clear(); } while (children.size() > 0) { child *= children.poll(); } if (isMPlus ^ isCPlus) { child *= -1; } System.out.println(child + " " + mother); } static int getGCD(int x, int y) { if (x % y == 0) { return y; } else { return getGCD(y, x % y); } } }