結果

問題 No.741 AscNumber(Easy)
ユーザー OtaWatanabeOtaWatanabe
提出日時 2024-04-27 13:34:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 1,465 ms
コンパイル使用メモリ 166,996 KB
実行使用メモリ 159,808 KB
最終ジャッジ日時 2024-11-15 15:44:40
合計ジャッジ時間 4,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 3 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 3 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 83 ms
153,292 KB
testcase_36 AC 36 ms
70,296 KB
testcase_37 AC 42 ms
81,604 KB
testcase_38 AC 41 ms
80,236 KB
testcase_39 AC 35 ms
67,072 KB
testcase_40 AC 46 ms
90,112 KB
testcase_41 AC 71 ms
139,392 KB
testcase_42 AC 39 ms
75,520 KB
testcase_43 AC 29 ms
55,424 KB
testcase_44 AC 55 ms
109,824 KB
testcase_45 AC 59 ms
118,272 KB
testcase_46 AC 73 ms
145,024 KB
testcase_47 AC 16 ms
27,520 KB
testcase_48 AC 74 ms
145,152 KB
testcase_49 AC 63 ms
121,856 KB
testcase_50 AC 11 ms
19,584 KB
testcase_51 AC 32 ms
58,112 KB
testcase_52 AC 82 ms
159,764 KB
testcase_53 AC 81 ms
159,808 KB
testcase_54 AC 81 ms
158,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int n;
  long long dp[1000000][10], cd[1000000][10];
  cin >> n;
  for (int i = 0; i < n; ++i) {
    for (int j = 0; j < 10; ++j) {
      if (i == 0) dp[i][j] = 1;
      else dp[i][j] = cd[i-1][j];
      if (j == 0) cd[i][j] = dp[i][j];
      else cd[i][j] = cd[i][j-1] + dp[i][j];
      cd[i][j] %= 1000000007;
      dp[i][j] %= 1000000007;
    }
  }
  cout << cd[n-1][9] << '\n';
}
0