結果

問題 No.2210 equence Squence Seuence
ユーザー ikomaikoma
提出日時 2023-02-10 22:10:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 389 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 114,176 KB
最終ジャッジ日時 2024-07-07 16:24:38
合計ジャッジ時間 3,758 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 74 ms
87,296 KB
testcase_07 AC 108 ms
107,264 KB
testcase_08 WA -
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 35 ms
52,096 KB
testcase_11 AC 35 ms
52,352 KB
testcase_12 AC 35 ms
51,840 KB
testcase_13 AC 114 ms
111,360 KB
testcase_14 AC 121 ms
112,128 KB
testcase_15 AC 121 ms
112,768 KB
testcase_16 AC 117 ms
111,744 KB
testcase_17 WA -
testcase_18 AC 35 ms
51,840 KB
testcase_19 AC 36 ms
51,940 KB
testcase_20 WA -
testcase_21 AC 34 ms
52,352 KB
testcase_22 WA -
testcase_23 AC 96 ms
106,240 KB
testcase_24 AC 86 ms
97,664 KB
testcase_25 AC 91 ms
102,456 KB
testcase_26 AC 107 ms
114,176 KB
testcase_27 AC 64 ms
84,608 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