結果

問題 No.688 E869120 and Constructing Array 2
ユーザー tcltktcltk
提出日時 2021-11-20 03:17:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 655 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 86,904 KB
最終ジャッジ日時 2024-06-10 16:50:23
合計ジャッジ時間 3,198 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
86,744 KB
testcase_01 AC 125 ms
86,712 KB
testcase_02 AC 126 ms
86,600 KB
testcase_03 AC 125 ms
86,828 KB
testcase_04 AC 126 ms
86,868 KB
testcase_05 AC 128 ms
86,904 KB
testcase_06 AC 126 ms
86,536 KB
testcase_07 AC 126 ms
86,872 KB
testcase_08 AC 126 ms
86,600 KB
testcase_09 AC 127 ms
86,400 KB
testcase_10 AC 125 ms
86,812 KB
testcase_11 AC 126 ms
86,652 KB
testcase_12 AC 125 ms
86,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """# paste here...
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

def solve(K):
    if K == 0:
        return [0]

    for N in range(2, 31):
        for n1 in range(2, N+1):
            n0 = N - n1
            v = (n1 * (n1-1) //2) * (2 ** n0)
            if v == K:
                return [1] * n1 + [0] * n0
    return [-1]



K = int(input())
ans = solve(K)
print(len(ans))
print(*ans)
0