結果

問題 No.103 素因数ゲーム リターンズ
ユーザー rlangevinrlangevin
提出日時 2023-07-13 12:32:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 506 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 87,136 KB
実行使用メモリ 76,244 KB
最終ジャッジ日時 2023-10-13 01:39:08
合計ジャッジ時間 3,490 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,876 KB
testcase_01 AC 74 ms
71,876 KB
testcase_02 AC 79 ms
71,548 KB
testcase_03 AC 74 ms
71,884 KB
testcase_04 AC 75 ms
71,804 KB
testcase_05 AC 73 ms
71,700 KB
testcase_06 WA -
testcase_07 AC 74 ms
71,720 KB
testcase_08 AC 74 ms
71,548 KB
testcase_09 AC 76 ms
71,880 KB
testcase_10 WA -
testcase_11 AC 75 ms
71,964 KB
testcase_12 AC 75 ms
75,680 KB
testcase_13 WA -
testcase_14 AC 76 ms
75,780 KB
testcase_15 WA -
testcase_16 AC 74 ms
71,952 KB
testcase_17 AC 77 ms
75,656 KB
testcase_18 AC 76 ms
75,772 KB
testcase_19 AC 75 ms
75,648 KB
testcase_20 AC 76 ms
75,860 KB
testcase_21 WA -
testcase_22 AC 77 ms
75,840 KB
testcase_23 AC 75 ms
75,784 KB
testcase_24 AC 76 ms
75,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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])

    return arr


N = int(input())
M = list(map(int, input().split()))
ans = 0
for m in M:
    for _, cnt in factorization(m):
        ans ^= (cnt%3 != 0)

print("Alice") if ans else print("Bob")
0