結果
問題 | No.2343 (l+r)/2 |
ユーザー | 👑 amentorimaru |
提出日時 | 2023-07-07 13:55:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,525 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 108,032 KB |
最終ジャッジ日時 | 2024-07-21 09:04:41 |
合計ジャッジ時間 | 4,191 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 161 ms
89,984 KB |
testcase_01 | AC | 270 ms
91,548 KB |
testcase_02 | AC | 178 ms
90,240 KB |
testcase_03 | WA | - |
testcase_04 | AC | 174 ms
100,352 KB |
testcase_05 | AC | 162 ms
91,904 KB |
testcase_06 | AC | 164 ms
91,264 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 166 ms
90,624 KB |
testcase_11 | AC | 183 ms
103,424 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 181 ms
108,032 KB |
ソースコード
from cmath import inf from re import M import sys from collections import deque, Counter from math import atan2, gcd, log10, pi, sqrt, ceil from bisect import bisect, bisect_left, bisect_right, insort from typing import Iterable, TypeVar, Union, Tuple, Iterator, List # import bisect from decimal import * import time import copy import heapq import itertools import math import random from fractions import Fraction from functools import lru_cache, partial, cmp_to_key import operator # import pypyjit # pypyjit.set_param('max_unroll_recursion=-1') # import string # import networkx as nx input = sys.stdin.readline sys.setrecursionlimit(10000000) mod = 10 ** 9 + 7 mod2 = 998244353 # mod = 1 << 128 # mod = 10 ** 30 + 1 INF = 1 << 61 DIFF = 10 ** -9 DX = [1, 0, -1, 0, 1, 1, -1, -1] DY = [0, 1, 0, -1, 1, -1, 1, -1] def read_values(): return map(int, input().split()) def read_index(): return map(lambda x: int(x) - 1, input().split()) def read_list(): return list(read_values()) def read_lists(N): return [read_list() for _ in range(N)] def main(): t=int(input()) for _ in range(t): n=int(input()) a=read_list() if a[0]+a[-1]==1: print('Yes') continue ok=False c=0 for i in range(n-1): ok|=a[0]+a[i]==1 and a[0]+a[i+1]==1 c+=(a[i]+a[i+1])%2 if ok or (c>4 and c%4==0): print('Yes') else: print('No') if __name__ == "__main__": main()