結果

問題 No.2666 Decreasing Modulo Nim
ユーザー nikoro256nikoro256
提出日時 2024-03-08 23:11:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 544 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 131,000 KB
最終ジャッジ日時 2024-09-29 20:38:41
合計ジャッジ時間 7,316 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,352 KB
testcase_01 AC 39 ms
54,244 KB
testcase_02 AC 42 ms
54,916 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 62 ms
75,504 KB
testcase_12 AC 61 ms
75,676 KB
testcase_13 AC 76 ms
94,772 KB
testcase_14 AC 64 ms
79,616 KB
testcase_15 AC 118 ms
101,372 KB
testcase_16 AC 56 ms
72,792 KB
testcase_17 AC 66 ms
84,080 KB
testcase_18 AC 83 ms
95,628 KB
testcase_19 AC 67 ms
86,960 KB
testcase_20 AC 67 ms
84,328 KB
testcase_21 AC 135 ms
124,996 KB
testcase_22 AC 64 ms
76,644 KB
testcase_23 AC 59 ms
75,624 KB
testcase_24 AC 67 ms
81,208 KB
testcase_25 AC 65 ms
82,004 KB
testcase_26 AC 84 ms
98,644 KB
testcase_27 AC 72 ms
89,344 KB
testcase_28 AC 101 ms
99,700 KB
testcase_29 AC 84 ms
98,412 KB
testcase_30 AC 145 ms
130,156 KB
testcase_31 AC 94 ms
107,872 KB
testcase_32 AC 117 ms
101,160 KB
testcase_33 AC 144 ms
119,948 KB
testcase_34 AC 58 ms
71,532 KB
testcase_35 AC 106 ms
99,420 KB
testcase_36 AC 83 ms
95,856 KB
testcase_37 AC 100 ms
98,868 KB
testcase_38 AC 103 ms
99,404 KB
testcase_39 AC 48 ms
67,000 KB
testcase_40 AC 75 ms
97,020 KB
testcase_41 AC 71 ms
88,060 KB
testcase_42 AC 73 ms
88,916 KB
testcase_43 AC 40 ms
55,324 KB
testcase_44 AC 40 ms
53,540 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 151 ms
130,632 KB
testcase_48 AC 134 ms
112,360 KB
testcase_49 AC 155 ms
130,920 KB
testcase_50 AC 128 ms
103,284 KB
testcase_51 AC 155 ms
130,896 KB
testcase_52 AC 122 ms
102,368 KB
testcase_53 AC 192 ms
101,776 KB
testcase_54 AC 107 ms
101,476 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):
    if left>M:
        break
    nim2=0
    for i in range(N):
        nim2^=(A[i]//left)
    if nim2>0:
        print('Alice')
        exit(0)
    left*=2
print('Bob')
0