結果
| 問題 |
No.2813 Cookie
|
| コンテスト | |
| ユーザー |
とりゐ
|
| 提出日時 | 2024-07-19 21:33:01 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 223 bytes |
| コンパイル時間 | 238 ms |
| コンパイル使用メモリ | 82,396 KB |
| 実行使用メモリ | 76,820 KB |
| 最終ジャッジ日時 | 2024-07-19 21:33:13 |
| 合計ジャッジ時間 | 3,541 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 29 |
ソースコード
from sys import stdin
input=lambda :stdin.readline()[:-1]
def solve():
n=int(input())
a=list(map(int,input().split()))
if n%2==1:
print("Alice")
else:
print("Bob")
for _ in range(int(input())):
solve()
とりゐ