結果

問題 No.566 だいたい完全二分木
ユーザー agisagis
提出日時 2017-09-10 10:00:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 1,415 ms
コンパイル使用メモリ 163,076 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 02:53:08
合計ジャッジ時間 3,075 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 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<bits/stdc++.h>

using namespace std;
using ll = long long;
using ld = long double;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define reps(i,s,n) for(int i=(int)(s);i<(int)(n);i++)
const ll mod = 1e9 + 7;
const int INF = 1e9;

int main() {
	int K;
	cin >> K;
	K = pow(2, K);
	if (K == 2)cout << 1 << " " << 3 << " " << 2;
	else {
		reps(i, 1, K / 3 + 1) {
			if (i != 1)cout << " ";
			int k = i * 3;
			cout << k - 1 << " " << k - 2 << " " << k;
		}
		if (K % 3) {
			rep(i, (K-1) % 3) {
				cout << " " << K - i - 1;
			}
		}
	}
	cout << endl;

	return 0;
}
0