# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
483574 | TLP39 | Bitaro the Brave (JOI19_ho_t1) | C++14 | 0 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int h,w;
char jewel[3010][3010];
int orbRight[3010][3010];
int ingotDown[3010][3010];
void getOrb()
{
for(int i=0;i<h;i++)
{
orbRight[i][w-1] = 0;
for(int j=w-1;j>=1;j--)
{
orbRight[i][j-1] = orbRight[i][j]+(jewel[i][j]=='O'? 1:0);
}
}
}
void getIngot()
{
for(int i=0;i<w;i++) ingotDown[h-1][i] = 0;
for(int i=h-1;i>=1;i--)
{
for(int j=0;j<w;j++)
{
ingotDown[i-1][j] = ingotDown[i][j]+(jewel[i][j]=='I'? 1:0);
}
}
}
long long int total()
{
long long int tot = 0;
for(int i=0;i<h;i++)
{
for(int j=0;j<w;j++)
{
if(jewel[i][j]=='J') tot += 1ll * orbRight[i][j] * ingotDown[i][j];
}
}
return tot;
}
int main()
{
scanf("%d %d",&h,&w);
getOrb();
getIngot();
printf("%lld",total());
}
컴파일 시 표준 에러 (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... |