結果

問題 No.2666 Decreasing Modulo Nim
ユーザー suisensuisen
提出日時 2023-12-29 18:32:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 101,336 KB
最終ジャッジ日時 2024-09-28 17:42:19
合計ジャッジ時間 5,092 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,964 KB
testcase_01 AC 32 ms
52,864 KB
testcase_02 AC 34 ms
52,552 KB
testcase_03 AC 41 ms
63,164 KB
testcase_04 AC 67 ms
89,860 KB
testcase_05 AC 72 ms
92,600 KB
testcase_06 AC 42 ms
61,808 KB
testcase_07 AC 63 ms
82,408 KB
testcase_08 AC 48 ms
69,172 KB
testcase_09 AC 66 ms
90,528 KB
testcase_10 AC 59 ms
83,440 KB
testcase_11 AC 43 ms
67,332 KB
testcase_12 AC 44 ms
65,856 KB
testcase_13 AC 49 ms
72,608 KB
testcase_14 AC 44 ms
66,924 KB
testcase_15 AC 64 ms
86,920 KB
testcase_16 AC 44 ms
65,300 KB
testcase_17 AC 51 ms
73,176 KB
testcase_18 AC 59 ms
80,040 KB
testcase_19 AC 54 ms
76,368 KB
testcase_20 AC 53 ms
74,056 KB
testcase_21 AC 66 ms
90,000 KB
testcase_22 AC 43 ms
65,164 KB
testcase_23 AC 44 ms
65,620 KB
testcase_24 AC 44 ms
67,164 KB
testcase_25 AC 49 ms
68,684 KB
testcase_26 AC 60 ms
83,848 KB
testcase_27 AC 53 ms
76,932 KB
testcase_28 AC 67 ms
89,516 KB
testcase_29 AC 60 ms
84,304 KB
testcase_30 AC 67 ms
91,928 KB
testcase_31 AC 54 ms
78,184 KB
testcase_32 AC 60 ms
84,756 KB
testcase_33 AC 69 ms
92,556 KB
testcase_34 AC 42 ms
63,472 KB
testcase_35 AC 66 ms
89,208 KB
testcase_36 AC 56 ms
80,924 KB
testcase_37 AC 64 ms
89,248 KB
testcase_38 AC 67 ms
92,228 KB
testcase_39 AC 41 ms
62,580 KB
testcase_40 AC 59 ms
84,432 KB
testcase_41 AC 58 ms
78,860 KB
testcase_42 AC 55 ms
77,820 KB
testcase_43 AC 33 ms
52,760 KB
testcase_44 AC 35 ms
52,348 KB
testcase_45 AC 72 ms
93,128 KB
testcase_46 AC 71 ms
93,264 KB
testcase_47 AC 71 ms
93,268 KB
testcase_48 AC 70 ms
93,028 KB
testcase_49 AC 70 ms
92,876 KB
testcase_50 AC 72 ms
93,224 KB
testcase_51 AC 70 ms
93,148 KB
testcase_52 AC 70 ms
92,944 KB
testcase_53 AC 79 ms
101,336 KB
testcase_54 AC 80 ms
101,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stderr


n, m = map(int, input().split())
xb = xc = 0
for v in map(int, input().split()):
    b, c = divmod(v, m)
    xb ^= b
    xc ^= c
print(f'Xor B = {xb}', file=stderr)
print(f'Xor C = {xc}', file=stderr)
print("Alice" if xb or xc else "Bob")
0