結果
| 問題 |
No.525 二度寝の季節
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-02-26 20:34:01 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 197 bytes |
| コンパイル時間 | 583 ms |
| コンパイル使用メモリ | 63,324 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-13 15:29:21 |
| 合計ジャッジ時間 | 1,449 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 33 |
ソースコード
#include <iostream>
#include <cstdio>
using namespace std;
int main() {
int h, m;
scanf("%d:%d", &h, &m);
int a = 60 * h + m + 5;
printf("%02d:%02d\n\n", a / 60 % 24, a % 60);
return 0;
}