結果

問題 No.688 E869120 and Constructing Array 2
ユーザー Mcpu3Mcpu3
提出日時 2018-09-30 18:16:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 580 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 77,728 KB
実行使用メモリ 54,208 KB
最終ジャッジ日時 2024-10-12 09:15:36
合計ジャッジ時間 4,635 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,032 KB
testcase_01 AC 135 ms
54,076 KB
testcase_02 AC 136 ms
53,956 KB
testcase_03 AC 134 ms
54,008 KB
testcase_04 AC 133 ms
53,832 KB
testcase_05 AC 137 ms
53,900 KB
testcase_06 AC 135 ms
54,044 KB
testcase_07 AC 136 ms
54,088 KB
testcase_08 AC 133 ms
54,112 KB
testcase_09 AC 133 ms
53,924 KB
testcase_10 AC 131 ms
53,976 KB
testcase_11 AC 132 ms
54,088 KB
testcase_12 AC 132 ms
54,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int K = sc.nextInt(), i, j = 0;
        sc.close();
        for (i = 1; i <= 30; ++i) {
            for (j = 0; j <= 30 - i; ++j) {
                if ((i - 1) * i / 2 * (int)Math.pow(2, j) == K) break;
            }
            if (j != 31 - i) break;
        }
        System.out.println(i + j);
        for (int k = 0; k < i; ++k) System.out.print("1 ");
        for (int l = 0; l < j; ++l) System.out.print("0 ");
    }
}
0