結果

問題 No.442 和と積
ユーザー ieneko18ieneko18
提出日時 2016-11-12 19:47:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 320 bytes
コンパイル時間 1,866 ms
コンパイル使用メモリ 74,564 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-07-04 22:39:52
合計ジャッジ時間 5,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,344 KB
testcase_01 AC 115 ms
41,292 KB
testcase_02 AC 124 ms
41,616 KB
testcase_03 AC 128 ms
41,688 KB
testcase_04 AC 131 ms
41,468 KB
testcase_05 AC 132 ms
41,184 KB
testcase_06 AC 130 ms
41,172 KB
testcase_07 AC 132 ms
41,428 KB
testcase_08 AC 131 ms
41,536 KB
testcase_09 AC 130 ms
41,300 KB
testcase_10 AC 128 ms
41,332 KB
testcase_11 AC 131 ms
41,424 KB
testcase_12 AC 128 ms
41,324 KB
testcase_13 AC 125 ms
41,364 KB
testcase_14 AC 129 ms
41,244 KB
testcase_15 AC 132 ms
41,484 KB
testcase_16 AC 127 ms
41,488 KB
testcase_17 AC 129 ms
41,524 KB
testcase_18 AC 126 ms
41,460 KB
testcase_19 AC 118 ms
41,360 KB
testcase_20 AC 125 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		BigInteger a=sc.nextBigInteger();
		BigInteger b=sc.nextBigInteger();
		BigInteger s=a.add(b);
		BigInteger p=a.multiply(b);
		System.out.println(s.gcd(p));
	}
}
0