結果

問題 No.2 素因数ゲーム
ユーザー momoyuumomoyuu
提出日時 2022-08-02 23:40:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 584 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 59,932 KB
最終ジャッジ日時 2024-07-23 17:50:15
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,848 KB
testcase_01 AC 38 ms
53,608 KB
testcase_02 AC 38 ms
53,372 KB
testcase_03 AC 38 ms
53,668 KB
testcase_04 AC 37 ms
54,060 KB
testcase_05 AC 38 ms
52,752 KB
testcase_06 AC 40 ms
58,044 KB
testcase_07 AC 43 ms
58,540 KB
testcase_08 AC 40 ms
59,932 KB
testcase_09 AC 41 ms
59,444 KB
testcase_10 AC 41 ms
58,112 KB
testcase_11 AC 41 ms
58,920 KB
testcase_12 AC 42 ms
57,784 KB
testcase_13 AC 41 ms
57,976 KB
testcase_14 AC 41 ms
58,708 KB
testcase_15 AC 43 ms
58,308 KB
testcase_16 AC 41 ms
57,848 KB
testcase_17 AC 41 ms
59,052 KB
testcase_18 AC 41 ms
58,916 KB
testcase_19 AC 41 ms
58,140 KB
testcase_20 AC 42 ms
58,132 KB
testcase_21 AC 41 ms
59,604 KB
testcase_22 AC 40 ms
58,212 KB
testcase_23 AC 42 ms
58,760 KB
testcase_24 AC 42 ms
58,448 KB
testcase_25 AC 41 ms
57,880 KB
testcase_26 AC 41 ms
58,272 KB
testcase_27 AC 41 ms
58,992 KB
testcase_28 AC 41 ms
58,136 KB
testcase_29 AC 42 ms
58,252 KB
testcase_30 AC 44 ms
59,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
d = {}
import math
m = math.floor(math.sqrt(N))

for i in range(2,m+1):
    while N % i == 0:
        if not i in d:
            d[i] = 0
        d[i] += 1
        N //= i
if N != 1:
    if not N in d:
        d[N] = 0
    d[N] += 1

p = 0

def fin(p):
    if p == 0:
        print("Alice")
    else:
        print("Bob")
    exit()

if len(d) == 1:
    fin(0)


if len(d) == 2:
    l = []
    for i in d:
        l.append(i)
    if d[l[0]] == d[l[1]]:
        fin(1)
    else:
        fin(0)

a = 0
for i in d:
    a ^= d[i]
if a == 0:
    fin(1)
else:
    fin(0)


0