結果

問題 No.2518 Adjacent Larger
ユーザー yu_w(ゆ)yu_w(ゆ)
提出日時 2023-10-27 22:02:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 101,352 KB
最終ジャッジ日時 2024-09-25 14:08:54
合計ジャッジ時間 4,091 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
    N=int(input())
    A=list(map(int,input().split()))
    now=0
    mxnow=now
    mnnow=now
    for i in range(N):
        if A[i]==2:
            now+=1
        elif A[i]==0:
            now-=1
        mxnow=max(now,mxnow)
        mnnow=min(now,mnnow)
    
    if now==0 and mxnow-mnnow==1:
        print("Yes")
    else:
        print("No")
0