QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#568099 | #9313. Make Max | ray | WA | 145ms | 17188kb | C++20 | 1.2kb | 2024-09-16 15:14:27 | 2024-09-16 15:14:30 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define all(v) (v).begin(), (v).end()
#define debug(x) cerr << #x << ": " << x << '\n';
using u32 = unsigned;
using i64 = long long;
using u64 = unsigned long long;
using i128 = __int128;
template <typename T>
std::istream& operator>>(std::istream& is, std::vector<T>& v) {
for (T& x : v) {
is >> x;
}
return is;
}
template <typename T>
std::ostream& operator<<(std::ostream& os, const std::vector<T>& v) {
for (int i = 0; i < (int)v.size(); i++) {
os << v[i] << (i + 1 != v.size() ? " " : "");
}
return os;
}
void solve() {
int n;
cin >> n;
vector<int> a(n);
map<int, vector<int>> pos;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
sort(all(a));
map<int, int> mp;
for (int i = 0; i < n; i++) {
if (mp.find(a[i]) == mp.end()) {
mp[a[i]] = i;
}
}
int ans = 0;
for (auto [x, y] : mp) {
ans += y;
}
cout << ans << "\n";
}
signed main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
//std::cout << std::fixed << std::setprecision(10);
int T = 1;
std::cin >> T;
while (T--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3608kb
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: 145ms
memory: 17188kb
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'