/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 1ms 436.0 KiB
#3 Accepted 165ms 860.0 KiB
#4 Accepted 168ms 1.324 MiB

Code

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<ll,ll> PII;
const ll mx = 3e5+10;

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int t;
    cin>>t;
    while(t--) {
        ll n;
        cin >> n;

        if(n&1) {
            cout<<n/2<<endl;
        }
        else{
            ll half = n/2;

            cout<<half-1<<endl;
        }
    }
}

Information

Submit By
Type
Submission
Problem
P1073 Pair Sum
Contest
Bangladesh 2.0
Language
C++20 (G++ 13.2.0)
Submit At
2024-08-16 15:34:40
Judged At
2024-08-16 15:34:40
Judged By
Score
100
Total Time
168ms
Peak Memory
1.324 MiB