結果

問題 No.442 和と積
ユーザー htensaihtensai
提出日時 2019-11-19 12:52:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-10-03 06:26:31
合計ジャッジ時間 5,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 111 ms
41,444 KB
testcase_02 AC 109 ms
41,220 KB
testcase_03 AC 101 ms
41,692 KB
testcase_04 WA -
testcase_05 AC 115 ms
41,372 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 97 ms
41,256 KB
testcase_10 WA -
testcase_11 AC 110 ms
41,292 KB
testcase_12 AC 113 ms
41,408 KB
testcase_13 AC 105 ms
41,428 KB
testcase_14 AC 112 ms
41,344 KB
testcase_15 AC 110 ms
40,308 KB
testcase_16 AC 98 ms
41,144 KB
testcase_17 AC 99 ms
41,152 KB
testcase_18 WA -
testcase_19 AC 112 ms
41,436 KB
testcase_20 AC 100 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextLong();
		long b = sc.nextLong();
		long c = a + b;
		long gcdA = gcd(a, c);
		long gcdB = gcd(b, c);
		long ans = gcdA / gcd(gcdA, gcdB) * gcdB;
		System.out.println(ans);
	}
	
	static long gcd(long a, long b) {
	    if (a % b == 0) {
	        return b;
	    } else {
	        return gcd(b, a % b);
	    }
	}
}
0