結果

問題 No.2210 equence Squence Seuence
ユーザー ntudantuda
提出日時 2023-02-12 00:49:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 132,020 KB
最終ジャッジ日時 2024-07-08 10:32:25
合計ジャッジ時間 3,715 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,840 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 63 ms
84,292 KB
testcase_04 AC 68 ms
85,828 KB
testcase_05 AC 73 ms
88,376 KB
testcase_06 AC 76 ms
88,388 KB
testcase_07 AC 110 ms
99,028 KB
testcase_08 AC 34 ms
52,256 KB
testcase_09 AC 34 ms
51,840 KB
testcase_10 AC 33 ms
51,840 KB
testcase_11 AC 33 ms
51,840 KB
testcase_12 AC 34 ms
51,840 KB
testcase_13 AC 123 ms
105,828 KB
testcase_14 AC 126 ms
106,032 KB
testcase_15 AC 126 ms
105,800 KB
testcase_16 AC 128 ms
105,988 KB
testcase_17 AC 125 ms
105,868 KB
testcase_18 AC 33 ms
51,840 KB
testcase_19 AC 33 ms
51,456 KB
testcase_20 AC 33 ms
51,712 KB
testcase_21 AC 31 ms
51,840 KB
testcase_22 AC 32 ms
51,840 KB
testcase_23 AC 102 ms
120,024 KB
testcase_24 AC 88 ms
110,096 KB
testcase_25 AC 100 ms
115,072 KB
testcase_26 AC 126 ms
132,020 KB
testcase_27 AC 65 ms
88,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.append(10 ** 6)
B1 = []
B2 = []
tmp = []
for i in range(N):
    tmp.append(i)
    if A[i] > A[i + 1]:
        B1 += tmp
        tmp = []
    elif A[i] < A[i + 1]:
        B2 += tmp
        tmp = []

B1 += list(reversed(B2))
x = B1[K - 1]

print(*(A[:x] + A[x + 1:-1]))
0