結果
| 問題 | No.525 二度寝の季節 |
| コンテスト | |
| ユーザー |
cureskol
|
| 提出日時 | 2020-03-31 16:44:08 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| + 324µs | |
| コード長 | 272 bytes |
| 記録 | |
| コンパイル時間 | 5,577 ms |
| コンパイル使用メモリ | 182,184 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-29 08:42:41 |
| 合計ジャッジ時間 | 3,013 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 33 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
template<typename T>
void fin(T a){
cout<<a<<endl;
exit(0);
}
signed main(){
int a,b;char c;cin>>a>>c>>b;
b+=5;if(b>=60){b-=60;a++;}
a%=24;
if(a<10)cout<<0;cout<<a<<c;
if(b<10)cout<<0;cout<<b<<endl;
}
cureskol