結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,500 KB
testcase_01 AC 155 ms
42,492 KB
testcase_02 AC 160 ms
42,244 KB
testcase_03 AC 160 ms
42,628 KB
testcase_04 AC 160 ms
42,728 KB
testcase_05 AC 161 ms
42,316 KB
testcase_06 AC 162 ms
42,764 KB
testcase_07 AC 160 ms
42,448 KB
testcase_08 AC 160 ms
42,424 KB
testcase_09 WA -
testcase_10 AC 159 ms
42,528 KB
testcase_11 WA -
testcase_12 AC 156 ms
42,200 KB
testcase_13 AC 158 ms
42,536 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 160 ms
42,360 KB
testcase_17 AC 156 ms
42,228 KB
testcase_18 AC 161 ms
42,380 KB
testcase_19 AC 159 ms
42,392 KB
testcase_20 AC 159 ms
42,404 KB
testcase_21 AC 157 ms
42,216 KB
testcase_22 AC 160 ms
42,580 KB
testcase_23 AC 161 ms
42,536 KB
testcase_24 AC 160 ms
42,188 KB
testcase_25 AC 161 ms
42,636 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 160 ms
42,508 KB
testcase_29 AC 158 ms
42,436 KB
testcase_30 AC 158 ms
42,272 KB
testcase_31 AC 158 ms
42,368 KB
testcase_32 AC 158 ms
42,628 KB
testcase_33 AC 163 ms
42,384 KB
testcase_34 AC 159 ms
42,140 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.nextInt();
		}
	}

	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