結果

問題 No.751 Frac #2
ユーザー x87asdfx87asdf
提出日時 2018-11-15 17:16:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 898 bytes
コンパイル時間 2,822 ms
コンパイル使用メモリ 79,496 KB
実行使用メモリ 42,668 KB
最終ジャッジ日時 2024-06-06 20:11:39
合計ジャッジ時間 9,537 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
42,240 KB
testcase_01 AC 128 ms
41,908 KB
testcase_02 AC 136 ms
41,940 KB
testcase_03 AC 128 ms
41,672 KB
testcase_04 AC 147 ms
42,172 KB
testcase_05 AC 144 ms
42,232 KB
testcase_06 AC 138 ms
42,028 KB
testcase_07 AC 150 ms
42,492 KB
testcase_08 AC 138 ms
41,828 KB
testcase_09 WA -
testcase_10 AC 142 ms
42,376 KB
testcase_11 WA -
testcase_12 AC 140 ms
42,328 KB
testcase_13 AC 135 ms
41,864 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 145 ms
42,244 KB
testcase_17 AC 149 ms
42,096 KB
testcase_18 AC 146 ms
42,568 KB
testcase_19 AC 140 ms
42,220 KB
testcase_20 AC 137 ms
42,160 KB
testcase_21 AC 134 ms
41,976 KB
testcase_22 AC 132 ms
41,740 KB
testcase_23 AC 155 ms
42,644 KB
testcase_24 AC 140 ms
42,296 KB
testcase_25 AC 155 ms
42,356 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 150 ms
42,668 KB
testcase_29 AC 151 ms
42,492 KB
testcase_30 AC 146 ms
42,344 KB
testcase_31 AC 150 ms
42,384 KB
testcase_32 AC 159 ms
42,408 KB
testcase_33 AC 162 ms
42,548 KB
testcase_34 AC 150 ms
42,352 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	static Scanner sc;
	static long numerator;
	static long denominator;

	public static void main(String[] args) {

		sc = new Scanner(System.in);
		numerator = 1;
		denominator = 1;

		inputNume(sc.nextInt());
		inputDeno(sc.nextInt());

		long gcf = calculateGcf(numerator, denominator);
		numerator /= gcf;
		denominator /= gcf;

		System.out.println(numerator+" "+denominator);
	}

	static void inputNume(int l) {
		numerator *= sc.nextLong();
		for(int i=1;i<l;i++) {
			denominator *= sc.nextLong();
		}
	}

	static void inputDeno(int l) {
		for(int i=0;i<l;i++) {
			if(i % 2 != 0) {
				numerator *= sc.nextLong();
			} else {
				denominator *= sc.nextLong();
			}
		}
	}

	static long calculateGcf(long m, long n) {
		if(m == 0 || n == 0) {
			return 1;
		}
		long s = 0;
		while(m % n != 0) {
			s = m;
			m = n;
			n = s % n;
		}
		return n;
	}
}
0