結果
| 問題 | No.2371 最大の試練それは起床 |
| コンテスト | |
| ユーザー |
ikoma
|
| 提出日時 | 2023-07-07 21:21:49 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 58 ms / 2,000 ms |
| + 957µs | |
| コード長 | 138 bytes |
| 記録 | |
| コンパイル時間 | 244 ms |
| コンパイル使用メモリ | 95,968 KB |
| 実行使用メモリ | 79,144 KB |
| 最終ジャッジ日時 | 2026-08-22 03:05:42 |
| 合計ジャッジ時間 | 4,273 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
ソースコード
H,M=map(int,input().split())
if H<7 or H==7 and M<30:
print("Yes")
elif H<8 or H==8 and M<30:
print("Late")
else:
print("No")
ikoma