結果
問題 | No.70 睡眠の重要性! |
ユーザー |
![]() |
提出日時 | 2020-01-12 06:15:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 320 bytes |
コンパイル時間 | 1,341 ms |
コンパイル使用メモリ | 166,892 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 14:35:10 |
合計ジャッジ時間 | 1,752 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main() {int N;cin >> N;int ans = 0;for (int i = 0; i < N; i++) {int a, b, c, d;char e;cin >> a >> e >> b >> c >> e >> d;int x = a * 60 + b;int y = c * 60 + d;ans += (x < y) ? y - x : y - x + 1440;}cout << ans << "\n";}