結果

問題 No.2210 equence Squence Seuence
ユーザー Mat_hMat_h
提出日時 2023-02-10 22:28:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 617 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,756 KB
最終ジャッジ日時 2024-07-07 16:37:57
合計ジャッジ時間 5,185 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 220 ms
25,640 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 206 ms
29,456 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 209 ms
29,332 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 24 ms
10,496 KB
testcase_20 AC 25 ms
10,624 KB
testcase_21 AC 24 ms
10,752 KB
testcase_22 WA -
testcase_23 AC 205 ms
25,844 KB
testcase_24 AC 146 ms
22,780 KB
testcase_25 AC 184 ms
24,800 KB
testcase_26 AC 243 ms
29,756 KB
testcase_27 AC 81 ms
15,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


def Main():
    n,k=map(int,input().split())
    a=list(map(int,input().split()))
    count=0
    b=0
    ans=0
    for i in range(n):
        if i==n-1:
            if a[i]>a[i-1]:
                count+=1
        elif a[i]>a[i+1]:
            count+=1
        if count==k:
            ans=i
            b=1
            break
    for i in range(n-2,-1,-1):
        if b:
            break
        
        if a[i]<=a[i+1]:
            count+=1
        if count==k:
            ans=i
            break
    for i in range(n):
        if i!=ans:
            print(a[i],end=" ")
    print()
        
    
    
Main()

0