結果
問題 | No.2343 (l+r)/2 |
ユーザー | lloyz |
提出日時 | 2023-06-10 01:05:28 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 541 ms / 2,000 ms |
コード長 | 1,233 bytes |
コンパイル時間 | 283 ms |
コンパイル使用メモリ | 81,992 KB |
実行使用メモリ | 86,236 KB |
最終ジャッジ日時 | 2024-06-10 15:48:56 |
合計ジャッジ時間 | 2,549 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,136 KB |
testcase_01 | AC | 541 ms
77,164 KB |
testcase_02 | AC | 124 ms
77,200 KB |
testcase_03 | AC | 282 ms
78,880 KB |
testcase_04 | AC | 55 ms
79,144 KB |
testcase_05 | AC | 43 ms
67,768 KB |
testcase_06 | AC | 41 ms
66,448 KB |
testcase_07 | AC | 53 ms
77,280 KB |
testcase_08 | AC | 57 ms
76,648 KB |
testcase_09 | AC | 57 ms
76,184 KB |
testcase_10 | AC | 44 ms
64,968 KB |
testcase_11 | AC | 57 ms
81,976 KB |
testcase_12 | AC | 53 ms
76,432 KB |
testcase_13 | AC | 48 ms
69,168 KB |
testcase_14 | AC | 62 ms
86,236 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) % 2 == 0: print("Yes") elif len(B) >= 9: print("Yes") else: seq_0 = False cnt = 0 for i in range(n): if A[i] == 1: cnt = 0 else: cnt += 1 if cnt > 1: seq_0 = True break if seq_0: print("Yes") else: print("No") else: if len(B) % 2 == 0: print("Yes") elif len(B) >= 9: 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")