結果

問題 No.688 E869120 and Constructing Array 2
ユーザー MineMine
提出日時 2020-09-16 13:34:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 273 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-22 03:09:45
合計ジャッジ時間 1,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

k = int(input())
if k == 0:
    print(0)
    print()
    exit()

zero = 0
one = 0
for s in range(1, 31):
    for zero in range(s+1):
        one = s-zero
        if k == 2**(zero-1)*one*(one-1):
            print(s)
            print(*[0]*zero + [1]*one)
            exit()
0