結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,896 KB
testcase_01 AC 36 ms
51,948 KB
testcase_02 AC 36 ms
52,568 KB
testcase_03 AC 66 ms
82,860 KB
testcase_04 WA -
testcase_05 AC 78 ms
91,548 KB
testcase_06 AC 76 ms
89,636 KB
testcase_07 AC 109 ms
109,384 KB
testcase_08 AC 37 ms
52,208 KB
testcase_09 AC 37 ms
51,744 KB
testcase_10 AC 38 ms
53,876 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,392 KB
testcase_13 AC 115 ms
112,068 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 115 ms
111,756 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 35 ms
53,912 KB
testcase_20 AC 37 ms
52,672 KB
testcase_21 AC 35 ms
52,492 KB
testcase_22 WA -
testcase_23 AC 101 ms
114,148 KB
testcase_24 AC 91 ms
104,412 KB
testcase_25 AC 98 ms
109,344 KB
testcase_26 AC 118 ms
124,052 KB
testcase_27 AC 68 ms
86,836 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]:
        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