結果

問題 No.70 睡眠の重要性!
ユーザー IrmystpIrmystp
提出日時 2014-12-03 02:58:23
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 274 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 22,656 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 14:39:50
合計ジャッジ時間 656 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     for(scanf("%d", &N); N--;){
      |         ~~~~~^~~~~~~~~~
main.cpp:8:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%d:%d %d:%d", &h1, &m1, &h2, &m2);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
using namespace std;

int main(){
    int N, h1, m1, h2, m2, s;
    s = 0;
    for(scanf("%d", &N); N--;){
        scanf("%d:%d %d:%d", &h1, &m1, &h2, &m2);
        s += (h2-h1+24)%24*60 + (m2-m1);
    }
    printf("%d\n", s);
    return 0;
}
0