結果
問題 | No.726 Tree Game |
ユーザー | treeone |
提出日時 | 2018-03-30 00:07:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,329 bytes |
コンパイル時間 | 1,303 ms |
コンパイル使用メモリ | 158,152 KB |
実行使用メモリ | 11,396 KB |
最終ジャッジ日時 | 2024-06-26 00:11:15 |
合計ジャッジ時間 | 4,139 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
11,288 KB |
testcase_01 | AC | 4 ms
11,300 KB |
testcase_02 | AC | 4 ms
11,396 KB |
testcase_03 | AC | 4 ms
11,148 KB |
testcase_04 | AC | 5 ms
11,148 KB |
testcase_05 | AC | 4 ms
11,328 KB |
testcase_06 | AC | 4 ms
11,300 KB |
testcase_07 | AC | 3 ms
11,280 KB |
testcase_08 | AC | 4 ms
11,328 KB |
testcase_09 | AC | 4 ms
11,316 KB |
testcase_10 | AC | 4 ms
11,276 KB |
testcase_11 | AC | 3 ms
11,332 KB |
testcase_12 | AC | 4 ms
11,312 KB |
testcase_13 | AC | 4 ms
11,200 KB |
testcase_14 | AC | 4 ms
11,376 KB |
testcase_15 | AC | 4 ms
11,388 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, a, n) for(int i = a; i < n; i++) #define REP(i, n) rep(i, 0, n) #define repb(i, a, b) for(int i = a; i >= b; i--) #define all(a) a.begin(), a.end() #define int long long #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) using namespace std; typedef pair<int, int> P; const int mod = 1000000007; const int INF = 1e12; const int MAX_N = 1010; int prime[MAX_N]; bool is_prime[MAX_N + 1]; void sieve(int n){ int p = 0; for(int i = 0; i <= n; i++) is_prime[i] = true; is_prime[0] = is_prime[1] = false; for(int i = 2; i <= n; i++){ if(is_prime[i]){ prime[p++] = i; for(int j = 2*i; j <= n; j += i) is_prime[j] = false; } } } int h, w; int dp[1010][1010]; int dy[2] = {1, 0}; int dx[2] = {0, 1}; bool calc(int y, int x){ if(dp[y][x] != -1) return dp[y][x]; if(!(y == h && x == w)){ if(is_prime[y] || is_prime[x]) return dp[y][x] = true; } bool res = true; rep(i, 0, 2){ int ny = y + dy[i]; int nx = x + dx[i]; res &= calc(ny, nx); } return dp[y][x] = !res; } signed main(){ ios::sync_with_stdio(false); cin.tie(0); sieve(1000); cin >> h >> w; rep(i, 0, 1010) rep(j, 0, 1010) dp[i][j] = -1; cout << (calc(h, w) ? "First" : "Second") << endl; }