結果
問題 | No.70 睡眠の重要性! |
ユーザー | fV9TwBhUoa9S3eV |
提出日時 | 2019-09-17 08:27:14 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 472 bytes |
コンパイル時間 | 71 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-07 06:49:36 |
合計ジャッジ時間 | 610 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,496 KB |
testcase_01 | AC | 24 ms
10,624 KB |
testcase_02 | AC | 24 ms
10,368 KB |
testcase_03 | AC | 27 ms
10,624 KB |
testcase_04 | AC | 27 ms
10,624 KB |
testcase_05 | WA | - |
ソースコード
N = int(input()) minutes_total = 0 for i in range(N): time_get_up, time_go_to_bed = [s for s in input().split()] hours_go_to_bed, minutes_go_to_bed = [int(i) for i in time_get_up.split(':')] hours_get_up, minutes_get_up = [int(i) for i in time_go_to_bed.split(':')] if hours_go_to_bed > hours_get_up: hours_get_up += 24 minutes_total += (hours_get_up * 60 + minutes_get_up) - (hours_go_to_bed * 60 + minutes_go_to_bed) print(minutes_total)