結果

問題 No.2518 Adjacent Larger
ユーザー H20H20
提出日時 2023-10-27 22:54:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 104,400 KB
最終ジャッジ日時 2024-09-25 14:56:57
合計ジャッジ時間 4,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,328 KB
testcase_01 AC 217 ms
77,932 KB
testcase_02 AC 227 ms
77,796 KB
testcase_03 AC 215 ms
77,552 KB
testcase_04 AC 222 ms
77,728 KB
testcase_05 AC 237 ms
77,964 KB
testcase_06 AC 154 ms
77,588 KB
testcase_07 AC 152 ms
77,664 KB
testcase_08 AC 152 ms
77,844 KB
testcase_09 AC 152 ms
77,856 KB
testcase_10 AC 152 ms
77,588 KB
testcase_11 AC 87 ms
76,228 KB
testcase_12 AC 88 ms
76,576 KB
testcase_13 AC 93 ms
76,320 KB
testcase_14 AC 86 ms
76,080 KB
testcase_15 AC 88 ms
76,124 KB
testcase_16 AC 97 ms
103,936 KB
testcase_17 AC 78 ms
87,916 KB
testcase_18 AC 75 ms
87,684 KB
testcase_19 AC 72 ms
83,852 KB
testcase_20 AC 83 ms
92,824 KB
testcase_21 AC 105 ms
104,340 KB
testcase_22 AC 99 ms
104,188 KB
testcase_23 AC 98 ms
104,180 KB
testcase_24 AC 86 ms
102,224 KB
testcase_25 AC 90 ms
104,332 KB
testcase_26 AC 94 ms
104,400 KB
testcase_27 AC 99 ms
104,068 KB
testcase_28 AC 94 ms
104,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
T = int(input())
for _ in range(T):
    N = int(input())
    A = list(map(int, input().split()))
    C = collections.Counter(A)
    ans = C[0]==C[2] and C[1]<N
    temp = 0
    mitemp = 0
    matemp = 0
    for i in range(N):
        if A[i]==A[i-1] and A[i]!=1:
            ans = False
        temp+=A[i]-1
        mitemp = min(temp,mitemp)
        matemp = max(temp,matemp)
        if matemp-mitemp>1:
            ans = False
    if ans:
        print('Yes')
    else:
        print('No')
0