結果

問題 No.2210 equence Squence Seuence
ユーザー MasKoaTSMasKoaTS
提出日時 2023-02-10 22:39:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,748 KB
実行使用メモリ 108,732 KB
最終ジャッジ日時 2024-07-07 16:44:00
合計ジャッジ時間 4,508 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, t = map(int, input().split())
a = list(map(int, input().split()))

que = deque([*range(n)])
ans = [-1] * n
cnt = 1
for i in range(n - 1):
	if(a[i] == a[i + 1]):
		cnt += 1
		continue
	if(a[i] < a[i + 1]):
		for j in range(i, i - cnt, -1):
			ans[que.pop()] = j
	else:
		for j in range(i, i - cnt, -1):
			ans[que.popleft()] = j
	cnt = 1

for j in range(n - 1, n - 1 - cnt, -1):
	ans[que.pop()] = j
x = ans[t - 1]

lis = []
for i, k in enumerate(a):
	if(i == x):
		continue
	lis.append(k)
print(*lis)
0