結果
問題 |
No.2 素因数ゲーム
|
ユーザー |
![]() |
提出日時 | 2016-08-23 14:07:22 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 142 bytes |
コンパイル時間 | 128 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 21,248 KB |
最終ジャッジ日時 | 2024-11-07 23:19:54 |
合計ジャッジ時間 | 8,844 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 TLE * 1 -- * 11 |
ソースコード
N = int(input()) ans = 0 i = 2 while i <= N: c = 0 while N % i == 0: c+=1 N /= i ans ^= c i += 1 print('Bob' if ans == 0 else 'Alice')