結果
問題 |
No.2 素因数ゲーム
|
ユーザー |
|
提出日時 | 2022-04-18 20:56:20 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 461 bytes |
コンパイル時間 | 390 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-29 23:31:43 |
合計ジャッジ時間 | 2,208 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 WA * 11 |
ソースコード
import collections def prime_factorize(n): a = [] while n % 2 == 0: a.append(2) n //= 2 f = 3 while f * f <= n: if n % f == 0: a.append(f) n //= f else: f += 2 if n != 1: a.append(n) return a N = int(input()) A = prime_factorize(N) c = collections.Counter(A) ans = 1 for j in c.most_common(): ans ^ j[1] if ans !=0: print('Alice') else: print('Bob')