結果

問題 No.2 素因数ゲーム
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-10 08:39:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,341 ms / 5,000 ms
コード長 382 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 62,900 KB
最終ジャッジ日時 2024-06-24 04:20:07
合計ジャッジ時間 5,549 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
57,008 KB
testcase_01 AC 48 ms
56,172 KB
testcase_02 AC 49 ms
55,668 KB
testcase_03 AC 49 ms
56,400 KB
testcase_04 AC 47 ms
55,884 KB
testcase_05 AC 48 ms
56,868 KB
testcase_06 AC 48 ms
55,888 KB
testcase_07 AC 53 ms
56,208 KB
testcase_08 AC 88 ms
61,560 KB
testcase_09 AC 48 ms
56,548 KB
testcase_10 AC 51 ms
62,724 KB
testcase_11 AC 51 ms
61,472 KB
testcase_12 AC 46 ms
57,136 KB
testcase_13 AC 47 ms
56,464 KB
testcase_14 AC 51 ms
62,900 KB
testcase_15 AC 51 ms
62,032 KB
testcase_16 AC 51 ms
61,320 KB
testcase_17 AC 53 ms
61,284 KB
testcase_18 AC 49 ms
61,700 KB
testcase_19 AC 756 ms
62,628 KB
testcase_20 AC 560 ms
61,320 KB
testcase_21 AC 1,341 ms
61,832 KB
testcase_22 AC 84 ms
62,752 KB
testcase_23 AC 50 ms
61,780 KB
testcase_24 AC 52 ms
61,164 KB
testcase_25 AC 78 ms
62,008 KB
testcase_26 AC 52 ms
61,568 KB
testcase_27 AC 52 ms
62,292 KB
testcase_28 AC 50 ms
56,056 KB
testcase_29 AC 47 ms
56,740 KB
testcase_30 AC 52 ms
62,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


N = int(input())
P = []
n = N
for i in range(2,N+1):
    if n==1:
        break
    
    while n%i==0:
        P.append(i)
        n //= i

C = Counter(P)
X = 0
for v in C.values():
    X ^= v
if X==0:
    print('Bob')
else:
    print('Alice')
0