結果

問題 No.2371 最大の試練それは起床
ユーザー meruuu61779999meruuu61779999
提出日時 2023-07-07 21:23:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 53,508 KB
最終ジャッジ日時 2024-07-21 17:03:21
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,500 KB
testcase_01 AC 37 ms
52,824 KB
testcase_02 AC 38 ms
52,840 KB
testcase_03 AC 38 ms
52,776 KB
testcase_04 AC 38 ms
52,000 KB
testcase_05 AC 37 ms
52,268 KB
testcase_06 AC 40 ms
52,360 KB
testcase_07 AC 38 ms
52,124 KB
testcase_08 AC 38 ms
52,288 KB
testcase_09 AC 39 ms
52,080 KB
testcase_10 AC 37 ms
53,508 KB
testcase_11 AC 39 ms
52,008 KB
testcase_12 AC 38 ms
52,596 KB
testcase_13 AC 38 ms
52,976 KB
testcase_14 AC 37 ms
52,428 KB
testcase_15 AC 38 ms
52,372 KB
testcase_16 AC 38 ms
51,888 KB
testcase_17 AC 37 ms
52,860 KB
testcase_18 AC 39 ms
52,496 KB
testcase_19 AC 39 ms
52,476 KB
testcase_20 AC 37 ms
52,436 KB
testcase_21 AC 38 ms
52,240 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