結果

問題 No.751 Frac #2
ユーザー 37zigen37zigen
提出日時 2018-11-09 20:49:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 1,000 ms
コード長 1,134 bytes
コンパイル時間 4,863 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2024-11-21 05:22:26
合計ジャッジ時間 9,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
42,448 KB
testcase_01 AC 155 ms
42,468 KB
testcase_02 AC 147 ms
41,936 KB
testcase_03 AC 154 ms
42,200 KB
testcase_04 AC 154 ms
42,520 KB
testcase_05 AC 160 ms
42,452 KB
testcase_06 AC 159 ms
42,328 KB
testcase_07 AC 147 ms
42,076 KB
testcase_08 AC 155 ms
42,436 KB
testcase_09 AC 154 ms
42,376 KB
testcase_10 AC 155 ms
42,676 KB
testcase_11 AC 139 ms
42,484 KB
testcase_12 AC 166 ms
42,460 KB
testcase_13 AC 157 ms
42,452 KB
testcase_14 AC 158 ms
42,472 KB
testcase_15 AC 160 ms
42,344 KB
testcase_16 AC 157 ms
42,472 KB
testcase_17 AC 158 ms
42,408 KB
testcase_18 AC 161 ms
42,200 KB
testcase_19 AC 158 ms
42,320 KB
testcase_20 AC 157 ms
42,204 KB
testcase_21 AC 157 ms
42,572 KB
testcase_22 AC 158 ms
42,464 KB
testcase_23 AC 152 ms
42,336 KB
testcase_24 AC 154 ms
42,192 KB
testcase_25 AC 155 ms
42,328 KB
testcase_26 AC 155 ms
42,332 KB
testcase_27 AC 143 ms
42,408 KB
testcase_28 AC 161 ms
42,436 KB
testcase_29 AC 160 ms
42,468 KB
testcase_30 AC 162 ms
42,468 KB
testcase_31 AC 159 ms
42,472 KB
testcase_32 AC 143 ms
42,080 KB
testcase_33 AC 154 ms
42,456 KB
testcase_34 AC 156 ms
42,328 KB
testcase_35 AC 151 ms
42,480 KB
testcase_36 AC 153 ms
42,544 KB
testcase_37 AC 157 ms
42,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n1 = sc.nextInt();
		long[] A = new long[n1];
		for (int i = 0; i < n1; ++i)
			A[i] = sc.nextLong();
		int n2 = sc.nextInt();
		long[] B = new long[n2];
		for (int i = 0; i < n2; ++i)
			B[i] = sc.nextLong();
		long den = 1;
		long num = 1;
		for (int i = n2 - 1; i >= 0; i -= 2) {
			if (n2 % 2 == 1) {
				den = den * B[i];
			} else {
				num = num * B[i];
			}
		}
		for (int i = n2 - 2; i >= 0; i -= 2) {
			if (n2 % 2 == 0) {
				den = den * B[i];
			} else {
				num = num * B[i];
			}
		}
		for (int i = 1; i < n1; ++i) {
			den = den * A[i];
		}
		num *= A[0];
		long g = gcd(Math.abs(den), Math.abs(num));
		den /= g;
		num /= g;
		System.out.println((int) (Math.signum(num) * Math.signum(den)) * Math.abs(num) + " " + Math.abs(den));
	}

	static long gcd(long a, long b) {
		if (a > b)
			return gcd(b, a);
		if (a == 0)
			return b;
		return gcd(b % a, a);
	}

	public static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0