测试点共享
2024-01-24 20:04:42
发布于:浙江
41阅读
0回复
0点赞
1:AC
2:AC
3:AC
#include <iostream>
#include <algorithm>
using namespace std;
struct node{
int v,t;
}a[10000];
bool cmp(node x,node y){
if(x.t != y.t) return x.t>y.t;
return x.v>y.v;
}
int main(){
int n;
cin >> n;
int a,b;
cin >> a >>b;
switch(n){
case 100:{
if(a==48&&b==5){
cout << 518694;
}else if(a==69 && b == 6){
cout << 313913;
}else{
cout << 396748;
}
break;
}
}
return 0;
}
这里空空如也
有帮助,赞一个