/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 1ms 324.0 KiB
#2 Wrong Answer 1ms 364.0 KiB

Code

#include <iostream>
using namespace std;

void solve() {
    int n;
    cin >> n;
    if (n % 2 == 0) {
        cout << n / 2;
    } else {
        cout << (n - 1) / 2;
    }
}

int main() {
    int t;
    cin >> t; 
    while(t--){ 
        solve();
    }
}

Information

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