結果

問題 No.741 AscNumber(Easy)
ユーザー ntudantuda
提出日時 2024-02-29 20:18:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 967 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 76,440 KB
最終ジャッジ日時 2024-09-29 12:57:19
合計ジャッジ時間 16,038 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 35 ms
51,936 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 35 ms
52,096 KB
testcase_12 AC 35 ms
52,096 KB
testcase_13 AC 35 ms
52,352 KB
testcase_14 AC 36 ms
51,840 KB
testcase_15 AC 36 ms
52,352 KB
testcase_16 AC 35 ms
51,968 KB
testcase_17 AC 34 ms
52,096 KB
testcase_18 AC 37 ms
57,088 KB
testcase_19 AC 38 ms
56,832 KB
testcase_20 AC 53 ms
66,304 KB
testcase_21 AC 47 ms
62,592 KB
testcase_22 AC 57 ms
69,760 KB
testcase_23 AC 56 ms
68,616 KB
testcase_24 AC 46 ms
61,824 KB
testcase_25 AC 48 ms
63,616 KB
testcase_26 AC 56 ms
67,952 KB
testcase_27 AC 48 ms
62,552 KB
testcase_28 AC 48 ms
62,068 KB
testcase_29 AC 48 ms
63,104 KB
testcase_30 AC 55 ms
67,972 KB
testcase_31 AC 53 ms
66,432 KB
testcase_32 AC 43 ms
58,624 KB
testcase_33 AC 56 ms
67,968 KB
testcase_34 AC 58 ms
70,680 KB
testcase_35 AC 930 ms
76,124 KB
testcase_36 AC 444 ms
75,788 KB
testcase_37 AC 508 ms
76,140 KB
testcase_38 AC 507 ms
76,160 KB
testcase_39 AC 439 ms
75,620 KB
testcase_40 AC 554 ms
75,900 KB
testcase_41 AC 805 ms
76,028 KB
testcase_42 AC 480 ms
76,032 KB
testcase_43 AC 357 ms
76,140 KB
testcase_44 AC 636 ms
75,980 KB
testcase_45 AC 708 ms
76,100 KB
testcase_46 AC 839 ms
75,824 KB
testcase_47 AC 200 ms
76,132 KB
testcase_48 AC 846 ms
75,924 KB
testcase_49 AC 730 ms
75,768 KB
testcase_50 AC 160 ms
76,440 KB
testcase_51 AC 381 ms
76,148 KB
testcase_52 AC 967 ms
76,116 KB
testcase_53 AC 946 ms
76,100 KB
testcase_54 AC 925 ms
75,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9+7
N = int(input())
dp = [1] * 10
for i in range(N):
    dp2 = [0] * 10
    for j in range(10):
        dp2[j] = sum(dp[0:j+1])
        dp2[j] %= MOD
    dp = dp2
print(dp[-1])
0