結果

問題 No.2666 Decreasing Modulo Nim
ユーザー ShirotsumeShirotsume
提出日時 2024-03-08 22:12:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 148,564 KB
最終ジャッジ日時 2024-09-29 19:44:41
合計ジャッジ時間 7,111 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,584 KB
testcase_01 AC 45 ms
56,268 KB
testcase_02 AC 44 ms
56,948 KB
testcase_03 AC 65 ms
76,404 KB
testcase_04 AC 155 ms
138,812 KB
testcase_05 AC 147 ms
136,760 KB
testcase_06 AC 55 ms
70,352 KB
testcase_07 AC 109 ms
101,060 KB
testcase_08 AC 71 ms
83,808 KB
testcase_09 AC 116 ms
111,220 KB
testcase_10 AC 94 ms
101,004 KB
testcase_11 AC 64 ms
78,384 KB
testcase_12 AC 55 ms
71,084 KB
testcase_13 AC 65 ms
81,456 KB
testcase_14 AC 58 ms
73,412 KB
testcase_15 AC 94 ms
97,444 KB
testcase_16 AC 57 ms
72,092 KB
testcase_17 AC 67 ms
83,772 KB
testcase_18 AC 76 ms
93,960 KB
testcase_19 AC 69 ms
87,444 KB
testcase_20 AC 68 ms
84,592 KB
testcase_21 AC 104 ms
100,340 KB
testcase_22 AC 57 ms
71,924 KB
testcase_23 AC 58 ms
73,088 KB
testcase_24 AC 62 ms
75,996 KB
testcase_25 AC 65 ms
77,196 KB
testcase_26 AC 84 ms
99,052 KB
testcase_27 AC 75 ms
89,200 KB
testcase_28 AC 105 ms
100,268 KB
testcase_29 AC 89 ms
101,124 KB
testcase_30 AC 103 ms
100,724 KB
testcase_31 AC 73 ms
90,232 KB
testcase_32 AC 89 ms
102,796 KB
testcase_33 AC 106 ms
102,808 KB
testcase_34 AC 54 ms
68,704 KB
testcase_35 AC 100 ms
98,512 KB
testcase_36 AC 78 ms
94,100 KB
testcase_37 AC 100 ms
99,348 KB
testcase_38 AC 105 ms
100,868 KB
testcase_39 AC 56 ms
70,216 KB
testcase_40 AC 90 ms
101,340 KB
testcase_41 AC 72 ms
92,020 KB
testcase_42 AC 74 ms
91,824 KB
testcase_43 AC 46 ms
57,044 KB
testcase_44 AC 45 ms
56,268 KB
testcase_45 AC 165 ms
148,564 KB
testcase_46 AC 138 ms
129,492 KB
testcase_47 AC 103 ms
102,864 KB
testcase_48 AC 105 ms
102,844 KB
testcase_49 AC 111 ms
106,052 KB
testcase_50 AC 109 ms
104,664 KB
testcase_51 AC 105 ms
102,860 KB
testcase_52 AC 104 ms
102,748 KB
testcase_53 AC 169 ms
147,856 KB
testcase_54 AC 104 ms
103,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n, m = mi()
a = li()

def nim(a):
    x = 0
    for i in a:
        x ^= i
    return x

am = [v // m for v in a]
if nim(am):
    print('Alice')
else:
    am = [v % m for v in a]
    while sum(am):
        if sum(am) % 2:
            print('Alice')
            exit()
        am = [v // 2 for v in am]
    print('Bob')
    
0