結果

問題 No.2 素因数ゲーム
ユーザー gigurururugigurururu
提出日時 2014-11-04 14:07:41
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 162 bytes
コンパイル時間 1,416 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 1,634,176 KB
最終ジャッジ日時 2024-12-30 17:23:53
合計ジャッジ時間 34,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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