結果
問題 | No.2210 equence Squence Seuence |
ユーザー | coder_So_hey |
提出日時 | 2023-02-10 22:04:30 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 753 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 82,392 KB |
実行使用メモリ | 120,168 KB |
最終ジャッジ日時 | 2024-07-07 16:19:47 |
合計ジャッジ時間 | 4,302 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
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) print(order) for i in range(N): if order[i] != K: print(f"{A[i]}", end = " ")