結果

問題 No.688 E869120 and Constructing Array 2
ユーザー 👑 KazunKazun
提出日時 2020-05-31 18:25:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 32 ms / 1,000 ms
コード長 252 bytes
コンパイル時間 810 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-11-17 22:59:23
合計ジャッジ時間 1,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,556 KB
testcase_01 AC 31 ms
52,608 KB
testcase_02 AC 31 ms
53,356 KB
testcase_03 AC 30 ms
53,428 KB
testcase_04 AC 31 ms
54,096 KB
testcase_05 AC 30 ms
52,312 KB
testcase_06 AC 30 ms
52,376 KB
testcase_07 AC 30 ms
53,388 KB
testcase_08 AC 31 ms
53,124 KB
testcase_09 AC 31 ms
52,580 KB
testcase_10 AC 31 ms
52,856 KB
testcase_11 AC 30 ms
54,264 KB
testcase_12 AC 32 ms
53,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K=int(input())

N=-1
A=-1
for n in range(1,31):
    for a in range(n+1):
        if 2**(a-1)*(n-a)*(n-a-1)==K:
            N,A=n,a

S=""
for i in range(N):
    if i<A:
        S+="0 "
    else:
        S+="1 "
        
print("{}\n{}".format(N,S[:-1]))
0