# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
971375 | Wael | Real Mountains (CCO23_day1problem2) | C++17 | 5104 ms | 165512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int dx[] = {0, 0, -1, 1};
int dy[] = {1, -1, 0, 0};
int const mod = 1e6 + 3;
mt19937 RNG(chrono::steady_clock::now().time_since_epoch().count());
int mul(long long x, long long y) {
while(x >= mod) x -= mod;
while(y >= mod) y -= mod;
return (x * y) % mod;
}
int add(long long x, long long y) {
while(x >= mod) x -= mod;
while(y >= mod) y -= mod;
return (x + y) % mod;
}
int sub(long long x, long long y) {
while(x >= mod) x -= mod;
while(y >= mod) y -= mod;
return (x - y + mod) % mod;
}
int power(long long x, long long y) {
if(y == 0) return 1;
if(y == 1) return x;
int ret = power(x, y / 2);
ret = mul(ret, ret);
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |