結果

問題 No.353 ヘイトプラス
ユーザー Gchansanjou
提出日時 2018-02-16 14:10:47
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

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