結果

問題 No.2210 equence Squence Seuence
ユーザー first_vilfirst_vil
提出日時 2023-02-10 22:06:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 877 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 81,640 KB
実行使用メモリ 124,200 KB
最終ジャッジ日時 2024-07-07 16:21:45
合計ジャッジ時間 3,796 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,180 KB
testcase_01 AC 38 ms
52,400 KB
testcase_02 AC 36 ms
53,364 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 74 ms
89,736 KB
testcase_07 AC 105 ms
109,244 KB
testcase_08 WA -
testcase_09 AC 39 ms
53,304 KB
testcase_10 AC 39 ms
52,272 KB
testcase_11 AC 35 ms
53,072 KB
testcase_12 AC 35 ms
53,256 KB
testcase_13 AC 114 ms
111,908 KB
testcase_14 AC 128 ms
122,024 KB
testcase_15 AC 131 ms
121,552 KB
testcase_16 AC 118 ms
112,168 KB
testcase_17 WA -
testcase_18 AC 35 ms
53,272 KB
testcase_19 AC 36 ms
52,088 KB
testcase_20 WA -
testcase_21 AC 37 ms
52,316 KB
testcase_22 WA -
testcase_23 AC 105 ms
113,796 KB
testcase_24 AC 92 ms
105,124 KB
testcase_25 AC 101 ms
109,184 KB
testcase_26 AC 116 ms
124,200 KB
testcase_27 AC 68 ms
86,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
# mod = int(1e9 + 7)
mod = 998244353

n, k = mi()
a = li()

b = []
for i in range(n - 1):
    # i要素目の値が何になるか考える
    if a[i] == a[i + 1]:
        k -= 1
        b.append(a[i])
        continue

    suf = n - i - 1
    if a[i] < a[i + 1]:
        if k <= suf:
            pass
        else:
            b += a[i + 1 :]
            break
    else:
        if k <= 1:
            b += a[i + 1 :]
            break
        else:
            k -= 1
    b.append(a[i])
print(*b)
0