結果

問題 No.2371 最大の試練それは起床
ユーザー 👑 rin204rin204
提出日時 2023-07-07 21:20:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-07-21 16:57:39
合計ジャッジ時間 2,300 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

h, m = map(int, input().split())
m += h * 60
if m < 7 * 60 + 30:
    print("Yes")
elif m < 8 * 60 + 30:
    print("Late")
else:
    print("No")
0