結果

問題 No.688 E869120 and Constructing Array 2
ユーザー ssmkzkssmkzk
提出日時 2019-07-04 03:28:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 410 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 113,412 KB
最終ジャッジ日時 2024-09-17 15:53:42
合計ジャッジ時間 4,986 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 873 ms
57,928 KB
testcase_02 AC 877 ms
57,924 KB
testcase_03 AC 871 ms
57,672 KB
testcase_04 AC 859 ms
57,576 KB
testcase_05 AC 855 ms
57,544 KB
testcase_06 AC 878 ms
58,176 KB
testcase_07 AC 910 ms
57,884 KB
testcase_08 AC 894 ms
58,176 KB
testcase_09 WA -
testcase_10 AC 872 ms
58,180 KB
testcase_11 AC 851 ms
57,796 KB
testcase_12 AC 868 ms
113,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import comb
import sys
K = int(input())

if K == 0:
    print(0)
    sys.exit()

for i in range(2,31):
    two_ch = comb(i,2,exact=True)
    for j in range(31-i):
        ans = 0
        for k in range(j+1):
            one_ch = comb(j,k,exact=True)
            ans += two_ch * one_ch
        if ans == K:
            print(i + j)
            print("1 "*i + "0 "* j )
            sys.exit()
0