結果
問題 | No.525 二度寝の季節 |
ユーザー | uzumakiyorumunn |
提出日時 | 2017-06-09 22:41:15 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 378 bytes |
コンパイル時間 | 404 ms |
コンパイル使用メモリ | 56,268 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 15:32:18 |
合計ジャッジ時間 | 1,370 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 33 |
ソースコード
#include<iostream> #include<string> #include<cstring> using namespace std; int main(){ string T; string H,M; int h,m; cin>>T; H=T[0]; H+=T[1]; M=T[3]; M+=T[4]; h=atoi(H.c_str()); m=atoi(M.c_str()); m+=5; if(m>=60) m-=60,h++; if(h>=24) h=0; if(h/10==0) cout<<"0"<<h; else cout<<h; cout<<":"; if(m/10==0) cout<<"0"<<m<<endl; else cout<<m<<endl; }