牛客练习赛 98 题解 A.魔圆寄录 by lgswdn 如果 ,那么我们每轮选择五次 Normal 攻击。 否则我们每轮选择五次 Blast 攻击。 得到的答案为 。 #include<bits/stdc++.h> #define int long long using namespace std; inline int read(){ int x=0,f=1;char c=getchar(); for(;(c<'0'||c>'9');c=getchar()){if(c=='-')f=-1;} for(;(c>='0'&&c<='9');c...