結果

問題 No.2210 equence Squence Seuence
ユーザー ygd.ygd.
提出日時 2023-02-10 21:52:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 1,230 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,892 KB
最終ジャッジ日時 2024-07-07 16:04:33
合計ジャッジ時間 4,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 73 ms
15,380 KB
testcase_04 AC 79 ms
15,404 KB
testcase_05 AC 101 ms
17,876 KB
testcase_06 AC 96 ms
17,012 KB
testcase_07 AC 182 ms
27,896 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 219 ms
29,620 KB
testcase_14 AC 250 ms
29,488 KB
testcase_15 AC 251 ms
29,492 KB
testcase_16 AC 218 ms
29,492 KB
testcase_17 AC 222 ms
29,380 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 28 ms
10,496 KB
testcase_22 AC 28 ms
10,752 KB
testcase_23 AC 188 ms
26,748 KB
testcase_24 AC 150 ms
23,720 KB
testcase_25 AC 170 ms
24,752 KB
testcase_26 AC 217 ms
29,892 KB
testcase_27 AC 80 ms
15,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import math
import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
from collections import defaultdict
from collections import deque
#import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
MOD = 998244353
dx = [1,0,-1,0]
dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

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

    def output(j):
        B = []
        for i,a in enumerate(A):
            if i == j: continue
            B.append(a)
        print(*B)
        exit()

    f = 1
    l = N
    s = 1
    for i in range(N-1):
        if A[i] == A[i+1]:
            s += 1
        elif A[i] > A[i+1]:
            pf = f
            f += s
            if pf <= K < f:
                output(i)
            s = 1
        else:
            pl = l
            l -= s
            if l < K <= pl:
                output(i)
            s = 1
        # print(f,l,s)
    output(N-1)


    

if __name__ == '__main__':
    main()
0