# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
926265 | samek08 | Cards (LMIO19_korteles) | C++14 | 1059 ms | 30324 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(a,b) for(int a = 0; a < (b); ++a)
#define all(t) t.begin(), t.end()
#define pb push_back
struct Element
{
string n1, n2, n3, n4;
bool operator < (const Element &element) const
{
//return n1 < element.n1 || n2 < element.n2 || n3 < element.n3 || n4 < element.n4;
if(n1 == element.n1)
{
if(n2 == element.n2)
{
if(n3 == element.n3)
{
return n4 < element.n4;
}
return n3 < element.n3;
}
return n2 < element.n2;
}
return n1 < element.n1;
}
};
const int MAXN = 5e5+5, p = 2137, mod = 1e9+7;
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |