結果

問題 No.353 ヘイトプラス
ユーザー yagi2yagi2
提出日時 2017-04-17 17:01:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 313 bytes
コンパイル時間 2,089 ms
コンパイル使用メモリ 71,668 KB
実行使用メモリ 55,972 KB
最終ジャッジ日時 2023-09-16 23:54:34
合計ジャッジ時間 4,152 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
55,604 KB
testcase_01 AC 121 ms
55,908 KB
testcase_02 AC 122 ms
55,672 KB
testcase_03 AC 118 ms
55,560 KB
testcase_04 AC 116 ms
55,972 KB
testcase_05 AC 116 ms
55,824 KB
testcase_06 AC 118 ms
53,712 KB
testcase_07 AC 118 ms
55,760 KB
testcase_08 AC 120 ms
55,816 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 = new BigInteger(sc.next());
        BigInteger B = new BigInteger(sc.next());

        System.out.println(A.add(B));
    }
}
0