結果
問題 | No.2766 Delicious Multiply Spice |
ユーザー | sho_ |
提出日時 | 2024-05-31 21:27:54 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,342 bytes |
コンパイル時間 | 3,187 ms |
コンパイル使用メモリ | 257,352 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-31 21:27:59 |
合計ジャッジ時間 | 4,301 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 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,944 KB |
testcase_08 | AC | 2 ms
6,948 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 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,944 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
6,944 KB |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,940 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 2 ms
6,944 KB |
testcase_38 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ql = queue<ll>; using sl = set<ll>; using vl = vector<ll>; using msl = multiset<ll>; using Graph = vector<vector<ll>>; using P = pair<ll, ll>; template <typename T> inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); } template <typename T> inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); } #define rep1(i, n) for(ll i = 1; i <= ((ll)n); ++i) #define rep(i, n) for(ll i = 0; i < ((ll)n); ++i) #define ALL(a) (a).begin(), (a).end() #define rALL(a) (a).rbegin(), (a).rend() template <typename T> void print(T &d) { for(auto &i : d) cout << i << " "; if(d.size()) cout << endl; } map<ll,string> mp; string f(ll x){ if(mp.count(x))return mp[x]; if(x==1)return mp[x] = ""; if(x%2){ if(f(x/2)!="!")return mp[x] = f(x/2)+"A"; } if(x%3){ if(f(x/3)!="!")return mp[x] = f(x/3)+"B"; } return mp[x] = "!"; } void solve() { ll n;cin>>n; cout<<f(n)<<endl; } int main() { // { // 前処理 MAX=1e6 // rep1(i, MAX) fac[i] = i * fac[i - 1]; // ifac[MAX] = fac[MAX].inv(); // for(ll i = MAX; i >= 1; i--) // ifac[i - 1] = ifac[i] * (i); // } ll t; t = 1; // cin >> t; rep(_, t) solve(); }