結果

問題 No.688 E869120 and Constructing Array 2
ユーザー mitsuomitsuo
提出日時 2018-08-20 16:22:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 759 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-04 03:34:35
合計ジャッジ時間 1,754 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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):
        n *= 2
        count += 1
        p2set[n] = count

    if N not in p2set:
        onecount = 2
        comb = int(combi2(onecount))
        while(True):
            if N / comb == 1 or int(N / comb) in p2set:
                break
            onecount += 1
            comb = int(combi2(onecount))
        N = int(N/comb)
    else:
        onecount = 2

    zcount = 0
    while (N != 1):
        zcount += 1
        N /= 2

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

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