Submission #3359905


Source Code Expand

#include <iostream>
#include <algorithm>
#include <cmath>
using namespace std;
long long n,ans;
bool pan(long long x)
{
    for(long long i=2;i*i<=x;i++)
        if(x%i==0)
		return false;
    return true;
}

int main()
{
    while(1)
    {
        cin>>n;
        if(!n)
		break;
        long long l=0;
        for(long long i=1;i*i<=n;i++)
        {
            if(n%i!=0)
			continue;
			long long o=n/i;
            if(pan(o))
                l=max(o,l);
            if(pan(i))
                l=max(i,l);
        }
        cout<<l<<"\n";
    }

    return 0;
}

Submission Info

Submission Time
Task B - Working for the World
User luogu_bot5
Language C++ (GCC 5.4.1)
Score 100
Code Size 600 Byte
Status AC
Exec Time 4 ms
Memory 256 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 27
Set Name Test Cases
All 00-sample, 10-minimum, 11-maximum, 12-little, 13-large, 14-middle, 15-zero, 50-random00, 50-random01, 50-random02, 50-random03, 50-random04, 50-random05, 50-random06, 50-random07, 50-random08, 50-random09, 50-random10, 50-random11, 50-random12, 50-random13, 50-random14, 50-random15, 50-random16, 50-random17, 50-random18, 50-random19
Case Name Status Exec Time Memory
00-sample AC 1 ms 256 KB
10-minimum AC 1 ms 256 KB
11-maximum AC 1 ms 256 KB
12-little AC 1 ms 256 KB
13-large AC 4 ms 256 KB
14-middle AC 2 ms 256 KB
15-zero AC 1 ms 256 KB
50-random00 AC 3 ms 256 KB
50-random01 AC 3 ms 256 KB
50-random02 AC 3 ms 256 KB
50-random03 AC 3 ms 256 KB
50-random04 AC 3 ms 256 KB
50-random05 AC 3 ms 256 KB
50-random06 AC 3 ms 256 KB
50-random07 AC 3 ms 256 KB
50-random08 AC 3 ms 256 KB
50-random09 AC 3 ms 256 KB
50-random10 AC 2 ms 256 KB
50-random11 AC 3 ms 256 KB
50-random12 AC 3 ms 256 KB
50-random13 AC 3 ms 256 KB
50-random14 AC 3 ms 256 KB
50-random15 AC 3 ms 256 KB
50-random16 AC 3 ms 256 KB
50-random17 AC 3 ms 256 KB
50-random18 AC 3 ms 256 KB
50-random19 AC 3 ms 256 KB