Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
In Olympics, the countries are ranked by the total number of medals won. You are given six integers G1G1, S1S1, B1B1, and G2G2, S2S2, B2B2, the number of gold, silver and bronze medals won by two different countries respectively. Determine which country is ranked better on the leaderboard. It is guaranteed that there will not be a tie between the two countries.
For each test case, print "1"
if the first country is ranked better or "2"
otherwise. Output the answer without quotes.
Subtask #1 (100 points): Original constraints
3
10 20 30 0 29 30
0 0 0 0 0 1
1 1 1 0 0 0
1
2
1
Test case 11: Total medals for the first country are 10+20+30=6010+20+30=60 and that for the second country are 0+29+30=590+29+30=59. So the first country is ranked better than the second country.
Test case 22: Total medals for the first country are 0+0+0=00+0+0=0 and that for the second country are 0+0+1=10+0+1=1. So the second country is ranked better than the first country.
#include <stdio.h>
int main(void) {
int p[6];
int T;
scanf("%d",&T);
while(T--)
{
for(int i=0;i<6;i++)
{
scanf("%d",&p[i]);
}
int s1=p[0]+p[1]+p[2];
int s2=p[3]+p[4]+p[5];
if(s1>s2)
printf("\n1");
else
printf("\n2");
}
}
# cook your dish here
for i in range(int(input())):
a=list(map(int,input().split()))
#rint(a[:2])
if sum(a[:3])>sum(a[3:]):
print(1)
else:print(2)
/* package codechef; // don't place package name! */
import java.util.*;
import java.lang.*;
import java.io.*;
/* Name of the class has to be "Main" only if the class is public. */
class Codechef
{
public static void main (String[] args) throws java.lang.Exception
{
// your code goes here
Scanner sc=new Scanner(System.in);
int T=sc.nextInt();
for(int i=0;i<T;i++){
int[] a=new int[6];
int country1=0,country2=0;
for(int j=0;j<6;j++){
a[j]=sc.nextInt();
if(j<3){
country1=country1+a[j];}
else{
country2=country2+a[j];
}
}
if(country1>country2){
System.out.println("1");
}
else{
System.out.println("2");
}
}
}
}
#include <bits/stdc++.h>
using namespace std;
int main() {
int t;
cin>>t;
while(t--)
{
int a1,b1,c1,a2,b2,c2;
cin>>a1>>b1>>c1>>a2>>b2>>c2;
if((a1+b1+c1)>(a2+b2+c2))
{
cout<<"1"<<"\n";
}
else
{
cout<<"2"<<"\n";
}
}
}
In our experience, we suggest you solve this Olympics Ranking CodeChef Solution and gain some new skills from Professionals completely free and we assure you will be worth it.
Olympics Ranking Problem is available on Hacker Rank for Free, if you are stuck anywhere between a compilation, just visit Queslers to get Olympics Ranking CodeChef Solution.
I hope this Olympics Ranking CodeChef Solution would be useful for you to learn something new from this problem. If it helped you then don’t forget to bookmark our site for more Hacker Rank, Leetcode, Codechef, Codeforce Solution.
This Problem is intended for audiences of all experiences who are interested in learning about Data Science in a business context; there are no prerequisites.
Keep Learning!
More Hacker Rank Problem & Solutions >>
Staircase Hacker Rank Solution
A Very Big Sum Hacker Rank Solution
Diagonal Difference Hacker Rank Solution
Nested Lists Hacker Rank Solution
More CodeChef Solutions >>