結果
問題 | No.558 575検出するやつ |
ユーザー |
![]() |
提出日時 | 2017-10-27 19:46:36 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 190 bytes |
コンパイル時間 | 1,513 ms |
コンパイル使用メモリ | 164,296 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 21:22:58 |
合計ジャッジ時間 | 2,277 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 5 |
other | WA * 15 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; scanf("%d%*c%d",&a,&b); b+=5; if(b>59) { b-=60; a++; } if(a>23) a=0; printf("%02d:%02d",a,b); return 0; }