結果

問題 No.1716 Bonus Nim
ユーザー pluto77pluto77
提出日時 2022-02-08 10:40:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 221 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 53,276 KB
最終ジャッジ日時 2024-06-23 03:52:21
合計ジャッジ時間 10,143 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 274 ms
30,560 KB
testcase_05 AC 265 ms
34,636 KB
testcase_06 AC 257 ms
32,144 KB
testcase_07 AC 268 ms
32,252 KB
testcase_08 AC 269 ms
35,164 KB
testcase_09 AC 263 ms
32,380 KB
testcase_10 AC 274 ms
39,700 KB
testcase_11 AC 268 ms
28,160 KB
testcase_12 AC 276 ms
30,572 KB
testcase_13 AC 293 ms
44,348 KB
testcase_14 AC 287 ms
32,036 KB
testcase_15 TLE -
testcase_16 AC 29 ms
10,496 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 258 ms
43,860 KB
testcase_23 AC 251 ms
37,532 KB
testcase_24 AC 250 ms
49,484 KB
testcase_25 AC 261 ms
53,276 KB
testcase_26 AC 275 ms
46,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1716
from collections import Counter
t=int(input())
for i in range(t):
 n=int(input())
 a=list(map(int,input().split()))
 c=Counter(a)
 for v in c.values():
  if v%2:
   print('Alice')
   break
 else:
  print('Bob')
0