結果

問題 No.741 AscNumber(Easy)
ユーザー fgwiebfaoishfgwiebfaoish
提出日時 2020-04-08 01:44:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,939 ms / 2,000 ms
コード長 3,800 bytes
コンパイル時間 6,941 ms
コンパイル使用メモリ 110,616 KB
実行使用メモリ 342,244 KB
最終ジャッジ日時 2023-09-22 21:50:03
合計ジャッジ時間 35,336 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
20,724 KB
testcase_01 AC 59 ms
20,744 KB
testcase_02 AC 58 ms
20,804 KB
testcase_03 AC 59 ms
22,868 KB
testcase_04 AC 58 ms
20,896 KB
testcase_05 AC 58 ms
20,908 KB
testcase_06 AC 59 ms
20,848 KB
testcase_07 AC 58 ms
18,824 KB
testcase_08 AC 58 ms
22,716 KB
testcase_09 AC 59 ms
20,744 KB
testcase_10 AC 58 ms
20,856 KB
testcase_11 AC 59 ms
18,696 KB
testcase_12 AC 58 ms
20,704 KB
testcase_13 AC 59 ms
22,672 KB
testcase_14 AC 58 ms
20,684 KB
testcase_15 AC 58 ms
22,732 KB
testcase_16 AC 59 ms
22,652 KB
testcase_17 AC 58 ms
20,764 KB
testcase_18 AC 58 ms
20,812 KB
testcase_19 AC 58 ms
20,676 KB
testcase_20 AC 59 ms
22,720 KB
testcase_21 AC 58 ms
20,648 KB
testcase_22 AC 59 ms
20,676 KB
testcase_23 AC 60 ms
20,844 KB
testcase_24 AC 60 ms
20,976 KB
testcase_25 AC 58 ms
20,740 KB
testcase_26 AC 59 ms
22,728 KB
testcase_27 AC 58 ms
22,736 KB
testcase_28 AC 59 ms
22,792 KB
testcase_29 AC 59 ms
20,752 KB
testcase_30 AC 59 ms
18,836 KB
testcase_31 AC 59 ms
22,848 KB
testcase_32 AC 58 ms
22,804 KB
testcase_33 AC 59 ms
20,848 KB
testcase_34 AC 59 ms
20,748 KB
testcase_35 AC 1,875 ms
329,668 KB
testcase_36 AC 805 ms
154,052 KB
testcase_37 AC 967 ms
177,296 KB
testcase_38 AC 958 ms
177,268 KB
testcase_39 AC 794 ms
153,392 KB
testcase_40 AC 1,084 ms
197,680 KB
testcase_41 AC 1,655 ms
296,720 KB
testcase_42 AC 875 ms
167,896 KB
testcase_43 AC 666 ms
127,156 KB
testcase_44 AC 1,337 ms
240,600 KB
testcase_45 AC 1,415 ms
253,324 KB
testcase_46 AC 1,791 ms
316,708 KB
testcase_47 AC 313 ms
71,092 KB
testcase_48 AC 1,792 ms
316,716 KB
testcase_49 AC 1,461 ms
264,948 KB
testcase_50 AC 232 ms
56,364 KB
testcase_51 AC 697 ms
134,056 KB
testcase_52 AC 1,938 ms
340,428 KB
testcase_53 AC 1,939 ms
342,244 KB
testcase_54 AC 1,916 ms
337,476 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.Collections.Generic;
using System.Collections;
using System.Collections.Specialized;
using System.Linq;
using System.Text;
using System.IO;
using System.Reflection;
using static System.Math;
using System.Numerics;
static class Program{
	const int mod=(int)1e9+7;
	static void Main(){
		Sc sc=new Sc();
		var m=sc.I;
		string s="1"+new string('0',m);
		int n=s.Length;
		Mint ans=0;
		var dp=new Mint[n+1][][];
		dp[0]=new Mint[2][];
		for(int j=0;j<2;j++){dp[0][j]=new Mint[10];}
		dp[0][0][0]=1;
		for(int i=0;i<n;i++){
			dp[i+1]=new Mint[2][];
			dp[i+1][0]=new Mint[10];
			dp[i+1][1]=new Mint[10];
			for(int j=0;j<2;j++){
				for(int k=0;k<10;k++){
					int lm=j==0?s[i]-'0':9;
					for(int d=k;d<=lm;d++){dp[i+1][(j==1||d<lm)?1:0][d]+=dp[i][j][k];}
				}
			}
		}
		for(int k = 0;k<10;k++) {ans+=dp[n][1][k];}
		Console.WriteLine("{0}",ans);
	}
}
public struct Mint{
	const int mod=(int)1e9+7;
	private long d;
	public Mint(long d){this.d=d;}
	public static implicit operator Mint(long d){return new Mint(d%mod);}
	public static explicit operator long(Mint d){return d.d;}
	public override string ToString(){return d.ToString();}
	public static Mint operator+(Mint a,long b){a.d=(a.d+b)%mod;return a;}
	public static Mint operator+(Mint a,Mint b){a.d=(a.d+b.d)%mod;return a;}
	public static Mint operator-(Mint a,long b){a.d=(mod+a.d-b)%mod;return a;}
	public static Mint operator-(Mint a,Mint b){a.d=(mod+a.d-b.d)%mod;return a;}
	public static Mint operator*(Mint a,long b){a.d=(a.d*b)%mod;return a;}
	public static Mint operator*(Mint a,Mint b){a.d=(a.d*b.d)%mod;return a;}
	public static Mint operator/(Mint a,long b){a.d=(a.d*Mi(b))%mod;return a;}
	public static Mint operator/(Mint a,Mint b){a.d=(a.d*Mi(b.d))%mod;return a;}
	private static long Mi(long a){
		a=(a+mod)%mod;
		long b=mod,u=1,v=0;
		while(b>0){
			long t=a/b;
			a-=t*b;a^=b;b^=a;a^=b;
			u-=t*v;u^=v;v^=u;u^=v;
		}
		u%=mod;
		if(u<0){u+=mod;}
		return u%mod;
	}
}
public class Sc{
	public int I{get{return int.Parse(Console.ReadLine());}}
	public long L{get{return long.Parse(Console.ReadLine());}}
	public double D{get{return double.Parse(Console.ReadLine());}}
	public string S{get{return Console.ReadLine();}}
	public int[] Ia{get{return Array.ConvertAll(Console.ReadLine().Split(),int.Parse);}}
	public long[] La{get{return Array.ConvertAll(Console.ReadLine().Split(),long.Parse);}}
	public double[] Da{get{return Array.ConvertAll(Console.ReadLine().Split(),double.Parse);}}
	public string[] Sa{get{return Console.ReadLine().Split();}}
	public object[] Oa{get{return Console.ReadLine().Split();}}
	public int[] Ia2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),int.Parse);}}
	public int[] Ia3(int a){return Array.ConvertAll((a.ToString()+" "+Console.ReadLine()).Split(),int.Parse);}
	public int[] Ia3(bool a,int b,bool c,int d){return Array.ConvertAll(((a?b.ToString()+" ":"")+Console.ReadLine()+(c?" "+d.ToString():"")).Split(),int.Parse);}
	public long[] La2{get{return Array.ConvertAll(("0 "+Console.ReadLine()+" 0").Split(),long.Parse);}}
	public long[] La3(int a){return Array.ConvertAll((a.ToString()+" "+Console.ReadLine()).Split(),long.Parse);}
	public long[] La3(bool a,int b,bool c,int d){return Array.ConvertAll(((a?b.ToString()+" ":"")+Console.ReadLine()+(c?" "+d.ToString():"")).Split(),long.Parse);}
	public T[] Arr<T>(int n,Func<T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f();}return a;}
	public T[] Arr<T>(int n,Func<int,T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i);}return a;}
	public T[] Arr<T>(int n,Func<string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(Console.ReadLine().Split());}return a;}
	public T[] Arr<T>(int n,Func<int,string[],T> f){var a=new T[n];for(int i=0;i<n;i++){a[i]=f(i,Console.ReadLine().Split());}return a;}
}
0