結果

問題 No.1249 小学校1年生の夢
ユーザー planetWorldYplanetWorldY
提出日時 2020-10-14 17:55:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-07-20 19:14:51
合計ジャッジ時間 8,190 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,092 KB
testcase_01 AC 143 ms
40,788 KB
testcase_02 AC 146 ms
41,316 KB
testcase_03 AC 144 ms
41,240 KB
testcase_04 AC 143 ms
41,104 KB
testcase_05 AC 142 ms
41,124 KB
testcase_06 AC 145 ms
41,192 KB
testcase_07 AC 148 ms
40,948 KB
testcase_08 AC 150 ms
41,384 KB
testcase_09 AC 144 ms
41,292 KB
testcase_10 AC 141 ms
41,004 KB
testcase_11 AC 140 ms
41,244 KB
testcase_12 AC 140 ms
41,272 KB
testcase_13 AC 137 ms
41,136 KB
testcase_14 AC 138 ms
41,064 KB
testcase_15 AC 141 ms
41,076 KB
testcase_16 AC 152 ms
41,152 KB
testcase_17 AC 145 ms
41,264 KB
testcase_18 AC 142 ms
41,144 KB
testcase_19 AC 141 ms
41,184 KB
testcase_20 AC 148 ms
41,128 KB
testcase_21 AC 144 ms
41,156 KB
testcase_22 AC 147 ms
41,220 KB
testcase_23 AC 138 ms
41,172 KB
testcase_24 AC 138 ms
41,340 KB
testcase_25 AC 142 ms
41,220 KB
testcase_26 AC 143 ms
41,068 KB
testcase_27 AC 139 ms
41,120 KB
testcase_28 AC 138 ms
41,324 KB
testcase_29 AC 138 ms
41,272 KB
testcase_30 AC 142 ms
41,236 KB
testcase_31 AC 146 ms
41,064 KB
testcase_32 AC 142 ms
41,472 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();
        int C = sc.nextInt();
        
        if(A + B == C){
           System.out.println("Correct");  
        }else{
            System.out.println("Incorrect");
        }
    
    }
}
0