結果
問題 |
No.525 二度寝の季節
|
ユーザー |
![]() |
提出日時 | 2017-06-13 15:15:14 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 654 bytes |
コンパイル時間 | 694 ms |
コンパイル使用メモリ | 83,112 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-24 16:56:37 |
合計ジャッジ時間 | 1,637 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 33 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:39:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 39 | scanf("%d:%d", &hh, &mm); | ~~~~~^~~~~~~~~~~~~~~~~~~
ソースコード
/* -*- coding: utf-8 -*- * * 525.cc: No.525 二度寝の季節 - yukicoder */ #include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<stack> #include<list> #include<queue> #include<deque> #include<algorithm> #include<numeric> #include<utility> #include<complex> #include<functional> using namespace std; /* constant */ /* typedef */ /* global variables */ /* subroutines */ /* main */ int main() { int hh, mm; scanf("%d:%d", &hh, &mm); int m = (hh * 60 + mm + 5) % (24 * 60); printf("%02d:%02d\n", m / 60, m % 60); return 0; }