結果

問題 No.442 和と積
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-13 01:40:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 1,000 ms
コード長 330 bytes
コンパイル時間 3,687 ms
コンパイル使用メモリ 77,548 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-07-04 23:13:58
合計ジャッジ時間 6,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,128 KB
testcase_01 AC 129 ms
41,552 KB
testcase_02 AC 116 ms
41,592 KB
testcase_03 AC 131 ms
41,176 KB
testcase_04 AC 131 ms
41,516 KB
testcase_05 AC 129 ms
41,736 KB
testcase_06 AC 115 ms
41,376 KB
testcase_07 AC 130 ms
41,392 KB
testcase_08 AC 129 ms
41,436 KB
testcase_09 AC 129 ms
41,280 KB
testcase_10 AC 128 ms
41,128 KB
testcase_11 AC 116 ms
41,412 KB
testcase_12 AC 128 ms
41,672 KB
testcase_13 AC 130 ms
41,264 KB
testcase_14 AC 131 ms
41,280 KB
testcase_15 AC 128 ms
41,048 KB
testcase_16 AC 132 ms
41,404 KB
testcase_17 AC 142 ms
41,720 KB
testcase_18 AC 133 ms
41,268 KB
testcase_19 AC 126 ms
41,192 KB
testcase_20 AC 128 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

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

		BigInteger a = sc.nextBigInteger();
		BigInteger b = sc.nextBigInteger();
		BigInteger sum = a.add(b);
		BigInteger mul = a.multiply(b);
		System.out.println(sum.gcd(mul));
		
	}
}
0