結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,244 KB
testcase_01 AC 121 ms
41,232 KB
testcase_02 AC 107 ms
39,816 KB
testcase_03 AC 120 ms
40,988 KB
testcase_04 AC 123 ms
40,912 KB
testcase_05 AC 109 ms
40,388 KB
testcase_06 AC 122 ms
41,228 KB
testcase_07 AC 124 ms
41,212 KB
testcase_08 AC 124 ms
41,404 KB
testcase_09 AC 126 ms
41,216 KB
testcase_10 AC 111 ms
40,196 KB
testcase_11 AC 122 ms
41,192 KB
testcase_12 AC 125 ms
41,136 KB
testcase_13 AC 108 ms
40,344 KB
testcase_14 AC 121 ms
41,228 KB
testcase_15 AC 119 ms
40,964 KB
testcase_16 AC 125 ms
41,124 KB
testcase_17 AC 127 ms
41,352 KB
testcase_18 AC 113 ms
40,876 KB
testcase_19 AC 117 ms
40,088 KB
testcase_20 AC 125 ms
41,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

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

		// gcd(A+B, A*B);
		// = g*gcd(a+b, a*b*g); // g = gcd(A, B), a = A/g, b = B/g;
		// = g*gcd(a+b, g); // a, b are disjoint, so a+b, a*b are also disjoint
		long g = gcd(a, b);
		long gd = gcd((a+b)/g, g);
		
		System.out.println(g*gd);
	}
	private static long gcd(long x, long y){
		long tmp;
		while((tmp = x%y) != 0){
			x = y;
			y = tmp;
		}
		return y;
	}
}
0