結果

問題 No.751 Frac #2
ユーザー GrenacheGrenache
提出日時 2019-04-28 13:57:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,364 bytes
コンパイル時間 4,666 ms
コンパイル使用メモリ 77,780 KB
実行使用メモリ 42,056 KB
最終ジャッジ日時 2024-05-09 13:32:18
合計ジャッジ時間 9,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,680 KB
testcase_01 AC 113 ms
41,188 KB
testcase_02 AC 128 ms
41,420 KB
testcase_03 AC 127 ms
41,480 KB
testcase_04 AC 116 ms
41,148 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 124 ms
41,488 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 128 ms
41,776 KB
testcase_12 AC 124 ms
41,536 KB
testcase_13 AC 130 ms
41,668 KB
testcase_14 AC 113 ms
42,056 KB
testcase_15 WA -
testcase_16 AC 125 ms
41,688 KB
testcase_17 AC 128 ms
41,364 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 110 ms
41,656 KB
testcase_23 AC 130 ms
41,608 KB
testcase_24 WA -
testcase_25 AC 127 ms
41,440 KB
testcase_26 WA -
testcase_27 AC 108 ms
41,796 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 122 ms
41,668 KB
testcase_31 AC 125 ms
41,420 KB
testcase_32 AC 119 ms
41,596 KB
testcase_33 AC 126 ms
41,608 KB
testcase_34 WA -
testcase_35 AC 124 ms
41,316 KB
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder751 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n1 = sc.nextInt();

		int[] a = new int[n1];
		for (int i = 0; i < n1; i++) {
			a[i] = sc.nextInt();
		}

		int n2 = sc.nextInt();

		int[] b = new int[n2];
		for (int i = 0; i < n2; i++) {
			b[i] = sc.nextInt();
		}

		long nu = a[0];
		long de = 1;
		for (int i = 1; i < n1; i++) {
			de *= a[i];
		}
		
		long nub = b[n2 - 1];
		long deb = 1;
		for (int i = n2 - 2; i >= 0; i--) {
			long tmp = deb;
			deb = nub;
			nub = b[i] * tmp;
		}

		long nuans = nu / gcd(nu, de);
		long deans = de / gcd(nu, de);
		nuans *= deb / gcd(nub, deb);
		deans *= nub / gcd(nub, deb);
		
		if (nuans < 0 && deans < 0) {
			nuans = -nuans;
			deans = -deans;
		} else if (nuans > 0 && deans < 0) {
			nuans = -nuans;
			deans = -deans;
		}

		pr.printf("%d %d%n", nuans, deans);
	}

	static long gcd(long n, long m) {
		if (m == 0) {
			return n;
		} else {
			return gcd(m, n % m);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0