結果

問題 No.3062 A + B
ユーザー ks2mks2m
提出日時 2020-04-01 21:48:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 382 bytes
コンパイル時間 1,930 ms
コンパイル使用メモリ 71,848 KB
実行使用メモリ 50,108 KB
最終ジャッジ日時 2023-09-09 17:44:58
合計ジャッジ時間 3,152 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 41 ms
49,280 KB
testcase_04 AC 42 ms
49,364 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 41 ms
49,336 KB
testcase_09 AC 40 ms
49,272 KB
testcase_10 AC 42 ms
47,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int a = Integer.parseInt(sa[0]);
		int b = Integer.parseInt(sa[1]);
		br.close();

		System.out.println(a + b);
	}
}
0