結果

問題 No.1716 Bonus Nim
ユーザー Kite_kumaKite_kuma
提出日時 2021-06-04 23:50:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 627 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 133,336 KB
最終ジャッジ日時 2024-09-23 03:43:42
合計ジャッジ時間 5,940 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

# 11:35~

t = int(input())

def solve():
    n = int(input())
    a = list(map(int, input().split()))
    if n & 1:
        return True
    a.sort()    
    for i in range(0, n, 2):
        if a[i] != a[i+1]:
            return True
    return False




for test in range(t):
    print("Alice" if solve() else "Bob")
0