結果

問題 No.688 E869120 and Constructing Array 2
ユーザー hakomori64hakomori64
提出日時 2018-05-25 20:30:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-07 14:08:11
合計ジャッジ時間 1,097 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 24 ms
10,880 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 24 ms
10,752 KB
testcase_12 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys

sum = int(input())
array = []

append_zero = 0
number_one = 0

for number_one in range(2, 31):
    x = number_one * (number_one - 1) / 2
    for append_zero in range(30 - number_one + 1):
        if (2 ** append_zero) * x == sum:
            for i in range(number_one):
                array.append(1)
            for j in range(append_zero):
                array.append(0)

            print(len(array))
            for i in range(len(array)):
                print(array[i], end=" ")
            sys.exit()

0