# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
2538 | tncks0121 | 지우개 (GA4_eraser) | C++98 | 19 ms | 3228 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
using namespace std;
const int divider = 1000000007;
int N;
long long int a[100001];
long long int b[100001];
long long int c[100001];
int main() {
int i, j, max = -1;
int sum = 0;
long long int s;
scanf("%d", &N);
for (i=0; i<N; ++i) {
int tmp;
scanf("%d", &tmp);
++a[tmp];
if (max < tmp) {
max = tmp;
}
}
for (i=1; i<=max; ++i) {
b[i] = b[i-1] + ((a[i] * i) % divider);
b[i] %= divider;
}
for (j=1; j<=max; ++j) {
c[j] = c[j-1] + ((a[j] * j) % divider) * (b[max] - b[j] + divider) % divider;
c[j] %= divider;
# | 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... |