結果
問題 | No.2371 最大の試練それは起床 |
ユーザー | NP |
提出日時 | 2023-07-07 21:31:30 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 357 bytes |
コンパイル時間 | 285 ms |
コンパイル使用メモリ | 82,236 KB |
実行使用メモリ | 53,948 KB |
最終ジャッジ日時 | 2024-07-21 17:14:03 |
合計ジャッジ時間 | 1,912 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,752 KB |
testcase_01 | AC | 42 ms
52,352 KB |
testcase_02 | AC | 37 ms
53,024 KB |
testcase_03 | AC | 38 ms
52,112 KB |
testcase_04 | AC | 40 ms
52,560 KB |
testcase_05 | AC | 38 ms
52,432 KB |
testcase_06 | AC | 38 ms
52,464 KB |
testcase_07 | WA | - |
testcase_08 | AC | 37 ms
53,596 KB |
testcase_09 | AC | 38 ms
52,148 KB |
testcase_10 | AC | 38 ms
53,188 KB |
testcase_11 | AC | 39 ms
51,824 KB |
testcase_12 | AC | 40 ms
52,820 KB |
testcase_13 | AC | 39 ms
52,832 KB |
testcase_14 | WA | - |
testcase_15 | AC | 37 ms
51,908 KB |
testcase_16 | WA | - |
testcase_17 | AC | 37 ms
52,880 KB |
testcase_18 | AC | 38 ms
53,188 KB |
testcase_19 | AC | 38 ms
52,808 KB |
testcase_20 | AC | 38 ms
53,948 KB |
testcase_21 | AC | 37 ms
53,548 KB |
ソースコード
def judge_wakeup_time(H, M): wakeup_time = H * 60 + M + 30 start_time = 7 * 60 + 30 end_time = 8 * 60 + 30 if wakeup_time < start_time: return "Yes" elif start_time <= wakeup_time <= end_time: return "Late" else: return "No" H, M = map(int, input().split()) result = judge_wakeup_time(H, M) print(result)