/ SeriousOJ /

Record Detail

Compile Error

foo.cc: In function 'int main()':
foo.cc:6:12: error: 't' was not declared in this scope; did you mean 'tm'?
    6 |     cin >> t;
      |            ^
      |            tm

Code

#include <bits/stdc++.h>
using namespace std;

int main() {
    long longt;
    cin >> t;
    while(t--)
    {
        long long n;
        cin>>n;
        if(n==2 || n==3)
        {
            cout<<1<<endl;
        }
        else cout<<n/2<<endl;

    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1052 Yet Another Array Partition
Contest
Brain Booster #3
Language
C++17 (G++ 13.2.0)
Submit At
2024-05-06 15:49:20
Judged At
2024-11-11 03:33:50
Judged By
Score
0
Total Time
0ms
Peak Memory
0 Bytes