結果

問題 No.2666 Decreasing Modulo Nim
ユーザー minimumminimum
提出日時 2024-03-08 22:03:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,544 KB
最終ジャッジ日時 2024-09-29 19:39:14
合計ジャッジ時間 6,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 33 ms
52,340 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 47 ms
66,688 KB
testcase_04 AC 90 ms
107,008 KB
testcase_05 AC 104 ms
101,776 KB
testcase_06 AC 47 ms
63,360 KB
testcase_07 AC 86 ms
96,000 KB
testcase_08 AC 59 ms
73,984 KB
testcase_09 AC 92 ms
107,008 KB
testcase_10 AC 79 ms
95,616 KB
testcase_11 AC 55 ms
72,192 KB
testcase_12 AC 50 ms
68,096 KB
testcase_13 AC 62 ms
78,976 KB
testcase_14 AC 52 ms
70,400 KB
testcase_15 AC 81 ms
101,248 KB
testcase_16 AC 50 ms
68,864 KB
testcase_17 AC 60 ms
79,744 KB
testcase_18 AC 72 ms
91,648 KB
testcase_19 AC 66 ms
84,480 KB
testcase_20 AC 63 ms
82,048 KB
testcase_21 AC 92 ms
107,136 KB
testcase_22 AC 51 ms
68,608 KB
testcase_23 AC 48 ms
68,224 KB
testcase_24 AC 51 ms
70,656 KB
testcase_25 AC 55 ms
73,984 KB
testcase_26 AC 78 ms
96,128 KB
testcase_27 AC 68 ms
85,760 KB
testcase_28 AC 91 ms
106,624 KB
testcase_29 AC 78 ms
96,640 KB
testcase_30 AC 93 ms
108,544 KB
testcase_31 AC 71 ms
87,936 KB
testcase_32 AC 82 ms
99,328 KB
testcase_33 AC 101 ms
101,456 KB
testcase_34 AC 45 ms
65,792 KB
testcase_35 AC 87 ms
105,600 KB
testcase_36 AC 75 ms
91,904 KB
testcase_37 AC 86 ms
105,472 KB
testcase_38 AC 95 ms
107,136 KB
testcase_39 AC 49 ms
65,920 KB
testcase_40 AC 77 ms
96,384 KB
testcase_41 AC 71 ms
88,320 KB
testcase_42 AC 71 ms
88,576 KB
testcase_43 AC 36 ms
51,968 KB
testcase_44 AC 35 ms
52,352 KB
testcase_45 AC 102 ms
101,844 KB
testcase_46 AC 100 ms
101,904 KB
testcase_47 AC 100 ms
101,976 KB
testcase_48 AC 102 ms
102,032 KB
testcase_49 AC 101 ms
102,088 KB
testcase_50 AC 103 ms
101,904 KB
testcase_51 AC 101 ms
102,332 KB
testcase_52 AC 101 ms
102,336 KB
testcase_53 AC 108 ms
101,908 KB
testcase_54 AC 103 ms
102,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))

X = [A[i] // M for i in range(N)]
Y = [A[i] % M for i in range(N)]

xor_x = 0
for i in X:
    xor_x ^= i
if xor_x != 0:
    exit(print("Alice"))

xor_y = 0
for i in Y:
    xor_y ^= i
if xor_y == 0:
    exit(print("Bob"))
k = 1
while xor_y % (2 * k) == 0:
    k *= 2

if k <= M:
    print("Alice")
else:
    print("Bob")
0