/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 540.0 KiB
#2 Wrong Answer 13ms 564.0 KiB
#3 Wrong Answer 14ms 568.0 KiB

Code

#include<bits/stdc++.h>
#define ll long long
#define endl "\n"
using namespace std;

int main() {
    ios_base::sync_with_stdio(0);cin.tie(0);
    int t,a,b,x;   cin >> t; 
    while(t--){
        cin >> a;
        map<int,int>m;
        while(a--){
            cin >> x;
            m[x]++;
        }
        if(m[0])    cout << 0 << endl;
        else    cout << (m[1]/3) - ((m[-1]+(m[1]%3))/3) << endl;
    }
  return 0;
}
    

Information

Submit By
Type
Submission
Problem
P1152 Special Array
Contest
Happy New Year 2025
Language
C++17 (G++ 13.2.0)
Submit At
2025-01-02 15:03:08
Judged At
2025-01-02 15:03:08
Judged By
Score
1
Total Time
14ms
Peak Memory
568.0 KiB