結果
問題 | No.2371 最大の試練それは起床 |
ユーザー |
![]() |
提出日時 | 2023-07-07 21:23:08 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 2,000 ms |
コード長 | 201 bytes |
コンパイル時間 | 420 ms |
コンパイル使用メモリ | 82,592 KB |
実行使用メモリ | 53,508 KB |
最終ジャッジ日時 | 2024-07-21 17:03:21 |
合計ジャッジ時間 | 2,026 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
H, M = map(int, input().split())start = 7 * 60 + 30finish = start + 60time = H * 60 + M + 0.5if time < start:print("Yes")elif start < time < finish:print("Late")else:print("No")