結果

問題 No.751 Frac #2
ユーザー Mcpu3Mcpu3
提出日時 2018-12-20 21:16:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 1,000 ms
コード長 682 bytes
コンパイル時間 3,396 ms
コンパイル使用メモリ 84,440 KB
実行使用メモリ 55,176 KB
最終ジャッジ日時 2024-09-25 09:11:31
合計ジャッジ時間 11,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
55,136 KB
testcase_01 AC 173 ms
54,696 KB
testcase_02 AC 169 ms
55,012 KB
testcase_03 AC 169 ms
54,728 KB
testcase_04 AC 172 ms
54,920 KB
testcase_05 AC 173 ms
54,816 KB
testcase_06 AC 170 ms
54,708 KB
testcase_07 AC 176 ms
54,660 KB
testcase_08 AC 176 ms
54,648 KB
testcase_09 AC 172 ms
55,176 KB
testcase_10 AC 176 ms
55,060 KB
testcase_11 AC 177 ms
54,692 KB
testcase_12 AC 174 ms
54,700 KB
testcase_13 AC 177 ms
54,936 KB
testcase_14 AC 173 ms
54,656 KB
testcase_15 AC 174 ms
54,596 KB
testcase_16 AC 171 ms
54,660 KB
testcase_17 AC 176 ms
54,704 KB
testcase_18 AC 172 ms
54,952 KB
testcase_19 AC 173 ms
54,644 KB
testcase_20 AC 175 ms
54,820 KB
testcase_21 AC 174 ms
54,792 KB
testcase_22 AC 175 ms
54,660 KB
testcase_23 AC 179 ms
54,880 KB
testcase_24 AC 173 ms
54,640 KB
testcase_25 AC 174 ms
55,024 KB
testcase_26 AC 171 ms
54,872 KB
testcase_27 AC 174 ms
54,652 KB
testcase_28 AC 173 ms
54,920 KB
testcase_29 AC 179 ms
55,052 KB
testcase_30 AC 171 ms
54,772 KB
testcase_31 AC 172 ms
54,788 KB
testcase_32 AC 163 ms
54,572 KB
testcase_33 AC 163 ms
54,544 KB
testcase_34 AC 162 ms
54,804 KB
testcase_35 AC 162 ms
54,536 KB
testcase_36 AC 161 ms
54,780 KB
testcase_37 AC 161 ms
54,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

class Main {
	public static long gcd(long a, long b) {
		return b != 0 ? gcd(b, a % b) : Math.abs(a);
	}

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter pw = new PrintWriter(System.out);
		int n = sc.nextInt();
		long A = sc.nextLong(), B = 1, tmp;
		for (int i = 1; i < n; ++i) B *= sc.nextLong();
		n = sc.nextInt();
		for (int i = 0; i < n; ++i) {
			if (i % 2 == 0) B *= sc.nextLong();
			else A *= sc.nextLong();
		}
		sc.close();
		if (B < 0) {
			A = -A;
			B = -B;
		}
		tmp = gcd(A, B);
		pw.print(A / tmp + " " + B / tmp);
		pw.close();
	}
}
0