結果

問題 No.688 E869120 and Constructing Array 2
ユーザー mitsuomitsuo
提出日時 2018-08-21 11:48:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,103 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 18,080 KB
最終ジャッジ日時 2024-05-08 09:22:36
合計ジャッジ時間 2,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
18,080 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(l):
    zcount = len([z for z in l.split(" ") if z == "0"])
    onecount = len([z for z in l.split(" ") if z == "1"])

    return int(pow(2, zcount) * onecount * (onecount - 1) / 2)

def combi2(c):
    return c * (c-1) / 2

def solve(N):
    if N == 0:
        return [1, "0"]

    max = 1000000000
    p2set = {}
    n = 1
    count = 0
    while (n < max):
        p2set[n] = count
        n *= 2
        count += 1

    zcount = 0
    if N % 2 == 0:
        for n, d in sorted(p2set.items(), reverse=True):
            if N % n == 0:
                N /= n
                if N % 2 == 0 or N == 1:
                    zcount = d
                else:
                    zcount = d - 1
                    N *= 2
                break
    else:
        zcount = 0

    N = int(N)
    onecount = 2
    if N > 2:
        comb = int(combi2(onecount))
        while(comb != N):
            onecount += 1
            comb = int(combi2(onecount))

    return [zcount + onecount, " ".join(["0"] * zcount + ["1"] * onecount)]

if __name__ == "__main__":
    [print(a) for a in solve(int(input()))]
0