結果

問題 No.2371 最大の試練それは起床
ユーザー t-0hashit-0hashi
提出日時 2023-07-28 09:39:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 75,624 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-10-05 20:51:28
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,284 KB
testcase_01 AC 104 ms
41,220 KB
testcase_02 AC 92 ms
40,152 KB
testcase_03 AC 90 ms
39,720 KB
testcase_04 AC 101 ms
40,972 KB
testcase_05 AC 105 ms
40,996 KB
testcase_06 AC 101 ms
40,396 KB
testcase_07 AC 113 ms
41,000 KB
testcase_08 AC 98 ms
39,980 KB
testcase_09 AC 104 ms
40,868 KB
testcase_10 AC 103 ms
40,844 KB
testcase_11 AC 103 ms
41,300 KB
testcase_12 AC 105 ms
41,144 KB
testcase_13 AC 104 ms
41,220 KB
testcase_14 AC 105 ms
41,464 KB
testcase_15 AC 95 ms
40,212 KB
testcase_16 AC 93 ms
40,088 KB
testcase_17 AC 117 ms
41,244 KB
testcase_18 AC 89 ms
39,520 KB
testcase_19 AC 105 ms
41,020 KB
testcase_20 AC 104 ms
41,120 KB
testcase_21 AC 108 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int H = Integer.parseInt(scan.next());
        int M = Integer.parseInt(scan.next());
        scan.close();

        if (H < 7 || (H == 7 && M < 30)) {
            System.out.println("Yes");
        } else if (H < 8 || (H == 8 && M < 30)) {
            System.out.println("Late");
        } else {
            System.out.println("No");
        }
    }
}
0