結果

問題 No.1249 小学校1年生の夢
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-03 09:01:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 3,264 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-10-03 03:07:37
合計ジャッジ時間 8,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,940 KB
testcase_01 AC 133 ms
54,128 KB
testcase_02 AC 137 ms
54,220 KB
testcase_03 AC 133 ms
54,044 KB
testcase_04 AC 133 ms
54,052 KB
testcase_05 AC 136 ms
54,200 KB
testcase_06 AC 131 ms
54,092 KB
testcase_07 AC 131 ms
54,168 KB
testcase_08 AC 131 ms
54,256 KB
testcase_09 AC 131 ms
54,032 KB
testcase_10 AC 133 ms
54,040 KB
testcase_11 AC 132 ms
54,028 KB
testcase_12 AC 132 ms
54,100 KB
testcase_13 AC 132 ms
54,028 KB
testcase_14 AC 130 ms
54,112 KB
testcase_15 AC 130 ms
54,056 KB
testcase_16 AC 133 ms
54,176 KB
testcase_17 AC 131 ms
54,008 KB
testcase_18 AC 133 ms
54,092 KB
testcase_19 AC 133 ms
54,056 KB
testcase_20 AC 132 ms
54,096 KB
testcase_21 AC 133 ms
54,180 KB
testcase_22 AC 132 ms
54,088 KB
testcase_23 AC 132 ms
54,096 KB
testcase_24 AC 142 ms
54,148 KB
testcase_25 AC 130 ms
53,716 KB
testcase_26 AC 134 ms
54,060 KB
testcase_27 AC 132 ms
53,984 KB
testcase_28 AC 130 ms
53,976 KB
testcase_29 AC 130 ms
54,000 KB
testcase_30 AC 131 ms
54,088 KB
testcase_31 AC 130 ms
53,924 KB
testcase_32 AC 132 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	int a = sc.nextInt();
	    	int b = sc.nextInt();
	    	int c = sc.nextInt();

	    	System.out.println(a + b == c ? "Correct":"Incorrect");
	    	}

}
0