結果

問題 No.2210 equence Squence Seuence
ユーザー ikomaikoma
提出日時 2023-02-10 22:12:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 114,048 KB
最終ジャッジ日時 2024-07-07 16:25:29
合計ジャッジ時間 3,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 70 ms
82,504 KB
testcase_04 WA -
testcase_05 AC 83 ms
89,792 KB
testcase_06 AC 79 ms
87,024 KB
testcase_07 AC 114 ms
107,520 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 35 ms
51,812 KB
testcase_10 AC 34 ms
51,840 KB
testcase_11 AC 35 ms
52,096 KB
testcase_12 AC 35 ms
51,968 KB
testcase_13 AC 117 ms
111,488 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 118 ms
111,712 KB
testcase_17 WA -
testcase_18 AC 35 ms
51,840 KB
testcase_19 AC 35 ms
52,060 KB
testcase_20 AC 35 ms
52,232 KB
testcase_21 AC 35 ms
51,712 KB
testcase_22 WA -
testcase_23 AC 104 ms
106,240 KB
testcase_24 AC 90 ms
97,920 KB
testcase_25 AC 98 ms
102,132 KB
testcase_26 AC 114 ms
114,048 KB
testcase_27 AC 71 ms
84,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))
k=0
for i in range(N-1):
    if A[i]>=A[i+1]:
        k+=1
    if k==K:
        ans=A[:i]+A[i+1:]
        print(*ans)
        exit()
k=0
K=N-K+1
for i in range(N-1):
    if A[i]<=A[i+1]:
        k+=1
    if k==K:
        ans=A[:i]+A[i+1:]
        print(*ans)
        exit()
print(*A[:-1])
0