結果

問題 No.2766 Delicious Multiply Spice
ユーザー ripityripity
提出日時 2024-05-15 17:38:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 346 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 205,140 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-05-31 20:51:07
合計ジャッジ時間 13,894 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 8 ms
6,944 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 278 ms
6,940 KB
testcase_22 AC 135 ms
6,940 KB
testcase_23 AC 109 ms
6,940 KB
testcase_24 AC 150 ms
6,940 KB
testcase_25 AC 946 ms
6,944 KB
testcase_26 AC 1,244 ms
6,940 KB
testcase_27 AC 1,244 ms
6,944 KB
testcase_28 AC 1,066 ms
6,944 KB
testcase_29 AC 1,319 ms
6,940 KB
testcase_30 AC 1,031 ms
6,940 KB
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

long long N;
vector<string> ans_all;

void dfs(long long x, string S) {
  if(x == N) {
    ans_all.push_back(S);
  }else if(x < N) {
    dfs(2 * x + 1, S + 'A');
    dfs(3 * x + 1, S + 'B');
  }
}

int main() {
  cin >> N;
  dfs(1, "");
  assert(ans_all.size() == 1);
  cout << ans_all[0] << endl;
}
0