結果
問題 | No.566 だいたい完全二分木 |
ユーザー | agis |
提出日時 | 2017-09-10 10:00:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 570 bytes |
コンパイル時間 | 1,692 ms |
コンパイル使用メモリ | 166,548 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 12:31:09 |
合計ジャッジ時間 | 3,607 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 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 | - |
ソースコード
#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; }