結果

問題 No.2 素因数ゲーム
ユーザー snnekosnneko
提出日時 2019-03-18 06:32:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 596 ms / 5,000 ms
コード長 642 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,840 KB
最終ジャッジ日時 2024-06-08 00:57:12
合計ジャッジ時間 17,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 470 ms
43,708 KB
testcase_01 AC 474 ms
43,580 KB
testcase_02 AC 475 ms
43,576 KB
testcase_03 AC 471 ms
43,840 KB
testcase_04 AC 466 ms
43,680 KB
testcase_05 AC 466 ms
43,316 KB
testcase_06 AC 466 ms
43,444 KB
testcase_07 AC 478 ms
43,556 KB
testcase_08 AC 483 ms
43,324 KB
testcase_09 AC 467 ms
43,552 KB
testcase_10 AC 482 ms
43,828 KB
testcase_11 AC 483 ms
43,684 KB
testcase_12 AC 485 ms
43,680 KB
testcase_13 AC 477 ms
43,572 KB
testcase_14 AC 486 ms
43,440 KB
testcase_15 AC 494 ms
43,432 KB
testcase_16 AC 485 ms
43,460 KB
testcase_17 AC 478 ms
43,316 KB
testcase_18 AC 475 ms
43,828 KB
testcase_19 AC 539 ms
43,696 KB
testcase_20 AC 532 ms
43,556 KB
testcase_21 AC 596 ms
43,596 KB
testcase_22 AC 480 ms
43,676 KB
testcase_23 AC 478 ms
43,336 KB
testcase_24 AC 481 ms
43,680 KB
testcase_25 AC 488 ms
43,576 KB
testcase_26 AC 482 ms
43,332 KB
testcase_27 AC 475 ms
43,428 KB
testcase_28 AC 477 ms
43,552 KB
testcase_29 AC 475 ms
43,324 KB
testcase_30 AC 498 ms
43,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
N = int(input())

p_list = list()
c_list = list()
prime = [2, 0]
while N != 1:
    while N % prime[0] == 0:
        N //= prime[0]
        prime[1] += 1
    p_list.append(prime[0])
    c_list.append(prime[1])
    if N == 1: break

    prime[1] = 0
    while True:
        prime[0] += 1
        if np.sqrt(N) < prime[0]:
            prime[0] = N
            break
        flg = 0
        for p in p_list:
            if prime[0] % p == 0:
                flg = 1
                break
        if flg == 0:
            break

ans = 0
for c in c_list:
    ans = ans ^ c

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