Wrong Answer
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
int n;
cin >> n;
map<int,int> v;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
v[x % 3] += 1;
}
int res = v[0];
int take = min(v[1], v[2]);
res += take * 2;
v[1] -= take, v[2] -= take;
res += (v[1] / 3) * 3;
res += (v[2] / 3) * 3;
cout << res << "\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tc = 1;
cin >> tc;
for (int cs = 1; cs <= tc; cs++) {
solve(cs);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1013 Divisible by 3
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-13 06:05:53
- Judged At
- 2024-11-11 03:26:46
- Judged By
- Score
- 10
- Total Time
- 2ms
- Peak Memory
- 524.0 KiB