結果

問題 No.2766 Delicious Multiply Spice
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-31 22:48:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 729 bytes
コンパイル時間 2,405 ms
コンパイル使用メモリ 218,308 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-31 22:48:27
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

map<long long, bool> memo;
map<long long, string> op;
bool dp(long long n) {
    if (memo.find(n) != memo.end()) return memo[n];
    if (n == 1) {
        memo[n] = true;
        op[n] = "";
        return true;
    }
    if ((n - 1) % 2 == 0 && dp((n - 1) / 2)) {
        memo[n] = true;
        op[n] = "A" + op[(n - 1) / 2];
        return true;
    }
    if (n % 3 == 0 && dp(n / 3)) {
        memo[n] = true;
        op[n] = "B" + op[n / 3];
        return true;
    }
    return false;
}
int main() {
    fast_io();
    long long n;
    cin >> n;
    assert(dp(n));
    cout << op[n] << endl;
}
0