結果

問題 No.2666 Decreasing Modulo Nim
ユーザー chineristACchineristAC
提出日時 2024-03-08 23:54:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 146,080 KB
最終ジャッジ日時 2024-09-29 20:57:05
合計ジャッジ時間 7,337 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,136 KB
testcase_01 AC 44 ms
57,180 KB
testcase_02 AC 45 ms
55,836 KB
testcase_03 AC 65 ms
76,268 KB
testcase_04 AC 159 ms
135,400 KB
testcase_05 AC 154 ms
134,536 KB
testcase_06 AC 55 ms
69,916 KB
testcase_07 AC 111 ms
98,788 KB
testcase_08 AC 70 ms
83,400 KB
testcase_09 AC 118 ms
108,256 KB
testcase_10 AC 95 ms
98,704 KB
testcase_11 AC 65 ms
76,392 KB
testcase_12 AC 57 ms
70,572 KB
testcase_13 AC 69 ms
81,148 KB
testcase_14 AC 59 ms
73,512 KB
testcase_15 AC 99 ms
97,592 KB
testcase_16 AC 57 ms
72,184 KB
testcase_17 AC 69 ms
81,856 KB
testcase_18 AC 81 ms
92,712 KB
testcase_19 AC 72 ms
86,360 KB
testcase_20 AC 72 ms
84,384 KB
testcase_21 AC 105 ms
97,428 KB
testcase_22 AC 59 ms
71,956 KB
testcase_23 AC 58 ms
71,188 KB
testcase_24 AC 63 ms
74,260 KB
testcase_25 AC 63 ms
75,984 KB
testcase_26 AC 87 ms
96,648 KB
testcase_27 AC 77 ms
88,164 KB
testcase_28 AC 109 ms
97,736 KB
testcase_29 AC 91 ms
98,900 KB
testcase_30 AC 107 ms
99,252 KB
testcase_31 AC 77 ms
90,768 KB
testcase_32 AC 93 ms
101,232 KB
testcase_33 AC 109 ms
102,652 KB
testcase_34 AC 54 ms
68,308 KB
testcase_35 AC 104 ms
97,424 KB
testcase_36 AC 81 ms
93,364 KB
testcase_37 AC 102 ms
97,080 KB
testcase_38 AC 108 ms
100,928 KB
testcase_39 AC 54 ms
69,052 KB
testcase_40 AC 91 ms
98,792 KB
testcase_41 AC 80 ms
90,656 KB
testcase_42 AC 76 ms
90,844 KB
testcase_43 AC 46 ms
56,136 KB
testcase_44 AC 45 ms
56,200 KB
testcase_45 AC 171 ms
146,080 KB
testcase_46 AC 142 ms
127,404 KB
testcase_47 AC 107 ms
102,556 KB
testcase_48 AC 107 ms
102,308 KB
testcase_49 AC 117 ms
103,984 KB
testcase_50 AC 108 ms
102,452 KB
testcase_51 AC 108 ms
102,416 KB
testcase_52 AC 108 ms
102,300 KB
testcase_53 AC 172 ms
145,312 KB
testcase_54 AC 109 ms
103,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def solve(N,M,A):
    Q_xor = 0
    for i in range(N):
        Q_xor ^= (A[i]//M)
        A[i] %= M
    
    if Q_xor:
        return "Alice"
    
    while sum(A)!=0:
        if sum(A) & 1:
            return "Alice"
        A = [a>>1 for a in A]
    return "Bob"

N,M = mi()
A = li()
print(solve(N,M,A))
0