# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
232460 | VEGAnn | Titlovi (COCI19_titlovi) | C++14 | 8 ms | 3456 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ft first
#define sd second
#define sz(x) ((int)x.size())
using namespace std;
const int N = 100100;
string s[N], cur;
int n = 0, T;
int i(char c){
return (c - '0');
}
void OUT(int x, int len){
cur = to_string(x);
while (sz(cur) < len)
cur = "0" + cur;
cout << cur;
}
void out(int h, int m, int s, int t){
t += T;
s += t / 1000;
t %= 1000;
t = (t + 1000) % 1000;
m += s / 60;
s %= 60;
s = (s + 60) % 60;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |