結果

問題 No.3058 M + D Problem
ユーザー takutakutakutaku
提出日時 2020-09-23 13:12:56
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 288 bytes
コンパイル時間 1,935 ms
コンパイル使用メモリ 71,008 KB
実行使用メモリ 56,196 KB
最終ジャッジ日時 2023-09-10 06:50:13
合計ジャッジ時間 6,530 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
55,892 KB
testcase_01 AC 122 ms
55,552 KB
testcase_02 AC 123 ms
56,064 KB
testcase_03 AC 125 ms
56,080 KB
testcase_04 WA -
testcase_05 AC 123 ms
56,044 KB
testcase_06 AC 124 ms
55,840 KB
testcase_07 AC 126 ms
55,992 KB
testcase_08 AC 125 ms
55,756 KB
testcase_09 AC 125 ms
56,196 KB
testcase_10 AC 124 ms
56,028 KB
testcase_11 AC 122 ms
56,108 KB
testcase_12 AC 125 ms
55,588 KB
testcase_13 AC 125 ms
55,928 KB
testcase_14 AC 122 ms
56,108 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