結果

問題 No.741 AscNumber(Easy)
ユーザー miwawawamiwawawa
提出日時 2024-07-25 09:27:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 648 ms / 2,000 ms
コード長 931 bytes
コンパイル時間 1,625 ms
コンパイル使用メモリ 166,480 KB
実行使用メモリ 97,280 KB
最終ジャッジ日時 2024-07-25 09:27:54
合計ジャッジ時間 11,733 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 3 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 611 ms
92,800 KB
testcase_36 AC 262 ms
42,240 KB
testcase_37 AC 322 ms
49,280 KB
testcase_38 AC 302 ms
48,640 KB
testcase_39 AC 257 ms
41,472 KB
testcase_40 AC 348 ms
55,296 KB
testcase_41 AC 578 ms
84,992 KB
testcase_42 AC 284 ms
46,592 KB
testcase_43 AC 212 ms
34,688 KB
testcase_44 AC 444 ms
67,328 KB
testcase_45 AC 464 ms
72,320 KB
testcase_46 AC 571 ms
88,576 KB
testcase_47 AC 98 ms
17,792 KB
testcase_48 AC 574 ms
88,320 KB
testcase_49 AC 474 ms
74,496 KB
testcase_50 AC 67 ms
13,056 KB
testcase_51 AC 252 ms
36,224 KB
testcase_52 AC 617 ms
97,280 KB
testcase_53 AC 648 ms
97,152 KB
testcase_54 AC 616 ms
96,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <cmath>
//#include <ranges>
using ll=long long;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define chmin(x,b) x=min(x,b)
using namespace std;
using P=pair<int,int>;
using PD=pair<double,double>;
using PL=pair<ll,ll>;
int mod1=998244353;
int mod2=1000000007;
const ll INF = 1000000000000000000;
const int big = 2147483647;

struct st{
    ll x,y,z;
    st(ll x=0,ll y=0,ll z=0):x(x),y(y),z(z){}
    bool operator>(const st &a)const{
        return x>a.x;
    }
};
ll dp[1000010][12];
int main(){
    ll n,q,x,y,z=0,i,d=0,k=0,nk,sum=0,r=0;
    ll ans=2e9+10,sum2=0,rs=-1e9,cs=0,l=0,w=0,X;
    ll tmp2=0,flag=0,a=0,b=0,c=0,j=0,m=0,p,mon,rt,ct,h,N;
    int M,S,K,low,high,colo=0,T;
    cin>>N;
    dp[0][0]=1;
    rep(i,0,N){
        rep(j,0,10){
            rep(k,j,10){
            (dp[i+1][k]+=dp[i][j])%=mod2;
            }
        }
    }
    rep(j,0,10)(sum+=dp[N][j])%=mod2;
    cout<<sum<<endl;
}
0