結果
問題 | No.70 睡眠の重要性! |
ユーザー | ミドリムシ |
提出日時 | 2017-10-14 04:13:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 611 bytes |
コンパイル時間 | 465 ms |
コンパイル使用メモリ | 60,640 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-17 13:09:57 |
合計ジャッジ時間 | 879 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:28:27: warning: ‘h’ may be used uninitialized [-Wmaybe-uninitialized] 28 | int H, M, h, m; | ^ main.cpp:28:30: warning: ‘m’ may be used uninitialized [-Wmaybe-uninitialized] 28 | int H, M, h, m; | ^ main.cpp:28:21: warning: ‘H’ may be used uninitialized [-Wmaybe-uninitialized] 28 | int H, M, h, m; | ^ main.cpp:28:24: warning: ‘M’ may be used uninitialized [-Wmaybe-uninitialized] 28 | int H, M, h, m; | ^
ソースコード
#include <iostream> #include <cmath> using namespace std; void time_to_num(string T, int H, int M){ string string_H = "", string_M = ""; int now = 0; for(int i = 0; i < T.size(); i++){ if(T[i] == ':'){ now++; }else if(now == 0){ string_H.push_back(T[i]); }else if(now == 1){ string_M.push_back(T[i]); } } H = stoi(string_H); M = stoi(string_M); } int main(){ int N; cin >> N; int ans = 0; for(int i = 0; i < N; i++){ string S, W; cin >> S >> W; int H, M, h, m; time_to_num(S, H, M); time_to_num(W, h, m); ans += (h * m + 1440 - H * M) % 1440; } cout << ans << endl; }