結果

問題 No.442 和と積
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-13 01:39:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 434 bytes
コンパイル時間 3,992 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-07-04 23:13:27
合計ジャッジ時間 6,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,324 KB
testcase_01 AC 129 ms
41,112 KB
testcase_02 AC 124 ms
41,240 KB
testcase_03 AC 119 ms
40,300 KB
testcase_04 AC 127 ms
41,352 KB
testcase_05 AC 123 ms
41,404 KB
testcase_06 AC 124 ms
41,256 KB
testcase_07 AC 129 ms
41,192 KB
testcase_08 AC 129 ms
41,184 KB
testcase_09 AC 111 ms
40,240 KB
testcase_10 AC 125 ms
41,280 KB
testcase_11 AC 122 ms
41,208 KB
testcase_12 AC 128 ms
41,216 KB
testcase_13 AC 120 ms
41,360 KB
testcase_14 AC 121 ms
40,144 KB
testcase_15 AC 111 ms
40,088 KB
testcase_16 AC 125 ms
41,204 KB
testcase_17 AC 124 ms
41,312 KB
testcase_18 AC 117 ms
41,320 KB
testcase_19 AC 117 ms
41,184 KB
testcase_20 AC 122 ms
40,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No442{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		long a = sc.nextLong();
		long b = sc.nextLong();

		long sum = a+b;
		long mul = a*b;

		long g1 = gcd(sum, a);
		sum /= g1;
		long g2 = gcd(sum, b);
		
		System.out.println(g1*g2);
	}
	private static long gcd(long x, long y){
		long tmp;
		while((tmp = x%y) != 0){
			x = y;
			y = tmp;
		}
		return y;
	}
}
0