結果
| 問題 | No.2371 最大の試練それは起床 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-05-08 15:00:29 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 174 bytes |
| 記録 | |
| コンパイル時間 | 546 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 20,700 KB |
| 最終ジャッジ日時 | 2026-05-08 15:00:38 |
| 合計ジャッジ時間 | 8,679 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 19 |
ソースコード
H = int(input())
M = int(input())
if H < 7 or (H == 7 and M < 30):
print("Yes")
elif (H == 7 and M >= 30) or (H == 8 and M < 30):
print("Late")
else:
print("No")