結果

問題 No.566 だいたい完全二分木
ユーザー アロンアルファアロンアルファ
提出日時 2017-10-03 15:48:47
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 613 ms
コンパイル使用メモリ 59,348 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-27 22:43:14
合計ジャッジ時間 2,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>

void set(int x)
{
	int m = (x+3*x)/2-1;
	int l = m-1,r = m+1;
	
	std::cout << m << ' ';
	if(l > 0) for(int i = 0;i < 3*x && l > 0;i++) std::cout << l-- << ' ';
	for(int max = pow(2,x);r < max;r++) std::cout << r << ' ';
	std::cout << std::endl;
}

int main()
{
	int K;

	std::cin >> K;
	set(K);

	return 0;
}
0