結果

問題 No.726 Tree Game
ユーザー Poina15Poina15
提出日時 2018-08-24 22:20:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 507 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-06-23 07:51:00
合計ジャッジ時間 3,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
15,104 KB
testcase_01 AC 91 ms
15,104 KB
testcase_02 AC 93 ms
15,232 KB
testcase_03 AC 95 ms
15,104 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 87 ms
15,104 KB
testcase_08 WA -
testcase_09 AC 87 ms
15,104 KB
testcase_10 AC 87 ms
15,104 KB
testcase_11 AC 88 ms
15,104 KB
testcase_12 AC 89 ms
14,976 KB
testcase_13 AC 87 ms
14,976 KB
testcase_14 AC 89 ms
15,104 KB
testcase_15 AC 88 ms
15,104 KB
testcase_16 WA -
testcase_17 AC 91 ms
15,104 KB
testcase_18 WA -
testcase_19 AC 88 ms
15,104 KB
testcase_20 AC 91 ms
15,104 KB
testcase_21 AC 94 ms
15,104 KB
testcase_22 AC 92 ms
14,976 KB
testcase_23 AC 91 ms
15,104 KB
testcase_24 AC 89 ms
15,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Y, X = map(int, input().split())
def prime(n):
    seq = list(range(2, n))
    while len(seq) > 0:
        p = seq.pop(0)
        yield p
        if n ** 0.5 >= p:
            seq = [i for i in seq if i % p != 0]
ps = set(prime(10 ** 5))

def f(v):
    for i in range(10 ** 10):
        if (v + i) in ps:
            return i
        for p in ps:
            if (v + i) % p == 0:
                break
        else:
            return i
dx = f(X)
dy = f(Y)
print('Second' if (dx + dy) % 2 == 0 else 'First')
0