結果

問題 No.2666 Decreasing Modulo Nim
ユーザー ゼットゼット
提出日時 2024-03-08 21:40:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 181 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-09-29 19:09:22
合計ジャッジ時間 5,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
52,480 KB
testcase_03 AC 45 ms
65,664 KB
testcase_04 AC 84 ms
103,040 KB
testcase_05 AC 97 ms
101,612 KB
testcase_06 AC 44 ms
62,848 KB
testcase_07 AC 74 ms
93,440 KB
testcase_08 AC 53 ms
72,320 KB
testcase_09 AC 83 ms
102,504 KB
testcase_10 AC 76 ms
92,928 KB
testcase_11 AC 52 ms
71,168 KB
testcase_12 AC 48 ms
67,072 KB
testcase_13 AC 59 ms
77,440 KB
testcase_14 AC 50 ms
69,632 KB
testcase_15 AC 78 ms
98,304 KB
testcase_16 AC 48 ms
68,096 KB
testcase_17 AC 57 ms
78,720 KB
testcase_18 AC 69 ms
89,728 KB
testcase_19 AC 63 ms
82,560 KB
testcase_20 AC 60 ms
80,512 KB
testcase_21 AC 79 ms
103,040 KB
testcase_22 AC 48 ms
67,200 KB
testcase_23 AC 47 ms
67,584 KB
testcase_24 AC 50 ms
69,680 KB
testcase_25 AC 53 ms
72,832 KB
testcase_26 AC 71 ms
93,312 KB
testcase_27 AC 62 ms
83,584 KB
testcase_28 AC 82 ms
103,088 KB
testcase_29 AC 72 ms
93,440 KB
testcase_30 AC 89 ms
107,880 KB
testcase_31 AC 66 ms
85,888 KB
testcase_32 AC 76 ms
97,152 KB
testcase_33 AC 95 ms
102,064 KB
testcase_34 AC 45 ms
64,896 KB
testcase_35 AC 81 ms
102,564 KB
testcase_36 AC 70 ms
89,984 KB
testcase_37 AC 79 ms
101,888 KB
testcase_38 AC 89 ms
107,904 KB
testcase_39 AC 46 ms
64,860 KB
testcase_40 AC 72 ms
93,440 KB
testcase_41 AC 67 ms
86,144 KB
testcase_42 AC 66 ms
86,784 KB
testcase_43 AC 35 ms
51,968 KB
testcase_44 AC 35 ms
51,712 KB
testcase_45 AC 94 ms
102,184 KB
testcase_46 AC 95 ms
102,040 KB
testcase_47 AC 93 ms
102,016 KB
testcase_48 AC 94 ms
101,840 KB
testcase_49 AC 95 ms
102,144 KB
testcase_50 AC 96 ms
102,192 KB
testcase_51 AC 95 ms
102,144 KB
testcase_52 AC 95 ms
102,328 KB
testcase_53 AC 96 ms
102,124 KB
testcase_54 AC 96 ms
102,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
x=0
y=0
for i in range(N):
  p=A[i]//M
  q=A[i]%M
  x^=p
  y^=q
if x==0 and y==0:
  print('Bob')
else:
  print('Alice')
0