結果

問題 No.2210 equence Squence Seuence
ユーザー hiryuNhiryuN
提出日時 2023-02-10 21:46:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 110,412 KB
最終ジャッジ日時 2024-07-07 15:59:45
合計ジャッジ時間 4,127 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,740 KB
testcase_01 AC 42 ms
51,952 KB
testcase_02 AC 40 ms
52,416 KB
testcase_03 AC 72 ms
82,340 KB
testcase_04 AC 72 ms
83,240 KB
testcase_05 AC 83 ms
88,940 KB
testcase_06 AC 75 ms
86,296 KB
testcase_07 AC 110 ms
105,808 KB
testcase_08 AC 39 ms
51,984 KB
testcase_09 AC 40 ms
53,536 KB
testcase_10 AC 38 ms
53,184 KB
testcase_11 AC 38 ms
51,816 KB
testcase_12 AC 38 ms
52,996 KB
testcase_13 AC 120 ms
110,048 KB
testcase_14 AC 127 ms
108,476 KB
testcase_15 AC 127 ms
108,148 KB
testcase_16 AC 121 ms
109,660 KB
testcase_17 AC 122 ms
109,236 KB
testcase_18 AC 38 ms
52,688 KB
testcase_19 AC 39 ms
52,080 KB
testcase_20 AC 38 ms
51,692 KB
testcase_21 AC 39 ms
52,332 KB
testcase_22 AC 39 ms
52,196 KB
testcase_23 AC 102 ms
103,492 KB
testcase_24 AC 90 ms
96,868 KB
testcase_25 AC 97 ms
99,696 KB
testcase_26 AC 115 ms
110,412 KB
testcase_27 AC 69 ms
83,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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