結果
問題 | No.70 睡眠の重要性! |
ユーザー | HIROPON87069639 |
提出日時 | 2016-02-21 16:43:45 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 353 bytes |
コンパイル時間 | 369 ms |
コンパイル使用メモリ | 7,200 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 12:34:02 |
合計ジャッジ時間 | 671 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
6,812 KB |
testcase_01 | AC | 11 ms
6,944 KB |
testcase_02 | AC | 11 ms
6,940 KB |
testcase_03 | AC | 11 ms
6,940 KB |
testcase_04 | AC | 11 ms
6,940 KB |
testcase_05 | WA | - |
ソースコード
# -*- 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 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