結果

問題 No.442 和と積
ユーザー hermione17hermione17
提出日時 2016-11-11 22:32:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 543 bytes
コンパイル時間 3,344 ms
コンパイル使用メモリ 74,104 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-07-04 22:21:58
合計ジャッジ時間 6,629 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,912 KB
testcase_01 AC 129 ms
40,816 KB
testcase_02 AC 123 ms
40,844 KB
testcase_03 AC 131 ms
40,996 KB
testcase_04 AC 126 ms
40,872 KB
testcase_05 AC 124 ms
40,796 KB
testcase_06 AC 128 ms
41,308 KB
testcase_07 AC 125 ms
41,160 KB
testcase_08 AC 128 ms
41,084 KB
testcase_09 AC 124 ms
41,232 KB
testcase_10 AC 126 ms
41,080 KB
testcase_11 AC 128 ms
41,236 KB
testcase_12 AC 126 ms
40,928 KB
testcase_13 AC 134 ms
40,988 KB
testcase_14 AC 131 ms
41,232 KB
testcase_15 AC 128 ms
40,976 KB
testcase_16 AC 130 ms
41,096 KB
testcase_17 AC 128 ms
41,268 KB
testcase_18 AC 128 ms
41,240 KB
testcase_19 AC 128 ms
40,840 KB
testcase_20 AC 129 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y442 {
	Scanner in = new Scanner(System.in);
	PrintStream out = new PrintStream(System.out);

	Y442() throws Exception {
		long a = in.nextLong();
		long b = in.nextLong();
		
		long sum = a + b;
		long g1 = gcd(sum, a);
		sum /= g1;
		long g2 = gcd(sum, b);
		out.print(g1 * g2);				
	}
	
	long gcd(long x, long y) {
		while (y > 0) {
			x %= y;
			long t = x; x = y; y = t;
		}
		return x;
	}

	public static void main(String argv[]) throws Exception {
		new Y442();
	}
}
0