結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 27 ms
10,752 KB
testcase_13 WA -
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 28 ms
10,880 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 28 ms
10,880 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 WA -
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 27 ms
10,880 KB
testcase_25 AC 26 ms
10,624 KB
testcase_26 AC 28 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 27 ms
10,624 KB
testcase_29 AC 27 ms
10,624 KB
testcase_30 AC 26 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 > 0 and cnt_multi == 0:
    if cnt_one%2:
        print("Alice")
    else:
        print("Bob")
elif cnt_one == 0 and cnt_multi > 0:
    if cnt_multi%2:
        print("Alice")
    else:
        print("Bob")
else:
    if cnt_one%2:
        if cnt_multi%2:
            print("Alice")
        else:
            print("Bob")
    else:
        if cnt_multi%2:
            print("Alice")
        else:
            print("Bob")
0