結果
問題 | No.741 AscNumber(Easy) |
ユーザー | soisu |
提出日時 | 2022-03-20 14:59:34 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 291 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 648,124 KB |
最終ジャッジ日時 | 2024-10-06 22:28:28 |
合計ジャッジ時間 | 6,035 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,600 KB |
testcase_01 | AC | 38 ms
51,712 KB |
testcase_02 | AC | 39 ms
51,712 KB |
testcase_03 | AC | 38 ms
51,840 KB |
testcase_04 | AC | 39 ms
52,608 KB |
testcase_05 | AC | 37 ms
52,352 KB |
testcase_06 | AC | 37 ms
52,096 KB |
testcase_07 | AC | 37 ms
52,224 KB |
testcase_08 | AC | 38 ms
52,608 KB |
testcase_09 | AC | 37 ms
52,352 KB |
testcase_10 | AC | 38 ms
52,096 KB |
testcase_11 | AC | 42 ms
57,856 KB |
testcase_12 | AC | 40 ms
58,180 KB |
testcase_13 | AC | 41 ms
57,856 KB |
testcase_14 | AC | 40 ms
58,240 KB |
testcase_15 | AC | 41 ms
58,240 KB |
testcase_16 | AC | 41 ms
58,496 KB |
testcase_17 | AC | 42 ms
57,856 KB |
testcase_18 | AC | 41 ms
58,624 KB |
testcase_19 | AC | 43 ms
58,624 KB |
testcase_20 | AC | 53 ms
63,488 KB |
testcase_21 | AC | 48 ms
61,312 KB |
testcase_22 | AC | 55 ms
64,256 KB |
testcase_23 | AC | 54 ms
63,872 KB |
testcase_24 | AC | 48 ms
61,440 KB |
testcase_25 | AC | 52 ms
62,720 KB |
testcase_26 | AC | 52 ms
64,256 KB |
testcase_27 | AC | 49 ms
61,952 KB |
testcase_28 | AC | 53 ms
61,440 KB |
testcase_29 | AC | 55 ms
62,464 KB |
testcase_30 | AC | 58 ms
63,488 KB |
testcase_31 | AC | 60 ms
62,976 KB |
testcase_32 | AC | 45 ms
60,160 KB |
testcase_33 | AC | 54 ms
64,256 KB |
testcase_34 | AC | 61 ms
66,432 KB |
testcase_35 | MLE | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
ソースコード
N=int(input()) dp=[[0 for j in range(10)] for i in range(N+1)] dp[0][0]=1 mod=10**9+7 for i in range(N): for j in range(10): for d in range(1,10): if j<=d: dp[i+1][d]+=dp[i][j] ans=1 for i in range(1,N+1): ans+=sum(dp[i]) ans%=mod print(ans)