結果
問題 | No.525 二度寝の季節 |
ユーザー |
![]() |
提出日時 | 2017-06-10 16:25:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 572 bytes |
コンパイル時間 | 806 ms |
コンパイル使用メモリ | 85,212 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 15:42:35 |
合計ジャッジ時間 | 1,817 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 33 |
ソースコード
#include<iostream> #include<algorithm> #include<cstdio> #include<cstdlib> #include<vector> #include<string> #include<sstream> #include<cmath> #include<numeric> #include<map> #include<stack> #include<queue> using namespace std; int main(void) { string s; cin >> s; int t = (s[0]-'0') * 10 + (s[1]-'0'); t *= 60; t += (s[3]-'0') * 10 + (s[4]-'0') + 5; string ah = to_string((t / 60)%24); string am = to_string(t % 60); if( ah.size() == 1 ) ah = '0' + ah; if( am.size() == 1 ) am = '0' + am; cout << ah + ":" + am << endl; return 0; } // EOF