Wrong Answer
Code
#include<iostream>
using namespace std;
int main()
{
int t;
cin >> t;
while(t--)
{
int n,k,ctr=0;
cin >> n;
for(int i=2;i<n;i++)
{
if(n%i==0)
{
k=i;
ctr++;
break;
}
}
if(ctr==0)
cout << 1 << endl;
else
cout << k << 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:28:38
- Judged At
- 2024-11-11 03:33:05
- Judged By
- Score
- 5
- Total Time
- 2ms
- Peak Memory
- 540.0 KiB