結果

問題 No.2371 最大の試練それは起床
ユーザー bluemeganebluemegane
提出日時 2023-07-08 11:31:20
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 3,268 ms
コンパイル使用メモリ 109,112 KB
実行使用メモリ 26,132 KB
最終ジャッジ日時 2024-07-22 07:12:02
合計ジャッジ時間 2,157 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,944 KB
testcase_01 AC 26 ms
25,736 KB
testcase_02 AC 25 ms
23,772 KB
testcase_03 AC 25 ms
25,864 KB
testcase_04 AC 26 ms
23,904 KB
testcase_05 AC 26 ms
25,996 KB
testcase_06 AC 26 ms
26,000 KB
testcase_07 AC 25 ms
23,896 KB
testcase_08 AC 26 ms
26,004 KB
testcase_09 AC 25 ms
23,948 KB
testcase_10 AC 26 ms
25,880 KB
testcase_11 AC 26 ms
26,132 KB
testcase_12 AC 26 ms
26,128 KB
testcase_13 AC 26 ms
25,836 KB
testcase_14 AC 25 ms
23,824 KB
testcase_15 AC 26 ms
24,208 KB
testcase_16 AC 25 ms
23,704 KB
testcase_17 AC 25 ms
25,884 KB
testcase_18 AC 24 ms
21,812 KB
testcase_19 AC 26 ms
24,072 KB
testcase_20 AC 26 ms
23,900 KB
testcase_21 AC 25 ms
23,900 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var h = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        getAns(h, m);
    }
    static int calc(int h, int m, int s) => h * 3600 + m * 60 + s;
    static void getAns(int h, int m)
    {
        var start = calc(7, 30, 0);
        var end = calc(8, 30, 0);
        var wake = calc(h, m, 30);
        string ans;
        if (wake > end) ans = "No";
        else if (wake < start) ans = "Yes";
        else ans = "Late";
        Console.WriteLine(ans);
    }
}
0