結果

問題 No.726 Tree Game
ユーザー Enjapma_kyoproEnjapma_kyopro
提出日時 2018-08-24 22:25:23
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 1,925 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 85,384 KB
実行使用メモリ 10,324 KB
最終ジャッジ日時 2023-09-05 12:19:35
合計ジャッジ時間 1,819 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,044 KB
testcase_01 AC 4 ms
10,072 KB
testcase_02 AC 4 ms
10,092 KB
testcase_03 AC 4 ms
10,220 KB
testcase_04 AC 3 ms
10,096 KB
testcase_05 AC 4 ms
10,036 KB
testcase_06 AC 4 ms
10,092 KB
testcase_07 AC 4 ms
10,296 KB
testcase_08 AC 4 ms
10,048 KB
testcase_09 AC 4 ms
10,084 KB
testcase_10 AC 4 ms
10,068 KB
testcase_11 AC 3 ms
10,104 KB
testcase_12 AC 4 ms
10,324 KB
testcase_13 AC 4 ms
10,164 KB
testcase_14 AC 4 ms
10,100 KB
testcase_15 AC 4 ms
10,252 KB
testcase_16 AC 4 ms
10,088 KB
testcase_17 AC 7 ms
10,068 KB
testcase_18 AC 4 ms
10,092 KB
testcase_19 AC 8 ms
10,100 KB
testcase_20 AC 8 ms
10,248 KB
testcase_21 AC 8 ms
10,140 KB
testcase_22 AC 20 ms
10,232 KB
testcase_23 AC 14 ms
10,120 KB
testcase_24 AC 8 ms
10,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cassert>
#include <climits>
#include <bitset>
#include <stack>
#include <queue>
#include <iomanip>
#include <limits>
#include <string>
#include <cmath>
#include <set>
#include <map>
#include <math.h>
#include <algorithm>
#include <vector>
#include <string.h>
 
using namespace std;
typedef long long ll;
 
 
typedef pair<ll,ll> P;
long long int INF = 1e18;
double Pi = 3.141592653589;
long long int mod = 1000000007;
// memset(a,0,sizeof(a)); →全部0にする
 
vector<ll> G[100005];
vector<P> tree[100010];
priority_queue <ll> pql;
priority_queue <P> pqp;
//big priority queue
priority_queue <ll,vector<ll>,greater<ll>> pqls;
priority_queue <P,vector<P>,greater<P>> pqps;
//small priority queue
//top pop

int dx[8]={1,0,-1,0,1,1,-1,-1};
int dy[8]={0,1,0,-1,1,-1,-1,1};
//↓,→,↑,←
 
#define p(x) cout<<x<<endl;
#define el cout<<endl;
#define pe(x) cout<<x<<" ";
#define ps(x) cout<<fixed<<setprecision(25)<<x<<endl;
#define pu(x) cout<<x;
#define re(i,a,b) for(i=a;i<=b;i++);
#define pb push_back
#define lb lower_bound
#define ub upper_bound
 
ll rui(ll abc,ll bed){
	//aのb乗を計算する
	if(bed==0){return 1;}
	else{
		ll ced = rui(abc,bed/2);
		ced *= ced;
		ced %= mod;
		if(bed%2==1){ced*=abc; ced%=mod;}
		return ced;
	}
} 
ll i,j,k,ii,jj;
ll n,m,num;
ll ans;
ll a,b,c,d,e,f,g,h,w;
 
ll x[800005],y[800005],z[900005];
ll dp[8005][8005];

bool prime(ll x){
	if(x==1)return false;
	for(int i=2;i*i<=x;i++){
		if(x%i==0){
			return false;
		}
	}
	return true;
}

ll solve(ll a,ll b){
	//pe(a);p(b);
	if(dp[a-n][b-m]>=1){
		return dp[a-n][b-m];
	}else if((prime(a) || prime(b)) && !(n==a && m==b)){
		dp[a-n][b-m] = 1;
		return 1;
	}else if(solve(a+1,b)==1 && solve(a,b+1)==1){
		dp[a-n][b-m] = 2;
		return 2;
	}else{
		dp[a-n][b-m] = 1;
		return 1;
	}
}
		
		


int main(){	
	cin>>n>>m;
	solve(n,m);
	if(solve(n,m)==1){
		p("First");
	}else{
		p("Second");
	}
	return 0;
}
0