結果

問題 No.103 素因数ゲーム リターンズ
ユーザー i_takui_taku
提出日時 2024-09-03 13:33:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 483 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 66,164 KB
最終ジャッジ日時 2024-09-03 13:33:31
合計ジャッジ時間 3,070 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
64,916 KB
testcase_01 AC 57 ms
65,872 KB
testcase_02 AC 56 ms
65,432 KB
testcase_03 AC 58 ms
64,368 KB
testcase_04 AC 56 ms
64,872 KB
testcase_05 AC 56 ms
64,924 KB
testcase_06 AC 56 ms
65,368 KB
testcase_07 AC 58 ms
64,796 KB
testcase_08 AC 56 ms
64,984 KB
testcase_09 AC 55 ms
64,104 KB
testcase_10 AC 56 ms
64,940 KB
testcase_11 AC 55 ms
64,372 KB
testcase_12 AC 56 ms
65,724 KB
testcase_13 AC 55 ms
65,104 KB
testcase_14 AC 56 ms
64,680 KB
testcase_15 AC 55 ms
66,164 KB
testcase_16 AC 55 ms
64,960 KB
testcase_17 AC 55 ms
64,968 KB
testcase_18 AC 55 ms
64,712 KB
testcase_19 AC 56 ms
65,512 KB
testcase_20 AC 56 ms
65,992 KB
testcase_21 AC 55 ms
64,424 KB
testcase_22 AC 54 ms
64,912 KB
testcase_23 AC 58 ms
65,512 KB
testcase_24 AC 56 ms
65,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = list(map(int, input().split()))
MAX = 10_000
P = [i for i in range(MAX + 1)]
for i in range(2, MAX + 1):
    if P[i] == i:
        for j in range(i + i, MAX + 1, i):
            P[j] = i
dp = [0] * (MAX + 1)
for n in range(2, MAX + 1):
    m = n
    while m > 1:
        p = P[m]
        cnt = 0
        while m % p == 0:
            m //= p
            cnt += 1
        dp[n] ^= cnt % 3
xor = 0
for m in M:
    xor ^= dp[m]
print('Alice' if xor > 0 else 'Bob')
0