# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1013535 | daffuwu | Fancy Fence (CEOI20_fancyfence) | C++14 | 452 ms | 460 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fr first
#define sc second
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
long long n, h[100069], w[100069], smw, ans, mn;
const long long dv = 1e9+7;
long long calc(long long a, long long b)
{
if (a%2 == 0) a/=2;
else b/=2;
return a%dv*(b%dv)%dv;
}
int main()
{
long long i, j, up, dw;
scanf("%lld", &n);
for (i=1; i<=n; i++)
{
scanf("%lld", h+i);
}
for (i=1; i<=n; i++)
{
scanf("%lld", w+i);
}
for (dw=1; dw<=50; dw++)
{
for (up=dw; up<=50; up++)
{
for (i=1; i<=n; i++)
{
mn = 1e12;
for (j=i; j<=n; j++)
{
mn = min(mn, h[j]);
if (mn>=up) ans++;
}
}
}
}
printf("%lld\n", ans);
}
컴파일 시 표준 에러 (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... |