結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,084 KB
testcase_01 AC 37 ms
53,136 KB
testcase_02 AC 38 ms
53,392 KB
testcase_03 WA -
testcase_04 AC 39 ms
53,940 KB
testcase_05 AC 37 ms
53,660 KB
testcase_06 AC 37 ms
53,388 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 37 ms
52,916 KB
testcase_11 AC 37 ms
53,200 KB
testcase_12 AC 36 ms
53,412 KB
testcase_13 WA -
testcase_14 AC 37 ms
53,200 KB
testcase_15 AC 38 ms
54,520 KB
testcase_16 AC 41 ms
60,256 KB
testcase_17 AC 42 ms
58,756 KB
testcase_18 WA -
testcase_19 AC 42 ms
59,504 KB
testcase_20 AC 42 ms
59,456 KB
testcase_21 AC 45 ms
60,280 KB
testcase_22 AC 52 ms
60,848 KB
testcase_23 AC 46 ms
58,968 KB
testcase_24 AC 44 ms
59,788 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):
        if not rec(h+1, w):
            memo[(h, w)] = True
            return True
    if 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