結果

問題 No.2666 Decreasing Modulo Nim
ユーザー nikoro256nikoro256
提出日時 2024-03-09 00:25:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 130,924 KB
最終ジャッジ日時 2024-09-29 21:02:06
合計ジャッジ時間 7,483 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,848 KB
testcase_01 AC 42 ms
53,936 KB
testcase_02 AC 43 ms
55,848 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 64 ms
75,980 KB
testcase_12 AC 62 ms
75,688 KB
testcase_13 AC 82 ms
95,256 KB
testcase_14 AC 67 ms
79,976 KB
testcase_15 AC 126 ms
101,148 KB
testcase_16 AC 62 ms
73,404 KB
testcase_17 AC 74 ms
83,844 KB
testcase_18 AC 86 ms
95,472 KB
testcase_19 AC 74 ms
87,672 KB
testcase_20 AC 71 ms
84,472 KB
testcase_21 AC 142 ms
124,524 KB
testcase_22 AC 63 ms
76,668 KB
testcase_23 AC 62 ms
75,644 KB
testcase_24 AC 69 ms
80,780 KB
testcase_25 AC 72 ms
82,400 KB
testcase_26 AC 88 ms
97,836 KB
testcase_27 AC 79 ms
88,664 KB
testcase_28 AC 104 ms
99,292 KB
testcase_29 AC 90 ms
98,144 KB
testcase_30 AC 154 ms
129,792 KB
testcase_31 AC 99 ms
107,216 KB
testcase_32 AC 121 ms
100,872 KB
testcase_33 AC 146 ms
119,668 KB
testcase_34 AC 58 ms
71,460 KB
testcase_35 AC 109 ms
98,640 KB
testcase_36 AC 87 ms
95,424 KB
testcase_37 AC 100 ms
98,488 KB
testcase_38 AC 107 ms
98,892 KB
testcase_39 AC 51 ms
66,488 KB
testcase_40 AC 78 ms
95,780 KB
testcase_41 AC 71 ms
87,460 KB
testcase_42 AC 72 ms
88,268 KB
testcase_43 AC 43 ms
54,392 KB
testcase_44 AC 43 ms
54,312 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 153 ms
130,340 KB
testcase_48 AC 153 ms
112,228 KB
testcase_49 AC 162 ms
130,516 KB
testcase_50 AC 132 ms
103,264 KB
testcase_51 AC 153 ms
130,308 KB
testcase_52 AC 126 ms
101,984 KB
testcase_53 AC 198 ms
101,892 KB
testcase_54 AC 108 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):
    if left>M:
        break
    nim2=0
    for i in range(N):
        nim2+=(A[i]//left)
    if nim2%2>0:
        print('Alice')
        exit(0)
    left*=2
print('Bob')
0