結果

問題 No.2 素因数ゲーム
ユーザー qibqib
提出日時 2023-02-05 12:26:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 276 bytes
コンパイル時間 696 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 59,456 KB
最終ジャッジ日時 2024-07-04 02:41:20
合計ジャッジ時間 2,376 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,156 KB
testcase_01 WA -
testcase_02 AC 36 ms
53,116 KB
testcase_03 AC 34 ms
52,492 KB
testcase_04 WA -
testcase_05 AC 35 ms
53,720 KB
testcase_06 AC 40 ms
58,220 KB
testcase_07 AC 39 ms
58,804 KB
testcase_08 WA -
testcase_09 AC 39 ms
58,116 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 42 ms
57,636 KB
testcase_13 AC 38 ms
58,664 KB
testcase_14 AC 39 ms
58,340 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 39 ms
58,188 KB
testcase_18 AC 38 ms
59,068 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 37 ms
58,184 KB
testcase_27 AC 38 ms
58,448 KB
testcase_28 AC 37 ms
59,456 KB
testcase_29 AC 38 ms
57,916 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

n = int(input())

cnt = {}
cur = n
for x in range(2, int(math.sqrt(n)) + 1):
  if cur % x == 0:
    cnt[x] = 0
    while cur % x == 0:
      cnt[x] += 1
      cur //= x

ans = 0
for v in cnt.values():
  ans ^= v

if ans == 0:
  print("Bob")
else:
  print("Alice")
0