結果
| 問題 |
No.70 睡眠の重要性!
|
| コンテスト | |
| ユーザー |
cww
|
| 提出日時 | 2016-10-01 02:23:43 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 612 bytes |
| コンパイル時間 | 1,900 ms |
| コンパイル使用メモリ | 170,420 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-21 12:23:26 |
| 合計ジャッジ時間 | 1,994 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 |
ソースコード
#include <bits/stdc++.h>
#define REP(i,n) for(int i=0; i<(n); i++)
using namespace std;
struct cww{cww(){ios::sync_with_stdio(false);cin.tie(0);}}star;
int main()
{
int N;
cin >> N;
string S;
vector<int> str;
while( getline( cin, S, ':' ) )
{
istringstream ss( S );
int a;
while ( ss >> a )
{
str.push_back( a );
}
}
int res{};
REP( i, N*4 )
{
if( str[i] > str[i+2] )
{
str[i+2] = str[i+2] + 24;
}
if( str[i+2] == 0 )
{
str[i+2] = 12;
}
int M = str[i] * 60 + str[i+1];
int N = str[i+2] * 60 + str[i+3];
res += N - M;
i += 3;
}
cout << res << endl;
return 0;
}
cww