結果

問題 No.741 AscNumber(Easy)
ユーザー ikdikd
提出日時 2018-10-05 23:15:36
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 806 ms / 2,000 ms
コード長 931 bytes
コンパイル時間 954 ms
コンパイル使用メモリ 99,236 KB
実行使用メモリ 222,592 KB
最終ジャッジ日時 2024-06-13 01:50:49
合計ジャッジ時間 12,860 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 766 ms
212,352 KB
testcase_36 AC 336 ms
93,952 KB
testcase_37 AC 393 ms
110,080 KB
testcase_38 AC 389 ms
108,544 KB
testcase_39 AC 330 ms
92,160 KB
testcase_40 AC 442 ms
124,416 KB
testcase_41 AC 696 ms
194,048 KB
testcase_42 AC 376 ms
103,808 KB
testcase_43 AC 265 ms
75,392 KB
testcase_44 AC 545 ms
152,448 KB
testcase_45 AC 586 ms
164,224 KB
testcase_46 AC 722 ms
202,112 KB
testcase_47 AC 119 ms
35,840 KB
testcase_48 AC 728 ms
202,112 KB
testcase_49 AC 608 ms
169,344 KB
testcase_50 AC 82 ms
24,832 KB
testcase_51 AC 277 ms
79,232 KB
testcase_52 AC 806 ms
222,592 KB
testcase_53 AC 792 ms
222,592 KB
testcase_54 AC 788 ms
220,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main() {
  import std.stdio, std.string, std.conv, std.algorithm;

  int n;
  rd(n);
  const int mod = 10 ^^ 9 + 7;
  auto memo = new int[][](n + 1, 10);
  afill(memo, -1);
  int f(int i, int prev) {
    if (i == n) {
      return 1;
    } else {
      if (memo[i][prev] >= 0) {
        return memo[i][prev];
      }
      int ret = 0;
      for (int digit = prev; digit <= 9; digit++) {
        (ret += f(i + 1, digit)) %= mod;
      }
      return memo[i][prev] = ret;
    }
  }

  writeln(f(0, 0));
}

void rd(T...)(ref T x) {
  import std.stdio : readln;
  import std.string : split;
  import std.conv : to;

  auto l = readln.split;
  assert(l.length == x.length);
  foreach (i, ref e; x)
    e = l[i].to!(typeof(e));
}

void afill(Range, Type)(Range r, Type value) {
  static if (is(typeof(r) == Type[])) {
    foreach (ref elem; r)
      elem = value;
  } else {
    foreach (ref arr; r)
      afill(arr, value);
  }
}
0