#38126: def / insert


eason940924@apps.ntpc.edu.tw (李展宇)

學校 : 不指定學校
編號 : 241637
來源 : [1.34.8.123]
最後登入時間 :
2024-01-01 23:23:13
g797. 洗牌 (Cards) -- TOI練習賽202111新手組第2題 | From: [1.34.8.123] | 發表日期 : 2023-10-29 00:05

n,m = map(int,input().split())
cards = [int(a) for a in input().split()]
def wash(L):
  a = len(L)//2
  L1 = L[:a]
  L2 = L[a:]
  for i in range(1,len(L),2):
    L1.insert(i,L2[0])
    L2.pop(0)
  return L1
for i in range(m):
  cards = wash(cards)
print(*cards)
 
ZeroJudge Forum