結果

問題 No.726 Tree Game
ユーザー Coki628Coki628
提出日時 2020-09-02 12:15:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,741 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 62,148 KB
最終ジャッジ日時 2024-05-01 10:29:31
合計ジャッジ時間 1,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,604 KB
testcase_01 AC 33 ms
53,924 KB
testcase_02 AC 33 ms
53,248 KB
testcase_03 WA -
testcase_04 AC 33 ms
53,448 KB
testcase_05 AC 32 ms
54,000 KB
testcase_06 AC 32 ms
54,132 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
53,500 KB
testcase_11 AC 36 ms
52,776 KB
testcase_12 AC 35 ms
53,344 KB
testcase_13 WA -
testcase_14 AC 35 ms
53,060 KB
testcase_15 AC 34 ms
53,808 KB
testcase_16 AC 39 ms
59,648 KB
testcase_17 AC 39 ms
59,520 KB
testcase_18 WA -
testcase_19 AC 41 ms
59,612 KB
testcase_20 AC 40 ms
58,924 KB
testcase_21 AC 44 ms
61,520 KB
testcase_22 AC 51 ms
62,148 KB
testcase_23 AC 43 ms
58,816 KB
testcase_24 AC 44 ms
60,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for j in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10**9)
INF = 10**19
MOD = 10**9 + 7
EPS = 10**-10

def is_prime(num):
    """ 素数判定 """
    from math import sqrt

    if num < 2: 
        return False
    if num in [2, 3, 5]: 
        return True
    if num % 2 == 0 or num % 3 == 0 or num % 5 == 0:
        return False
    # 疑似素数(2でも3でも割り切れない数字)で次々に割っていく
    prime = 7
    step = 4
    num_sqrt = sqrt(num)
    while prime <= num_sqrt:
        if num % prime == 0:
            return False
        prime += step
        step = 6 - step
    return True

memo = {}
def rec(h, w):
    if (h, w) in memo:
        return memo[(h, w)]
    # 上に進める
    if not is_prime(h+1) and not is_prime(w):
        if not rec(h+1, w):
            memo[(h, w)] = True
            return True
    # 右に進める
    if not is_prime(h) and not is_prime(w+1):
        if not rec(h, w+1):
            memo[(h, w)] = True
            return True
    memo[(h, w)] = False
    return False

Y, X = MAP()

if is_prime(Y) or is_prime(X):
    print('First')
    exit()

res = rec(Y, X)
if res:
    print('First')
else:
    print('Second')
0