# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
15122 | 2015-07-11T12:04:00 Z | ggoh | 빨간 직사각형 (kriii3_QQ) | C++ | 0 ms | 44480 KB |
#include<cstdio> int a,b,i,j,S,w[3333][3333]; char s[3333]; main() { scanf("%d%d",&a,&b); for(i=1;i<=a;i++) { scanf("%s",s); for(j=0;j<b;j++) { if(s[j]=='R')w[i][j+1]=1; } } for(i=1;i<=a;i++) { for(j=1;j<=b;j++) { if(w[i][j]==0) { S+=i*j; } } } printf("%d",a*(a+1)/2*b*(b+1)/2-S); }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 44480 KB | Output is correct |
2 | Incorrect | 0 ms | 44480 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Halted | 0 ms | 0 KB | - |