結果
問題 | No.442 和と積 |
ユーザー | itezpace |
提出日時 | 2017-02-13 07:29:36 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 137 ms / 1,000 ms |
コード長 | 626 bytes |
コンパイル時間 | 3,558 ms |
コンパイル使用メモリ | 73,788 KB |
実行使用メモリ | 54,208 KB |
最終ジャッジ日時 | 2024-07-04 23:03:15 |
合計ジャッジ時間 | 6,940 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
53,864 KB |
testcase_01 | AC | 134 ms
53,924 KB |
testcase_02 | AC | 130 ms
53,884 KB |
testcase_03 | AC | 131 ms
54,208 KB |
testcase_04 | AC | 131 ms
53,968 KB |
testcase_05 | AC | 129 ms
53,968 KB |
testcase_06 | AC | 129 ms
53,768 KB |
testcase_07 | AC | 130 ms
53,852 KB |
testcase_08 | AC | 129 ms
53,844 KB |
testcase_09 | AC | 116 ms
53,768 KB |
testcase_10 | AC | 132 ms
53,708 KB |
testcase_11 | AC | 136 ms
53,680 KB |
testcase_12 | AC | 131 ms
53,924 KB |
testcase_13 | AC | 134 ms
54,092 KB |
testcase_14 | AC | 134 ms
53,856 KB |
testcase_15 | AC | 132 ms
53,788 KB |
testcase_16 | AC | 133 ms
53,932 KB |
testcase_17 | AC | 137 ms
53,716 KB |
testcase_18 | AC | 132 ms
53,596 KB |
testcase_19 | AC | 133 ms
53,552 KB |
testcase_20 | AC | 132 ms
53,732 KB |
ソースコード
import java.util.Scanner; import java.math.BigInteger; public class Yuki442{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); long a = sc.nextLong(); long b = sc.nextLong(); String s_a = Long.toString(a); String s_b = Long.toString(b); BigInteger big_a = new BigInteger(s_a); BigInteger big_b = new BigInteger(s_b); BigInteger big_c = big_a; big_c = big_c.add(big_b); BigInteger big_d = big_a; big_d = big_d.multiply(big_b); BigInteger big_e = big_c; big_e = big_e.gcd(big_d); long c = big_e.longValue(); System.out.println(c); } }