結果

問題 No.2086 A+B問題
ユーザー viral8viral8
提出日時 2022-10-01 09:23:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 75,152 KB
実行使用メモリ 41,448 KB
最終ジャッジ日時 2024-06-06 03:02:15
合計ジャッジ時間 5,206 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,376 KB
testcase_01 AC 105 ms
39,868 KB
testcase_02 AC 102 ms
40,244 KB
testcase_03 AC 122 ms
41,448 KB
testcase_04 AC 101 ms
40,100 KB
testcase_05 AC 115 ms
41,160 KB
testcase_06 AC 117 ms
41,244 KB
testcase_07 AC 117 ms
41,024 KB
testcase_08 AC 117 ms
41,116 KB
testcase_09 AC 114 ms
41,288 KB
testcase_10 AC 115 ms
41,268 KB
testcase_11 AC 114 ms
41,316 KB
testcase_12 AC 120 ms
41,032 KB
testcase_13 AC 103 ms
39,740 KB
testcase_14 AC 113 ms
41,260 KB
testcase_15 AC 120 ms
41,116 KB
testcase_16 AC 109 ms
39,884 KB
testcase_17 AC 120 ms
41,296 KB
testcase_18 AC 117 ms
41,252 KB
testcase_19 AC 117 ms
41,004 KB
testcase_20 AC 118 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.math.BigInteger;
class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        BigInteger A = new BigInteger(sc.next());
        BigInteger B = new BigInteger(sc.next());
        System.out.println(A.add(B));
    }
}
0