結果

問題 No.2 素因数ゲーム
ユーザー snnekosnneko
提出日時 2019-03-18 06:32:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 625 ms / 5,000 ms
コード長 642 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 43,728 KB
最終ジャッジ日時 2024-12-26 13:45:11
合計ジャッジ時間 19,529 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
43,304 KB
testcase_01 AC 496 ms
43,704 KB
testcase_02 AC 512 ms
43,584 KB
testcase_03 AC 504 ms
43,556 KB
testcase_04 AC 510 ms
43,576 KB
testcase_05 AC 495 ms
43,700 KB
testcase_06 AC 497 ms
43,552 KB
testcase_07 AC 522 ms
43,720 KB
testcase_08 AC 542 ms
43,576 KB
testcase_09 AC 536 ms
43,704 KB
testcase_10 AC 494 ms
43,572 KB
testcase_11 AC 507 ms
43,448 KB
testcase_12 AC 509 ms
43,580 KB
testcase_13 AC 507 ms
43,680 KB
testcase_14 AC 495 ms
43,324 KB
testcase_15 AC 529 ms
43,320 KB
testcase_16 AC 537 ms
43,728 KB
testcase_17 AC 517 ms
43,448 KB
testcase_18 AC 504 ms
43,292 KB
testcase_19 AC 591 ms
43,440 KB
testcase_20 AC 551 ms
43,708 KB
testcase_21 AC 625 ms
43,704 KB
testcase_22 AC 540 ms
43,300 KB
testcase_23 AC 505 ms
43,300 KB
testcase_24 AC 515 ms
43,572 KB
testcase_25 AC 516 ms
43,324 KB
testcase_26 AC 502 ms
43,560 KB
testcase_27 AC 502 ms
43,444 KB
testcase_28 AC 519 ms
43,456 KB
testcase_29 AC 537 ms
43,316 KB
testcase_30 AC 544 ms
43,704 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