結果
| 問題 |
No.525 二度寝の季節
|
| コンテスト | |
| ユーザー |
aka_rice
|
| 提出日時 | 2017-10-04 06:25:37 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 241 bytes |
| コンパイル時間 | 1,659 ms |
| コンパイル使用メモリ | 164,684 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-16 10:50:13 |
| 合計ジャッジ時間 | 2,789 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | AC * 13 WA * 20 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
int h,m;
char c;
cin >> h>>c>>m;
m+=5;
if(m>59){
m-=60;
h+=1;
if(h>23) h-=24;
}
cout<<h<<c<<m;
return 0;
}
aka_rice