結果

問題 No.1168 Digit Sum Sequence
ユーザー poohbearpoohbear
提出日時 2020-08-14 21:22:30
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 2,936 ms
コンパイル使用メモリ 190,412 KB
最終ジャッジ日時 2025-01-12 23:06:50
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(a,n) for (ll a = 0; a < (n); ++a)
using namespace std;
typedef long long ll;
using ll = long long;
typedef pair<ll,ll> P;
typedef pair<P,ll> PP;
using Graph = vector<vector<ll> >;
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 = 1e18;

//input
ll n;

ll katawa(ll x){
    ll res = 0;
    while(x>0){
        res += x%10;
        x/=10;
    }
    return res;
}
int main(){
    cin >> n;
    rep(i,99){
        n = katawa(n);
    }
    cout << n << endl;

    return 0;
}
0