結果

問題 No.2666 Decreasing Modulo Nim
ユーザー miya145592miya145592
提出日時 2024-03-09 00:10:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 453 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 106,268 KB
最終ジャッジ日時 2024-09-29 21:00:32
合計ジャッジ時間 5,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,136 KB
testcase_01 AC 35 ms
53,296 KB
testcase_02 AC 34 ms
52,828 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 48 ms
70,108 KB
testcase_12 AC 44 ms
66,396 KB
testcase_13 AC 56 ms
77,932 KB
testcase_14 AC 50 ms
69,652 KB
testcase_15 AC 71 ms
97,604 KB
testcase_16 AC 46 ms
67,908 KB
testcase_17 AC 57 ms
77,516 KB
testcase_18 AC 70 ms
88,504 KB
testcase_19 AC 59 ms
82,776 KB
testcase_20 AC 58 ms
80,804 KB
testcase_21 AC 75 ms
100,760 KB
testcase_22 AC 44 ms
67,652 KB
testcase_23 AC 48 ms
68,136 KB
testcase_24 AC 53 ms
70,028 KB
testcase_25 AC 54 ms
72,052 KB
testcase_26 AC 72 ms
92,536 KB
testcase_27 AC 60 ms
82,132 KB
testcase_28 AC 78 ms
101,004 KB
testcase_29 AC 71 ms
92,408 KB
testcase_30 AC 80 ms
104,616 KB
testcase_31 AC 63 ms
85,488 KB
testcase_32 AC 71 ms
96,280 KB
testcase_33 AC 90 ms
99,816 KB
testcase_34 AC 42 ms
64,784 KB
testcase_35 AC 75 ms
100,804 KB
testcase_36 AC 63 ms
88,236 KB
testcase_37 AC 74 ms
100,436 KB
testcase_38 AC 83 ms
106,268 KB
testcase_39 AC 42 ms
64,852 KB
testcase_40 AC 67 ms
93,240 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 39 ms
52,272 KB
testcase_44 AC 37 ms
52,488 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 88 ms
99,916 KB
testcase_48 AC 92 ms
99,924 KB
testcase_49 AC 91 ms
100,152 KB
testcase_50 AC 92 ms
99,860 KB
testcase_51 AC 89 ms
99,944 KB
testcase_52 AC 89 ms
99,788 KB
testcase_53 AC 92 ms
99,944 KB
testcase_54 AC 91 ms
99,812 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")>0:
        print("Alice")
    else:
        print("Bob")
elif len(b)==len(x):
    if x.count("1")>0:
        print("Alice")
    else:
        print("Bob")
else:
    if x[-len(b):].count("1")>0:
        print("Alice")
    else:
        print("Bob")
0