/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 488.0 KiB
#2 Accepted 1ms 540.0 KiB
#3 Accepted 2ms 540.0 KiB
#4 Accepted 2ms 540.0 KiB
#5 Accepted 2ms 492.0 KiB
#6 Accepted 2ms 568.0 KiB
#7 Accepted 1ms 540.0 KiB

Code

#include <bits/stdc++.h>

#pragma GCC optimize("Ofast")
using namespace std;

void solve(int cs) {
  int n;
  cin >> n;
  map<int,int> v;
  int64_t S = 0;
  for (int i = 0; i < n; i++) {
    int x;
    cin >> x;
    S += x;
    v[x % 3] += 1;
  }
  if (S % 3 == 0) cout << n << "\n";
  else if (S % 3 == 1) {
    if (v[1] > 0) cout << n - 1 << "\n";
    else cout << n - 2 << "\n";
  }  else {
    if (v[2] > 0) cout << n - 1 << "\n";
    else cout << n - 2 << "\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:12:53
Judged At
2024-07-13 06:12:53
Judged By
Score
100
Total Time
2ms
Peak Memory
568.0 KiB