Wrong Answer
Code
#include<bits/stdc++.h>
using namespace std;
void ans();
int main() {
    int t; 
    cin >> t;
    while(t--) 
        ans();
    return 0;
}
void ans() {
    int n; 
    cin >> n;
   if(n%2==1) cout << 1 << endl;
   else cout << 2 << endl;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1052 C. Yet Another Array Partition
- Contest
- Brain Booster #3
- Language
- C++17 (G++ 13.2.0)
- Submit At
- 2024-05-06 16:25:09
- Judged At
- 2024-11-11 03:33:09
- Judged By
- Score
- 5
- Total Time
- 2ms
- Peak Memory
- 532.0 KiB