摘要: C 组合数(杨辉三角形//递推) #include<bits/stdc++.h> using namespace std; int c[10010][110]; int mod=10007; int main() { int n,m; c[1][1]=1; c[2][1]=2; cin>>n>>m; 阅读全文
posted @ 2025-05-18 14:12 BIxuan—玉寻 阅读(17) 评论(1) 推荐(0)