# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
19790 | str | 창문 (kriii4_C) | C++14 | 1000 ms | 1084 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<stdio.h>
int main()
{
unsigned long long h = 0, w = 0;
unsigned long long i = 0, j = 0;
unsigned long long sum = 0;
unsigned long long result = 0;
scanf("%llu %llu", &h, &w);
for (i = 1; i <= h; i++)
{
for (j = 1; j <= w; j++)
{
sum = sum + ((h - (i - 1))*(w - (j - 1)) * 9 * i*j);
}
}
result = sum / (((i*(i - 1)) / 2)*((j*(j - 1)) / 2));
printf("%llu", result % 1000000007);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |