結果

問題 No.103 素因数ゲーム リターンズ
ユーザー colognecologne
提出日時 2022-02-02 16:23:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 566 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,928 KB
最終ジャッジ日時 2024-06-11 09:28:24
合計ジャッジ時間 2,408 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,296 KB
testcase_01 AC 54 ms
54,784 KB
testcase_02 AC 49 ms
54,656 KB
testcase_03 AC 49 ms
54,400 KB
testcase_04 AC 50 ms
54,400 KB
testcase_05 AC 48 ms
54,400 KB
testcase_06 AC 49 ms
55,040 KB
testcase_07 AC 49 ms
54,400 KB
testcase_08 AC 50 ms
54,656 KB
testcase_09 AC 49 ms
55,168 KB
testcase_10 AC 49 ms
54,400 KB
testcase_11 AC 50 ms
55,296 KB
testcase_12 AC 50 ms
54,656 KB
testcase_13 AC 53 ms
60,160 KB
testcase_14 AC 54 ms
60,160 KB
testcase_15 AC 54 ms
60,160 KB
testcase_16 AC 49 ms
54,400 KB
testcase_17 AC 53 ms
60,288 KB
testcase_18 AC 49 ms
55,296 KB
testcase_19 AC 53 ms
60,928 KB
testcase_20 AC 50 ms
54,784 KB
testcase_21 AC 50 ms
54,784 KB
testcase_22 AC 50 ms
54,912 KB
testcase_23 AC 50 ms
54,656 KB
testcase_24 AC 49 ms
54,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import operator
import functools
import sys
import itertools

input = sys.stdin.readline


def grundy(N):
    a = 0
    for i in itertools.count(2):
        if i*i > N:
            break

        c = 0
        while N % i == 0:
            N //= i
            c += 1
        a ^= c % 3

    if N != 1:
        a ^= 1

    return a


def main():
    int(input())  # N
    print('Alice' if
          functools.reduce(operator.xor, map(lambda x: grundy(int(x)),
                           input().split()))
          else 'Bob')


if __name__ == '__main__':
    main()
0