結果

問題 No.1088 A+B Problem
ユーザー 拓哉拓哉
提出日時 2020-07-21 22:15:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 74,808 KB
実行使用メモリ 41,576 KB
最終ジャッジ日時 2024-06-10 02:38:02
合計ジャッジ時間 3,873 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,576 KB
testcase_01 AC 102 ms
41,476 KB
testcase_02 AC 100 ms
40,348 KB
testcase_03 AC 99 ms
40,084 KB
testcase_04 AC 98 ms
40,344 KB
testcase_05 AC 108 ms
41,344 KB
testcase_06 AC 98 ms
40,304 KB
testcase_07 AC 108 ms
41,532 KB
testcase_08 AC 107 ms
41,452 KB
testcase_09 AC 108 ms
41,572 KB
testcase_10 AC 109 ms
41,132 KB
testcase_11 AC 100 ms
40,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


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