結果

問題 No.2666 Decreasing Modulo Nim
ユーザー miya145592miya145592
提出日時 2024-03-08 23:28:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 362 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 106,036 KB
最終ジャッジ日時 2024-09-29 20:46:35
合計ジャッジ時間 6,312 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,004 KB
testcase_01 AC 38 ms
53,276 KB
testcase_02 AC 38 ms
52,204 KB
testcase_03 AC 47 ms
65,012 KB
testcase_04 AC 80 ms
100,852 KB
testcase_05 WA -
testcase_06 AC 44 ms
62,052 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 52 ms
70,652 KB
testcase_12 WA -
testcase_13 AC 58 ms
77,084 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 49 ms
67,572 KB
testcase_17 WA -
testcase_18 AC 69 ms
88,796 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 78 ms
100,112 KB
testcase_22 AC 49 ms
68,064 KB
testcase_23 WA -
testcase_24 AC 51 ms
69,748 KB
testcase_25 WA -
testcase_26 AC 71 ms
92,056 KB
testcase_27 AC 64 ms
82,612 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 93 ms
100,044 KB
testcase_34 AC 47 ms
64,944 KB
testcase_35 AC 80 ms
99,928 KB
testcase_36 AC 67 ms
89,208 KB
testcase_37 WA -
testcase_38 AC 88 ms
106,036 KB
testcase_39 AC 48 ms
64,572 KB
testcase_40 AC 73 ms
91,896 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 37 ms
52,492 KB
testcase_44 AC 38 ms
52,880 KB
testcase_45 WA -
testcase_46 AC 97 ms
99,904 KB
testcase_47 AC 96 ms
100,208 KB
testcase_48 AC 95 ms
99,848 KB
testcase_49 WA -
testcase_50 AC 96 ms
99,668 KB
testcase_51 WA -
testcase_52 AC 98 ms
99,876 KB
testcase_53 AC 99 ms
99,884 KB
testcase_54 AC 99 ms
99,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
A = list(map(int, input().split()))
X = 0
for a in A:
    X ^= a
b = bin(M-1)[2:]
x = bin(X)[2:]
if len(b)>=len(x):
    if x.count("1")%2==0:
        print("Bob")
    else:
        print("Alice")
else:
    if x[-len(b):].count("1")%2==0:
        print("Bob")
    else:
        print("Alice")
0