結果

問題 No.2371 最大の試練それは起床
ユーザー hibit_at
提出日時 2023-06-11 17:44:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-03 13:10:50
合計ジャッジ時間 1,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = list(map(int, input().split(' ')))

assert 0 <= h <= 23, "assertion error"
assert 0 <= w <= 59, "assertion error"

t = h*60 + w

if t < 7*60+30:
    print('Yes')
elif t < 8*60 + 30:
    print('Late')
else:
    print('No')
0