結果

問題 No.2210 equence Squence Seuence
ユーザー hiryuNhiryuN
提出日時 2023-02-10 21:43:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 284 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 110,664 KB
最終ジャッジ日時 2024-07-07 15:55:06
合計ジャッジ時間 3,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 76 ms
85,888 KB
testcase_07 AC 105 ms
105,984 KB
testcase_08 WA -
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 34 ms
51,840 KB
testcase_11 AC 33 ms
52,096 KB
testcase_12 AC 33 ms
51,968 KB
testcase_13 AC 118 ms
109,952 KB
testcase_14 AC 116 ms
109,828 KB
testcase_15 AC 117 ms
109,456 KB
testcase_16 AC 116 ms
109,516 KB
testcase_17 WA -
testcase_18 AC 35 ms
52,224 KB
testcase_19 AC 35 ms
51,840 KB
testcase_20 WA -
testcase_21 AC 35 ms
51,968 KB
testcase_22 WA -
testcase_23 AC 102 ms
103,296 KB
testcase_24 AC 89 ms
96,512 KB
testcase_25 AC 96 ms
100,096 KB
testcase_26 AC 109 ms
110,664 KB
testcase_27 AC 69 ms
83,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
A=list(map(int,input().split()))
A.append(0)
start=0 
end=n+1 
for q in range(n):
    if A[q]>=A[q+1]:
        start+=1 
    else:
        end-=1
    if start==k or end==k:
            del A[n]
            del A[q]
            print(*A)
            exit()
0