結果

問題 No.2210 equence Squence Seuence
ユーザー timitimi
提出日時 2023-02-11 15:13:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 130,688 KB
最終ジャッジ日時 2024-07-08 03:58:46
合計ジャッジ時間 4,398 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 78 ms
85,996 KB
testcase_04 AC 82 ms
87,552 KB
testcase_05 AC 92 ms
96,360 KB
testcase_06 AC 87 ms
92,160 KB
testcase_07 AC 132 ms
118,528 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 140 ms
122,980 KB
testcase_14 AC 145 ms
124,160 KB
testcase_15 AC 150 ms
129,092 KB
testcase_16 AC 140 ms
123,136 KB
testcase_17 AC 143 ms
128,256 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 39 ms
52,352 KB
testcase_20 AC 38 ms
52,224 KB
testcase_21 AC 39 ms
51,584 KB
testcase_22 AC 39 ms
51,840 KB
testcase_23 AC 119 ms
119,296 KB
testcase_24 AC 105 ms
108,672 KB
testcase_25 AC 109 ms
113,408 KB
testcase_26 AC 131 ms
130,688 KB
testcase_27 AC 77 ms
88,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
A=list(map(int, input().split()))
if A[0]*N==A:
  print(A)
  exit()
a,b=1,K 
B=A[::-1]
C=[0]
for i in range(len(B)-1):
  if B[i]<B[i+1]:
    C.append(1)
  elif B[i]>B[i+1]:
    C.append(-1)
  else:
    C.append(C[-1])
C=C[::-1]
a,b=1,N
for i in range(N):
  if C[i]==0:
    break 
  if C[i]==1:
    if a==K:
      break
    else:
      a+=1
  else:
    if b==K:
      break 
    else:
      b-=1
print(*(A[:i]+A[i+1:]))
0