結果

問題 No.741 AscNumber(Easy)
ユーザー irumo8202irumo8202
提出日時 2022-01-22 23:37:55
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 345 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 190,336 KB
最終ジャッジ日時 2024-11-28 03:05:37
合計ジャッジ時間 63,219 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
15,872 KB
testcase_01 AC 30 ms
185,600 KB
testcase_02 AC 29 ms
15,872 KB
testcase_03 AC 28 ms
109,824 KB
testcase_04 AC 28 ms
15,872 KB
testcase_05 AC 29 ms
119,552 KB
testcase_06 AC 29 ms
16,000 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
15,872 KB
testcase_09 AC 28 ms
107,520 KB
testcase_10 AC 29 ms
15,872 KB
testcase_11 AC 29 ms
123,648 KB
testcase_12 AC 29 ms
15,872 KB
testcase_13 AC 30 ms
173,440 KB
testcase_14 AC 30 ms
15,872 KB
testcase_15 AC 29 ms
116,864 KB
testcase_16 AC 29 ms
16,000 KB
testcase_17 AC 30 ms
99,456 KB
testcase_18 AC 30 ms
15,872 KB
testcase_19 AC 29 ms
147,456 KB
testcase_20 AC 40 ms
15,872 KB
testcase_21 AC 33 ms
156,032 KB
testcase_22 AC 51 ms
16,128 KB
testcase_23 AC 48 ms
179,456 KB
testcase_24 AC 33 ms
15,872 KB
testcase_25 AC 36 ms
73,728 KB
testcase_26 AC 44 ms
16,000 KB
testcase_27 AC 36 ms
180,992 KB
testcase_28 AC 34 ms
16,000 KB
testcase_29 AC 35 ms
158,592 KB
testcase_30 AC 45 ms
16,256 KB
testcase_31 AC 41 ms
16,128 KB
testcase_32 AC 32 ms
16,000 KB
testcase_33 AC 44 ms
101,120 KB
testcase_34 AC 56 ms
16,384 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 10 ** 9 + 7

dp = [[0] * 10 for _ in range(N + 1)]
for i in range(10):
    dp[1][i] = 1

for i in range(1, N):
    for lst in range(10):
        for nxt in range(lst, 10):
            dp[i + 1][nxt] += dp[i][lst]
            dp[i + 1][nxt] %= MOD

ans = 0
for i in range(10):
    ans += dp[N][i]
    ans %= MOD

print(ans)
0