結果

問題 No.2210 equence Squence Seuence
ユーザー minimumminimum
提出日時 2023-02-10 22:14:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 144,640 KB
最終ジャッジ日時 2024-07-07 16:26:56
合計ジャッジ時間 3,858 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 74 ms
84,096 KB
testcase_04 AC 77 ms
85,968 KB
testcase_05 AC 89 ms
94,464 KB
testcase_06 AC 83 ms
90,752 KB
testcase_07 AC 124 ms
115,072 KB
testcase_08 AC 36 ms
51,840 KB
testcase_09 AC 36 ms
51,840 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 36 ms
52,096 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 AC 140 ms
106,240 KB
testcase_14 AC 142 ms
106,240 KB
testcase_15 AC 139 ms
106,268 KB
testcase_16 AC 135 ms
105,932 KB
testcase_17 AC 137 ms
106,496 KB
testcase_18 AC 34 ms
52,096 KB
testcase_19 AC 34 ms
52,224 KB
testcase_20 AC 34 ms
51,968 KB
testcase_21 AC 34 ms
52,352 KB
testcase_22 AC 34 ms
52,096 KB
testcase_23 AC 121 ms
130,108 KB
testcase_24 AC 108 ms
116,264 KB
testcase_25 AC 116 ms
123,660 KB
testcase_26 AC 138 ms
144,640 KB
testcase_27 AC 81 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
L, R = [], []
ls = []
for i in range(N - 1):
    ls.append(i)
    if A[i] < A[i + 1]:
        while ls:
            j = ls.pop()
            L.append(j)
    elif A[i] > A[i + 1]:
        while ls:
            j = ls.pop()
            R.append(j)
while ls:
    j = ls.pop()
    L.append(j)
R.append(N - 1)
L.reverse()
R += L
pos = R[K - 1]
ans = A[:pos] + A[pos+1:]
print(*ans)
0