結果

問題 No.1168 Digit Sum Sequence
ユーザー 👑 CleyLCleyL
提出日時 2021-10-09 10:55:50
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 67,140 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-26 12:54:20
合計ジャッジ時間 1,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    string s;cin>>s;
    for(int i = 0; 3 > i; i++){
        int nw = 0;
        for(int j = 0; s.size() > j; j++){
            nw += s[j]-'0';
        }
        s = to_string(nw);
    }
    cout << s << endl;
}
0