题解
2023-07-16 18:55:23
发布于:浙江
10阅读
0回复
0点赞
#include<bits/stdc++.h>//英吉利月季远离我
using namespace std;
long long n,cnt=0;
int main(){
cin >> n;
for(int i=1;i<=n;i++){
int a;
double b;
int c;
cin >> a >> b >> c;
if(b!=0 && c==0) cnt++;
else if(a==1)cnt+=1;
else if(a==2)cnt+=3;
else if(a==3)cnt+=5;
else if(a==4)cnt+=7;
else if(a==5)cnt+=15;
else if(a==6)cnt+=1440;
}
if(cnt >= 14400)cout << "NO WAY!";
else cout << cnt << endl;
return 0;
}
}
这里空空如也
有帮助,赞一个