# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
198430 | model_code | W (RMI18_w) | C11 | 59 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
* Method: Handles the case of exactly two distinct values.
*
* Author: Catalin Francu
**/
#include <stdio.h>
#define MOD 1000000007
int main() {
int n, x;
int v1, v2 = 0, c1 = 1, c2 = 0;
scanf("%d %d", &n, &v1);
while (--n) {
scanf("%d", &x);
if (x == v1) {
c1++;
} else {
v2 = x;
c2++;
}
}
if (v1 > v2) {
int tmp = c1;
c1 = c2;
c2 = tmp;
}
/**
* Now we know that the smaller value occurs c1 times and the larger value
* occurs c2 times.
**/
int sol = (long long)(c1 - 1) * (c2 - 1) * (c2 - 2) / 2 % MOD;
printf("%d\n", sol);
}
컴파일 시 표준 에러 (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... |