結果

問題 No.741 AscNumber(Easy)
ユーザー AEnAEn
提出日時 2022-05-19 09:20:34
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 262 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 702,012 KB
最終ジャッジ日時 2024-09-17 14:46:50
合計ジャッジ時間 6,270 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,056 KB
testcase_01 AC 38 ms
52,904 KB
testcase_02 AC 37 ms
52,356 KB
testcase_03 AC 37 ms
53,048 KB
testcase_04 AC 37 ms
53,780 KB
testcase_05 AC 37 ms
53,160 KB
testcase_06 AC 37 ms
53,100 KB
testcase_07 AC 37 ms
53,688 KB
testcase_08 AC 38 ms
52,524 KB
testcase_09 AC 37 ms
53,092 KB
testcase_10 AC 38 ms
52,656 KB
testcase_11 AC 37 ms
52,688 KB
testcase_12 AC 37 ms
52,412 KB
testcase_13 AC 37 ms
53,120 KB
testcase_14 AC 38 ms
52,472 KB
testcase_15 AC 38 ms
52,372 KB
testcase_16 AC 38 ms
52,948 KB
testcase_17 AC 37 ms
51,956 KB
testcase_18 AC 38 ms
52,968 KB
testcase_19 AC 37 ms
53,012 KB
testcase_20 AC 46 ms
60,936 KB
testcase_21 AC 41 ms
58,484 KB
testcase_22 AC 43 ms
60,164 KB
testcase_23 AC 42 ms
59,612 KB
testcase_24 AC 42 ms
58,860 KB
testcase_25 AC 42 ms
58,908 KB
testcase_26 AC 43 ms
60,384 KB
testcase_27 AC 42 ms
59,356 KB
testcase_28 AC 42 ms
59,368 KB
testcase_29 AC 42 ms
58,712 KB
testcase_30 AC 44 ms
59,624 KB
testcase_31 AC 43 ms
60,876 KB
testcase_32 AC 39 ms
52,196 KB
testcase_33 AC 43 ms
60,076 KB
testcase_34 AC 44 ms
59,944 KB
testcase_35 MLE -
testcase_36 AC 1,067 ms
350,840 KB
testcase_37 AC 1,333 ms
405,584 KB
testcase_38 AC 1,283 ms
395,108 KB
testcase_39 AC 976 ms
341,048 KB
testcase_40 AC 1,448 ms
430,724 KB
testcase_41 TLE -
testcase_42 AC 1,239 ms
383,540 KB
testcase_43 AC 824 ms
315,800 KB
testcase_44 MLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 AC 360 ms
177,856 KB
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 231 ms
136,068 KB
testcase_51 AC 868 ms
317,796 KB
testcase_52 MLE -
testcase_53 -- -
testcase_54 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
res = 10
mod = 10**9+7
dp = [[0]*10 for _ in range(N)]
for i in range(10):
    dp[0][i] = 1
for i in range(1, N):
    sm = 0
    for j in range(1,10):
        sm += dp[i-1][j]
        dp[i][j] = sm
        res += sm
        res %= mod
print(res)
0