結果

問題 No.741 AscNumber(Easy)
ユーザー O2MTO2MT
提出日時 2021-06-02 00:17:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 612 ms / 2,000 ms
コード長 363 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 154,144 KB
最終ジャッジ日時 2024-11-09 00:23:40
合計ジャッジ時間 11,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
52,608 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 37 ms
52,608 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 37 ms
51,968 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 37 ms
52,480 KB
testcase_17 AC 37 ms
52,608 KB
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 38 ms
52,352 KB
testcase_20 AC 47 ms
61,696 KB
testcase_21 AC 47 ms
61,184 KB
testcase_22 AC 48 ms
61,568 KB
testcase_23 AC 48 ms
61,440 KB
testcase_24 AC 46 ms
60,928 KB
testcase_25 AC 45 ms
60,416 KB
testcase_26 AC 46 ms
60,800 KB
testcase_27 AC 45 ms
60,672 KB
testcase_28 AC 45 ms
60,544 KB
testcase_29 AC 45 ms
60,288 KB
testcase_30 AC 48 ms
61,568 KB
testcase_31 AC 45 ms
60,800 KB
testcase_32 AC 45 ms
60,416 KB
testcase_33 AC 46 ms
60,928 KB
testcase_34 AC 48 ms
62,208 KB
testcase_35 AC 596 ms
150,656 KB
testcase_36 AC 290 ms
108,232 KB
testcase_37 AC 332 ms
114,220 KB
testcase_38 AC 326 ms
113,764 KB
testcase_39 AC 287 ms
107,764 KB
testcase_40 AC 368 ms
119,716 KB
testcase_41 AC 539 ms
143,972 KB
testcase_42 AC 318 ms
112,128 KB
testcase_43 AC 253 ms
101,908 KB
testcase_44 AC 434 ms
129,408 KB
testcase_45 AC 465 ms
133,320 KB
testcase_46 AC 559 ms
146,944 KB
testcase_47 AC 145 ms
88,132 KB
testcase_48 AC 563 ms
146,816 KB
testcase_49 AC 484 ms
135,152 KB
testcase_50 AC 117 ms
84,096 KB
testcase_51 AC 257 ms
103,040 KB
testcase_52 AC 610 ms
154,016 KB
testcase_53 AC 612 ms
154,144 KB
testcase_54 AC 605 ms
153,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
MOD = 10**9+7
dp = [[0 for _ in range(N+1)] for _ in range(10)]

for i in range(1,10):
  dp[i][1] = 1
for i in range(1,10):
  for j in range(2,N+1):
    num = 0
    for k in range(1,i+1):
      num += dp[k][j-1]
      num %= MOD
    dp[i][j] = num

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

print(ans)
0