結果

問題 No.726 Tree Game
ユーザー 👑 rin204rin204
提出日時 2022-10-30 17:00:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 54,048 KB
最終ジャッジ日時 2024-07-07 08:25:37
合計ジャッジ時間 2,087 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,888 KB
testcase_01 AC 38 ms
53,572 KB
testcase_02 AC 38 ms
52,976 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 38 ms
53,588 KB
testcase_09 WA -
testcase_10 AC 37 ms
52,404 KB
testcase_11 AC 38 ms
52,500 KB
testcase_12 AC 37 ms
52,336 KB
testcase_13 WA -
testcase_14 AC 39 ms
52,440 KB
testcase_15 AC 39 ms
52,188 KB
testcase_16 WA -
testcase_17 AC 40 ms
52,696 KB
testcase_18 AC 41 ms
52,560 KB
testcase_19 AC 39 ms
53,144 KB
testcase_20 AC 38 ms
53,924 KB
testcase_21 AC 38 ms
52,268 KB
testcase_22 AC 37 ms
52,812 KB
testcase_23 AC 38 ms
52,556 KB
testcase_24 AC 38 ms
52,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isprime(n):
    if n <= 1:
        return False
    elif n == 2:
        return True
    elif n % 2 == 0:
        return False
    
    A = [2, 325, 9375, 28178, 450775, 9780504, 1795265022]
    s = 0
    d = n - 1
    while d % 2 == 0:
        s += 1
        d >>= 1
    
    for a in A:
        if a % n == 0:
            return True
        x = pow(a, d, n)
        if x != 1:
            for t in range(s):
                if x == n - 1:
                    break
                x = x * x % n
            else:
                return False
    return True
        


y, x = map(int, input().split())
if x > y:
    x, y = y, x

if isprime(y) and isprime(x):
    print("Secnod")
elif x == 2 and isprime(y):
    print("Secnod")
elif (y + x) & 1:
    print("First")
else:
    print("Second")
0