結果

問題 No.741 AscNumber(Easy)
ユーザー AEnAEn
提出日時 2022-05-19 09:25:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 777 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 76,496 KB
最終ジャッジ日時 2024-09-17 14:54:16
合計ジャッジ時間 13,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,744 KB
testcase_01 AC 37 ms
53,088 KB
testcase_02 AC 38 ms
52,328 KB
testcase_03 AC 38 ms
53,584 KB
testcase_04 AC 37 ms
52,868 KB
testcase_05 AC 38 ms
52,116 KB
testcase_06 AC 38 ms
52,204 KB
testcase_07 AC 38 ms
52,504 KB
testcase_08 AC 37 ms
52,888 KB
testcase_09 AC 37 ms
52,916 KB
testcase_10 AC 37 ms
52,640 KB
testcase_11 AC 37 ms
53,112 KB
testcase_12 AC 37 ms
52,408 KB
testcase_13 AC 37 ms
52,456 KB
testcase_14 AC 37 ms
53,800 KB
testcase_15 AC 37 ms
52,076 KB
testcase_16 AC 37 ms
52,888 KB
testcase_17 AC 36 ms
53,284 KB
testcase_18 AC 37 ms
52,124 KB
testcase_19 AC 37 ms
53,176 KB
testcase_20 AC 43 ms
60,208 KB
testcase_21 AC 42 ms
58,436 KB
testcase_22 AC 44 ms
59,552 KB
testcase_23 AC 43 ms
60,708 KB
testcase_24 AC 42 ms
59,236 KB
testcase_25 AC 41 ms
59,604 KB
testcase_26 AC 42 ms
59,748 KB
testcase_27 AC 41 ms
59,296 KB
testcase_28 AC 43 ms
58,692 KB
testcase_29 AC 42 ms
59,664 KB
testcase_30 AC 42 ms
59,892 KB
testcase_31 AC 43 ms
59,016 KB
testcase_32 AC 37 ms
53,160 KB
testcase_33 AC 43 ms
59,760 KB
testcase_34 AC 43 ms
60,616 KB
testcase_35 AC 739 ms
75,996 KB
testcase_36 AC 341 ms
75,700 KB
testcase_37 AC 395 ms
76,044 KB
testcase_38 AC 391 ms
76,012 KB
testcase_39 AC 334 ms
75,632 KB
testcase_40 AC 444 ms
76,324 KB
testcase_41 AC 683 ms
76,060 KB
testcase_42 AC 375 ms
75,608 KB
testcase_43 AC 281 ms
76,024 KB
testcase_44 AC 537 ms
76,192 KB
testcase_45 AC 575 ms
75,968 KB
testcase_46 AC 705 ms
75,844 KB
testcase_47 AC 149 ms
76,124 KB
testcase_48 AC 705 ms
75,624 KB
testcase_49 AC 597 ms
75,984 KB
testcase_50 AC 115 ms
75,916 KB
testcase_51 AC 293 ms
75,964 KB
testcase_52 AC 773 ms
76,048 KB
testcase_53 AC 777 ms
75,848 KB
testcase_54 AC 767 ms
76,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
res = 10
mod = 10**9+7
dp = [[0]*10 for _ in range(2)]
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)%2][j]
        dp[i%2][j] = sm
        res += sm
        res %= mod
print(res)
0