-
Notifications
You must be signed in to change notification settings - Fork 0
/
1370C Number Game.cpp
71 lines (68 loc) · 1.36 KB
/
1370C Number Game.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <bits/stdc++.h>
using namespace std;
template<class C> void mini(C&a, C b){ a=min(a, b);}
template<class C> void maxi(C&a, C b){a=max(a,b);}
#define sz(x) x.size()
#define pb push_back
#define eb emplace_back
#define mp make_pair
#define mt make_tuple
#define forall(it,s) for(auto it = s.begin(); it != s.end(); ++it)
#define F0(i,n) for(int i = 0; i < n; i++)
#define F1(i,n) for(int (i) = 1; i <= n; i++)
#define F0R(i,n) for(int (i) = n-1; i >= 0; i--)
#define F1R(i,n) for(int (i) = n; i >= 1; i--)
#define REP(i,a,b) for(int i = a; i <= b; i++)
#define REPR(i,a,b) for(int i = a; i >= b; i--)
#define INF 1e9
#define todo(v) v.begin(),v.end()
#define eps 0.000000000001
#define mod 1000000007
#define PI acos(-1.0)
#define ll long long
void solve(){
ll n;
cin >> n;
if(n==1){
cout << "FastestFinger\n";
return;
}
if(n == 2){
cout << "Ashishgup\n";
return;
}
if(n%2==1){
cout << "Ashishgup\n";
return;
}
int cnt2 = 0;
int cntp = 0;
while(n%2==0){
cnt2++;
n/=2;
}
for(int i = 2; i*i<=n; i++){
while(n%i==0){
cntp++;
n /= i;
}
}
if(n>1){
cntp++;
}
if(cntp == 0){
cout << "FastestFinger\n";
return;
}
if(cnt2 + cntp == 2){
cout << "FastestFinger\n";
}else{
cout << "Ashishgup\n";
}
}
int main(){
int t;
cin >> t;
while(t--) solve();
return 0;
}