結果

問題 No.2 素因数ゲーム
ユーザー gigurururugigurururu
提出日時 2014-11-04 14:07:41
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 162 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 815,148 KB
最終ジャッジ日時 2024-06-09 18:59:33
合計ジャッジ時間 3,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,272 KB
testcase_01 AC 9 ms
6,400 KB
testcase_02 AC 9 ms
6,528 KB
testcase_03 AC 9 ms
6,400 KB
testcase_04 AC 9 ms
6,400 KB
testcase_05 AC 12 ms
9,856 KB
testcase_06 AC 428 ms
399,104 KB
testcase_07 AC 481 ms
456,448 KB
testcase_08 AC 918 ms
415,616 KB
testcase_09 MLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
r=0
for i in range(2,n+1):
    if n==1:break
    cnt=0
    while n%i==0:
        n/=i
        cnt+=1
    r^=cnt
print "Alice" if r>0 else "Bob"
0