結果

問題 No.726 Tree Game
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-01 15:44:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 599 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-10-11 04:32:12
合計ジャッジ時間 2,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,344 KB
testcase_01 AC 48 ms
55,444 KB
testcase_02 AC 46 ms
55,392 KB
testcase_03 AC 46 ms
56,424 KB
testcase_04 AC 47 ms
56,404 KB
testcase_05 AC 46 ms
56,424 KB
testcase_06 AC 46 ms
56,172 KB
testcase_07 WA -
testcase_08 AC 47 ms
56,816 KB
testcase_09 WA -
testcase_10 AC 48 ms
55,288 KB
testcase_11 AC 50 ms
55,832 KB
testcase_12 AC 50 ms
56,384 KB
testcase_13 AC 49 ms
55,740 KB
testcase_14 AC 49 ms
56,028 KB
testcase_15 AC 46 ms
56,648 KB
testcase_16 AC 48 ms
61,196 KB
testcase_17 AC 48 ms
60,680 KB
testcase_18 AC 50 ms
61,572 KB
testcase_19 AC 53 ms
60,656 KB
testcase_20 AC 49 ms
60,428 KB
testcase_21 AC 48 ms
61,312 KB
testcase_22 AC 49 ms
60,900 KB
testcase_23 AC 49 ms
61,952 KB
testcase_24 AC 49 ms
61,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache


@lru_cache(maxsize=None)
def isPrime(n):
    if n == 0 or n == 1:
        return False
    if n == 2:
        return True
    if n % 2 == 0:
        return False
    for i in range(3, int(n ** 0.5) + 1, 2):
        if n % i == 0:
            return False
    return True


def find_prime(x):
    x += 1
    for _ in range(5 * 10 ** 6):
        if isPrime(x):
            return x
        x += 1
    return -1


X, Y = map(int, input().split())
dx = find_prime(X) - X - 1
dy = find_prime(Y) - Y - 1
if (dx + dy) % 2 == 0:
    print("Second")
else:
    print("First")
0