結果

問題 No.2 素因数ゲーム
ユーザー sho_00sho_00
提出日時 2020-03-20 19:21:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 740 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 818,380 KB
最終ジャッジ日時 2024-12-14 15:04:15
合計ジャッジ時間 35,546 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,700 KB
testcase_01 AC 30 ms
17,700 KB
testcase_02 AC 31 ms
33,408 KB
testcase_03 AC 31 ms
17,696 KB
testcase_04 AC 31 ms
17,568 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 48 ms
10,880 KB
testcase_07 AC 50 ms
11,008 KB
testcase_08 TLE -
testcase_09 AC 151 ms
11,264 KB
testcase_10 AC 671 ms
11,904 KB
testcase_11 AC 943 ms
12,160 KB
testcase_12 AC 82 ms
11,136 KB
testcase_13 AC 129 ms
11,136 KB
testcase_14 AC 757 ms
12,032 KB
testcase_15 AC 179 ms
11,392 KB
testcase_16 AC 521 ms
11,776 KB
testcase_17 TLE -
testcase_18 AC 144 ms
11,136 KB
testcase_19 AC 100 ms
11,264 KB
testcase_20 MLE -
testcase_21 AC 163 ms
11,264 KB
testcase_22 TLE -
testcase_23 AC 432 ms
11,776 KB
testcase_24 AC 2,905 ms
13,184 KB
testcase_25 TLE -
testcase_26 AC 94 ms
11,008 KB
testcase_27 AC 66 ms
11,136 KB
testcase_28 AC 102 ms
11,136 KB
testcase_29 AC 88 ms
11,008 KB
testcase_30 AC 236 ms
99,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys
N=int(input())

def primenumber_table(N):  # N以下の素数テーブル エラトステネスの篩
  table=[i for i in range(2,N+1)]
  l=[]
  while len(table)!=0:
    num=table[0]
    l.append(num)
    i=0
    while i<len(table):
      if table[i]%num==0:
        table.pop(i)
      else:
        i+=1
  return l

table=primenumber_table(int(math.sqrt(N)))
L=[]
init_N=N
while N!=1:
  for num in table:
    cnt=0
    while N%num==0:
      cnt+=1
      N//=num
    if cnt!=0:
      L.append(cnt)
  if N==init_N:
    L.append(1)
    N=1
  elif N in primenumber_table(N):
    L.append(1)
    N=1
grundy_num=0
for i in range(len(L)):
  grundy_num=grundy_num^L[i]
if grundy_num!=0:
  print('Alice')
else:
  print('Bob')
0