結果
問題 | No.2343 (l+r)/2 |
ユーザー | とろちゃ |
提出日時 | 2023-06-09 22:45:38 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,223 bytes |
コンパイル時間 | 379 ms |
コンパイル使用メモリ | 82,012 KB |
実行使用メモリ | 84,844 KB |
最終ジャッジ日時 | 2024-06-10 13:53:24 |
合計ジャッジ時間 | 1,672 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
53,824 KB |
testcase_01 | AC | 161 ms
77,300 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 60 ms
83,700 KB |
testcase_05 | AC | 45 ms
68,648 KB |
testcase_06 | AC | 48 ms
69,048 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 39 ms
65,452 KB |
testcase_11 | AC | 51 ms
80,144 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 56 ms
84,844 KB |
ソースコード
# import pypyjit;pypyjit.set_param("max_unroll_recursion=-1") # from bisect import * # from collections import * # from heapq import * # from itertools import * # from math import * # from datetime import * # from decimal import* # from string import ascii_lowercase,ascii_uppercase # import numpy as np import sys import os # sys.setrecursionlimit(10**6) INF = 10**18 MOD = 998244353 # MOD = 10**9 + 7 File = open("input.txt", "r") if os.path.exists("input.txt") else sys.stdin def input(): return File.readline().replace("\n", "") # /////////////////////////////////////////////////////////////////////////// def RLE(s): result = [] count = 1 for i in range(1, len(s)): if s[i] == s[i - 1]: count += 1 else: result.append((s[i - 1], count)) count = 1 result.append((s[-1], count)) return result T = int(input()) for _ in range(T): N = int(input()) A = list(map(int, input().split())) rle = RLE(A) if len(rle) % 2 == 0: print("Yes") else: res = 0 for i in range(len(rle)): if i % 2: if rle[i][1] > 1: res = 1 print("Yes" if res else "No")