/ SeriousOJ /

Record Detail

Runtime Error


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 324.0 KiB
#2 Runtime Error 1ms 580.0 KiB
#3 Accepted 1ms 320.0 KiB
#4 Wrong Answer 2ms 532.0 KiB
#5 Wrong Answer 221ms 616.0 KiB
#6 Runtime Error 2ms 540.0 KiB
#7 Time Exceeded ≥1093ms ≥564.0 KiB
#8 Wrong Answer 167ms 620.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;
        if(n==2 || n==3)
        {
            cout<<1<<endl;
        }
        else{
        for(int i=2; i<=sqrt(n)+1; i++)
        {
            if(n%i==0)
            {
                x = i;
                break;
            }
        }
        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:06:20
Judged At
2024-10-03 13:49:08
Judged By
Score
10
Total Time
1093ms
Peak Memory
620.0 KiB