結果
問題 | No.70 睡眠の重要性! |
ユーザー | r2en_ |
提出日時 | 2017-03-25 22:16:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 343 bytes |
コンパイル時間 | 488 ms |
コンパイル使用メモリ | 63,564 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 06:15:55 |
合計ジャッジ時間 | 964 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#include <iostream> using namespace std; int main(){ int N; cin >> N; int sum = 0; int h1 = 0; int h2 = 0; int m1 = 0; int m2 = 0; for(int i = 0; i < N; ++i){ scanf("%d:%d %d:%d",&h1,&m1,&h2,&m2); sum+=(h1<h2?(h2*60+m1)-(h1*60+m1):((h2+24)*60+m2)-(h1*60+m1)); } cout << sum << endl; return 0; }