結果

問題 No.1249 小学校1年生の夢
ユーザー 遭難者遭難者
提出日時 2020-10-09 23:06:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 74,840 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-07-20 14:00:56
合計ジャッジ時間 7,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,320 KB
testcase_01 AC 112 ms
39,828 KB
testcase_02 AC 117 ms
41,152 KB
testcase_03 AC 106 ms
39,892 KB
testcase_04 AC 118 ms
41,116 KB
testcase_05 AC 112 ms
41,376 KB
testcase_06 AC 112 ms
41,052 KB
testcase_07 AC 113 ms
41,004 KB
testcase_08 AC 101 ms
40,288 KB
testcase_09 AC 114 ms
41,280 KB
testcase_10 AC 111 ms
39,896 KB
testcase_11 AC 100 ms
39,724 KB
testcase_12 AC 119 ms
41,172 KB
testcase_13 AC 112 ms
40,848 KB
testcase_14 AC 114 ms
41,212 KB
testcase_15 AC 115 ms
41,328 KB
testcase_16 AC 122 ms
40,940 KB
testcase_17 AC 110 ms
40,100 KB
testcase_18 AC 125 ms
41,136 KB
testcase_19 AC 121 ms
41,116 KB
testcase_20 AC 122 ms
41,172 KB
testcase_21 AC 124 ms
40,968 KB
testcase_22 AC 112 ms
40,120 KB
testcase_23 AC 112 ms
39,844 KB
testcase_24 AC 110 ms
40,604 KB
testcase_25 AC 105 ms
39,980 KB
testcase_26 AC 102 ms
40,216 KB
testcase_27 AC 123 ms
41,072 KB
testcase_28 AC 118 ms
41,120 KB
testcase_29 AC 115 ms
41,108 KB
testcase_30 AC 116 ms
41,144 KB
testcase_31 AC 114 ms
40,852 KB
testcase_32 AC 117 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		if(Integer.parseInt(sc.next()) + Integer.parseInt(sc.next()) == Integer.parseInt(sc.next())) ou.println("Correct");
		else ou.print("Incorrect");
		ou.flush();
		sc.close();
	}
}
0