結果

問題 No.2371 最大の試練それは起床
ユーザー 👑 kakel-sankakel-san
提出日時 2023-07-07 21:27:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 1,742 ms
コンパイル使用メモリ 70,044 KB
実行使用メモリ 23,968 KB
最終ジャッジ日時 2023-09-28 22:23:16
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
19,780 KB
testcase_01 AC 60 ms
23,912 KB
testcase_02 AC 59 ms
21,808 KB
testcase_03 AC 60 ms
21,808 KB
testcase_04 AC 60 ms
19,776 KB
testcase_05 AC 60 ms
21,908 KB
testcase_06 AC 61 ms
23,964 KB
testcase_07 AC 61 ms
21,992 KB
testcase_08 AC 59 ms
21,884 KB
testcase_09 AC 60 ms
22,000 KB
testcase_10 AC 60 ms
21,928 KB
testcase_11 AC 59 ms
21,816 KB
testcase_12 AC 60 ms
21,880 KB
testcase_13 AC 59 ms
23,968 KB
testcase_14 AC 61 ms
23,856 KB
testcase_15 AC 59 ms
21,824 KB
testcase_16 AC 61 ms
21,872 KB
testcase_17 AC 60 ms
23,920 KB
testcase_18 AC 60 ms
21,960 KB
testcase_19 AC 61 ms
19,780 KB
testcase_20 AC 61 ms
21,920 KB
testcase_21 AC 60 ms
21,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        if (c[0] < 7 || c[0] == 7 && c[1] < 30) WriteLine("Yes");
        else if (c[0] < 8 || c[0] == 8 && c[1] < 30) WriteLine("Late");
        else WriteLine("No");
    }
}
0