結果

問題 No.688 E869120 and Constructing Array 2
ユーザー mitsuomitsuo
提出日時 2018-08-21 12:30:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 32 ms / 1,000 ms
コード長 781 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-05-08 10:31:51
合計ジャッジ時間 1,659 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

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

    p1set = {}
    count = 0
    for i in range(2, 31):
        p1set[int(combi2(i))] = count
        count += 1

    p2set = {}
    n = 1
    count = 0
    for i in range(1, 32):
        p2set[n] = count
        n *= 2
        count += 1

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

    onecount = p1set[N] + 2
    return [zcount + onecount, " ".join(["0"] * zcount + ["1"] * onecount)]

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