結果
問題 | No.70 睡眠の重要性! |
ユーザー | ry0u_yd |
提出日時 | 2015-12-19 17:08:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 683 bytes |
コンパイル時間 | 413 ms |
コンパイル使用メモリ | 60,280 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 16:08:36 |
合計ジャッジ時間 | 833 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <cstring> #define REP(i,k,n) for(int i=k;i<n;i++) #define rep(i,n) for(int i=0;i<n;i++) using namespace std; int main() { int n; cin >> n; int ans = 0; rep(i,n) { int H,M,h,m; char c; cin >> H >> c >> M >> h >> c >> m; int s = H*60 + M; int t = h*60 + m; int d[24*60]; memset(d, 0, sizeof(d)); if(H > h || (H == h && M > m)) { rep(j, t) { d[j]++; } REP(j, s, 24 * 60) { d[j]++; } } else { REP(j, s, t) { d[j]++; } } int cnt = 0; rep(j, 24*60) { if(d[j] > 0) cnt++; } ans += cnt; } cout << ans << endl; return 0; }