結果

問題 No.70 睡眠の重要性!
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-13 07:44:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 1,267 ms
コンパイル使用メモリ 145,280 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-17 19:54:26
合計ジャッジ時間 1,714 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int getminute(string s){
	int ret = 0;
	int now = 0;
	for (int i = 0; i < s.size(); i++)
	{
		if (s[i] == ':'){
			ret += now * 60;
			now = 0;
		}
		else{
			now *= 10;
			now += s[i] - '0';
		}
	}
	ret += now;
	return ret;
}

int main(){
	int ans = 0;
	int N;
	cin >> N;
	for (int t = 0; t < N; t++)
	{
		string s1, s2;
		cin >> s1 >> s2;
		int sum = 0;
		sum = getminute(s2) - getminute(s1);
		while (sum < 0) sum += 60 * 24;
		ans += sum;
	}
	cout << ans << endl;
}
0