結果
問題 | No.651 E869120 and Driving |
ユーザー | Dameningen |
提出日時 | 2018-02-24 03:14:19 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 706 bytes |
コンパイル時間 | 1,055 ms |
コンパイル使用メモリ | 137,856 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-07 17:13:59 |
合計ジャッジ時間 | 1,832 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
ソースコード
#include<cstring> #include<string> #include<vector> #include<iostream> #include<cstdio> #include<cstdlib> #include<stack> #include<queue> #include<cmath> #include<algorithm> #include<list> #include<set> #include<map> #include<sstream> #include<climits> #define rep(X,Y) for (int (X) = 0;(X) < (Y);++(X)) #define rrep(X,Y) for (int (X) = (Y)-1;(X) >=0;--(X)) #define all(X) (X).begin(),(X).end() #define fi first #define sc second using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef pair<ll,ll> pll; const int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1}; int main() { int a; cin >> a; int h = a / 100, m = ((a-h*100)/10) * 6; h += 10; printf("%d:%02d\n", h, m); }