結果
問題 | No.70 睡眠の重要性! |
ユーザー | kkron4221 |
提出日時 | 2020-05-09 06:56:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 759 bytes |
コンパイル時間 | 79 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-05 00:04:48 |
合計ジャッジ時間 | 794 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 29 ms
10,752 KB |
testcase_05 | AC | 30 ms
10,624 KB |
ソースコード
N = int(input()) ans = 0 for i in range(N): hour = 0 minitue = 0 correct_hour = 0 correct_min = 0 go_to_bed, wake_up = input().split() go_to_bed_hour, go_to_bed_min = [int(x) for x in go_to_bed.split(":")] wake_up_hour, wake_up_min = [int(x) for x in wake_up.split(":")] if go_to_bed_hour == 0: go_to_bed_hour = 24 if wake_up_hour == 0: wake_up_hour = 24 go_to_bed_min_time = go_to_bed_hour * 60 + go_to_bed_min wake_up_min_time = wake_up_hour * 60 + wake_up_min if wake_up_min_time > go_to_bed_min_time: ans = ans + wake_up_min_time - go_to_bed_min_time else: ans = ans + wake_up_min_time - go_to_bed_min_time + 1440 print(ans)