結果

問題 No.1088 A+B Problem
ユーザー planetWorldYplanetWorldY
提出日時 2021-02-14 17:29:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 5,870 ms
コンパイル使用メモリ 71,220 KB
実行使用メモリ 56,068 KB
最終ジャッジ日時 2023-09-29 08:48:41
合計ジャッジ時間 5,470 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
55,756 KB
testcase_01 AC 130 ms
55,720 KB
testcase_02 AC 130 ms
55,912 KB
testcase_03 AC 129 ms
55,684 KB
testcase_04 AC 129 ms
55,720 KB
testcase_05 AC 131 ms
55,696 KB
testcase_06 AC 129 ms
55,924 KB
testcase_07 AC 130 ms
56,068 KB
testcase_08 AC 129 ms
55,724 KB
testcase_09 AC 129 ms
55,912 KB
testcase_10 AC 128 ms
55,908 KB
testcase_11 AC 128 ms
55,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int A = sc.nextInt();
        int B = sc.nextInt();
        
        System.out.println(A + B);
        
    }
}
0