結果

問題 No.1061 素敵な数列
ユーザー koba-e964koba-e964
提出日時 2020-05-25 15:16:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 1,843 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 110,904 KB
最終ジャッジ日時 2024-10-13 02:04:42
合計ジャッジ時間 5,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,876 KB
testcase_01 AC 34 ms
52,504 KB
testcase_02 AC 35 ms
53,008 KB
testcase_03 AC 36 ms
53,104 KB
testcase_04 AC 35 ms
53,232 KB
testcase_05 AC 34 ms
53,160 KB
testcase_06 AC 35 ms
52,996 KB
testcase_07 AC 34 ms
52,824 KB
testcase_08 AC 36 ms
52,876 KB
testcase_09 AC 36 ms
53,132 KB
testcase_10 AC 36 ms
52,272 KB
testcase_11 AC 35 ms
52,520 KB
testcase_12 AC 35 ms
53,084 KB
testcase_13 AC 35 ms
54,484 KB
testcase_14 AC 34 ms
53,060 KB
testcase_15 AC 34 ms
53,420 KB
testcase_16 AC 35 ms
53,808 KB
testcase_17 AC 35 ms
53,420 KB
testcase_18 AC 36 ms
54,188 KB
testcase_19 AC 76 ms
82,332 KB
testcase_20 AC 76 ms
78,612 KB
testcase_21 AC 94 ms
90,556 KB
testcase_22 AC 112 ms
99,836 KB
testcase_23 AC 103 ms
94,488 KB
testcase_24 AC 113 ms
97,828 KB
testcase_25 AC 109 ms
97,160 KB
testcase_26 AC 76 ms
79,640 KB
testcase_27 AC 83 ms
84,448 KB
testcase_28 AC 93 ms
89,280 KB
testcase_29 AC 102 ms
96,228 KB
testcase_30 AC 105 ms
95,868 KB
testcase_31 AC 90 ms
88,760 KB
testcase_32 AC 126 ms
110,904 KB
testcase_33 AC 70 ms
78,804 KB
testcase_34 AC 77 ms
80,284 KB
testcase_35 AC 73 ms
78,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

# The author read the editorial.


def join_b(a, b):
    ret = a.copy()
    last = ret.pop()
    ret.append(b.pop())
    ret.append(last)
    for elem in reversed(b):
        ret.append(elem)
    return ret


def make_a(n):
    assert n != 2
    if n == 0:
        return []
    if n % 2 == 1:
        if n == 5:
            a = [3, 4, 2, 2, 3, 3, 2, 4, 4]
            b = make_b(2)
            return join_b(a, b)
        a = []
        for i in range(n // 2, n):
            a.append(i)
        for i in range(n // 2, n):
            a.append(i)
            a.append(i)
        b = make_a(n // 2)
        return a + b
    assert n % 2 == 0
    a = []
    for i in range(n // 2, n):
        a.append(i)
    a.append(n - 1)
    for i in range(n // 2, n - 1):
        a.append(i)
        a.append(i)
    a.append(n - 1)
    b = make_b(n // 2)
    return join_b(a, b)


def make_b(n):
    assert n >= 2
    if n == 2:
        return [0, 0, 0, 1, 1, 1]
    if n == 3:
        return [0, 0, 0, 2, 1, 2, 1, 1, 2]
    if n == 4:
        return [0, 0, 0, 3, 1, 3, 1, 1, 2, 2, 3, 2]
    if n % 2 == 1:
        a = []
        for i in range(n // 2, n):
            a.append(i)
        for i in range(n // 2, n):
            a.append(i)
            a.append(i)
        b = make_b(n // 2)
        return a + b
    assert n % 2 == 0
    a = []
    for i in range(n // 2, n):
        a.append(i)
    a.append(n - 1)
    for i in range(n // 2, n - 1):
        a.append(i)
        a.append(i)
    a.append(n - 1)
    b = make_a(n // 2)
    return b + a


n = int(readline())

if n == 2:
    print(-1)
    exit()

ans = make_a(n)
for i in range(3 * n):
    print(ans[i], end='')
    if i == 3 * n - 1:
        print()
    else:
        print(' ', end='')
0