結果

問題 No.2210 equence Squence Seuence
ユーザー flygonflygon
提出日時 2023-02-10 23:13:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 370 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 124,340 KB
最終ジャッジ日時 2024-07-07 17:12:11
合計ジャッジ時間 4,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 36 ms
52,240 KB
testcase_02 AC 35 ms
52,428 KB
testcase_03 AC 66 ms
84,236 KB
testcase_04 WA -
testcase_05 AC 81 ms
93,928 KB
testcase_06 AC 77 ms
89,660 KB
testcase_07 AC 116 ms
116,232 KB
testcase_08 AC 37 ms
53,256 KB
testcase_09 AC 36 ms
52,848 KB
testcase_10 AC 38 ms
52,360 KB
testcase_11 WA -
testcase_12 AC 37 ms
53,640 KB
testcase_13 AC 130 ms
121,684 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 126 ms
121,364 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 36 ms
52,504 KB
testcase_20 AC 37 ms
52,012 KB
testcase_21 AC 36 ms
52,332 KB
testcase_22 WA -
testcase_23 AC 107 ms
114,108 KB
testcase_24 AC 96 ms
104,820 KB
testcase_25 AC 104 ms
109,412 KB
testcase_26 AC 121 ms
124,340 KB
testcase_27 AC 71 ms
86,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = list(map(int,input().split()))

ans = -1

for i in range(n-1):
  x,y = a[i], a[i+1]
  if n-i < k:
    k = n-i
  if k == 1 and y < x:
    ans = i
  if y < x:
    k -= 1
  if x < y and k == n-i:
    ans = i
  if ans != -1:
    break
  
if ans == -1:
  ans = n-1

b = []
for i in range(n):
  if i != ans:
    b.append(a[i])
  
print(*b)

0