結果

問題 No.2371 最大の試練それは起床
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-07-07 22:04:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 53,808 KB
最終ジャッジ日時 2024-07-21 18:06:57
合計ジャッジ時間 2,061 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,520 KB
testcase_01 AC 44 ms
51,944 KB
testcase_02 AC 40 ms
52,276 KB
testcase_03 AC 39 ms
52,632 KB
testcase_04 AC 39 ms
51,956 KB
testcase_05 AC 39 ms
53,196 KB
testcase_06 AC 40 ms
53,040 KB
testcase_07 AC 40 ms
52,748 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 40 ms
52,200 KB
testcase_10 AC 40 ms
53,016 KB
testcase_11 AC 40 ms
52,824 KB
testcase_12 AC 41 ms
52,968 KB
testcase_13 AC 40 ms
52,528 KB
testcase_14 AC 41 ms
53,808 KB
testcase_15 AC 40 ms
52,400 KB
testcase_16 AC 40 ms
52,860 KB
testcase_17 AC 41 ms
51,880 KB
testcase_18 AC 41 ms
51,880 KB
testcase_19 AC 40 ms
52,068 KB
testcase_20 AC 41 ms
53,196 KB
testcase_21 AC 39 ms
52,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,m = map(int,input().split())
d = h*3600+m*60+30
l = 7*3600+30*60
r = l + 3600
if d < l:
	print("Yes")
elif d <= r:
	print("Late")
else:
	print("No")
0