結果

問題 No.2210 equence Squence Seuence
ユーザー tamatotamato
提出日時 2023-02-10 21:37:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 124,288 KB
最終ジャッジ日時 2024-07-07 15:48:12
合計ジャッジ時間 3,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 72 ms
84,480 KB
testcase_04 WA -
testcase_05 AC 85 ms
94,080 KB
testcase_06 AC 81 ms
89,728 KB
testcase_07 AC 116 ms
112,164 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 WA -
testcase_12 AC 35 ms
52,352 KB
testcase_13 AC 134 ms
106,496 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
106,188 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 35 ms
51,712 KB
testcase_20 AC 35 ms
51,840 KB
testcase_21 AC 35 ms
52,076 KB
testcase_22 WA -
testcase_23 AC 112 ms
114,432 KB
testcase_24 AC 99 ms
105,472 KB
testcase_25 AC 106 ms
109,712 KB
testcase_26 AC 125 ms
124,288 KB
testcase_27 AC 76 ms
86,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N, K = map(int, input().split())
    A = list(map(int, input().split()))

    ans = [-1] * N
    l = 0
    r = N-1
    for i in range(N-1):
        if A[i] <= A[i+1]:
            ans[r] = i
            r -= 1
        elif A[i] > A[i+1]:
            ans[l] = i
            l += 1
    for i in range(N-1):
        if ans[i] == -1:
            ans[i] = N - 1
    B = []
    for i in range(N):
        if i == ans[K - 1]:
            continue
        B.append(A[i])
    print(*B)
    

if __name__ == '__main__':
    main()
0