結果

問題 No.353 ヘイトプラス
ユーザー jp_stejp_ste
提出日時 2016-05-05 18:11:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 350 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 73,744 KB
実行使用メモリ 56,556 KB
最終ジャッジ日時 2023-09-12 00:33:08
合計ジャッジ時間 4,146 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
56,120 KB
testcase_01 AC 120 ms
55,916 KB
testcase_02 AC 118 ms
55,600 KB
testcase_03 AC 121 ms
56,016 KB
testcase_04 AC 120 ms
55,852 KB
testcase_05 AC 115 ms
55,868 KB
testcase_06 AC 114 ms
55,668 KB
testcase_07 AC 120 ms
55,892 KB
testcase_08 AC 116 ms
56,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            BigInteger v1 = new BigInteger(scan.next());
            BigInteger v2 = new BigInteger(scan.next());
            System.out.println(v1.add(v2));
        }
    }
}
0