# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
219922 | MKopchev | Boat (APIO16_boat) | C++14 | 1932 ms | 13072 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize ("O3")
#pragma GCC target ("sse4")
#pragma GCC optimize ("unroll-loops")
#include<bits/stdc++.h>
using namespace std;
const int nmax=1e3+42,mod=1e9+7;
int my_pow(long long a,int b)
{
long long ret=1;
while(b)
{
if(b%2)ret=ret*a%mod;
a=a*a%mod;
b=b/2;
}
return ret;
}
int n;
pair<int,int> inp[nmax];
set< pair<int,int> > seen;
pair<int,int> groups[nmax];
int pointer=0;
int inv[nmax];
컴파일 시 표준 에러 (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... |