結果
問題 | No.2343 (l+r)/2 |
ユーザー | lloyz |
提出日時 | 2023-06-09 21:25:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 411 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 82,180 KB |
実行使用メモリ | 85,880 KB |
最終ジャッジ日時 | 2024-06-10 12:51:00 |
合計ジャッジ時間 | 2,392 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,552 KB |
testcase_01 | AC | 606 ms
77,064 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 48 ms
68,080 KB |
testcase_06 | AC | 48 ms
66,044 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 57 ms
80,856 KB |
testcase_12 | WA | - |
testcase_13 | AC | 50 ms
68,312 KB |
testcase_14 | AC | 64 ms
85,880 KB |
ソースコード
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: print("No")