結果
問題 | No.70 睡眠の重要性! |
ユーザー | koari |
提出日時 | 2020-03-02 17:35:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 530 bytes |
コンパイル時間 | 1,397 ms |
コンパイル使用メモリ | 165,784 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 21:15:09 |
合計ジャッジ時間 | 1,960 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(ll (i)=0;(i)<(n);(i)++) #define repi(i,a,b) for(ll (i)=(a);(i)<(b);(i)++) #define SIZE_OF_ARRAY(array) (sizeof(array)/sizeof(array[0])) typedef long long ll; using namespace std; int main(){ int n; cin >> n; int H,h,M,m; char a,b; int sum = 0; rep(i,n) { cin >> H >> a >> M >> h >> b >> m; H = H*60+M; h = h*60+m; if(H>h){ sum += ((24*60-H)+h); }else{ sum += (h-H); } cout << sum << endl; } cout << sum << endl; return 0; }