結果

問題 No.353 ヘイトプラス
ユーザー GchansanjouGchansanjou
提出日時 2018-02-16 14:10:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 39 ms / 1,000 ms
コード長 612 bytes
コンパイル時間 3,234 ms
コンパイル使用メモリ 71,396 KB
実行使用メモリ 49,700 KB
最終ジャッジ日時 2023-09-17 00:00:24
合計ジャッジ時間 3,618 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
49,256 KB
testcase_01 AC 39 ms
49,516 KB
testcase_02 AC 38 ms
49,360 KB
testcase_03 AC 38 ms
49,228 KB
testcase_04 AC 39 ms
49,700 KB
testcase_05 AC 38 ms
49,372 KB
testcase_06 AC 37 ms
49,376 KB
testcase_07 AC 38 ms
49,364 KB
testcase_08 AC 39 ms
49,524 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