結果
問題 | No.70 睡眠の重要性! |
ユーザー |
|
提出日時 | 2020-03-14 03:49:52 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 316 bytes |
コンパイル時間 | 1,938 ms |
コンパイル使用メモリ | 191,888 KB |
最終ジャッジ日時 | 2025-01-09 06:44:56 |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:21: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | int n; scanf("%d",&n); | ~~~~~^~~~~~~~~ main.cpp:11:39: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | int h1,m1,h2,m2; scanf("%d:%d%d:%d",&h1,&m1,&h2,&m2); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h>#define rep(i,n) for(int i=0;i<(n);i++)using namespace std;int main(){int n; scanf("%d",&n);int ans=0;rep(i,n){int h1,m1,h2,m2; scanf("%d:%d%d:%d",&h1,&m1,&h2,&m2);int s1=60*h1+m1;int s2=60*h2+m2;if(s2<s1) s2+=24*60;ans+=s2-s1;}printf("%d\n",ans);return 0;}