結果
| 問題 | No.525 二度寝の季節 | 
| コンテスト | |
| ユーザー |  moti | 
| 提出日時 | 2017-08-13 16:47:53 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 238 bytes | 
| コンパイル時間 | 2,006 ms | 
| コンパイル使用メモリ | 194,068 KB | 
| 最終ジャッジ日時 | 2025-01-05 02:19:04 | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 2 | 
| other | AC * 1 WA * 32 | 
ソースコード
#include <bits/stdc++.h>
int main() {
std::stringstream ss;
std::string s;
int k = 0;
int a[2] {};
while(ss>>s) {
if(s == ":") {
k++;
} else {
std::cin >> a[k];
}
}
int b = a[0] * 60 + a[1] + 5;
printf("%02d:%02d\n", b/60%24, a[1]%60);
}
            
            
            
        