結果
問題 | No.103 素因数ゲーム リターンズ |
ユーザー | lollipop |
提出日時 | 2024-08-25 13:38:00 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 884 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 82,848 KB |
実行使用メモリ | 76,380 KB |
最終ジャッジ日時 | 2024-08-25 13:38:07 |
合計ジャッジ時間 | 1,970 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
54,184 KB |
testcase_01 | AC | 38 ms
52,984 KB |
testcase_02 | AC | 37 ms
53,756 KB |
testcase_03 | WA | - |
testcase_04 | AC | 36 ms
53,856 KB |
testcase_05 | AC | 35 ms
52,452 KB |
testcase_06 | WA | - |
testcase_07 | AC | 34 ms
52,808 KB |
testcase_08 | AC | 38 ms
52,536 KB |
testcase_09 | AC | 34 ms
53,004 KB |
testcase_10 | AC | 34 ms
54,016 KB |
testcase_11 | AC | 34 ms
53,420 KB |
testcase_12 | WA | - |
testcase_13 | AC | 39 ms
59,260 KB |
testcase_14 | AC | 42 ms
59,520 KB |
testcase_15 | AC | 39 ms
58,512 KB |
testcase_16 | WA | - |
testcase_17 | AC | 38 ms
58,876 KB |
testcase_18 | WA | - |
testcase_19 | AC | 40 ms
59,092 KB |
testcase_20 | AC | 38 ms
58,872 KB |
testcase_21 | AC | 40 ms
59,176 KB |
testcase_22 | AC | 39 ms
58,436 KB |
testcase_23 | WA | - |
testcase_24 | AC | 68 ms
76,380 KB |
ソースコード
def prime_numbers(x) : if x < 2 : return [] prime = [] for i in range(2, int(x**0.5) + 1) : while x % i == 0 : prime.append(i) x //= i if x > 1 : prime.append(x) return prime ########################################################################## def f(x): s = set() if x >= 1: s.add(f(x-1)) if x >= 2: s.add(f(x-2)) for i in range(3): if i not in s: mex = i; break return mex ########################################################################## def xor_sum(A): ret = 0 for a in A: ret ^= a return ret ########################################################################## N = int(input()) M = list(map(int,input().split())) grundy = [f(len(prime_numbers(M[i]))) for i in range(N)] print("Alice") if xor_sum(grundy) else print("Bob")