結果

問題 No.1672 404 Not Found
ユーザー CecilCecil
提出日時 2022-12-20 16:06:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 1,000 ms
コード長 429 bytes
コンパイル時間 2,540 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-11-18 01:52:13
合計ジャッジ時間 4,888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,868 KB
testcase_01 AC 126 ms
41,392 KB
testcase_02 AC 124 ms
41,444 KB
testcase_03 AC 123 ms
41,512 KB
testcase_04 AC 126 ms
41,136 KB
testcase_05 AC 148 ms
40,896 KB
testcase_06 AC 146 ms
40,992 KB
testcase_07 AC 147 ms
41,140 KB
testcase_08 AC 111 ms
40,096 KB
testcase_09 AC 125 ms
40,872 KB
testcase_10 AC 120 ms
40,904 KB
testcase_11 AC 124 ms
41,196 KB
testcase_12 AC 133 ms
41,372 KB
testcase_13 AC 133 ms
40,852 KB
testcase_14 AC 135 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);

		int a = scan.hasNextInt() ? scan.nextInt() : -1;

		if (a > 599 || a < 100) {
			System.out.println("入力エラー1");
			return;
		}

		if (Integer.toString(a).charAt(0) == '4'  || Integer.toString(a).charAt(0) == '5') {
			System.out.println("Yes");
		} else{
			System.out.println("No");
		}

	}
}
0