/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 540.0 KiB
#2 Accepted 2ms 396.0 KiB
#3 Accepted 143ms 992.0 KiB
#4 Accepted 138ms 1.488 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-10-03 13:31:21
Judged By
Score
100
Total Time
143ms
Peak Memory
1.488 MiB