結果

問題 No.442 和と積
ユーザー tentententen
提出日時 2020-09-12 23:11:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 512 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-06-10 19:07:41
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,712 KB
testcase_01 AC 130 ms
40,996 KB
testcase_02 AC 128 ms
41,176 KB
testcase_03 AC 129 ms
41,136 KB
testcase_04 AC 128 ms
41,112 KB
testcase_05 AC 126 ms
41,428 KB
testcase_06 AC 114 ms
40,888 KB
testcase_07 AC 126 ms
41,244 KB
testcase_08 AC 124 ms
40,988 KB
testcase_09 AC 127 ms
41,180 KB
testcase_10 AC 127 ms
41,128 KB
testcase_11 AC 127 ms
41,272 KB
testcase_12 AC 128 ms
41,172 KB
testcase_13 AC 124 ms
41,276 KB
testcase_14 AC 126 ms
41,036 KB
testcase_15 AC 111 ms
41,208 KB
testcase_16 AC 125 ms
40,992 KB
testcase_17 AC 123 ms
40,736 KB
testcase_18 AC 125 ms
41,300 KB
testcase_19 AC 125 ms
41,396 KB
testcase_20 AC 130 ms
41,132 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 ans = 1;
    	long gcd1 = getGCD(c, a);
    	ans *= gcd1;
    	c /= gcd1;
    	long gcd2 = getGCD(c, b);
    	ans *= gcd2;
    	System.out.println(ans);
	}
	
	static long getGCD(long x, long y) {
	    if (x % y == 0) {
	        return y;
	    } else {
	        return getGCD(y, x % y);
	    }
	}
}
0