結果
問題 | No.2 素因数ゲーム |
ユーザー | asumo0729 |
提出日時 | 2023-01-18 18:01:15 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,561 bytes |
コンパイル時間 | 304 ms |
コンパイル使用メモリ | 82,004 KB |
実行使用メモリ | 64,640 KB |
最終ジャッジ日時 | 2024-06-11 18:59:53 |
合計ジャッジ時間 | 2,996 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
61,312 KB |
testcase_01 | AC | 50 ms
61,184 KB |
testcase_02 | AC | 49 ms
60,928 KB |
testcase_03 | AC | 50 ms
61,184 KB |
testcase_04 | WA | - |
testcase_05 | AC | 49 ms
61,312 KB |
testcase_06 | AC | 51 ms
62,208 KB |
testcase_07 | AC | 51 ms
62,464 KB |
testcase_08 | WA | - |
testcase_09 | AC | 52 ms
62,208 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 52 ms
62,720 KB |
testcase_13 | AC | 55 ms
64,640 KB |
testcase_14 | AC | 51 ms
62,592 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 51 ms
62,464 KB |
testcase_18 | AC | 50 ms
62,336 KB |
testcase_19 | AC | 51 ms
61,952 KB |
testcase_20 | WA | - |
testcase_21 | AC | 51 ms
62,336 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 51 ms
62,464 KB |
testcase_27 | AC | 51 ms
62,080 KB |
testcase_28 | AC | 52 ms
62,208 KB |
testcase_29 | AC | 51 ms
62,464 KB |
testcase_30 | WA | - |
ソースコード
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 NN = N for f in soin: if NN % f == 0: NN //= f if NN == N: soin.add(N) 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')