# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
232455 | NONAME | Titlovi (COCI19_titlovi) | C++17 | 4 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define sz(x) int(x.size())
#define in(x) freopen(x, "r", stdin)
#define out(x) freopen(x, "w", stdout)
#define N 100500
#define oo ll(1e16)
#define ft first
#define sd second
#define mp make_pair
#define pb push_back
#define ppb pop_back
#define el '\n'
#define elf endl
#define base ll(1e9 + 7)
using namespace std;
typedef long long ll;
typedef long double ld;
vector <pair <ll, ll> > v;
vector <string> k;
vector <pair <int, string> > text;
void print(ll tim) {
ll h = ((tim / 1000) / 60) / 60;
ll m = ((tim / 1000) / 60) % 60;
ll s = (tim / 1000) % 60;
ll t = tim % 1000;
if (h < 10) cout << 0;
cout << h << ":";
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |