-
Notifications
You must be signed in to change notification settings - Fork 0
/
lightoj 1109 - False Ordering.cpp
54 lines (52 loc) · 1.43 KB
/
lightoj 1109 - False Ordering.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include<bits/stdc++.h>
#define ll long long int
#define pb push_back
#define F first
#define S second
#define mp make_pair
#define MOD 1000000007
#define vi vector<int>
#define vll vector<ll>
#define pll pair<ll,ll>
#define pii pair<int,int>
#define all(p) p.begin(),p.end()
#define mid(s,e) (s+(e-s)/2)
#define eb emplace_back
#define ull unsigned long long
#define KAMEHAMEHA ios_base::sync_with_stdio(0);
#define RASENGAN ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
using namespace std;
bool modsort(const pii &p1,const pii &p2)
{
if(p1.F<p2.F)
return true;
if(p1.F==p2.F )
return (p1.S>p2.S);
return false;
}
vector< pii > divcnt(1001);
int main()
{
KAMEHAMEHA
// #ifdef _soumik
// freopen("input.txt", "r", stdin);
// #endif
for(int i=1;i<=1000;i++)
{
for(int j=i;j<=1000;j+=i)
{
divcnt[j].F++;
divcnt[j].S=j;
}
}
sort(all(divcnt),modsort);
int q;
cin>>q;
for(int cn=1;cn<=q;cn++)
{
int n;
cin>>n;
cout<<"Case "<<cn<<": "<<divcnt[n].S<<endl;
}
return 0;
}