結果

問題 No.8058 M + D Problem
ユーザー konataro15konataro15
提出日時 2020-04-01 23:35:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 74,152 KB
実行使用メモリ 56,184 KB
最終ジャッジ日時 2024-06-27 12:50:59
合計ジャッジ時間 4,992 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,976 KB
testcase_01 AC 123 ms
41,324 KB
testcase_02 AC 112 ms
40,184 KB
testcase_03 AC 124 ms
41,368 KB
testcase_04 WA -
testcase_05 AC 124 ms
41,528 KB
testcase_06 AC 122 ms
41,180 KB
testcase_07 AC 125 ms
41,368 KB
testcase_08 AC 124 ms
40,996 KB
testcase_09 AC 128 ms
41,288 KB
testcase_10 AC 123 ms
41,012 KB
testcase_11 AC 125 ms
41,088 KB
testcase_12 AC 110 ms
40,180 KB
testcase_13 AC 128 ms
41,172 KB
testcase_14 AC 124 ms
40,848 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