結果
問題 | No.651 E869120 and Driving |
ユーザー | penguinshunya |
提出日時 | 2019-04-18 10:38:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,025 bytes |
コンパイル時間 | 2,189 ms |
コンパイル使用メモリ | 199,612 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 09:08:21 |
合計ジャッジ時間 | 2,444 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < int(n); i++) #define rrep(i, n) for (int i = int(n) - 1; i >= 0; i--) #define reps(i, n) for (int i = 1; i <= int(n); i++) #define rreps(i, n) for (int i = int(n); i >= 1; i--) #define repi(i, a, b) for (int i = (a); i < int(b); i++) #define all(a) (a).begin(), (a).end() #define bit(b) (1ull << (b)) #define uniq(v) (v).erase(unique(all(v)), (v).end()) using namespace std; using i32 = int; using i64 = long long; using f64 = double; using vi32 = vector<i32>; using vi64 = vector<i64>; using vf64 = vector<f64>; using vstr = vector<string>; template<typename T, typename S> void amax(T &x, S y) { if (x < y) x = y; } template<typename T, typename S> void amin(T &x, S y) { if (y < x) x = y; } int main() { ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(16); int a; cin >> a; f64 h = (f64) a / 100; int m = h * 60; int hh = m / 60; m -= hh * 60; hh += 10; hh %= 24; printf("%02d:%02d\n", hh, m); return 0; }