結果

問題 No.2371 最大の試練それは起床
ユーザー meruuu61779999meruuu61779999
提出日時 2023-07-07 21:23:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 87,072 KB
実行使用メモリ 71,552 KB
最終ジャッジ日時 2023-09-28 22:18:24
合計ジャッジ時間 2,845 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,424 KB
testcase_01 AC 65 ms
71,532 KB
testcase_02 AC 69 ms
71,396 KB
testcase_03 AC 66 ms
71,552 KB
testcase_04 AC 70 ms
71,504 KB
testcase_05 AC 67 ms
71,112 KB
testcase_06 AC 68 ms
71,348 KB
testcase_07 AC 67 ms
71,336 KB
testcase_08 AC 67 ms
71,412 KB
testcase_09 AC 68 ms
71,356 KB
testcase_10 AC 68 ms
71,340 KB
testcase_11 AC 67 ms
71,552 KB
testcase_12 AC 68 ms
71,484 KB
testcase_13 AC 69 ms
71,340 KB
testcase_14 AC 68 ms
71,272 KB
testcase_15 AC 66 ms
71,268 KB
testcase_16 AC 74 ms
71,308 KB
testcase_17 AC 67 ms
71,444 KB
testcase_18 AC 66 ms
71,212 KB
testcase_19 AC 67 ms
71,396 KB
testcase_20 AC 69 ms
71,300 KB
testcase_21 AC 69 ms
71,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, M = map(int, input().split())

start = 7 * 60 + 30
finish = start + 60
time = H * 60 + M + 0.5

if time < start:
    print("Yes")
elif start < time < finish:
    print("Late")
else:
    print("No")
0