結果

問題 No.2371 最大の試練それは起床
ユーザー tamatotamato
提出日時 2023-07-07 21:21:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 298 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 53,288 KB
最終ジャッジ日時 2024-07-21 16:58:56
合計ジャッジ時間 1,684 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
mod = 998244353

H, M = map(int, input().split())
if H < 7:
    print("Yes")
elif H == 7:
    if M < 30:
        print("Yes")
    else:
        print("Late")
elif H == 8:
    if M < 30:
        print("Late")
    else:
        print("No")
else:
    print("No")
0