結果

問題 No.2766 Delicious Multiply Spice
ユーザー karinohitokarinohito
提出日時 2024-09-08 19:33:43
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 212,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-08 19:33:47
合計ジャッジ時間 3,896 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 8
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
map<ll,string> MP;
string D(ll N){
    if(N==1)return "";
    else if(MP.count(N))return MP[N];
    string res="?";
    if(N%2==1){
        string T=D(N/2);
        if(T!="?"){
            MP[N]=T+"A";
            return MP[N];
        }
    }
    if(N%3==1){
        string T=D(N/3);
        if(T!="?"){
            MP[N]=T+"B";
            return MP[N];
        }
    }
    MP[N]=res;
    return res;
}

int main() {
    ll N;
    cin>>N;
    cout<<D(N)<<endl;
}
0