結果

問題 No.688 E869120 and Constructing Array 2
ユーザー mitsuomitsuo
提出日時 2018-08-20 16:22:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 759 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-25 10:06:37
合計ジャッジ時間 1,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 26 ms
10,496 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 29 ms
10,496 KB
testcase_09 AC 26 ms
10,624 KB
testcase_10 AC 25 ms
10,496 KB
testcase_11 AC 26 ms
10,496 KB
testcase_12 AC 27 ms
10,496 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