結果

問題 No.2766 Delicious Multiply Spice
ユーザー ripityripity
提出日時 2024-05-27 16:23:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 474 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 206,588 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-05-31 20:51:39
合計ジャッジ時間 13,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,756 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 8 ms
6,944 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 289 ms
6,944 KB
testcase_22 AC 134 ms
6,940 KB
testcase_23 AC 119 ms
6,940 KB
testcase_24 AC 156 ms
6,940 KB
testcase_25 AC 957 ms
6,940 KB
testcase_26 AC 1,335 ms
6,940 KB
testcase_27 AC 1,304 ms
6,940 KB
testcase_28 AC 1,133 ms
6,940 KB
testcase_29 AC 1,365 ms
6,944 KB
testcase_30 AC 1,040 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;

mt19937 ra(time(NULL));

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

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