結果

問題 No.2210 equence Squence Seuence
ユーザー coder_So_heycoder_So_hey
提出日時 2023-02-10 21:53:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 592 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 119,928 KB
最終ジャッジ日時 2024-07-07 16:06:34
合計ジャッジ時間 3,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,144 KB
testcase_01 AC 31 ms
52,360 KB
testcase_02 AC 31 ms
52,936 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 68 ms
86,936 KB
testcase_07 AC 103 ms
110,204 KB
testcase_08 WA -
testcase_09 AC 33 ms
53,368 KB
testcase_10 AC 33 ms
52,432 KB
testcase_11 AC 33 ms
53,728 KB
testcase_12 AC 33 ms
52,436 KB
testcase_13 AC 113 ms
119,540 KB
testcase_14 AC 112 ms
119,308 KB
testcase_15 AC 112 ms
119,628 KB
testcase_16 AC 117 ms
119,636 KB
testcase_17 WA -
testcase_18 AC 33 ms
52,488 KB
testcase_19 AC 32 ms
53,088 KB
testcase_20 WA -
testcase_21 AC 32 ms
52,220 KB
testcase_22 WA -
testcase_23 AC 97 ms
110,488 KB
testcase_24 AC 82 ms
101,692 KB
testcase_25 AC 92 ms
105,652 KB
testcase_26 AC 108 ms
119,488 KB
testcase_27 AC 64 ms
85,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

order = []
minimum = 1
maximum = N

for i in range(N - 1):
    if A[i] < A[i + 1]:
        order.append(maximum)
        maximum -= 1
    else:
        order.append(minimum)
        minimum += 1
order.append(maximum)

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