結果

問題 No.353 ヘイトプラス
ユーザー GchansanjouGchansanjou
提出日時 2018-02-16 14:10:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 612 bytes
コンパイル時間 3,254 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 37,236 KB
最終ジャッジ日時 2024-07-03 22:33:56
合計ジャッジ時間 3,874 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,804 KB
testcase_01 AC 46 ms
37,024 KB
testcase_02 AC 45 ms
37,060 KB
testcase_03 AC 45 ms
37,044 KB
testcase_04 AC 44 ms
36,800 KB
testcase_05 AC 48 ms
37,016 KB
testcase_06 AC 47 ms
37,120 KB
testcase_07 AC 46 ms
37,192 KB
testcase_08 AC 44 ms
37,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukiCoder;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No00353 {

	public static void main(String[] args) {
		BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in));
		String[] input = new String[2];
		try {
			input = bufferedReader.readLine().split(" ");
			long a = Long.parseLong(input[0]);
			long b = Long.parseLong(input[1]);
			System.out.println(Long.sum(a, b));
		} catch (NumberFormatException | IOException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
		}
	}

}
0