結果

問題 No.103 素因数ゲーム リターンズ
ユーザー IgrmiIgrmi
提出日時 2021-06-20 00:00:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 622 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 58,240 KB
最終ジャッジ日時 2024-06-22 22:21:24
合計ジャッジ時間 1,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 35 ms
52,480 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 35 ms
52,480 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 36 ms
52,152 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 36 ms
52,608 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 34 ms
52,304 KB
testcase_12 AC 38 ms
57,984 KB
testcase_13 AC 41 ms
58,112 KB
testcase_14 AC 42 ms
57,984 KB
testcase_15 AC 40 ms
58,240 KB
testcase_16 AC 36 ms
51,968 KB
testcase_17 AC 39 ms
58,240 KB
testcase_18 AC 37 ms
52,224 KB
testcase_19 AC 40 ms
57,984 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 AC 35 ms
52,480 KB
testcase_22 AC 37 ms
52,736 KB
testcase_23 AC 36 ms
52,608 KB
testcase_24 AC 40 ms
58,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Grundy = [0] * 15
for i in range(1, 15):
    S = {Grundy[i - 1]}
    if i > 1: S.add(Grundy[i - 2])
    for j in range(3):
        if j not in S:
            Grundy[i] = j
            break

N = int(input())
M = list(map(int, input().split()))

Num = [i for i in range(101)]
Prime = []
for i in range(2, 101):
    if i != Num[i]: continue
    Prime.append(i)
    for j in range(i + i, 101, i):
        Num[j] = 0

Xor = 0
for m in M:
    for P in Prime:
        Q = 0
        while m % P == 0:
            m //= P
            Q += 1
        Xor ^= Grundy[Q]
    if m != 1: Xor ^= Grundy[1]
print('Alice' if Xor else 'Bob')
0