結果

問題 No.2666 Decreasing Modulo Nim
ユーザー nikoro256nikoro256
提出日時 2024-03-08 22:36:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 130,948 KB
最終ジャッジ日時 2024-09-29 20:05:02
合計ジャッジ時間 7,197 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,984 KB
testcase_01 AC 37 ms
53,288 KB
testcase_02 AC 38 ms
54,152 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 58 ms
75,264 KB
testcase_12 AC 57 ms
75,152 KB
testcase_13 AC 76 ms
94,680 KB
testcase_14 AC 63 ms
80,236 KB
testcase_15 AC 119 ms
101,336 KB
testcase_16 AC 57 ms
73,932 KB
testcase_17 AC 68 ms
84,556 KB
testcase_18 AC 82 ms
95,460 KB
testcase_19 AC 70 ms
88,108 KB
testcase_20 AC 69 ms
85,416 KB
testcase_21 AC 139 ms
124,764 KB
testcase_22 AC 58 ms
75,908 KB
testcase_23 AC 57 ms
76,196 KB
testcase_24 AC 65 ms
81,148 KB
testcase_25 AC 66 ms
82,936 KB
testcase_26 AC 85 ms
98,228 KB
testcase_27 AC 75 ms
89,204 KB
testcase_28 AC 102 ms
99,416 KB
testcase_29 AC 87 ms
98,260 KB
testcase_30 AC 151 ms
130,064 KB
testcase_31 AC 96 ms
107,560 KB
testcase_32 AC 115 ms
101,044 KB
testcase_33 AC 143 ms
119,520 KB
testcase_34 AC 55 ms
71,056 KB
testcase_35 AC 105 ms
99,152 KB
testcase_36 AC 85 ms
95,256 KB
testcase_37 AC 96 ms
103,984 KB
testcase_38 AC 105 ms
99,636 KB
testcase_39 AC 48 ms
67,628 KB
testcase_40 AC 79 ms
95,916 KB
testcase_41 AC 71 ms
88,804 KB
testcase_42 AC 71 ms
89,852 KB
testcase_43 AC 39 ms
54,912 KB
testcase_44 AC 38 ms
53,924 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 154 ms
130,636 KB
testcase_48 AC 141 ms
112,092 KB
testcase_49 AC 156 ms
130,752 KB
testcase_50 AC 128 ms
103,652 KB
testcase_51 AC 156 ms
130,948 KB
testcase_52 AC 127 ms
102,136 KB
testcase_53 AC 112 ms
101,516 KB
testcase_54 AC 109 ms
101,540 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)
nim2=0
for i in range(N):
    nim2^=(A[i]//2)
if nim2>0:
    print('Alice')
    exit(0)
print('Bob')
0