結果

問題 No.2210 equence Squence Seuence
ユーザー ntudantuda
提出日時 2023-02-12 00:35:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 106,512 KB
最終ジャッジ日時 2024-07-08 10:23:46
合計ジャッジ時間 3,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,416 KB
testcase_01 AC 34 ms
52,132 KB
testcase_02 AC 36 ms
54,064 KB
testcase_03 AC 63 ms
84,332 KB
testcase_04 WA -
testcase_05 AC 73 ms
88,440 KB
testcase_06 AC 75 ms
88,540 KB
testcase_07 AC 126 ms
99,224 KB
testcase_08 AC 34 ms
52,580 KB
testcase_09 AC 33 ms
53,020 KB
testcase_10 AC 36 ms
52,196 KB
testcase_11 WA -
testcase_12 AC 32 ms
52,952 KB
testcase_13 AC 130 ms
106,392 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 131 ms
106,104 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 34 ms
52,208 KB
testcase_20 AC 34 ms
52,280 KB
testcase_21 AC 35 ms
52,296 KB
testcase_22 WA -
testcase_23 AC 105 ms
100,760 KB
testcase_24 AC 90 ms
96,700 KB
testcase_25 AC 96 ms
98,912 KB
testcase_26 AC 118 ms
106,236 KB
testcase_27 AC 69 ms
88,580 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 = []
    else:
        B2 += tmp
        tmp = []
B1 += list(reversed(B2))
x = B1[K - 1]
print(*(A[:x] + A[x + 1:-1]))
0