結果

問題 No.2666 Decreasing Modulo Nim
ユーザー titiatitia
提出日時 2024-03-11 01:13:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 499 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,876 KB
最終ジャッジ日時 2024-09-29 21:48:28
合計ジャッジ時間 6,176 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 23 ms
10,496 KB
testcase_02 AC 23 ms
10,624 KB
testcase_03 AC 36 ms
13,464 KB
testcase_04 AC 116 ms
30,248 KB
testcase_05 AC 123 ms
31,996 KB
testcase_06 AC 32 ms
12,160 KB
testcase_07 AC 88 ms
25,916 KB
testcase_08 AC 51 ms
16,532 KB
testcase_09 AC 107 ms
30,432 KB
testcase_10 AC 82 ms
25,260 KB
testcase_11 AC 46 ms
15,788 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 110 ms
30,088 KB
testcase_22 AC 41 ms
14,276 KB
testcase_23 AC 39 ms
14,192 KB
testcase_24 AC 43 ms
15,172 KB
testcase_25 AC 50 ms
16,820 KB
testcase_26 AC 90 ms
25,636 KB
testcase_27 AC 70 ms
21,796 KB
testcase_28 AC 105 ms
30,492 KB
testcase_29 AC 89 ms
25,984 KB
testcase_30 AC 115 ms
31,096 KB
testcase_31 AC 79 ms
22,472 KB
testcase_32 AC 98 ms
27,068 KB
testcase_33 AC 121 ms
32,468 KB
testcase_34 AC 38 ms
13,104 KB
testcase_35 AC 109 ms
30,140 KB
testcase_36 AC 86 ms
24,416 KB
testcase_37 AC 102 ms
29,184 KB
testcase_38 AC 109 ms
31,072 KB
testcase_39 AC 37 ms
13,256 KB
testcase_40 AC 90 ms
26,144 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 123 ms
32,496 KB
testcase_46 AC 122 ms
32,492 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 120 ms
32,876 KB
testcase_50 AC 122 ms
32,496 KB
testcase_51 AC 124 ms
32,364 KB
testcase_52 AC 126 ms
32,364 KB
testcase_53 AC 122 ms
32,524 KB
testcase_54 AC 122 ms
32,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n,m=map(int,input().split())
A=list(map(int,input().split()))

XOR=0
for a in A:
    XOR^=(a%m)

if XOR==0:
    print("Bob")
else:
    print("Alice")
"""
x=m-1

def win(A,x):
    flag=0

    for i in range(n):
        for k in range(1,A[i]+1):
            if k%m<=x:
                flag=1
                B=A[:]
                B[i]-=k

                if win(B,k%m)==False:
                    return True

    return False

print(XOR,win(A,x))
        
"""
0