結果

問題 No.525 二度寝の季節
ユーザー NasatameNasatame
提出日時 2017-06-09 22:23:52
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 374 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 56,916 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 14:46:56
合計ジャッジ時間 1,389 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
 
int main(void){
    
    string s;
    cin >> s;
    
    int h = (s[0]-'0')*10+(s[1]-'0');
    int m = (s[3]-'0')*10+(s[4]-'0');
    
    m += 5;
    
    if(m >= 60){
        m -= 60;
        
        h+=1;
        
        h %= 24;
        
    }
    
    printf("%02d:%02d\n",h,m);
    
}
0