結果

問題 No.688 E869120 and Constructing Array 2
ユーザー ntudantuda
提出日時 2024-09-19 21:23:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 791 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 59,888 KB
最終ジャッジ日時 2024-09-19 21:23:44
合計ジャッジ時間 1,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 WA -
testcase_02 AC 38 ms
53,632 KB
testcase_03 WA -
testcase_04 AC 43 ms
53,760 KB
testcase_05 AC 40 ms
59,648 KB
testcase_06 AC 41 ms
59,212 KB
testcase_07 WA -
testcase_08 AC 38 ms
53,888 KB
testcase_09 WA -
testcase_10 AC 39 ms
53,248 KB
testcase_11 AC 38 ms
53,632 KB
testcase_12 AC 38 ms
53,912 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(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]
                ans = [0] * nz + [1] * no
                print(len(ans))
                print(*ans)
                exit()
0