結果
問題 | No.2371 最大の試練それは起床 |
ユーザー |
|
提出日時 | 2023-07-07 21:21:54 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 126 bytes |
コンパイル時間 | 167 ms |
コンパイル使用メモリ | 82,252 KB |
実行使用メモリ | 53,832 KB |
最終ジャッジ日時 | 2024-07-21 16:59:58 |
合計ジャッジ時間 | 1,554 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
h,w=map(int,input().split())if h<7 or (h==7 and w<30):print("Yes")elif h<8 or (h==8 and w<30):print("Late")else:print("No")