結果

問題 No.751 Frac #2
ユーザー Mcpu3Mcpu3
提出日時 2018-08-30 02:19:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 1,000 ms
コード長 918 bytes
コンパイル時間 2,862 ms
コンパイル使用メモリ 79,388 KB
実行使用メモリ 55,220 KB
最終ジャッジ日時 2024-10-12 10:59:41
合計ジャッジ時間 10,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,964 KB
testcase_01 AC 151 ms
55,080 KB
testcase_02 AC 153 ms
55,064 KB
testcase_03 AC 153 ms
54,684 KB
testcase_04 AC 155 ms
55,020 KB
testcase_05 AC 154 ms
54,844 KB
testcase_06 AC 156 ms
54,884 KB
testcase_07 AC 149 ms
54,752 KB
testcase_08 AC 155 ms
54,920 KB
testcase_09 AC 157 ms
55,220 KB
testcase_10 AC 156 ms
55,000 KB
testcase_11 AC 153 ms
55,016 KB
testcase_12 AC 151 ms
55,036 KB
testcase_13 AC 158 ms
54,996 KB
testcase_14 AC 151 ms
54,844 KB
testcase_15 AC 152 ms
54,836 KB
testcase_16 AC 151 ms
54,864 KB
testcase_17 AC 152 ms
54,680 KB
testcase_18 AC 152 ms
54,712 KB
testcase_19 AC 150 ms
54,852 KB
testcase_20 AC 154 ms
54,852 KB
testcase_21 AC 153 ms
54,940 KB
testcase_22 AC 149 ms
54,724 KB
testcase_23 AC 152 ms
54,848 KB
testcase_24 AC 151 ms
54,984 KB
testcase_25 AC 153 ms
54,888 KB
testcase_26 AC 149 ms
55,020 KB
testcase_27 AC 150 ms
54,636 KB
testcase_28 AC 156 ms
54,908 KB
testcase_29 AC 153 ms
54,704 KB
testcase_30 AC 154 ms
54,720 KB
testcase_31 AC 150 ms
54,920 KB
testcase_32 AC 152 ms
54,828 KB
testcase_33 AC 152 ms
55,012 KB
testcase_34 AC 138 ms
54,584 KB
testcase_35 AC 150 ms
55,040 KB
testcase_36 AC 153 ms
54,904 KB
testcase_37 AC 159 ms
54,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main
{
	public static long gcd(long x, long y)
	{
		long r;
		x = Math.abs(x);
		y = Math.abs(y);
		if (y > x) {
			r = x;
			x = y;
			y = r;
		}
		while (y > 0) {
			r = x % y;
			x = y;
			y = r;
		}
		return x;
	}
	
	public static void main(String[] args)
	{
		Scanner sc = new Scanner(System.in);
		long n1, n2, a, b, numerator = 0, denominator = 1, i;
		n1 = sc.nextInt();
		for (i = 0; i < n1; i++) {
			a = sc.nextInt();
			if (1 > i) numerator = a;
			else denominator *= a;
		}
		n2 = sc.nextInt();
		for (i = 0; i < n2; i++) {
			b = sc.nextInt();
			if (i % 2 == 1) numerator *= b;
			else denominator *= b;
		}
		sc.close();
		if (0 > denominator) {
			numerator = -numerator;
			denominator = -denominator;
		}
		System.out.print(numerator / gcd(numerator, denominator) + " " + denominator / gcd(numerator, denominator));
	}
}
0