結果

問題 No.1168 Digit Sum Sequence
ユーザー allegrogikenallegrogiken
提出日時 2020-08-14 21:24:39
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 111,976 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 08:02:53
合計ジャッジ時間 1,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

void main() {
  problem();
}

void problem() {
  auto A = scan!long;

  long solve() {
    long a = A;
    foreach(i; 0..100) {
      long b;
      while(a > 0) {
        b += a % 10;
        a /= 10;
      }
      a = b;
    }
    return a;
  }

  solve().writeln;
}

// ----------------------------------------------

import std.stdio, std.conv, std.array, std.string, std.algorithm, std.container, std.range, core.stdc.stdlib, std.math, std.typecons, std.numeric;
T[][] combinations(T)(T[] s, in int m) {   if (!m) return [[]];   if (s.empty) return [];   return s[1 .. $].combinations(m - 1).map!(x => s[0] ~ x).array ~ s[1 .. $].combinations(m); }
string scan(){ static string[] ss; while(!ss.length) ss = readln.chomp.split; string res = ss[0]; ss.popFront; return res; }
T scan(T)(){ return scan.to!T; }
T[] scan(T)(int n){ return n.iota.map!(i => scan!T()).array; }
void deb(T ...)(T t){ debug writeln(t); }
alias Point = Tuple!(long, "x", long, "y");

// -----------------------------------------------
0