top of page

CCC 2019 J1:Winning Score

This is simple math question.

Solution:

apoints = af*3 + as*2 + at

bpoints = bf*3 + bs*2 + bt

apoints > bpoints , print A

apoints < bpoints , print B

apoints = bpoints , print T



def whowin(a, b):

    suma = 3*a[0] + 2*a[1] + a[2]
    sumb = 3*b[0] + 2*b[1] + b[2]

    if suma == sumb:
        print("T")
    elif suma > sumb:
        print("A")
    else:
        print("B")


A = []
B = []

for i in range(3):
    S = input().rstrip().split()
    A.append(int(S[0]))

for i in range(3):
    S = input().rstrip().split()
    B.append(int(S[0]))

whowin(A, B)

Recent Posts

See All
CCC '24 J5 - Harvest Waterloo

#include<iostream> #include <vector> #include <algorithm> #include <cmath> #include <stack> using namespace std; int main() { int r, c,...

 
 
 
CCC '24 J4 - Troublesome Keys

s1 = input() s2 = input() silly = '' silly_o = '' quiete = '-' i = 0 j = 0 while i < len(s1) and j < len(s2): if s1[i] != s2[j]: if...

 
 
 
CCC '22 J5 - Square Pool

#include<iostream> #include <vector> #include <algorithm> #include <cmath> using namespace std; bool rowcom(pair<int, int> a, pair<int,...

 
 
 

Comments


One-time Donations
I hope I can solve all CCC problems!,
Please e-transfer cccottawa862008@gmail.com

Subscribe to AIOICode newsletter

I'm a title. ​Click here to edit me.

Thanks for submitting!

  • Twitter
  • Facebook
  • Linkedin

© 2023 by AIOICode.

bottom of page