結果

問題 No.353 ヘイトプラス
ユーザー jp_stejp_ste
提出日時 2016-05-05 18:11:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 350 bytes
コンパイル時間 2,217 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-06-29 13:42:22
合計ジャッジ時間 4,015 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,944 KB
testcase_01 AC 125 ms
40,940 KB
testcase_02 AC 127 ms
41,156 KB
testcase_03 AC 110 ms
40,136 KB
testcase_04 AC 127 ms
41,040 KB
testcase_05 AC 127 ms
41,404 KB
testcase_06 AC 128 ms
41,416 KB
testcase_07 AC 127 ms
41,048 KB
testcase_08 AC 125 ms
41,260 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