結果

問題 No.2666 Decreasing Modulo Nim
ユーザー nikoro256nikoro256
提出日時 2024-03-08 22:56:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 131,028 KB
最終ジャッジ日時 2024-09-29 20:25:16
合計ジャッジ時間 6,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,688 KB
testcase_01 AC 41 ms
54,012 KB
testcase_02 AC 39 ms
54,968 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 75 ms
76,764 KB
testcase_12 AC 54 ms
76,084 KB
testcase_13 AC 70 ms
94,996 KB
testcase_14 AC 58 ms
80,252 KB
testcase_15 AC 108 ms
101,440 KB
testcase_16 AC 55 ms
73,784 KB
testcase_17 AC 64 ms
84,700 KB
testcase_18 AC 76 ms
95,584 KB
testcase_19 AC 64 ms
88,480 KB
testcase_20 AC 61 ms
84,664 KB
testcase_21 AC 124 ms
124,776 KB
testcase_22 AC 54 ms
76,048 KB
testcase_23 AC 54 ms
76,444 KB
testcase_24 AC 60 ms
81,416 KB
testcase_25 AC 62 ms
82,428 KB
testcase_26 AC 76 ms
98,120 KB
testcase_27 AC 69 ms
89,016 KB
testcase_28 AC 92 ms
99,268 KB
testcase_29 AC 75 ms
98,300 KB
testcase_30 AC 129 ms
129,928 KB
testcase_31 AC 87 ms
107,816 KB
testcase_32 AC 103 ms
101,036 KB
testcase_33 AC 128 ms
119,684 KB
testcase_34 AC 50 ms
71,460 KB
testcase_35 AC 95 ms
98,968 KB
testcase_36 AC 77 ms
95,768 KB
testcase_37 AC 93 ms
98,928 KB
testcase_38 AC 94 ms
99,384 KB
testcase_39 AC 59 ms
69,396 KB
testcase_40 AC 135 ms
96,032 KB
testcase_41 AC 61 ms
88,080 KB
testcase_42 AC 63 ms
88,376 KB
testcase_43 AC 36 ms
54,212 KB
testcase_44 AC 35 ms
55,268 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 134 ms
130,804 KB
testcase_48 AC 122 ms
112,604 KB
testcase_49 AC 135 ms
130,488 KB
testcase_50 AC 116 ms
103,516 KB
testcase_51 AC 133 ms
131,028 KB
testcase_52 AC 111 ms
102,104 KB
testcase_53 AC 193 ms
101,972 KB
testcase_54 AC 99 ms
101,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,M=map(int,input().split())
A=list(map(int,input().split()))
nim=0
dic=defaultdict(int)
div=0
for i in range(N):
    nim^=(A[i]//M)
    if A[i]%M>0:
        dic[A[i]%M]+=1
        div+=A[i]%M
if nim>0:
    print('Alice')
    exit(0)
#和を奇数にしたら勝ち。
if div%2==1:
    print('Alice')
    exit(0)
left=2
for i in range(30):
    nim2=0
    for i in range(N):
        nim2^=(A[i]//left)
    if nim2>0:
        print('Alice')
        exit(0)
    left*=2
print('Bob')
0