QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#584164#9313. Make MaxNanako7_ixWA 202ms14300kbC++14893b2024-09-23 09:37:412024-09-23 09:37:43

Judging History

你现在查看的是最新测评结果

  • [2024-09-23 09:37:43]
  • 评测
  • 测评结果:WA
  • 用时:202ms
  • 内存:14300kb
  • [2024-09-23 09:37:41]
  • 提交

answer

#include<bits/stdc++.h>
#define pii pair<int, int>
#define endl "\n"
#define setpre(x) fixed << setprecision(x)
#define FOR(i, l, r) for(int i = l; i <= r; ++i)
#define ROF(i, l, r) for(int i = r; i >= l; --i)
#define fi first
#define se second
using namespace std;
using LL = long long;
constexpr int MAXN = 5e5 + 10;
constexpr int inf = 0x3f3f3f3f;
constexpr LL  INF = 0x3f3f3f3fffffffff;

void solve() {
    int n;
    cin >> n;
    vector<int> a;
    map<int, int> mp;
    FOR(i, 1, n) {
        int x; cin >> x;
        if(mp[x]++ == 0) a.emplace_back(x);
    }
    sort(a.begin(), a.end());
    LL ans = 0, sum = 0;
    for(auto x : a) {
        ans += sum;
        sum += mp[x];
    }
    cout << ans << endl;
}

signed main() {
    cin.tie(0), cout.tie(0) -> sync_with_stdio(0);
    int t = 1;
    cin >> t;
    while(t--) solve();
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3612kb

input:

4
2
1 2
2
2 2
7
1 1 1 2 2 2 2
3
1 2 3

output:

1
0
3
3

result:

ok 4 number(s): "1 0 3 3"

Test #2:

score: -100
Wrong Answer
time: 202ms
memory: 14300kb

input:

2
198018
875421126 585870339 471894633 383529988 625397685 944061047 704695631 105113224 459022561 760848605 980735314 847376362 980571959 329939331 644635272 326439858 752879510 837384394 175179068 182094523 397239381 1199016 185143405 279638454 252374970 822030887 860312140 137248166 993229443 164...

output:

19603715192
18190317989

result:

wrong answer 1st numbers differ - expected: '4084978', found: '19603715192'