結果

問題 No.70 睡眠の重要性!
ユーザー Kaz_nlKaz_nl
提出日時 2017-08-19 17:37:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 53,724 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-22 16:36:08
合計ジャッジ時間 989 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;
int n, H, M, h, m, ans;
char d;

int main() {
  cin >> n;
  for (int i = 0; i < n; i++) {
    cin >> H >> d >> M >> h >> d >> m;
    if (H == h) {
      ans += m - M;
      continue;
    } else {
      ans += (60 - M) + m;
    }
    if (H > h) {
      h += 24;
    }
    ans += (h - H - 1) * 60;
  }
  cout << ans << endl;
}
0