結果
| 問題 | No.525 二度寝の季節 |
| コンテスト | |
| ユーザー |
Yut176
|
| 提出日時 | 2017-06-10 16:25:47 |
| 言語 | C++14 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 1,000 ms |
| + 386µs | |
| コード長 | 572 bytes |
| 記録 | |
| コンパイル時間 | 471 ms |
| コンパイル使用メモリ | 103,752 KB |
| 実行使用メモリ | 9,784 KB |
| 最終ジャッジ日時 | 2026-09-03 07:40:22 |
| 合計ジャッジ時間 | 2,499 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 33 |
ソースコード
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstdlib>
#include<vector>
#include<string>
#include<sstream>
#include<cmath>
#include<numeric>
#include<map>
#include<stack>
#include<queue>
using namespace std;
int main(void) {
string s;
cin >> s;
int t = (s[0]-'0') * 10 + (s[1]-'0');
t *= 60;
t += (s[3]-'0') * 10 + (s[4]-'0') + 5;
string ah = to_string((t / 60)%24);
string am = to_string(t % 60);
if( ah.size() == 1 ) ah = '0' + ah;
if( am.size() == 1 ) am = '0' + am;
cout << ah + ":" + am << endl;
return 0;
}
// EOF
Yut176