結果

問題 No.70 睡眠の重要性!
ユーザー Kaz_nl
提出日時 2017-08-19 17:37:51
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 53,496 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-14 15:47:28
合計ジャッジ時間 841 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5 WA * 1
権限があれば一括ダウンロードができます

ソースコード

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