結果

問題 No.2666 Decreasing Modulo Nim
ユーザー PNJPNJ
提出日時 2024-03-08 22:32:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 341 bytes
コンパイル時間 507 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 109,420 KB
最終ジャッジ日時 2024-09-29 20:02:20
合計ジャッジ時間 6,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,412 KB
testcase_01 AC 32 ms
52,068 KB
testcase_02 AC 32 ms
51,952 KB
testcase_03 AC 48 ms
67,392 KB
testcase_04 AC 102 ms
106,136 KB
testcase_05 AC 105 ms
102,084 KB
testcase_06 AC 44 ms
65,124 KB
testcase_07 AC 80 ms
97,020 KB
testcase_08 AC 53 ms
75,464 KB
testcase_09 AC 87 ms
107,732 KB
testcase_10 AC 72 ms
97,496 KB
testcase_11 AC 51 ms
73,372 KB
testcase_12 AC 43 ms
67,672 KB
testcase_13 AC 52 ms
78,336 KB
testcase_14 AC 45 ms
70,532 KB
testcase_15 AC 69 ms
99,880 KB
testcase_16 AC 44 ms
69,284 KB
testcase_17 AC 54 ms
80,156 KB
testcase_18 AC 63 ms
90,836 KB
testcase_19 AC 57 ms
83,832 KB
testcase_20 AC 55 ms
82,848 KB
testcase_21 AC 84 ms
106,084 KB
testcase_22 AC 44 ms
70,184 KB
testcase_23 AC 45 ms
69,180 KB
testcase_24 AC 54 ms
71,596 KB
testcase_25 AC 54 ms
75,476 KB
testcase_26 AC 73 ms
97,068 KB
testcase_27 AC 67 ms
86,644 KB
testcase_28 AC 89 ms
106,328 KB
testcase_29 AC 73 ms
97,124 KB
testcase_30 AC 84 ms
109,420 KB
testcase_31 AC 61 ms
88,048 KB
testcase_32 AC 68 ms
99,308 KB
testcase_33 AC 87 ms
102,084 KB
testcase_34 AC 41 ms
66,168 KB
testcase_35 AC 76 ms
103,928 KB
testcase_36 AC 63 ms
91,084 KB
testcase_37 AC 75 ms
103,956 KB
testcase_38 AC 85 ms
109,104 KB
testcase_39 AC 46 ms
67,784 KB
testcase_40 AC 69 ms
97,108 KB
testcase_41 AC 61 ms
88,792 KB
testcase_42 AC 63 ms
88,360 KB
testcase_43 AC 33 ms
53,552 KB
testcase_44 AC 32 ms
52,924 KB
testcase_45 AC 114 ms
102,360 KB
testcase_46 AC 106 ms
102,472 KB
testcase_47 AC 87 ms
102,188 KB
testcase_48 AC 86 ms
102,376 KB
testcase_49 AC 91 ms
102,420 KB
testcase_50 AC 90 ms
102,492 KB
testcase_51 AC 88 ms
102,080 KB
testcase_52 AC 89 ms
102,168 KB
testcase_53 AC 118 ms
102,352 KB
testcase_54 AC 91 ms
102,096 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()
  for i in range(n):
    R[i] //= 2
0