結果

問題 No.2210 equence Squence Seuence
ユーザー 👑 KazunKazun
提出日時 2023-02-10 21:33:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 113,740 KB
最終ジャッジ日時 2024-07-07 15:44:30
合計ジャッジ時間 3,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,144 KB
testcase_01 AC 35 ms
53,960 KB
testcase_02 AC 36 ms
53,368 KB
testcase_03 AC 72 ms
82,900 KB
testcase_04 AC 69 ms
84,544 KB
testcase_05 AC 83 ms
89,800 KB
testcase_06 AC 76 ms
86,920 KB
testcase_07 AC 106 ms
100,840 KB
testcase_08 AC 36 ms
52,928 KB
testcase_09 AC 35 ms
52,892 KB
testcase_10 AC 33 ms
52,480 KB
testcase_11 AC 34 ms
52,836 KB
testcase_12 AC 36 ms
53,308 KB
testcase_13 AC 119 ms
107,888 KB
testcase_14 AC 121 ms
107,636 KB
testcase_15 AC 119 ms
107,380 KB
testcase_16 AC 113 ms
107,772 KB
testcase_17 AC 119 ms
107,836 KB
testcase_18 AC 34 ms
53,228 KB
testcase_19 AC 34 ms
53,020 KB
testcase_20 AC 33 ms
51,940 KB
testcase_21 AC 34 ms
53,012 KB
testcase_22 AC 32 ms
52,860 KB
testcase_23 AC 99 ms
105,740 KB
testcase_24 AC 86 ms
98,764 KB
testcase_25 AC 90 ms
101,972 KB
testcase_26 AC 107 ms
113,740 KB
testcase_27 AC 64 ms
84,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,K=map(int,input().split())
    A=list(map(int,input().split()))

    S=[-1]*N
    L,R=1,N
    i=0; j=0
    while i<N:
        if i==N-1 or A[i]>A[i+1]:
            for k in range(j,i+1):
                S[k]=L
                L+=1
            j=i+1
        elif A[i]<A[i+1]:
            for k in range(j,i+1):
                S[k]=R
                R-=1
            j=i+1
        i+=1

    I=S.index(K)
    X=A.copy(); del X[I]
    return X

#==================================================
print(*solve())
0