結果

問題 No.2666 Decreasing Modulo Nim
ユーザー nikoro256nikoro256
提出日時 2024-03-09 00:26:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 131,244 KB
最終ジャッジ日時 2024-09-29 21:02:14
合計ジャッジ時間 7,826 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,668 KB
testcase_01 AC 43 ms
54,140 KB
testcase_02 AC 43 ms
53,704 KB
testcase_03 AC 76 ms
73,740 KB
testcase_04 AC 223 ms
125,372 KB
testcase_05 AC 215 ms
130,664 KB
testcase_06 AC 61 ms
69,356 KB
testcase_07 AC 136 ms
98,472 KB
testcase_08 AC 80 ms
79,964 KB
testcase_09 AC 123 ms
99,256 KB
testcase_10 AC 96 ms
97,864 KB
testcase_11 AC 65 ms
75,376 KB
testcase_12 AC 62 ms
74,960 KB
testcase_13 AC 81 ms
94,116 KB
testcase_14 AC 67 ms
80,184 KB
testcase_15 AC 128 ms
101,140 KB
testcase_16 AC 61 ms
72,768 KB
testcase_17 AC 73 ms
82,964 KB
testcase_18 AC 85 ms
95,488 KB
testcase_19 AC 73 ms
86,576 KB
testcase_20 AC 72 ms
83,672 KB
testcase_21 AC 141 ms
124,596 KB
testcase_22 AC 65 ms
76,484 KB
testcase_23 AC 63 ms
76,324 KB
testcase_24 AC 72 ms
81,188 KB
testcase_25 AC 72 ms
81,824 KB
testcase_26 AC 89 ms
97,872 KB
testcase_27 AC 79 ms
89,088 KB
testcase_28 AC 105 ms
99,596 KB
testcase_29 AC 89 ms
98,056 KB
testcase_30 AC 153 ms
129,724 KB
testcase_31 AC 101 ms
107,548 KB
testcase_32 AC 119 ms
100,852 KB
testcase_33 AC 149 ms
119,316 KB
testcase_34 AC 57 ms
70,856 KB
testcase_35 AC 108 ms
98,840 KB
testcase_36 AC 86 ms
95,664 KB
testcase_37 AC 101 ms
98,636 KB
testcase_38 AC 109 ms
98,772 KB
testcase_39 AC 52 ms
67,060 KB
testcase_40 AC 79 ms
95,312 KB
testcase_41 AC 73 ms
89,232 KB
testcase_42 AC 73 ms
88,796 KB
testcase_43 AC 43 ms
53,752 KB
testcase_44 AC 45 ms
53,788 KB
testcase_45 AC 243 ms
131,244 KB
testcase_46 AC 192 ms
106,352 KB
testcase_47 AC 157 ms
131,024 KB
testcase_48 AC 140 ms
111,892 KB
testcase_49 AC 156 ms
130,972 KB
testcase_50 AC 130 ms
103,572 KB
testcase_51 AC 151 ms
130,444 KB
testcase_52 AC 124 ms
102,500 KB
testcase_53 AC 191 ms
101,364 KB
testcase_54 AC 109 ms
100,912 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]%M//left)
    if nim2%2>0:
        print('Alice')
        exit(0)
    left*=2
print('Bob')
0