結果

問題 No.2210 equence Squence Seuence
ユーザー MasKoaTSMasKoaTS
提出日時 2023-02-10 22:25:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 109,104 KB
最終ジャッジ日時 2024-07-07 16:36:28
合計ジャッジ時間 3,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,188 KB
testcase_01 AC 39 ms
53,540 KB
testcase_02 AC 38 ms
54,528 KB
testcase_03 AC 76 ms
85,768 KB
testcase_04 WA -
testcase_05 AC 86 ms
94,964 KB
testcase_06 AC 84 ms
91,016 KB
testcase_07 AC 120 ms
103,376 KB
testcase_08 AC 36 ms
55,068 KB
testcase_09 AC 36 ms
54,664 KB
testcase_10 AC 36 ms
53,996 KB
testcase_11 WA -
testcase_12 AC 36 ms
54,676 KB
testcase_13 AC 131 ms
108,508 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
108,408 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 37 ms
53,988 KB
testcase_20 AC 37 ms
54,176 KB
testcase_21 AC 35 ms
54,248 KB
testcase_22 WA -
testcase_23 AC 109 ms
103,616 KB
testcase_24 AC 94 ms
95,984 KB
testcase_25 AC 105 ms
102,400 KB
testcase_26 AC 120 ms
109,064 KB
testcase_27 AC 73 ms
87,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

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

for i in range(n):
	if(ans[i] == -1):
		ans[que.pop()] = n - 1
x = ans[t - 1]

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