結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 83 ms
15,308 KB
testcase_04 WA -
testcase_05 AC 118 ms
18,068 KB
testcase_06 AC 107 ms
17,080 KB
testcase_07 AC 232 ms
27,840 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 WA -
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 283 ms
29,560 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 280 ms
29,428 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 WA -
testcase_23 AC 233 ms
26,884 KB
testcase_24 AC 176 ms
23,660 KB
testcase_25 AC 211 ms
24,820 KB
testcase_26 AC 264 ms
30,088 KB
testcase_27 AC 91 ms
16,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


def Main():
    n,k=map(int,input().split())
    a=list(map(int,input().split()))
    ans=[0 for _ in range(n)]
    mae=0
    ato=n-1
    for i in range(n):
        if i==n-1:
            ans[mae]=i
        elif a[i]<=a[i+1]:
            ans[ato]=i
            ato-=1
        else:
            ans[mae]=i
            mae+=1
    for i in range(n):
        if i!=ans[k-1]:
            print(a[i],end=" ")
    print()
                    
    
    
Main()

0