結果

問題 No.2371 最大の試練それは起床
ユーザー tassei903tassei903
提出日時 2023-07-08 11:11:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 1,129 ms
コンパイル使用メモリ 87,224 KB
実行使用メモリ 71,660 KB
最終ジャッジ日時 2023-09-29 12:35:37
合計ジャッジ時間 3,241 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,400 KB
testcase_01 AC 71 ms
71,660 KB
testcase_02 AC 73 ms
71,592 KB
testcase_03 AC 75 ms
71,464 KB
testcase_04 AC 74 ms
71,260 KB
testcase_05 AC 75 ms
71,432 KB
testcase_06 AC 73 ms
71,256 KB
testcase_07 AC 74 ms
71,592 KB
testcase_08 AC 74 ms
71,600 KB
testcase_09 AC 74 ms
71,400 KB
testcase_10 AC 74 ms
71,120 KB
testcase_11 AC 76 ms
71,440 KB
testcase_12 AC 75 ms
71,204 KB
testcase_13 AC 73 ms
71,396 KB
testcase_14 AC 74 ms
71,572 KB
testcase_15 AC 74 ms
71,512 KB
testcase_16 AC 74 ms
71,572 KB
testcase_17 AC 74 ms
71,576 KB
testcase_18 AC 74 ms
71,344 KB
testcase_19 AC 74 ms
71,572 KB
testcase_20 AC 75 ms
71,460 KB
testcase_21 AC 75 ms
71,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
##

h,m = na()
a = (7,30)
b = (8,30)
p = (h, m)
if p < a:
    print("Yes")
elif a <= p < b:
    print("Late")
else:
    print("No")
0