結果

問題 No.2371 最大の試練それは起床
ユーザー Carpenters-Cat
提出日時 2023-07-07 21:22:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 189 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-21 17:02:08
合計ジャッジ時間 1,453 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input.split())
if h < 7 :
	print("Yes")
elif h < 8 :
	if w < 30 :
		print("Yes")
	else :
		print("Late")
else :
	if h == 8 and w < 30 :
		print("Late")
	else :
		print("No")
0