結果

問題 No.741 AscNumber(Easy)
ユーザー shobonvipshobonvip
提出日時 2021-05-02 00:50:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,647 ms / 2,000 ms
コード長 229 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 227,328 KB
最終ジャッジ日時 2024-07-20 07:51:58
合計ジャッジ時間 24,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 43 ms
51,584 KB
testcase_02 AC 44 ms
51,584 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 42 ms
51,584 KB
testcase_10 AC 42 ms
51,584 KB
testcase_11 AC 42 ms
51,840 KB
testcase_12 AC 43 ms
51,840 KB
testcase_13 AC 41 ms
51,840 KB
testcase_14 AC 41 ms
51,840 KB
testcase_15 AC 41 ms
51,840 KB
testcase_16 AC 41 ms
51,712 KB
testcase_17 AC 42 ms
51,840 KB
testcase_18 AC 44 ms
56,960 KB
testcase_19 AC 44 ms
56,832 KB
testcase_20 AC 63 ms
65,920 KB
testcase_21 AC 54 ms
61,568 KB
testcase_22 AC 67 ms
69,248 KB
testcase_23 AC 67 ms
68,352 KB
testcase_24 AC 55 ms
61,184 KB
testcase_25 AC 59 ms
63,488 KB
testcase_26 AC 66 ms
67,584 KB
testcase_27 AC 56 ms
62,464 KB
testcase_28 AC 55 ms
61,824 KB
testcase_29 AC 58 ms
62,720 KB
testcase_30 AC 67 ms
67,712 KB
testcase_31 AC 64 ms
66,176 KB
testcase_32 AC 49 ms
58,112 KB
testcase_33 AC 65 ms
66,944 KB
testcase_34 AC 67 ms
70,144 KB
testcase_35 AC 1,520 ms
220,032 KB
testcase_36 AC 721 ms
139,084 KB
testcase_37 AC 822 ms
150,340 KB
testcase_38 AC 825 ms
149,280 KB
testcase_39 AC 709 ms
137,820 KB
testcase_40 AC 943 ms
159,872 KB
testcase_41 AC 1,440 ms
207,372 KB
testcase_42 AC 795 ms
146,132 KB
testcase_43 AC 589 ms
126,852 KB
testcase_44 AC 1,345 ms
179,332 KB
testcase_45 AC 1,504 ms
187,008 KB
testcase_46 AC 1,404 ms
212,992 KB
testcase_47 AC 298 ms
99,692 KB
testcase_48 AC 1,388 ms
212,864 KB
testcase_49 AC 1,207 ms
190,336 KB
testcase_50 AC 234 ms
91,904 KB
testcase_51 AC 622 ms
129,152 KB
testcase_52 AC 1,604 ms
227,328 KB
testcase_53 AC 1,647 ms
227,328 KB
testcase_54 AC 1,622 ms
225,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
mod = 10**9 + 7

dp = [[0]*10 for _ in range(n+1)]
# dp[i][j] := i桁目までで, jが最高位.
dp[0][0] = 1

for i in range(n):
	for j in range(10):
		dp[i+1][j] = sum(dp[i][0:j+1]) % mod
print(sum(dp[n])%mod)
0