結果

問題 No.688 E869120 and Constructing Array 2
ユーザー kusomushikusomushi
提出日時 2018-06-12 15:25:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 2,865 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 84,968 KB
実行使用メモリ 50,552 KB
最終ジャッジ日時 2024-07-07 14:16:40
合計ジャッジ時間 3,528 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,056 KB
testcase_01 AC 49 ms
50,364 KB
testcase_02 AC 51 ms
50,348 KB
testcase_03 AC 49 ms
50,464 KB
testcase_04 AC 51 ms
50,444 KB
testcase_05 AC 52 ms
50,448 KB
testcase_06 AC 54 ms
50,484 KB
testcase_07 AC 53 ms
50,436 KB
testcase_08 AC 49 ms
50,488 KB
testcase_09 AC 52 ms
50,552 KB
testcase_10 AC 50 ms
50,468 KB
testcase_11 AC 51 ms
50,408 KB
testcase_12 AC 49 ms
49,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.util.StringJoiner;
import java.util.StringTokenizer;

public class Main {

    static int K;

    public static void main(String[] args) {
        FastScanner sc = new FastScanner(System.in);
        K = sc.nextInt();

        int[] array = solve();
        System.out.println( array.length );
        
        StringJoiner j = new StringJoiner(" ");
        for (int i : array) j.add("" + i);
        System.out.println( j.toString() );
    }

    private static int[] solve() {
        if( K == 0 ) return new int[]{0};
        if( K == 1 ) return new int[]{1, 1};

        for (int n = 2; n <= 30; n++) {
            for (int o = 2; o <= n; o++) {
                int z = n-o;

                if( calc(z, o) == K ) return mkResult(z, o);
            }
        }
        throw new RuntimeException("wtf");
    }

    static int calc(int z, int o) {
        int oc = o * (o-1) / 2; // comb(o, 2)
        int zc = (int)Math.pow(2, z); // 2 ^ z
        return oc * zc;
    }

    static int[] mkResult(int z, int o) {
        int[] r = new int[z + o];
        for (int i = 0; i < o; i++) {
            r[i] = 1;
        }
        return r;
    }

    static class FastScanner {

        private BufferedReader reader;
        private StringTokenizer tokenizer;

        FastScanner(InputStream in) {
            reader = new BufferedReader(new InputStreamReader(in));
            tokenizer = null;
        }

        String next() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    tokenizer = new StringTokenizer(reader.readLine());
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }
            return tokenizer.nextToken();
        }

        String nextLine() {
            if (tokenizer == null || !tokenizer.hasMoreTokens()) {
                try {
                    return reader.readLine();
                } catch (IOException e) {
                    throw new RuntimeException(e);
                }
            }

            return tokenizer.nextToken("\n");
        }

        long nextLong() {
            return Long.parseLong(next());
        }

        int nextInt() {
            return Integer.parseInt(next());
        }

        double nextDouble() {
            return Double.parseDouble(next());
        }

        int[] nextIntArray(int n) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++)
                a[i] = nextInt();
            return a;
        }

        long[] nextLongArray(int n) {
            long[] a = new long[n];
            for (int i = 0; i < n; i++)
                a[i] = nextLong();
            return a;
        }
    }
}
0