-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathProgram.cs
32 lines (23 loc) · 1.05 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
using System;
namespace Taum_and_Bday {
class Program {
public static long TaumBday(long b, long w, long bc, long wc, long z) {
if (bc > (wc + z))return (((b + w) * wc) + (b * z));
if (wc > (bc + z))return (((b + w) * bc) + (w * z));
return ((b * bc) + (w * wc));
}
static void Main(string[] args) {
int t = Convert.ToInt32(Console.ReadLine().Trim());
for (int i = 0; i < t; i++) {
string[] firstMultipleInput = Console.ReadLine().TrimEnd().Split(' ');
long b = Convert.ToInt32(firstMultipleInput[0]);
long w = Convert.ToInt32(firstMultipleInput[1]);
string[] secondMultipleInput = Console.ReadLine().TrimEnd().Split(' ');
long bc = Convert.ToInt32(secondMultipleInput[0]);
long wc = Convert.ToInt32(secondMultipleInput[1]);
long z = Convert.ToInt32(secondMultipleInput[2]);
Console.WriteLine(TaumBday(b, w, bc, wc, z));
}
}
}
}