結果
| 問題 |
No.2343 (l+r)/2
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-06-09 22:36:59 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 215 bytes |
| コンパイル時間 | 410 ms |
| コンパイル使用メモリ | 82,320 KB |
| 実行使用メモリ | 85,108 KB |
| 最終ジャッジ日時 | 2025-01-02 04:00:48 |
| 合計ジャッジ時間 | 2,816 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | AC * 3 WA * 11 |
ソースコード
T = int(input())
for _ in range(T):
N = int(input())
A = list(map(int, input().split()))
cnt = sum(A)
if cnt % 2 == 1 or (cnt == N and N % 2 == 1):
print("No")
else:
print("Yes")