結果

問題 No.2666 Decreasing Modulo Nim
ユーザー PNJPNJ
提出日時 2024-03-08 22:30:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 258,932 KB
最終ジャッジ日時 2024-09-29 19:59:55
合計ジャッジ時間 7,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,472 KB
testcase_01 AC 38 ms
52,180 KB
testcase_02 AC 36 ms
52,724 KB
testcase_03 AC 83 ms
100,572 KB
testcase_04 AC 276 ms
258,684 KB
testcase_05 AC 258 ms
258,384 KB
testcase_06 AC 57 ms
76,776 KB
testcase_07 AC 205 ms
233,480 KB
testcase_08 AC 84 ms
103,984 KB
testcase_09 AC 167 ms
186,740 KB
testcase_10 AC 116 ms
120,936 KB
testcase_11 AC 62 ms
86,368 KB
testcase_12 AC 46 ms
67,892 KB
testcase_13 AC 57 ms
79,704 KB
testcase_14 AC 50 ms
70,216 KB
testcase_15 AC 77 ms
100,324 KB
testcase_16 AC 49 ms
69,336 KB
testcase_17 AC 58 ms
79,156 KB
testcase_18 AC 67 ms
90,744 KB
testcase_19 AC 62 ms
83,700 KB
testcase_20 AC 60 ms
81,748 KB
testcase_21 AC 87 ms
105,992 KB
testcase_22 AC 50 ms
69,952 KB
testcase_23 AC 50 ms
68,688 KB
testcase_24 AC 59 ms
79,656 KB
testcase_25 AC 56 ms
76,244 KB
testcase_26 AC 74 ms
96,748 KB
testcase_27 AC 67 ms
87,388 KB
testcase_28 AC 88 ms
106,208 KB
testcase_29 AC 74 ms
97,192 KB
testcase_30 AC 88 ms
109,276 KB
testcase_31 AC 67 ms
87,956 KB
testcase_32 AC 75 ms
99,220 KB
testcase_33 AC 96 ms
101,760 KB
testcase_34 AC 46 ms
65,904 KB
testcase_35 AC 82 ms
104,152 KB
testcase_36 AC 69 ms
91,804 KB
testcase_37 AC 80 ms
103,440 KB
testcase_38 AC 88 ms
107,632 KB
testcase_39 AC 48 ms
67,188 KB
testcase_40 AC 76 ms
97,224 KB
testcase_41 AC 66 ms
88,528 KB
testcase_42 AC 67 ms
89,740 KB
testcase_43 AC 37 ms
53,764 KB
testcase_44 AC 36 ms
52,264 KB
testcase_45 AC 294 ms
258,932 KB
testcase_46 AC 246 ms
257,904 KB
testcase_47 AC 97 ms
101,920 KB
testcase_48 AC 96 ms
102,140 KB
testcase_49 AC 114 ms
117,396 KB
testcase_50 AC 99 ms
102,520 KB
testcase_51 AC 97 ms
102,108 KB
testcase_52 AC 96 ms
102,364 KB
testcase_53 AC 290 ms
258,720 KB
testcase_54 AC 95 ms
102,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
A = list(map(int,input().split()))
B = [A[i]//m for i in range(n)]
g = 0
for b in B:
  g ^= b
if g > 0:
  print('Alice')
  exit()


R = [A[i] % m for i in range(n)]
while True:
  if sum(R) == 0:
    print('Bob')
    exit()
  if sum(R) % 2 == 1:
    print('Alice')
    exit()
  RR = []
  for r in R:
    RR.append(r // 2)
  R = RR[:]
0