結果

問題 No.741 AscNumber(Easy)
ユーザー lllllll88938494lllllll88938494
提出日時 2022-10-07 21:54:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 242 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 792,140 KB
最終ジャッジ日時 2024-06-12 07:10:07
合計ジャッジ時間 36,083 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,748 KB
testcase_01 AC 36 ms
52,668 KB
testcase_02 AC 35 ms
53,544 KB
testcase_03 AC 32 ms
52,956 KB
testcase_04 AC 33 ms
53,196 KB
testcase_05 AC 32 ms
52,204 KB
testcase_06 AC 33 ms
53,420 KB
testcase_07 AC 32 ms
52,884 KB
testcase_08 AC 31 ms
53,356 KB
testcase_09 AC 34 ms
52,764 KB
testcase_10 AC 34 ms
52,012 KB
testcase_11 AC 33 ms
53,408 KB
testcase_12 AC 35 ms
53,380 KB
testcase_13 AC 34 ms
52,672 KB
testcase_14 AC 34 ms
52,800 KB
testcase_15 AC 35 ms
52,924 KB
testcase_16 AC 34 ms
52,540 KB
testcase_17 AC 33 ms
52,900 KB
testcase_18 AC 34 ms
52,484 KB
testcase_19 AC 33 ms
53,208 KB
testcase_20 AC 40 ms
60,744 KB
testcase_21 AC 36 ms
59,868 KB
testcase_22 AC 43 ms
64,744 KB
testcase_23 AC 43 ms
63,828 KB
testcase_24 AC 37 ms
58,664 KB
testcase_25 AC 39 ms
59,316 KB
testcase_26 AC 41 ms
61,648 KB
testcase_27 AC 38 ms
60,508 KB
testcase_28 AC 39 ms
59,896 KB
testcase_29 AC 37 ms
58,968 KB
testcase_30 AC 43 ms
62,740 KB
testcase_31 AC 40 ms
60,052 KB
testcase_32 AC 33 ms
54,076 KB
testcase_33 AC 42 ms
61,380 KB
testcase_34 AC 48 ms
64,552 KB
testcase_35 TLE -
testcase_36 AC 1,068 ms
369,060 KB
testcase_37 AC 1,295 ms
432,692 KB
testcase_38 AC 1,223 ms
420,712 KB
testcase_39 AC 973 ms
368,440 KB
testcase_40 AC 1,362 ms
465,556 KB
testcase_41 TLE -
testcase_42 AC 1,137 ms
407,472 KB
testcase_43 AC 778 ms
321,896 KB
testcase_44 MLE -
testcase_45 MLE -
testcase_46 TLE -
testcase_47 AC 322 ms
181,896 KB
testcase_48 TLE -
testcase_49 MLE -
testcase_50 AC 224 ms
144,400 KB
testcase_51 AC 782 ms
323,080 KB
testcase_52 TLE -
testcase_53 TLE -
testcase_54 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
dp=[[0]*10 for i in range(n+2)]
dp[1][0] = 1
mod=10**9+7

for i in range(1,n+2):
    for j in range(1,10):
        dp[i][j] = dp[i-1][j-1] + dp[i-1][j]
        dp[i-1][j] += dp[i-1][j-1]
    dp[i][0] = 1

print(sum(dp[-1])%mod)
0