結果
問題 | No.652 E869120 and TimeZone |
ユーザー | t98slider |
提出日時 | 2022-10-18 22:20:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 620 bytes |
コンパイル時間 | 1,546 ms |
コンパイル使用メモリ | 170,164 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 04:34:32 |
合計ジャッジ時間 | 2,937 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 30 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main(){ int a, b; string s; cin >> a >> b >> s; vector<int> c(1, 0); for(int i = 0; i < s.size(); i++){ if(s[i] >= '0' && s[i] <= '9'){ c.back() *= 10; c.back() += s[i] - '0'; }else if(s[i] == '.'){ c.push_back(0); } } if(count(s.begin(), s.end(), '-')){ c[0] *= -1; if(c.size() >= 2)c[1] *= -1; } c[0] -= 9; int v = 2880 + c[0] * 60 + c[1] * 6; v += a * 60 + b; v %= 1440; printf("%02d:%02d\n", v / 60 % 24, v % 60); }