結果
| 問題 |
No.70 睡眠の重要性!
|
| コンテスト | |
| ユーザー |
ninoinui
|
| 提出日時 | 2020-01-12 06:08:23 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 324 bytes |
| コンパイル時間 | 1,341 ms |
| コンパイル使用メモリ | 167,136 KB |
| 実行使用メモリ | 6,816 KB |
| 最終ジャッジ日時 | 2024-11-27 14:01:00 |
| 合計ジャッジ時間 | 1,735 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 1 |
ソースコード
#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 += min(abs(x - y), 1440 - abs(x - y));
}
cout << ans << "\n";
}
ninoinui