結果
問題 | No.70 睡眠の重要性! |
ユーザー | HIROPON87069639 |
提出日時 | 2016-02-21 16:54:07 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 11 ms / 5,000 ms |
コード長 | 389 bytes |
コンパイル時間 | 660 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 12:34:05 |
合計ジャッジ時間 | 714 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,816 KB |
testcase_01 | AC | 10 ms
6,944 KB |
testcase_02 | AC | 11 ms
6,944 KB |
testcase_03 | AC | 11 ms
6,940 KB |
testcase_04 | AC | 11 ms
6,940 KB |
testcase_05 | AC | 11 ms
6,940 KB |
ソースコード
# -*- coding: utf-8 -*- def calc(H, M, h, m): S = 60 * H + M B = 24 * 60 if H <= h: W = 60 * h + m else: W = 60 * h + m + B if W < S: W += 24 * 60 return W - S N = input() tot = 0 for i in range(0, N): S, W = raw_input().split() H, M = map(int, S.split(":")) h, m = map(int, W.split(":")) tot += calc(H, M, h, m) print tot