結果

問題 No.70 睡眠の重要性!
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2017-09-27 01:35:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,625 bytes
コンパイル時間 608 ms
コンパイル使用メモリ 79,264 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-09 19:45:13
合計ジャッジ時間 1,140 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;


vector<string> split(const string &str, char sep)
{
    vector<string> v;        // 分割結果を格納するベクター
    auto first = str.begin();              // テキストの最初を指すイテレータ
    while( first != str.end() ) {         // テキストが残っている間ループ
        auto last = first;                      // 分割文字列末尾へのイテレータ
        while( last != str.end() && *last != sep )       // 末尾 or セパレータ文字まで進める
            ++last;
        v.push_back(string(first, last));       // 分割文字を出力
        if( last != str.end() )
            ++last;
        first = last;          // 次の処理のためにイテレータを設定
    }
    return v;
}

int main() {
    
    int m = 0;
    
    int N;
    cin >> N;
    
    for ( int i = 0; i < N; i++ ) {
        string S1,S2;
        cin >> S1 >> S2;
        
        vector<string> VS1(split( S1, ':' ));
        vector<string> VS2(split( S2, ':' ));
        
        int h1 = stoi(VS1[0]);
        int m1 = stoi(VS1[1]);
        int h2 = stoi(VS2[0]);
        int m2 = stoi(VS2[1]);
        
        m1 = m1 + h1*60;
        m2 = m2 + h2*60;
        
        m += m2-m1 >= 0 ? m2-m1 : 60*24 -m1+m2;
        
        
    }
    
    cout << m << endl;
    
    
    return 0;
}
0