結果
問題 | No.70 睡眠の重要性! |
ユーザー | siguma323 |
提出日時 | 2016-05-09 21:27:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,544 bytes |
コンパイル時間 | 697 ms |
コンパイル使用メモリ | 87,980 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 13:13:06 |
合計ジャッジ時間 | 1,096 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
ソースコード
#include <vector> #include <string> #include <algorithm> #include <numeric> #include <iostream> #include <cstdlib> #include <cstring> #include <utility> #include <list> #include <map> #include <queue> #include <iterator> #include <cmath> #include <iomanip> using namespace std; using ull = unsigned long long; using ll = long long; pair<int,int> getHS(string data) { pair<int,int> rtn; for(int i =0; i < data.size(); ++i) { if(data.at(i) == ':') { rtn.first = stoi(data.substr(0,i)); rtn.second = stoi(data.substr(i+1)); break; } } return rtn; } int main() { int n; cin >> n; vector<string> a(n); vector<string> b(n); for(int i =0; i < n; ++i) { cin >> a.at(i); cin >> b.at(i); } int sum = 0; for(int i =0; i < n; ++i) { pair<int,int> first; pair<int,int> second; first = getHS(a.at(i)); second = getHS(b.at(i)); sum += (60-first.second + second.second); int sub = second.first - first.first; if(sub > 0) { sum += (sub-1) * 60; } else if(sub <0) { sum += (24 + sub -1) * 60; } else { if(second.second -first.second < 0) sum += 23 * 60; else { sum -= 60-first.second + second.second; sum += second.second - first.second; } } } cout << sum << endl; }