목차

SW 수열 구하기

ps
링크acmicpc.net/…
출처BOJ
문제 번호28065
문제명SW 수열 구하기
레벨실버 4
분류

애드혹

시간복잡도O(n)
인풋사이즈n<=5000
사용한 언어Python 3.11
제출기록31256KB / 44ms
최고기록44ms
해결날짜2023/05/29

풀이

코드

"""Solution code for "BOJ 28065. SW 수열 구하기".

- Problem link: https://www.acmicpc.net/problem/28065
- Solution link: http://www.teferi.net/ps/problems/boj/28065

Tags: [Ad hoc]
"""


def main():
    N = int(input())

    answer = [None] * N
    answer[::2] = range(1, (N + 1) // 2 + 1)
    answer[1::2] = range(N, (N + 1) // 2, -1)

    print(*answer)


if __name__ == '__main__':
    main()