結果

問題 No.688 E869120 and Constructing Array 2
ユーザー flippergoflippergo
提出日時 2024-10-27 22:31:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 1,000 ms
コード長 698 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 61,328 KB
最終ジャッジ日時 2024-10-27 22:31:47
合計ジャッジ時間 2,050 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,988 KB
testcase_01 AC 42 ms
59,464 KB
testcase_02 AC 42 ms
60,064 KB
testcase_03 AC 42 ms
60,260 KB
testcase_04 AC 40 ms
59,180 KB
testcase_05 AC 43 ms
61,328 KB
testcase_06 AC 44 ms
60,220 KB
testcase_07 AC 43 ms
59,600 KB
testcase_08 AC 41 ms
58,356 KB
testcase_09 AC 37 ms
52,752 KB
testcase_10 AC 38 ms
52,868 KB
testcase_11 AC 38 ms
53,564 KB
testcase_12 AC 39 ms
53,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

dp = [[0 for _ in range(30+1)] for _ in range(30+1)]
for n in range(30+1):
    dp[n][0] = 1
for n in range(1,30+1):
    for k in range(1,n+1):
        dp[n][k] = dp[n-1][k-1]+dp[n-1][k]
K = int(input())
if K==0:
    print(1)
    print(1)
elif K==1:
    print(2)
    print(1,1)
else:
    ans = 0
    for N in range(2,30+1):
        for N1 in range(2,N+1):
            cnt = 0
            for k in range(2,N-N1+3):
                cnt += dp[N1][2]*dp[N-N1][k-2]
            if cnt==K:
                ans = (N,N1)
                break
            if ans!=0:break
        if ans!=0:break
    n = ans[0]
    n1 = ans[1]
    b = [0]*n
    for i in range(n1):
        b[i] = 1
    print(n)
    print(*b)
0