結果

問題 No.103 素因数ゲーム リターンズ
コンテスト
ユーザー yn
提出日時 2015-10-07 22:34:37
言語 Python3
(3.14.3 + numpy 2.4.4 + scipy 1.17.1)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 757 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 441 ms
コンパイル使用メモリ 20,696 KB
実行使用メモリ 35,928 KB
最終ジャッジ日時 2026-04-02 19:35:08
合計ジャッジ時間 3,548 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

def solve(M):
    x = 0
    for m in M:
        for i in num:
            if m < i * i:
                break

            cnt = 0
            while m % i == 0:
                m = m // i
                cnt += 1
            x ^= cnt % 3

        if m > 1:
            x ^= 1

    if x == 0:
        return False
    else:
        return True

N = 100
table = [True] * (N + 1)
num = []

for i in range(2, N + 1):
    if not table[i]:
        continue
    k = i + i
    while k < N + 1:
        table[k] = False
        k += i

    num.append(i)

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

if M.count(1) == len(M):
    print("Alice")
    exit()

if solve(M):
    print("Alice")
else:
    print("Bob")
0