結果

問題 No.2 素因数ゲーム
ユーザー otsunekootsuneko
提出日時 2021-04-24 10:11:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-04 09:02:05
合計ジャッジ時間 2,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 WA -
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 29 ms
10,880 KB
testcase_13 WA -
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 WA -
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 ms
10,880 KB
testcase_30 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
def prime_decomposition(n):
  i = 2
  table = []
  while i * i <= n:
    while n % i == 0:
      n = n//i
      table.append(i)
    i += 1
  if n > 1:
    table.append(n)
  return table

N = int(input())
prime = prime_decomposition(N)
d = Counter()
d.update(prime)

cnt_one = 0
cnt_multi = 0
for key in d:
    if d[key] > 1:
        cnt_multi += 1
    else:
        cnt_one += 1

if cnt_one%2:
    if cnt_multi == 0 or cnt_multi%2:
        print("Alice")
    else:
        print("Bob")
else:
    if cnt_multi%2:
        print("Alice")
    else:
        print("Bob")
0