結果
問題 | No.70 睡眠の重要性! |
ユーザー | 西尾 |
提出日時 | 2018-03-09 16:09:33 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 748 bytes |
コンパイル時間 | 1,932 ms |
コンパイル使用メモリ | 167,224 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 16:50:37 |
合計ジャッジ時間 | 2,685 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; void HM( int &H, int &M, const char *S ) { int iPos; if( S[ 1 ] == ':' ) { iPos = 2; H = S[ 0 ] - '0'; } else { iPos = 3; H = 10 * ( S[ 0 ] - '0' ) + S[ 1 ] - '0'; } if( S[ iPos + 1 ] == '\0' ) M = S[ iPos ] - '0'; else M = 10 * ( S[ iPos ] - '0' ) + S[ iPos + 1 ] - '0'; } int main() { int i; int N; int H; int M; int h; int m; int iSleep; int iSum; char S[ 100 ]; char T[ 100 ]; cin >> N; iSum = 0; for( i = 0; i < N; i++ ) { cin >> S; cin >> T; HM( H, M, S ); HM( h, m, T ); if( h > H || ( h == H && m >= M ) ) iSleep = ( h - H ) * 60 + m - M; else iSleep = ( 24 + h - H ) * 60 + m - M; iSum += iSleep; } cout << iSum << endl; return 0; }