結果

問題 No.1088 A+B Problem
ユーザー tentententen
提出日時 2020-11-09 20:13:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 1,864 ms
コンパイル使用メモリ 73,748 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-07-22 16:17:15
合計ジャッジ時間 3,889 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,436 KB
testcase_01 AC 115 ms
41,344 KB
testcase_02 AC 116 ms
41,484 KB
testcase_03 AC 131 ms
41,368 KB
testcase_04 AC 117 ms
41,544 KB
testcase_05 AC 114 ms
41,404 KB
testcase_06 AC 101 ms
41,284 KB
testcase_07 AC 112 ms
41,452 KB
testcase_08 AC 104 ms
41,272 KB
testcase_09 AC 110 ms
41,544 KB
testcase_10 AC 104 ms
41,016 KB
testcase_11 AC 110 ms
40,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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