結果

問題 No.688 E869120 and Constructing Array 2
ユーザー O2MT
提出日時 2020-12-15 20:26:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 76,680 KB
最終ジャッジ日時 2024-09-20 02:07:03
合計ジャッジ時間 1,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
def combinations_count(n, r):
    return math.factorial(n) // (math.factorial(n - r) * math.factorial(r))

K = int(input())

for i in range(31):
    for j in range(2,31):
        if (2**i)*combinations_count(j,2) == K:
            print(i+j)
            print(*([0]*i+[1]*j))
            exit()
0