結果

問題 No.688 E869120 and Constructing Array 2
ユーザー GrenacheGrenache
提出日時 2018-05-18 22:49:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,047 bytes
コンパイル時間 3,068 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 53,884 KB
最終ジャッジ日時 2024-07-07 13:31:48
合計ジャッジ時間 5,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,420 KB
testcase_01 AC 118 ms
41,680 KB
testcase_02 AC 105 ms
41,756 KB
testcase_03 AC 114 ms
41,432 KB
testcase_04 AC 113 ms
41,612 KB
testcase_05 AC 115 ms
41,312 KB
testcase_06 AC 116 ms
41,916 KB
testcase_07 AC 122 ms
41,736 KB
testcase_08 AC 109 ms
41,500 KB
testcase_09 WA -
testcase_10 AC 117 ms
41,288 KB
testcase_11 AC 116 ms
41,384 KB
testcase_12 AC 105 ms
41,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder688 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int k = sc.nextInt();

		for (int i = 0; i <= 30; i++) {
			for (int j = 0; i + j <= 30; j++) {
				long tmp = i * (i - 1) / 2;
				for (int l = 0; l < j; l++) {
					tmp *= 2;
				}

				if (tmp == k) {
					pr.println(i + j);
					for (int jj = 0; jj < i + j; jj++) {
						if (jj > 0) {
							pr.print(' ');
						}
						if (jj < i) {
							pr.print(1);
						} else {
							pr.print(0);
						}
					}
					pr.println();

					return;
				}
			}
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0