# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
96632 | crimsonred | Titlovi (COCI19_titlovi) | C++17 | 2 ms | 376 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define mod 1'000'000'007
typedef long long ll;
template <typename T>
void deb(initializer_list<T> l)
{
for (auto &e : l)
cout << e << ' ';
cout << '\n';
}
#define time ttime
ll toNum(string s)
{
ll num = 0;
for (auto &c : s)
num = num * 10 + (ll) (c - '0');
return num;
}
ll toNum(char c)
{
return (ll) (c - '0');
}
void change(string str, ll &h, ll &m, ll &s, ll &t)
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |