結果

問題 No.2 素因数ゲーム
ユーザー buey_tbuey_t
提出日時 2023-04-27 13:28:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 1,408 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 85,328 KB
最終ジャッジ日時 2024-04-28 07:09:57
合計ジャッジ時間 4,695 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
84,736 KB
testcase_01 AC 115 ms
84,864 KB
testcase_02 AC 114 ms
85,120 KB
testcase_03 AC 114 ms
85,120 KB
testcase_04 AC 119 ms
85,072 KB
testcase_05 AC 115 ms
84,764 KB
testcase_06 AC 115 ms
85,248 KB
testcase_07 AC 117 ms
84,760 KB
testcase_08 AC 114 ms
85,248 KB
testcase_09 AC 116 ms
84,992 KB
testcase_10 AC 116 ms
85,224 KB
testcase_11 AC 116 ms
84,864 KB
testcase_12 AC 117 ms
84,824 KB
testcase_13 AC 117 ms
84,768 KB
testcase_14 AC 122 ms
84,976 KB
testcase_15 AC 123 ms
85,120 KB
testcase_16 AC 118 ms
84,992 KB
testcase_17 AC 115 ms
85,124 KB
testcase_18 AC 115 ms
85,036 KB
testcase_19 AC 116 ms
85,184 KB
testcase_20 AC 115 ms
84,708 KB
testcase_21 AC 115 ms
85,248 KB
testcase_22 AC 115 ms
85,328 KB
testcase_23 AC 119 ms
84,992 KB
testcase_24 AC 115 ms
85,120 KB
testcase_25 AC 118 ms
85,240 KB
testcase_26 AC 118 ms
85,140 KB
testcase_27 AC 113 ms
84,876 KB
testcase_28 AC 115 ms
85,120 KB
testcase_29 AC 116 ms
85,120 KB
testcase_30 AC 116 ms
85,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
from heapq import heapify, heappop, heappush
from bisect import bisect_left, bisect_right
from copy import deepcopy
import copy
import random
from random import randrange
from collections import deque,Counter,defaultdict
from itertools import permutations,combinations
from decimal import Decimal,ROUND_HALF_UP
#tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
from functools import lru_cache, reduce
#@lru_cache(maxsize=None)
from operator import add,sub,mul,xor,and_,or_,itemgetter
import sys
input = sys.stdin.readline
# .rstrip()
INF = 10**18
mod1 = 10**9+7
mod2 = 998244353

#DecimalならPython
#再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!

#[素因数, 何乗か]
def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    if arr==[]:
        arr.append([n, 1])

    return arr


'''
素因数分解して、それを二ムに見立てる
'''

N = int(input())

A = []
prime = factorization(N)
for p,e in prime:
    A.append(e)

x = A[0]
for i in range(1,len(A)):
    x ^= A[i]

if x == 0:
    print('Bob')
else:
    print('Alice')






















0