- 北辰OI俱乐部北辰杯·7月赛(复现赛)
论B题的O(1)做法
- 2024-10-20 18:27:17 @
AC Code
#include <bits/stdc++.h>
using namespace std;
int tt;
int n,x,y;
int main()
{
cin >> tt;
while(tt--)
{
cin >> n >> x >> y;
int sum = 0;
cout << max(((n - (n % 2)) / 2 * y + (n % 2) * x) , n * x) << endl;
}
return 0;
}
0 comments
No comments so far...