結果

問題 No.688 E869120 and Constructing Array 2
ユーザー mitsuomitsuo
提出日時 2018-08-21 11:48:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 1,103 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-12-14 12:07:58
合計ジャッジ時間 9,969 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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