結果

問題 No.2371 最大の試練それは起床
ユーザー Ryuichi-TakedaRyuichi-Takeda
提出日時 2023-07-13 21:38:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 678 ms
コンパイル使用メモリ 87,084 KB
実行使用メモリ 71,620 KB
最終ジャッジ日時 2023-10-13 10:27:22
合計ジャッジ時間 3,331 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,396 KB
testcase_01 AC 72 ms
71,400 KB
testcase_02 AC 70 ms
71,264 KB
testcase_03 AC 71 ms
71,316 KB
testcase_04 AC 73 ms
71,116 KB
testcase_05 AC 73 ms
71,356 KB
testcase_06 AC 74 ms
71,300 KB
testcase_07 AC 72 ms
71,564 KB
testcase_08 AC 71 ms
71,324 KB
testcase_09 AC 73 ms
71,316 KB
testcase_10 AC 71 ms
71,240 KB
testcase_11 AC 73 ms
71,312 KB
testcase_12 AC 73 ms
71,316 KB
testcase_13 AC 71 ms
71,240 KB
testcase_14 AC 73 ms
71,316 KB
testcase_15 AC 71 ms
71,616 KB
testcase_16 AC 72 ms
71,316 KB
testcase_17 AC 73 ms
71,240 KB
testcase_18 AC 73 ms
71,620 KB
testcase_19 AC 73 ms
71,352 KB
testcase_20 AC 72 ms
71,236 KB
testcase_21 AC 72 ms
71,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,M=map(int,input().split())
start=7*60+30
end=8*60+30

if H*60+M<start:
    print('Yes')
elif H*60+M<end:
    print('Late')
else:
    print('No')
0