結果

問題 No.442 和と積
ユーザー atkrymatkrym
提出日時 2016-12-28 10:33:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 425 bytes
コンパイル時間 3,601 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 41,320 KB
最終ジャッジ日時 2024-07-04 22:54:34
合計ジャッジ時間 6,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,064 KB
testcase_01 AC 129 ms
41,196 KB
testcase_02 AC 130 ms
41,064 KB
testcase_03 AC 129 ms
40,800 KB
testcase_04 AC 130 ms
41,192 KB
testcase_05 AC 129 ms
41,280 KB
testcase_06 AC 112 ms
39,820 KB
testcase_07 AC 130 ms
41,060 KB
testcase_08 AC 126 ms
41,016 KB
testcase_09 AC 128 ms
40,744 KB
testcase_10 AC 131 ms
41,320 KB
testcase_11 AC 128 ms
41,072 KB
testcase_12 AC 128 ms
40,764 KB
testcase_13 AC 128 ms
41,024 KB
testcase_14 AC 133 ms
40,952 KB
testcase_15 AC 127 ms
41,048 KB
testcase_16 AC 129 ms
40,924 KB
testcase_17 AC 127 ms
40,792 KB
testcase_18 AC 128 ms
40,944 KB
testcase_19 AC 126 ms
41,064 KB
testcase_20 AC 126 ms
40,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        BigInteger a = new BigInteger(sc.next());
        BigInteger b = new BigInteger(sc.next());
        
        BigInteger s = a.add(b);
        BigInteger p = a.multiply(b);
        
        System.out.println(s.gcd(p).toString());
    }
}
0