結果

問題 No.1672 404 Not Found
ユーザー syusyu
提出日時 2021-12-08 17:14:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 361 bytes
コンパイル時間 4,157 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 54,152 KB
最終ジャッジ日時 2024-07-16 08:05:42
合計ジャッジ時間 6,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
53,936 KB
testcase_01 AC 124 ms
54,044 KB
testcase_02 AC 111 ms
52,964 KB
testcase_03 AC 122 ms
54,056 KB
testcase_04 AC 119 ms
53,852 KB
testcase_05 AC 109 ms
52,544 KB
testcase_06 AC 124 ms
53,848 KB
testcase_07 AC 122 ms
54,152 KB
testcase_08 AC 122 ms
53,896 KB
testcase_09 AC 123 ms
53,804 KB
testcase_10 AC 120 ms
54,020 KB
testcase_11 AC 104 ms
53,080 KB
testcase_12 AC 120 ms
54,084 KB
testcase_13 AC 115 ms
53,940 KB
testcase_14 AC 117 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class NotFound {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        String[] input = scanner.next().split("");
        if(input[0].equals("4") || input[0].equals("5")) {
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
0