結果
問題 |
No.525 二度寝の季節
|
ユーザー |
👑 |
提出日時 | 2020-01-08 15:35:58 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 211 bytes |
コンパイル時間 | 507 ms |
コンパイル使用メモリ | 62,592 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-23 02:44:33 |
合計ジャッジ時間 | 1,801 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | AC * 13 WA * 20 |
ソースコード
#include <iostream> using namespace std; int main(){ int a,b;char c; cin>>a>>c>>b; if(b+5 > 59){ a=(a+1)%24; b-=55; }else{ b += 5; } cout << a << c << b << endl; }