結果

問題 No.353 ヘイトプラス
ユーザー yagi2yagi2
提出日時 2017-04-17 17:01:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 313 bytes
コンパイル時間 2,139 ms
コンパイル使用メモリ 74,248 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-07-03 22:28:34
合計ジャッジ時間 4,052 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,312 KB
testcase_01 AC 132 ms
41,228 KB
testcase_02 AC 132 ms
41,428 KB
testcase_03 AC 132 ms
41,544 KB
testcase_04 AC 136 ms
41,176 KB
testcase_05 AC 135 ms
41,072 KB
testcase_06 AC 137 ms
41,188 KB
testcase_07 AC 135 ms
41,216 KB
testcase_08 AC 125 ms
41,268 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