結果

問題 No.2210 equence Squence Seuence
ユーザー Mat_hMat_h
提出日時 2023-02-10 22:26:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,012 KB
最終ジャッジ日時 2024-07-07 16:36:49
合計ジャッジ時間 4,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 72 ms
14,548 KB
testcase_04 WA -
testcase_05 AC 106 ms
17,980 KB
testcase_06 WA -
testcase_07 AC 205 ms
25,768 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 24 ms
10,752 KB
testcase_12 WA -
testcase_13 AC 208 ms
29,372 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 205 ms
29,456 KB
testcase_17 WA -
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 26 ms
10,624 KB
testcase_20 WA -
testcase_21 AC 24 ms
10,624 KB
testcase_22 AC 24 ms
10,624 KB
testcase_23 AC 186 ms
25,944 KB
testcase_24 AC 133 ms
22,780 KB
testcase_25 AC 167 ms
24,800 KB
testcase_26 AC 228 ms
30,012 KB
testcase_27 AC 78 ms
16,092 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