結果

問題 No.70 睡眠の重要性!
ユーザー hotpepsihotpepsi
提出日時 2015-07-26 00:07:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 421 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 60,084 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-22 23:13:17
合計ジャッジ時間 1,143 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <sstream>
#include <cstring>

using namespace std;

int main(int argc, char *argv[])
{
	string s;
	getline(cin, s);
	int N = atoi(s.c_str());
	int sum = 0;
	for (int i = 0; i < N; ++i) {
		getline(cin, s);
		int a, b, c, d;
		sscanf(s.c_str(), "%d:%d %d:%d", &a, &b, &c, &d);
		sum += ((c + 24) * 60 + d - (a * 60 + b)) % (24 * 60);
	}
	cout << sum << endl;
	return 0;
}
0