結果

問題 No.2766 Delicious Multiply Spice
ユーザー hatsuka_iwahatsuka_iwa
提出日時 2024-06-04 04:05:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 335 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 201,716 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-04 04:05:56
合計ジャッジ時間 13,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 6 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 238 ms
5,376 KB
testcase_22 AC 117 ms
5,376 KB
testcase_23 AC 97 ms
5,376 KB
testcase_24 AC 128 ms
5,376 KB
testcase_25 AC 852 ms
5,376 KB
testcase_26 AC 1,091 ms
5,376 KB
testcase_27 AC 1,092 ms
5,376 KB
testcase_28 AC 916 ms
5,376 KB
testcase_29 AC 1,195 ms
5,376 KB
testcase_30 AC 920 ms
5,376 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;

int main() {
  long long N; cin >> N;
  string Ans;
  auto f = [&](auto f, long long X, string S) -> void {
    if (X == N) {
      Ans = S;
      return;
    }
    if (X > N) return;
    f(f, X * 2 + 1, S + 'A');
    f(f, X * 3 + 1, S + 'B');
  };
  f(f, 1, "");
  cout << Ans << endl;
}
0