結果

問題 No.3058 M + D Problem
ユーザー konataro15konataro15
提出日時 2020-04-01 23:35:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 70,344 KB
実行使用メモリ 57,760 KB
最終ジャッジ日時 2023-09-09 20:17:33
合計ジャッジ時間 6,168 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
55,708 KB
testcase_01 AC 125 ms
55,760 KB
testcase_02 AC 125 ms
55,368 KB
testcase_03 AC 123 ms
53,752 KB
testcase_04 WA -
testcase_05 AC 123 ms
55,680 KB
testcase_06 AC 125 ms
55,364 KB
testcase_07 AC 124 ms
55,912 KB
testcase_08 AC 124 ms
57,760 KB
testcase_09 AC 125 ms
55,400 KB
testcase_10 AC 126 ms
56,164 KB
testcase_11 AC 125 ms
55,664 KB
testcase_12 AC 125 ms
55,556 KB
testcase_13 AC 129 ms
55,408 KB
testcase_14 AC 124 ms
54,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
        int b = sc.nextInt();
		System.out.println(a+b);
	}
}
0