結果

問題 No.2371 最大の試練それは起床
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-07-07 22:04:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 87,168 KB
実行使用メモリ 71,576 KB
最終ジャッジ日時 2023-09-28 23:22:28
合計ジャッジ時間 3,322 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
71,432 KB
testcase_01 AC 76 ms
71,320 KB
testcase_02 AC 77 ms
71,576 KB
testcase_03 AC 79 ms
71,264 KB
testcase_04 AC 77 ms
71,540 KB
testcase_05 AC 76 ms
71,440 KB
testcase_06 AC 76 ms
71,380 KB
testcase_07 AC 77 ms
71,164 KB
testcase_08 AC 77 ms
71,272 KB
testcase_09 AC 77 ms
71,168 KB
testcase_10 AC 76 ms
71,284 KB
testcase_11 AC 76 ms
71,296 KB
testcase_12 AC 77 ms
71,524 KB
testcase_13 AC 76 ms
71,532 KB
testcase_14 AC 76 ms
71,384 KB
testcase_15 AC 74 ms
71,444 KB
testcase_16 AC 77 ms
71,220 KB
testcase_17 AC 79 ms
71,432 KB
testcase_18 AC 77 ms
71,356 KB
testcase_19 AC 77 ms
71,276 KB
testcase_20 AC 77 ms
71,320 KB
testcase_21 AC 78 ms
71,216 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