結果

問題 No.688 E869120 and Constructing Array 2
ユーザー ntudantuda
提出日時 2024-09-19 21:35:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 874 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 61,032 KB
最終ジャッジ日時 2024-09-19 21:35:40
合計ジャッジ時間 1,442 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,648 KB
testcase_01 AC 40 ms
55,036 KB
testcase_02 AC 40 ms
54,376 KB
testcase_03 AC 40 ms
59,628 KB
testcase_04 AC 41 ms
54,500 KB
testcase_05 AC 41 ms
61,032 KB
testcase_06 AC 40 ms
60,316 KB
testcase_07 AC 37 ms
54,288 KB
testcase_08 AC 44 ms
60,276 KB
testcase_09 WA -
testcase_10 AC 37 ms
54,980 KB
testcase_11 AC 38 ms
54,204 KB
testcase_12 AC 38 ms
54,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
    divisors = []  # 必要に応じてsetにしても良いかも
    i = 1
    while i ** 2 <= n:
        if n % i == 0:
            divisors.append(i)
            if i ** 2 != n:
                divisors.append(n // i)
        i += 1
    divisors.sort()
    return divisors

from collections import defaultdict
dic = defaultdict(int)
for i in range(29):
    dic[pow(2, i)] = i

N = int(input())
D = make_divisors(2 * N)
ND = len(D)
for i in reversed(range(ND - 1)):
    if D[i + 1] - D[i] == 1:
        if N % (D[i + 1] * D[i] // 2) == 0:
            if N // (D[i + 1] * D[i] // 2) in dic:
                nz = dic[N // (D[i + 1] * D[i] // 2)]
                no = D[i + 1]
                if no + nz <= 30:
                    ans = [0] * nz + [1] * no
                    print(len(ans))
                    print(*ans)
                    exit()
0