結果

問題 No.1061 素敵な数列
ユーザー kimiyukikimiyuki
提出日時 2020-05-23 00:22:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 1,214 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,256 KB
最終ジャッジ日時 2024-10-06 00:10:26
合計ジャッジ時間 5,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,392 KB
testcase_01 AC 32 ms
11,392 KB
testcase_02 AC 32 ms
11,264 KB
testcase_03 AC 31 ms
11,264 KB
testcase_04 AC 32 ms
11,392 KB
testcase_05 AC 33 ms
11,392 KB
testcase_06 AC 33 ms
11,392 KB
testcase_07 AC 34 ms
11,392 KB
testcase_08 AC 33 ms
11,520 KB
testcase_09 AC 33 ms
11,520 KB
testcase_10 AC 33 ms
11,520 KB
testcase_11 AC 33 ms
11,520 KB
testcase_12 AC 32 ms
11,392 KB
testcase_13 AC 33 ms
11,392 KB
testcase_14 AC 33 ms
11,264 KB
testcase_15 AC 31 ms
11,520 KB
testcase_16 AC 31 ms
11,392 KB
testcase_17 AC 31 ms
11,520 KB
testcase_18 AC 31 ms
11,392 KB
testcase_19 AC 76 ms
14,368 KB
testcase_20 AC 69 ms
13,800 KB
testcase_21 AC 118 ms
17,032 KB
testcase_22 AC 193 ms
21,240 KB
testcase_23 AC 158 ms
19,036 KB
testcase_24 AC 157 ms
19,084 KB
testcase_25 AC 158 ms
18,968 KB
testcase_26 AC 59 ms
13,408 KB
testcase_27 AC 105 ms
15,912 KB
testcase_28 AC 114 ms
16,320 KB
testcase_29 AC 150 ms
18,724 KB
testcase_30 AC 177 ms
20,360 KB
testcase_31 AC 109 ms
16,076 KB
testcase_32 AC 209 ms
22,256 KB
testcase_33 AC 58 ms
13,240 KB
testcase_34 AC 74 ms
14,052 KB
testcase_35 AC 75 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from typing import *

def solve(n: int) -> List[int]:
    al = []
    ar = []
    bl = []
    br = [n - 1]
    cl = []
    cr = [n - 1, n - 1]
    remaining = n - 1
    remaining -= (n - 1) // 3 * 2
    remaining -= max(0, (n - 1) % 3 - 1)
    for i in range(n - 1):
        if i % 3 == 0:
            al += [i]
            ar += [i, i]
        elif i % 3 == 1:
            if remaining >= 1:
                bl += [i]
                br += [i, i]
                remaining -= 1
            else:
                bl += [i, i]
                br += [i]
        else:
            if remaining >= 1:
                cl += [i, i]
                cr += [i]
                remaining -= 1
            else:
                cl += [i]
                cr += [i, i]
    if remaining != 0:
        return [-1]
    ans = []
    ans.extend(reversed(al))
    ans.extend(ar)
    ans.extend(reversed(bl))
    ans.extend(br)
    ans.extend(reversed(cl))
    ans.extend(cr)
    return ans

# generated by online-judge-template-generator v4.1.0 (https://github.com/kmyk/online-judge-template-generator)
def main():
    N = int(input())
    ans = solve(N)
    print(*ans)

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