結果
問題 | No.70 睡眠の重要性! |
ユーザー | siguma323 |
提出日時 | 2016-05-09 21:17:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,264 bytes |
コンパイル時間 | 709 ms |
コンパイル使用メモリ | 86,340 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 13:12:20 |
合計ジャッジ時間 | 1,246 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | WA | - |
ソースコード
#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 - 1; if(sub >= -1) { sum += sub * 60; } else { sum += (24 + sub) * 60; } } cout << sum << endl; }