結果

問題 No.688 E869120 and Constructing Array 2
ユーザー dangodango
提出日時 2023-06-13 21:48:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 197 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 53,824 KB
最終ジャッジ日時 2024-06-22 08:11:55
合計ジャッジ時間 1,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,228 KB
testcase_01 AC 39 ms
53,156 KB
testcase_02 AC 36 ms
52,268 KB
testcase_03 AC 36 ms
52,756 KB
testcase_04 AC 37 ms
53,288 KB
testcase_05 AC 36 ms
53,016 KB
testcase_06 AC 36 ms
52,968 KB
testcase_07 AC 38 ms
53,576 KB
testcase_08 AC 37 ms
53,824 KB
testcase_09 AC 36 ms
52,216 KB
testcase_10 AC 37 ms
52,736 KB
testcase_11 AC 38 ms
52,736 KB
testcase_12 AC 36 ms
51,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
for i in range(1, 31):
    for j in range(31 - i):
        if K == i * (i - 1) // 2 *pow(2, j):
            print(i + j) 
            print(*([1] * i +[0] * j))
            exit(0)
0