結果

問題 No.741 AscNumber(Easy)
ユーザー syunsukesyunsuke
提出日時 2019-09-11 15:57:20
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 343 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 226,392 KB
最終ジャッジ日時 2024-07-02 16:48:40
合計ジャッジ時間 28,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 39 ms
52,480 KB
testcase_11 AC 43 ms
58,752 KB
testcase_12 AC 43 ms
59,008 KB
testcase_13 AC 44 ms
59,392 KB
testcase_14 AC 44 ms
59,776 KB
testcase_15 AC 44 ms
59,648 KB
testcase_16 AC 44 ms
59,776 KB
testcase_17 AC 45 ms
59,648 KB
testcase_18 AC 45 ms
60,288 KB
testcase_19 AC 44 ms
59,648 KB
testcase_20 AC 49 ms
62,336 KB
testcase_21 AC 47 ms
60,800 KB
testcase_22 AC 50 ms
63,104 KB
testcase_23 AC 50 ms
62,336 KB
testcase_24 AC 46 ms
60,672 KB
testcase_25 AC 47 ms
61,696 KB
testcase_26 AC 50 ms
62,720 KB
testcase_27 AC 50 ms
61,440 KB
testcase_28 AC 47 ms
61,312 KB
testcase_29 AC 49 ms
61,824 KB
testcase_30 AC 50 ms
62,592 KB
testcase_31 AC 49 ms
62,336 KB
testcase_32 AC 46 ms
60,160 KB
testcase_33 AC 50 ms
62,464 KB
testcase_34 AC 51 ms
62,848 KB
testcase_35 AC 1,931 ms
219,392 KB
testcase_36 AC 874 ms
138,624 KB
testcase_37 AC 1,018 ms
149,568 KB
testcase_38 AC 982 ms
148,472 KB
testcase_39 AC 844 ms
136,916 KB
testcase_40 AC 1,141 ms
159,348 KB
testcase_41 AC 1,744 ms
206,456 KB
testcase_42 AC 957 ms
145,280 KB
testcase_43 AC 705 ms
126,080 KB
testcase_44 AC 1,381 ms
178,068 KB
testcase_45 AC 1,491 ms
186,496 KB
testcase_46 AC 1,811 ms
212,352 KB
testcase_47 AC 358 ms
99,200 KB
testcase_48 AC 1,828 ms
212,060 KB
testcase_49 AC 1,535 ms
189,560 KB
testcase_50 AC 261 ms
91,260 KB
testcase_51 AC 740 ms
128,340 KB
testcase_52 AC 1,996 ms
225,976 KB
testcase_53 TLE -
testcase_54 AC 1,991 ms
224,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
mod=10**9+7
dp=[[0 for i in range(10)]for j in range(N)]
for i in range(10):
    dp[0][i]=1
    
for i in range(1,N):
    for j in range(10):
        for k in range(10):
            if j>=k:
                dp[i][j]+=dp[i-1][k]
                dp[i][j]%=mod
ans=0
for i in range(10):
    ans+=dp[-1][i]
print(ans%mod)
#print(dp)
0