摘要: 1 /* 2 题意:求 1...n, n 8 using namespace std; 9 10 typedef long long LL; 11 const int MAXN = 100005; 12 const LL MOD7 = 1e9+7; 13 14 LL dp[15][125][125][125]; 15 16 // 位数, 和, 模, 余数,... 阅读全文
posted @ 2018-08-03 18:35 LeeSongt 阅读(149) 评论(0) 推荐(0) 编辑