結果

問題 No.1114 足し算盆に返らず
ユーザー kyoprounokyoprouno
提出日時 2020-07-17 22:07:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,129 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 181,924 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 08:56:14
合計ジャッジ時間 16,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#define ll long long
#define rep(i,n) for(ll i=0;i<(n);i++)
#define pll pair<ll,ll>
#define pq priority_queue
#define pb push_back
#define eb emplace_back
#define fi first
#define se second
#define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define lb(c,x) distance(c.begin(),lower_bound(all(c),x))
#define ub(c,x) distance(c.begin(),upper_bound(all(c),x))

using namespace std;

template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}

const ll INF=1e9+1;

int main(){
    ll n;
    cin >> n;
    ll v=1;
    vector<ll> a(15),ans;
    rep(i,15){
        a[i]=v;
        v*=3;
    }
    for(ll i=1;i<(1<<15);i++){
        ll val=0;
        rep(j,15){
            if((i>>j)%2==1){
                val+=a[j];
            }
        }
        if(val>n || val==0) continue;
        ans.push_back(val);
    }
    sort(ans.begin(),ans.end());
    ll m=ans.size();
    rep(i,m){
        if(i) cout << " ";
        cout << ans[i];
    }
    cout << endl;
    return 0;
}
0