/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Accepted 2ms 532.0 KiB
#3 Accepted 2ms 512.0 KiB
#4 Accepted 4ms 532.0 KiB
#5 Time Exceeded ≥1097ms ≥532.0 KiB
#6 Time Exceeded ≥1083ms ≥348.0 KiB
#7 Time Exceeded ≥1097ms ≥444.0 KiB
#8 Time Exceeded ≥1088ms ≥536.0 KiB

Code

//Fahmidur Rahman Nafi 62 [i]
#include <bits/stdc++.h>
using namespace std;

int max_div(int num) {
    long long int highest = 1;
    for (int i = num / 2; i >= 1; i--) {
        if (num % i == 0) {
            highest = i;
            break;
        }
    }
    return highest;
}


int main(){
    long long int t;
    cin >> t;
    while (t--){
        long long int n;
        cin >> n;
        
        if (n % 2 == 0){
            cout << n/2 << endl;
        }
        else{
            long long int ans = max_div(n);
            cout << ans << endl;
        }
    }
}

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 16:26:53
Judged At
2024-10-03 13:50:12
Judged By
Score
25
Total Time
≥1097ms
Peak Memory
≥536.0 KiB