結果

問題 No.3058 M + D Problem
ユーザー takutakutakutaku
提出日時 2020-09-23 13:12:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 1,925 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 53,740 KB
最終ジャッジ日時 2024-06-27 22:18:57
合計ジャッジ時間 5,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,192 KB
testcase_01 AC 127 ms
40,996 KB
testcase_02 AC 129 ms
41,296 KB
testcase_03 AC 123 ms
41,380 KB
testcase_04 WA -
testcase_05 AC 112 ms
39,964 KB
testcase_06 AC 122 ms
41,072 KB
testcase_07 AC 125 ms
41,308 KB
testcase_08 AC 113 ms
40,280 KB
testcase_09 AC 125 ms
41,308 KB
testcase_10 AC 125 ms
41,400 KB
testcase_11 AC 134 ms
41,332 KB
testcase_12 AC 126 ms
41,576 KB
testcase_13 AC 130 ms
41,292 KB
testcase_14 AC 116 ms
40,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
	    
	    // 標準入力を受け取る
	    Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        
        System.out.println(n + m);
        
    }
}
0