結果

問題 No.2371 最大の試練それは起床
ユーザー t-0hashit-0hashi
提出日時 2023-07-27 19:16:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 1,754 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-10-04 19:22:12
合計ジャッジ時間 4,959 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
53,260 KB
testcase_01 AC 107 ms
54,032 KB
testcase_02 WA -
testcase_03 AC 94 ms
53,100 KB
testcase_04 AC 98 ms
53,400 KB
testcase_05 AC 96 ms
53,428 KB
testcase_06 AC 105 ms
53,776 KB
testcase_07 AC 93 ms
53,092 KB
testcase_08 AC 102 ms
54,176 KB
testcase_09 AC 105 ms
53,908 KB
testcase_10 AC 103 ms
53,872 KB
testcase_11 AC 104 ms
53,704 KB
testcase_12 AC 103 ms
53,980 KB
testcase_13 AC 103 ms
53,932 KB
testcase_14 AC 98 ms
53,592 KB
testcase_15 WA -
testcase_16 AC 93 ms
53,908 KB
testcase_17 AC 104 ms
53,956 KB
testcase_18 AC 109 ms
54,148 KB
testcase_19 WA -
testcase_20 AC 104 ms
53,904 KB
testcase_21 AC 105 ms
53,776 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