結果
問題 | No.1168 Digit Sum Sequence |
ユーザー | eSeF |
提出日時 | 2020-08-14 21:21:08 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 337 bytes |
コンパイル時間 | 1,958 ms |
コンパイル使用メモリ | 190,768 KB |
最終ジャッジ日時 | 2025-01-12 23:02:48 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 29 |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;i++) using namespace std; typedef long long ll; const int MOD = 998244353; const ll INF = 4611686018427387903LL; int main() { int N; cin >> N; rep(i,99){ int nx=0; while (N>0) { nx+=N%10; N/=10; } N=nx; } cout << N << endl; return 0; }