結果

問題 No.2 素因数ゲーム
ユーザー asumo0729asumo0729
提出日時 2023-01-18 18:25:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 1,504 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 65,208 KB
最終ジャッジ日時 2024-06-11 19:15:28
合計ジャッジ時間 2,470 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,996 KB
testcase_01 AC 43 ms
61,696 KB
testcase_02 AC 43 ms
62,284 KB
testcase_03 AC 43 ms
62,384 KB
testcase_04 AC 44 ms
62,020 KB
testcase_05 AC 44 ms
62,740 KB
testcase_06 AC 45 ms
62,500 KB
testcase_07 AC 46 ms
62,848 KB
testcase_08 AC 46 ms
62,564 KB
testcase_09 AC 45 ms
63,692 KB
testcase_10 AC 44 ms
63,172 KB
testcase_11 AC 44 ms
63,652 KB
testcase_12 AC 45 ms
62,968 KB
testcase_13 AC 50 ms
65,208 KB
testcase_14 AC 44 ms
63,032 KB
testcase_15 AC 45 ms
64,476 KB
testcase_16 AC 46 ms
63,136 KB
testcase_17 AC 45 ms
62,876 KB
testcase_18 AC 46 ms
63,056 KB
testcase_19 AC 46 ms
62,636 KB
testcase_20 AC 44 ms
63,948 KB
testcase_21 AC 46 ms
62,256 KB
testcase_22 AC 45 ms
63,780 KB
testcase_23 AC 46 ms
62,908 KB
testcase_24 AC 46 ms
62,760 KB
testcase_25 AC 44 ms
64,436 KB
testcase_26 AC 44 ms
62,652 KB
testcase_27 AC 45 ms
63,432 KB
testcase_28 AC 46 ms
62,456 KB
testcase_29 AC 45 ms
62,412 KB
testcase_30 AC 46 ms
63,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
from heapq import heapify, heappop, _heapify_max, heappush
from bisect import bisect_left, bisect_right
import math
import itertools
import copy

stdin=sys.stdin
#sys.setrecursionlimit(10 ** 7)
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
mod = 10 ** 9 + 7
mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])
# sort(key=lambda x:(x[1], x[2]))


###############################################################

N = ip()
NN = N
factors = set()
soin = set()
for i in range(2, N + 1):
    if i * i > N:
        break
    if N % i == 0:
        factors.add(i)
        factors.add(N//i)
    if NN % i == 0:
        soin.add(i)
        while NN % i == 0:
            NN //= i
if NN != 1:
    soin.add(NN)

factors.add(N)
factors = list(factors)
factors.sort()
grundy = defaultdict(int)
grundy[1] = 0

for fac in factors:
    mex = set()
    for f in soin:
        if fac % f == 0:
            ffac = fac
            while ffac % f == 0:
                mex.add(grundy[ffac//f])
                ffac //= f
    for i in range(100000):
        if i not in mex:
            x = i
            break
    grundy[fac] = x

if grundy[N]:
    print('Alice')
else:
    print('Bob')
0