結果
問題 |
No.2343 (l+r)/2
|
ユーザー |
|
提出日時 | 2023-06-09 22:39:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 769 bytes |
コンパイル時間 | 362 ms |
コンパイル使用メモリ | 82,196 KB |
実行使用メモリ | 87,404 KB |
最終ジャッジ日時 | 2025-01-02 04:04:14 |
合計ジャッジ時間 | 2,844 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 7 WA * 7 |
ソースコード
for _ in range(int(input())): n = int(input()) A = list(map(int, input().split())) B = [A[0]] for i in range(1, n): if A[i] == A[i - 1]: continue B.append(A[i]) if B[0] == 1: if len(B) == 1: print("No") else: print("Yes") else: if len(B) % 2 == 0: print("Yes") else: seq_1 = False cnt = 0 for i in range(n): if A[i] == 0: cnt = 0 else: cnt += 1 if cnt > 1: seq_1 = True break if seq_1: print("Yes") else: print("No")