結果

問題 No.434 占い
ユーザー mai
提出日時 2016-10-14 23:09:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,581 bytes
コンパイル時間 1,521 ms
コンパイル使用メモリ 167,864 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-11-22 09:56:26
合計ジャッジ時間 2,936 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 5 WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
typedef unsigned int uint;
typedef long long int ll;
typedef unsigned long long int ull;

#define debugv(v) printf("L%d %s => ",__LINE__,#v);for(auto e:v){cout<<e<<" ";}cout<<endl;
#define debugm(m) printf("L%d %s is..\n",__LINE__,#m);for(auto v:m){for(auto e:v){cout<<e<<" ";}cout<<endl;}
#define debuga(m,w) printf("L%d %s is => ",__LINE__,#m);for(int x=0;x<(w);x++){cout<<(m)[x]<<" ";}cout<<endl;
#define debugaa(m,w,h) printf("L%d %s is..\n",__LINE__,#m);for(int y=0;y<(h);y++){for(int x=0;x<(w);x++){cout<<(m)[x][y]<<" ";}cout<<endl;}
#define ALL(v) (v).begin(),(v).end()
#define BIGINT 0x7FFFFFFF
#define E107 1000000007
void printbit(int u){if(u==0)cout<<0;else{int s=0,k=0;for(;0<u;u>>=1,k++)s=(s<<1)|(u&1);for(;0<k--;s>>=1)cout<<(s&1);}}

#define TIME chrono::system_clock::now()
#define MILLISEC(t) (chrono::duration_cast<chrono::milliseconds>(t).count())

template<typename T1,typename T2>
ostream& operator <<(ostream &o,const pair<T1,T2> p){o<<"("<<p.first<<":"<<p.second<<")";return o;}


int memo[1000000];
int cnt=0;
ll solve(ll k){
    if (k<10) return k;
    if (k<1000000 && memo[k]) return memo[k];
    ll lk=k;
    ll r=k/10;
    ll v=0;
    int t;
    for (;10<=k;k/=10,r/=10){
        t=(r%10)+(k%10);
        v = v*10 + (10<=t ? t%10+1 : t);
    }
    ll s = solve(v);
    if (lk<1000000) memo[lk]=s;
    return s;
}


int m,n;

int main(){
    int testcases;
    ll k;
    cin >> testcases;
    
    for (;0<testcases--;){
        scanf("%lld",&k);
        cout << solve(k) << endl;
    }
    

    return 0;
}
0