結果

問題 No.741 AscNumber(Easy)
ユーザー suikameron1suikameron1
提出日時 2018-11-10 11:32:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 853 ms
コンパイル使用メモリ 103,680 KB
実行使用メモリ 94,976 KB
最終ジャッジ日時 2024-11-23 17:28:03
合計ジャッジ時間 6,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,536 KB
testcase_01 AC 23 ms
17,408 KB
testcase_02 AC 23 ms
17,536 KB
testcase_03 AC 22 ms
17,408 KB
testcase_04 AC 22 ms
17,408 KB
testcase_05 AC 22 ms
17,280 KB
testcase_06 AC 23 ms
17,664 KB
testcase_07 AC 23 ms
17,664 KB
testcase_08 AC 23 ms
17,920 KB
testcase_09 AC 23 ms
17,664 KB
testcase_10 AC 22 ms
17,664 KB
testcase_11 AC 23 ms
17,536 KB
testcase_12 AC 23 ms
17,536 KB
testcase_13 AC 22 ms
17,536 KB
testcase_14 AC 22 ms
17,536 KB
testcase_15 AC 22 ms
17,408 KB
testcase_16 AC 22 ms
17,536 KB
testcase_17 AC 23 ms
17,792 KB
testcase_18 AC 25 ms
17,536 KB
testcase_19 AC 24 ms
17,536 KB
testcase_20 AC 23 ms
17,408 KB
testcase_21 AC 23 ms
17,664 KB
testcase_22 AC 23 ms
17,536 KB
testcase_23 AC 23 ms
17,664 KB
testcase_24 AC 22 ms
17,792 KB
testcase_25 AC 24 ms
17,280 KB
testcase_26 AC 25 ms
17,408 KB
testcase_27 AC 23 ms
17,664 KB
testcase_28 AC 22 ms
17,536 KB
testcase_29 AC 22 ms
17,536 KB
testcase_30 AC 22 ms
17,536 KB
testcase_31 AC 22 ms
17,664 KB
testcase_32 AC 23 ms
17,792 KB
testcase_33 AC 23 ms
17,536 KB
testcase_34 AC 22 ms
17,792 KB
testcase_35 AC 263 ms
91,264 KB
testcase_36 AC 130 ms
49,280 KB
testcase_37 AC 149 ms
54,912 KB
testcase_38 AC 146 ms
54,144 KB
testcase_39 AC 130 ms
48,512 KB
testcase_40 AC 165 ms
60,160 KB
testcase_41 AC 246 ms
84,864 KB
testcase_42 AC 142 ms
52,736 KB
testcase_43 AC 109 ms
42,752 KB
testcase_44 AC 195 ms
69,888 KB
testcase_45 AC 207 ms
73,984 KB
testcase_46 AC 251 ms
87,680 KB
testcase_47 AC 65 ms
28,544 KB
testcase_48 AC 260 ms
87,552 KB
testcase_49 AC 222 ms
76,032 KB
testcase_50 AC 51 ms
24,704 KB
testcase_51 AC 116 ms
44,032 KB
testcase_52 AC 272 ms
94,848 KB
testcase_53 AC 274 ms
94,976 KB
testcase_54 AC 272 ms
94,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;//リストの使用
using System.Collections.Generic;
using System.Text;//テキストの高速出力に必要
class Program
{
	static void Main()
	{
		long n = long.Parse(Console.ReadLine());
		long[,] dp = new long[n+1,10];//dp[左からn桁見たとき、最後に見た位以下の値]=何通りか
    long mod = 1000000007;

    for(int i = 0; i <= 9; i++) dp[1,i] = i+1;

    for(int i = 2; i <= n; i++)
    {
      for(int j = 0; j <= 9; j++)
      {
        if(j == 0) dp[i,j] = dp[i-1,j];
        else dp[i,j] = dp[i-1,j] + dp[i,j-1];
        dp[i,j] %= mod;
      }
    }
    
		Console.WriteLine(dp[n,9]);
	}
}
0