摘要: 数字三角形 #include<bits/stdc++.h> using namespace std; int r; int a[1005][1005]; int dp[1005][1005]; int main() { cin >> r; for(int i=1;i<=r;i++) for(int 阅读全文
posted @ 2022-06-09 18:53 风乐 阅读(47) 评论(0) 推荐(0)