結果

問題 No.2666 Decreasing Modulo Nim
ユーザー nikoro256nikoro256
提出日時 2024-03-08 22:21:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,980 KB
実行使用メモリ 131,336 KB
最終ジャッジ日時 2024-09-29 19:52:07
合計ジャッジ時間 6,918 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 38 ms
53,888 KB
testcase_02 AC 39 ms
53,504 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 WA -
testcase_12 AC 62 ms
74,880 KB
testcase_13 AC 81 ms
93,824 KB
testcase_14 AC 67 ms
78,976 KB
testcase_15 AC 117 ms
101,676 KB
testcase_16 AC 61 ms
72,292 KB
testcase_17 AC 69 ms
83,200 KB
testcase_18 AC 78 ms
93,824 KB
testcase_19 AC 73 ms
86,784 KB
testcase_20 AC 72 ms
84,068 KB
testcase_21 AC 134 ms
125,064 KB
testcase_22 AC 62 ms
75,520 KB
testcase_23 AC 61 ms
75,264 KB
testcase_24 AC 65 ms
79,360 KB
testcase_25 AC 70 ms
81,280 KB
testcase_26 AC 86 ms
98,088 KB
testcase_27 AC 78 ms
88,704 KB
testcase_28 AC 100 ms
99,584 KB
testcase_29 AC 87 ms
98,432 KB
testcase_30 AC 143 ms
130,652 KB
testcase_31 AC 96 ms
107,648 KB
testcase_32 AC 112 ms
101,196 KB
testcase_33 AC 136 ms
119,872 KB
testcase_34 AC 55 ms
70,656 KB
testcase_35 AC 104 ms
99,208 KB
testcase_36 AC 85 ms
95,616 KB
testcase_37 AC 94 ms
103,856 KB
testcase_38 AC 104 ms
100,224 KB
testcase_39 AC 48 ms
66,560 KB
testcase_40 AC 77 ms
95,324 KB
testcase_41 AC 70 ms
87,936 KB
testcase_42 AC 71 ms
88,064 KB
testcase_43 AC 40 ms
53,632 KB
testcase_44 AC 38 ms
53,944 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 141 ms
131,072 KB
testcase_48 AC 130 ms
112,472 KB
testcase_49 AC 145 ms
131,192 KB
testcase_50 AC 126 ms
103,404 KB
testcase_51 AC 144 ms
131,008 KB
testcase_52 AC 118 ms
102,528 KB
testcase_53 AC 104 ms
101,556 KB
testcase_54 AC 101 ms
101,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
N,M=map(int,input().split())
A=list(map(int,input().split()))
nim=0
dic=defaultdict(int)
for i in range(N):
    nim^=(A[i]//M)
    if A[i]%M>0:
        dic[A[i]%M]+=1
if nim>0:
    print('Alice')
    exit(0)
for k in dic.keys():
    if dic[k]%2>0:
        print('Alice')
        exit(0)
print('Bob')
0