/ SeriousOJ /

Record Detail

Time Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 328.0 KiB
#2 Accepted 2ms 332.0 KiB
#3 Accepted 2ms 544.0 KiB
#4 Accepted 2ms 492.0 KiB
#5 Accepted 303ms 620.0 KiB
#6 Time Exceeded ≥1067ms ≥740.0 KiB
#7 Time Exceeded ≥1031ms ≥548.0 KiB

Code

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

int main() {
    long long t;
    cin >> t;
    while(t--)
    {
        long long n;
        cin>>n;
        int x;
        int flag = 1;
        for(int i=2; i<=sqrt(n)+1; i++)
        {
            if(n%i==0)
            {
                x = i;
                flag = 0;
                break;
            }
        }
        if(n==2 || n==3)
        {
            cout<<1<<endl;
        }
        else if(flag == 1)
        {
            cout<<1<<endl;
        }
        else{
            cout<<n/x<<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 17:12:48
Judged At
2024-11-11 03:32:30
Judged By
Score
40
Total Time
≥1067ms
Peak Memory
≥740.0 KiB