結果
問題 | No.2666 Decreasing Modulo Nim |
ユーザー | miya145592 |
提出日時 | 2024-03-08 23:26:46 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 360 bytes |
コンパイル時間 | 279 ms |
コンパイル使用メモリ | 82,220 KB |
実行使用メモリ | 106,052 KB |
最終ジャッジ日時 | 2024-09-29 20:44:31 |
合計ジャッジ時間 | 5,765 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
52,216 KB |
testcase_01 | AC | 33 ms
52,724 KB |
testcase_02 | AC | 33 ms
54,168 KB |
testcase_03 | AC | 41 ms
65,940 KB |
testcase_04 | AC | 72 ms
101,204 KB |
testcase_05 | WA | - |
testcase_06 | AC | 38 ms
62,524 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 46 ms
70,036 KB |
testcase_12 | WA | - |
testcase_13 | AC | 51 ms
77,528 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 43 ms
67,896 KB |
testcase_17 | WA | - |
testcase_18 | AC | 62 ms
88,000 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 70 ms
100,824 KB |
testcase_22 | AC | 43 ms
68,420 KB |
testcase_23 | WA | - |
testcase_24 | AC | 45 ms
70,588 KB |
testcase_25 | WA | - |
testcase_26 | AC | 62 ms
93,116 KB |
testcase_27 | AC | 59 ms
82,888 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 83 ms
99,920 KB |
testcase_34 | AC | 41 ms
64,488 KB |
testcase_35 | AC | 73 ms
100,652 KB |
testcase_36 | AC | 62 ms
89,028 KB |
testcase_37 | WA | - |
testcase_38 | AC | 78 ms
106,052 KB |
testcase_39 | AC | 41 ms
64,792 KB |
testcase_40 | AC | 65 ms
93,020 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 33 ms
53,200 KB |
testcase_44 | AC | 35 ms
53,640 KB |
testcase_45 | WA | - |
testcase_46 | AC | 87 ms
100,248 KB |
testcase_47 | AC | 85 ms
100,172 KB |
testcase_48 | AC | 86 ms
100,252 KB |
testcase_49 | WA | - |
testcase_50 | AC | 86 ms
100,120 KB |
testcase_51 | WA | - |
testcase_52 | AC | 86 ms
100,240 KB |
testcase_53 | AC | 88 ms
100,204 KB |
testcase_54 | AC | 91 ms
99,936 KB |
ソースコード
import sys input = sys.stdin.readline N, M = map(int, input().split()) A = list(map(int, input().split())) X = 0 for a in A: X ^= a b = bin(M)[2:] x = bin(X)[2:] if len(b)>=len(x): if x.count("1")%2==0: print("Bob") else: print("Alice") else: if x[-len(b):].count("1")%2==0: print("Bob") else: print("Alice")