結果
問題 | No.70 睡眠の重要性! |
ユーザー | u |
提出日時 | 2018-03-06 19:41:19 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 663 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-21 15:31:24 |
合計ジャッジ時間 | 971 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,752 KB |
testcase_01 | AC | 34 ms
10,880 KB |
testcase_02 | AC | 31 ms
10,880 KB |
testcase_03 | AC | 33 ms
10,752 KB |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | WA | - |
ソースコード
N = int(input()) def sleeping_sec(time_to_sleep,time_to_wake_up): import datetime neru_hour, neru_min = map(int, time_to_sleep.split(":")) okita_hour, okita_min = map(int, time_to_wake_up.split(":")) day1 = 1 if neru_hour > okita_hour: day2 = 2 else: day2 = 1 first_time = datetime.datetime(2018, 3, day1, neru_hour, neru_min) last_time = datetime.datetime(2018, 3, day2, okita_hour, okita_min) delta = last_time - first_time return(delta.total_seconds()) sleep_time_l = [] for _ in range(N): l = input().split() sleep_time_l.append(sleeping_sec(l[0], l[1])) print(int(sum(sleep_time_l)/60))