結果
| 問題 | No.525 二度寝の季節 |
| コンテスト | |
| ユーザー |
e869120
|
| 提出日時 | 2017-06-09 22:20:48 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 1,000 ms |
| + 485µs | |
| コード長 | 285 bytes |
| 記録 | |
| コンパイル時間 | 360 ms |
| コンパイル使用メモリ | 94,712 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-09-02 13:06:21 |
| 合計ジャッジ時間 | 2,076 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 33 |
ソースコード
#include<iostream>
#include<algorithm>
#include<string>
#include<vector>
#include<queue>
#include<functional>
#include<cmath>
using namespace std;
int a, b;
int main() {
scanf("%02d:%02d", &a, &b);
int c = (a * 60 + b + 5) % 1440;
printf("%02d:%02d\n", c / 60, c % 60);
return 0;
}
e869120