結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 37 ms
52,216 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 95 ms
99,708 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 47 ms
66,688 KB
testcase_13 AC 57 ms
76,672 KB
testcase_14 AC 50 ms
68,096 KB
testcase_15 AC 75 ms
96,512 KB
testcase_16 WA -
testcase_17 AC 59 ms
76,928 KB
testcase_18 WA -
testcase_19 AC 61 ms
81,280 KB
testcase_20 WA -
testcase_21 AC 79 ms
100,992 KB
testcase_22 WA -
testcase_23 AC 46 ms
66,176 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 71 ms
91,776 KB
testcase_27 AC 63 ms
81,792 KB
testcase_28 AC 80 ms
101,248 KB
testcase_29 AC 71 ms
91,136 KB
testcase_30 AC 81 ms
104,576 KB
testcase_31 AC 63 ms
84,864 KB
testcase_32 AC 72 ms
95,232 KB
testcase_33 AC 92 ms
99,712 KB
testcase_34 AC 44 ms
64,128 KB
testcase_35 WA -
testcase_36 AC 68 ms
88,064 KB
testcase_37 AC 78 ms
99,456 KB
testcase_38 AC 86 ms
105,856 KB
testcase_39 AC 46 ms
63,744 KB
testcase_40 AC 70 ms
91,392 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 92 ms
99,712 KB
testcase_47 AC 94 ms
99,548 KB
testcase_48 AC 98 ms
100,224 KB
testcase_49 AC 93 ms
99,584 KB
testcase_50 AC 93 ms
100,224 KB
testcase_51 WA -
testcase_52 AC 93 ms
99,968 KB
testcase_53 WA -
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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):
    print("Alice")
elif len(b)==len(x):
    if int(b, 2)>=int(x, 2) and x.count("1")>0:
        print("Alice")
    else:
        print("Bob")
else:
    if int(b, 2)>=int(x[-len(b):], 2) and x[-len(b):].count("1")>0:
        print("Alice")
    else:
        print("Bob")
0