摘要: 原题 错误代码: #include<bits/stdc++.h> using namespace std; long long math(int a) { if(a <= 2){ return 1; } long long f0 = 1,f1 = 1,f2; for(int i = 3;i <= a 阅读全文
posted @ 2023-12-06 23:44 Qwehhh 阅读(10) 评论(0) 推荐(0)
摘要: 原题 错误代码: #include<bits/stdc++.h> using namespace std; struct person{ int k; int s; }a[10001]; bool cmp(person l,person b) { if(l.s == b.s){ if(l.k < l 阅读全文
posted @ 2023-12-03 16:49 Qwehhh 阅读(198) 评论(0) 推荐(0)