結果

問題 No.2371 最大の試練それは起床
ユーザー kukutoni
提出日時 2023-07-15 15:03:26
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 183 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-16 23:57:45
合計ジャッジ時間 1,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

h, m = map(int(input()))
if h < 7:
	print('Yes')
elif h == 7 and m < 30:
	print('Yes')
elif h == 7 and m > 30:
	print('Late')
elif h == 8 and m < 30:
	print('Late')
else:
	print('No')
0