結果
問題 | No.103 素因数ゲーム リターンズ |
ユーザー |
![]() |
提出日時 | 2025-03-14 18:05:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 178 bytes |
コンパイル時間 | 547 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 59,928 KB |
最終ジャッジ日時 | 2025-03-14 18:05:41 |
合計ジャッジ時間 | 2,835 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 WA * 1 |
other | AC * 13 WA * 7 |
ソースコード
n=int(input())g=0for v in list(map(int,input().split())):i=2while i*i<=v:c=0while v%i==0:v//=ic+=1g^=c%3i+=1print(["Bob","Alice"][g>0])