結果

問題 No.751 Frac #2
ユーザー 37zigen37zigen
提出日時 2018-11-09 20:52:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 1,000 ms
コード長 1,442 bytes
コンパイル時間 2,202 ms
コンパイル使用メモリ 85,252 KB
実行使用メモリ 55,144 KB
最終ジャッジ日時 2024-11-21 05:22:53
合計ジャッジ時間 9,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
55,120 KB
testcase_01 AC 147 ms
55,076 KB
testcase_02 AC 152 ms
54,760 KB
testcase_03 AC 147 ms
55,036 KB
testcase_04 AC 134 ms
54,576 KB
testcase_05 AC 141 ms
54,592 KB
testcase_06 AC 151 ms
54,776 KB
testcase_07 AC 145 ms
54,852 KB
testcase_08 AC 150 ms
54,736 KB
testcase_09 AC 149 ms
54,784 KB
testcase_10 AC 150 ms
54,864 KB
testcase_11 AC 147 ms
54,856 KB
testcase_12 AC 146 ms
55,100 KB
testcase_13 AC 157 ms
55,072 KB
testcase_14 AC 157 ms
54,876 KB
testcase_15 AC 138 ms
54,364 KB
testcase_16 AC 147 ms
54,872 KB
testcase_17 AC 151 ms
54,952 KB
testcase_18 AC 146 ms
55,072 KB
testcase_19 AC 138 ms
54,776 KB
testcase_20 AC 133 ms
54,520 KB
testcase_21 AC 158 ms
55,072 KB
testcase_22 AC 146 ms
54,624 KB
testcase_23 AC 156 ms
54,900 KB
testcase_24 AC 157 ms
54,852 KB
testcase_25 AC 149 ms
55,144 KB
testcase_26 AC 150 ms
54,716 KB
testcase_27 AC 149 ms
54,992 KB
testcase_28 AC 148 ms
55,012 KB
testcase_29 AC 158 ms
55,016 KB
testcase_30 AC 148 ms
55,120 KB
testcase_31 AC 149 ms
55,012 KB
testcase_32 AC 141 ms
54,400 KB
testcase_33 AC 145 ms
54,748 KB
testcase_34 AC 152 ms
55,016 KB
testcase_35 AC 149 ms
54,904 KB
testcase_36 AC 145 ms
54,308 KB
testcase_37 AC 145 ms
54,716 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();
		if (!(1 <= n1 && n1 <= 10))
			throw new AssertionError();
		long[] A = new long[n1];
		for (int i = 0; i < n1; ++i) {
			A[i] = sc.nextLong();
			if (!(1 <= Math.abs(A[i]) && Math.abs(A[i]) <= 10))
				throw new AssertionError();
		}
		int n2 = sc.nextInt();
		if (!(1 <= n2 && n2 <= 10))
			throw new AssertionError();
		long[] B = new long[n2];
		for (int i = 0; i < n2; ++i) {
			B[i] = sc.nextLong();
			if (!(1 <= Math.abs(B[i]) && Math.abs(B[i]) <= 10))
				throw new AssertionError();
		}
		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