結果

問題 No.2210 equence Squence Seuence
ユーザー coder_So_heycoder_So_hey
提出日時 2023-02-10 22:05:00
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 740 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 119,516 KB
最終ジャッジ日時 2024-07-07 16:20:37
合計ジャッジ時間 4,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 81 ms
87,088 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 35 ms
52,224 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 RE -
testcase_12 AC 37 ms
52,480 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 36 ms
52,084 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 110 ms
110,144 KB
testcase_24 AC 99 ms
102,128 KB
testcase_25 AC 103 ms
105,632 KB
testcase_26 AC 120 ms
119,516 KB
testcase_27 AC 77 ms
84,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

order = []
minimum = 1
maximum = N

i = 0
while i < N - 1:
    if A[i] < A[i + 1]:
        order.append(maximum)
        maximum -= 1
    elif A[i] > A[i + 1]:
        order.append(minimum)
        minimum += 1
    else:
        j = i + 1
        while j < N - 1:
            if A[i] != A[j]:
                break
            j += 1
        for _ in range(j - i):
            if A[i] < A[j]:
                order.append(maximum)
                maximum -= 1
            else:
                order.append(minimum)
                minimum += 1
        i = j
    i += 1
order.append(maximum)

for i in range(N):
    if order[i] != K:
        print(f"{A[i]}", end = " ")
0