結果
| 問題 |
No.2813 Cookie
|
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2024-07-19 21:48:50 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 181 bytes |
| コンパイル時間 | 167 ms |
| コンパイル使用メモリ | 82,688 KB |
| 実行使用メモリ | 76,672 KB |
| 最終ジャッジ日時 | 2024-07-19 21:49:08 |
| 合計ジャッジ時間 | 3,453 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 29 |
ソースコード
import sys
input = sys.stdin.readline
T = int(input())
for _ in range(T):
N = int(input())
A = list(map(int, input().split()))
print("Alice") if N % 2 else print("Bob")
rlangevin