message
stringlengths
2
20.1k
message_type
stringclasses
2 values
message_id
int64
0
1
conversation_id
int64
1.95k
109k
cluster
float64
17
17
__index_level_0__
int64
3.91k
217k
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n students standing in a row. Two coaches are forming two teams — the first coach chooses the first team and the second coach chooses the second team. The i-th student has integer pro...
instruction
0
96,170
17
192,340
No
output
1
96,170
17
192,341
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n students standing in a row. Two coaches are forming two teams — the first coach chooses the first team and the second coach chooses the second team. The i-th student has integer pro...
instruction
0
96,171
17
192,342
No
output
1
96,171
17
192,343
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n students standing in a row. Two coaches are forming two teams — the first coach chooses the first team and the second coach chooses the second team. The i-th student has integer pro...
instruction
0
96,172
17
192,344
No
output
1
96,172
17
192,345
Provide tags and a correct Python 3 solution for this coding contest problem. This problem consists of three subproblems: for solving subproblem C1 you will receive 4 points, for solving subproblem C2 you will receive 4 points, and for solving subproblem C3 you will receive 8 points. Manao decided to pursue a fighter...
instruction
0
97,326
17
194,652
Tags: brute force Correct Solution: ``` m = 301000 ns = [0] * m es = [0] * m c = [0] * m b = [0] * m t = [0] * m P = 0 def add(b, k): k = t[k] while k: e = es[k] if b[-1] > e: b[-1] = e b[e] += 1 k = ns[k] def delete(b): for i in range(b[m - 1], m + 1): if b[i]: ...
output
1
97,326
17
194,653
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n students in a class working on group projects. The students will divide into groups (some students may be in groups alone), work on their independent pieces, and then discuss the res...
instruction
0
98,260
17
196,520
No
output
1
98,260
17
196,521
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n students in a class working on group projects. The students will divide into groups (some students may be in groups alone), work on their independent pieces, and then discuss the res...
instruction
0
98,261
17
196,522
No
output
1
98,261
17
196,523
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. There are n students in a class working on group projects. The students will divide into groups (some students may be in groups alone), work on their independent pieces, and then discuss the res...
instruction
0
98,262
17
196,524
No
output
1
98,262
17
196,525
Provide tags and a correct Python 3 solution for this coding contest problem. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very important person, received a token which allows to pl...
instruction
0
98,279
17
196,558
Tags: greedy, implementation Correct Solution: ``` n,m = map(int,input().split()) l = [] for i in range(m): la,r,t,c = map(int,input().split()) l.append([la,r,t,c]) cost = 0 for i in range(n): min_time = 10**12 for j in range(m): if l[j][0]<=i+1<=l[j][1]: if l[j][2]<min_time: ...
output
1
98,279
17
196,559
Provide tags and a correct Python 3 solution for this coding contest problem. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very important person, received a token which allows to pl...
instruction
0
98,280
17
196,560
Tags: greedy, implementation Correct Solution: ``` #N sections each with m participants #[li,ri] sections for ith participant n,m=map(int,input().split()) play=[] for i in range(m): l,r,t,c=map(int,input().split()) play.append([l,r,t,c]) sm=0 for i in range(1,n+1): mini=10**9 get=0 for j in range...
output
1
98,280
17
196,561
Provide tags and a correct Python 3 solution for this coding contest problem. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very important person, received a token which allows to pl...
instruction
0
98,281
17
196,562
Tags: greedy, implementation Correct Solution: ``` n,m=map(int,input().split(" ")); a=[] for i in range(m): k=list(map(int,input().split(" "))) a.append(k) total=0; for i in range(1,n+1): temp=0 ans=0; for j in a: if i>=j[0] and i<=j[1]: if ans==0: ans=j[2]; ...
output
1
98,281
17
196,563
Provide tags and a correct Python 3 solution for this coding contest problem. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very important person, received a token which allows to pl...
instruction
0
98,282
17
196,564
Tags: greedy, implementation Correct Solution: ``` import sys inp = sys.stdin.readlines() all_lines = [] for line in inp: all_lines.append(list(map(int, line.split(' ')))) num_athletes = all_lines[0][1] num_sections = all_lines[0][0] profit = 0 for section in range(num_sections): least_time = 0 i = 0 ...
output
1
98,282
17
196,565
Provide tags and a correct Python 3 solution for this coding contest problem. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very important person, received a token which allows to pl...
instruction
0
98,283
17
196,566
Tags: greedy, implementation Correct Solution: ``` n,m=map(int,input().split()) vis=[0]*(n+1) ans=0 arr=[] for i in range(m): arr.append(list(map(int,input().split()))) arr.sort(key=lambda i:i[2]) for i in range(m): for j in range(arr[i][0],arr[i][1]+1): if not vis[j]: vis[j]=1 a...
output
1
98,283
17
196,567
Provide tags and a correct Python 3 solution for this coding contest problem. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very important person, received a token which allows to pl...
instruction
0
98,284
17
196,568
Tags: greedy, implementation Correct Solution: ``` import sys from array import array # noqa: F401 def input(): return sys.stdin.buffer.readline().decode('utf-8') n, m = map(int, input().split()) a = [tuple(map(int, input().split())) for _ in range(m)] ans = 0 for i in range(1, n + 1): time, profit = 10**...
output
1
98,284
17
196,569
Provide tags and a correct Python 3 solution for this coding contest problem. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very important person, received a token which allows to pl...
instruction
0
98,285
17
196,570
Tags: greedy, implementation Correct Solution: ``` sections, n_p = [int(x) for x in input().split(' ')] participants = [] paritipants_on_sections = [(0, 1000000000000000000)] * (sections + 1) # profit + time for i in range(n_p): # participants.append([int(x) for x in input().split(' ')]) start, end, time, profit = [...
output
1
98,285
17
196,571
Provide tags and a correct Python 3 solution for this coding contest problem. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very important person, received a token which allows to pl...
instruction
0
98,286
17
196,572
Tags: greedy, implementation Correct Solution: ``` m, n = map(int, input().split()) p = [(1001, 0, 0)] * m for i in range(n): l, r, t, c = map(int, input().split()) p[l - 1: r] = [min((x, y, z), (t, i, - c)) for x, y, z in p[l - 1: r]] print(- sum(z for x, y, z in p)) ```
output
1
98,286
17
196,573
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very import...
instruction
0
98,287
17
196,574
Yes
output
1
98,287
17
196,575
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very import...
instruction
0
98,288
17
196,576
Yes
output
1
98,288
17
196,577
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very import...
instruction
0
98,289
17
196,578
Yes
output
1
98,289
17
196,579
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very import...
instruction
0
98,290
17
196,580
Yes
output
1
98,290
17
196,581
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very import...
instruction
0
98,291
17
196,582
No
output
1
98,291
17
196,583
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very import...
instruction
0
98,292
17
196,584
No
output
1
98,292
17
196,585
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very import...
instruction
0
98,293
17
196,586
No
output
1
98,293
17
196,587
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. In Chelyabinsk lives a much respected businessman Nikita with a strange nickname "Boss". Once Nikita decided to go with his friend Alex to the Summer Biathlon World Cup. Nikita, as a very import...
instruction
0
98,294
17
196,588
No
output
1
98,294
17
196,589
Provide tags and a correct Python 3 solution for this coding contest problem. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but the problem is, the...
instruction
0
98,899
17
197,798
Tags: binary search, greedy, sortings, two pointers Correct Solution: ``` n, s = map(int, input().split()) a = sorted(map(int, input().split()), reverse = True) b = sorted(map(int, input().split())) i = j = 0 while i < n and j < n: if a[i] + b[j] < s: j += 1 else: i += 1 j += 1 print(1, i) ```
output
1
98,899
17
197,799
Provide tags and a correct Python 3 solution for this coding contest problem. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but the problem is, the...
instruction
0
98,900
17
197,800
Tags: binary search, greedy, sortings, two pointers Correct Solution: ``` from bisect import bisect_left, bisect_right class Result: def __init__(self, index, value): self.index = index self.value = value class BinarySearch: def __init__(self): pass @staticmethod def greater_t...
output
1
98,900
17
197,801
Provide tags and a correct Python 3 solution for this coding contest problem. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but the problem is, the...
instruction
0
98,901
17
197,802
Tags: binary search, greedy, sortings, two pointers Correct Solution: ``` from sys import stdin,stdout import bisect as bs nmbr = lambda: int(stdin.readline()) lst = lambda: list(map(int,stdin.readline().split())) for _ in range(1):#nmbr()): n,sm=lst() a=sorted(lst(),reverse=1) b=sorted(lst()) used=-1 ...
output
1
98,901
17
197,803
Provide tags and a correct Python 3 solution for this coding contest problem. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but the problem is, the...
instruction
0
98,902
17
197,804
Tags: binary search, greedy, sortings, two pointers Correct Solution: ``` n,x = map(int, input().split()) a = sorted(map(int, input().split())) b = sorted(map(int, input().split()), reverse = True) pa,pb = 0,0 worst = 0 while pa < len(a) and pb < len(b) : if a[pa] + b[pb] >= x : worst += 1 pb += 1 pa += 1 print(1...
output
1
98,902
17
197,805
Provide tags and a correct Python 3 solution for this coding contest problem. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but the problem is, the...
instruction
0
98,903
17
197,806
Tags: binary search, greedy, sortings, two pointers Correct Solution: ``` import os import sys from io import BytesIO, IOBase BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = "x" in file.mode ...
output
1
98,903
17
197,807
Provide tags and a correct Python 3 solution for this coding contest problem. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but the problem is, the...
instruction
0
98,904
17
197,808
Tags: binary search, greedy, sortings, two pointers Correct Solution: ``` n, x = map(int, input().split()) score1 = map(int, input().split()) score2 = map(int, input().split()) score1 = sorted(score1, reverse=True) score2 = sorted(score2, reverse=True) count = 0 i = k = 0 j = l = (n - 1) while i <= j and k <= l: ...
output
1
98,904
17
197,809
Provide tags and a correct Python 3 solution for this coding contest problem. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but the problem is, the...
instruction
0
98,905
17
197,810
Tags: binary search, greedy, sortings, two pointers Correct Solution: ``` from operator import add from bisect import bisect_left n, x = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) a.sort() b.sort() b_len = len(b) ans = 0 for i in range(n): pos = bisect_left(b, x -...
output
1
98,905
17
197,811
Provide tags and a correct Python 3 solution for this coding contest problem. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but the problem is, the...
instruction
0
98,906
17
197,812
Tags: binary search, greedy, sortings, two pointers Correct Solution: ``` from sys import stdin from collections import deque n,x = [int(x) for x in stdin.readline().split()] s1 = deque(sorted([int(x) for x in stdin.readline().split()])) s2 = deque(sorted([int(x) for x in stdin.readline().split()])) place = 0 for s...
output
1
98,906
17
197,813
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the seco...
instruction
0
98,907
17
197,814
Yes
output
1
98,907
17
197,815
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the seco...
instruction
0
98,908
17
197,816
No
output
1
98,908
17
197,817
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the seco...
instruction
0
98,909
17
197,818
No
output
1
98,909
17
197,819
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the seco...
instruction
0
98,910
17
197,820
No
output
1
98,910
17
197,821
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least x points for both tours of the Olympiad. The teacher has the results of the first and the seco...
instruction
0
98,911
17
197,822
No
output
1
98,911
17
197,823
Provide a correct Python 3 solution for this coding contest problem. Problem statement We played an AI soccer match between Country A and Country B. You have a table that records the player who had the ball at a certain time and its position. The table consists of N rows, and the i-th row from the top consists of the...
instruction
0
99,405
17
198,810
"Correct Solution: ``` N = int(input()) data = [list(map(int,input().split())) for _ in range(N)] team = data[0][2] player = data[0][1] t1 = 0 t2 = 0 f1 = 0 f2 = 0 for i in range(1,N): if data[i][2] == team: if data[i][1] != player: if team == 0: if t1 < ((data[i][3] - data[i-1...
output
1
99,405
17
198,811
Provide a correct Python 3 solution for this coding contest problem. Problem statement We played an AI soccer match between Country A and Country B. You have a table that records the player who had the ball at a certain time and its position. The table consists of N rows, and the i-th row from the top consists of the...
instruction
0
99,406
17
198,812
"Correct Solution: ``` import math n = int(input()) last = [-1] * 5 At = -1 Al = -1 Bt = -1 Bl = -1 for _ in range(n): l = list(map(int, input().split())) if last[2] != l[2] or last[1] == -1 or last[1] == l[1]: last = l elif last[1] != l[1]: len=math.sqrt((last[3] - l[3])**2 + (last[4]...
output
1
99,406
17
198,813
Provide a correct Python 3 solution for this coding contest problem. Problem statement We played an AI soccer match between Country A and Country B. You have a table that records the player who had the ball at a certain time and its position. The table consists of N rows, and the i-th row from the top consists of the...
instruction
0
99,407
17
198,814
"Correct Solution: ``` import math n = int(input()) prev = list(map(int, input().split())) max_disA = -1 max_disB = -1 min_timeA = 10**9 min_timeB = 10**9 for _ in range(n-1): curr = list(map(int, input().split())) if prev[1] != curr[1] and prev[2] == curr[2]: dis = math.sqrt((prev[3] - curr[3])**2 +...
output
1
99,407
17
198,815
Provide a correct Python 3 solution for this coding contest problem. Problem statement We played an AI soccer match between Country A and Country B. You have a table that records the player who had the ball at a certain time and its position. The table consists of N rows, and the i-th row from the top consists of the...
instruction
0
99,408
17
198,816
"Correct Solution: ``` import math n = int(input()) prev = list(map(int, input().split())) max_disA = -1 max_disB = -1 min_timeA = 10**9 min_timeB = 10**9 for _ in range(n-1): curr = list(map(int, input().split())) if prev[1] != curr[1] and prev[2] == curr[2]: dis = math.sqrt((prev[3] - curr[3])**2 +...
output
1
99,408
17
198,817
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Problem statement We played an AI soccer match between Country A and Country B. You have a table that records the player who had the ball at a certain time and its position. The table consists ...
instruction
0
99,409
17
198,818
No
output
1
99,409
17
198,819
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Problem statement We played an AI soccer match between Country A and Country B. You have a table that records the player who had the ball at a certain time and its position. The table consists ...
instruction
0
99,410
17
198,820
No
output
1
99,410
17
198,821
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Problem statement We played an AI soccer match between Country A and Country B. You have a table that records the player who had the ball at a certain time and its position. The table consists ...
instruction
0
99,411
17
198,822
No
output
1
99,411
17
198,823
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Problem statement We played an AI soccer match between Country A and Country B. You have a table that records the player who had the ball at a certain time and its position. The table consists ...
instruction
0
99,412
17
198,824
No
output
1
99,412
17
198,825
Provide tags and a correct Python 3 solution for this coding contest problem. Formula One championship consists of series of races called Grand Prix. After every race drivers receive points according to their final position. Only the top 10 drivers receive points in the following order 25, 18, 15, 12, 10, 8, 6, 4, 2, ...
instruction
0
99,712
17
199,424
Tags: implementation Correct Solution: ``` import re import sys exit=sys.exit from bisect import bisect_left as bsl,bisect_right as bsr from collections import Counter,defaultdict as ddict,deque from functools import lru_cache cache=lru_cache(None) from heapq import * from itertools import * from math import inf from p...
output
1
99,712
17
199,425
Provide tags and a correct Python 3 solution for this coding contest problem. Formula One championship consists of series of races called Grand Prix. After every race drivers receive points according to their final position. Only the top 10 drivers receive points in the following order 25, 18, 15, 12, 10, 8, 6, 4, 2, ...
instruction
0
99,713
17
199,426
Tags: implementation Correct Solution: ``` import sys ht = {} r = [[0 for i in range(50)] for j in range(50)] t = int(sys.stdin.readline().strip()) for i in range(t): n = int(sys.stdin.readline().strip()) for j in range(n): name = sys.stdin.readline().strip() if name not in ht: ht[...
output
1
99,713
17
199,427
Provide tags and a correct Python 3 solution for this coding contest problem. Formula One championship consists of series of races called Grand Prix. After every race drivers receive points according to their final position. Only the top 10 drivers receive points in the following order 25, 18, 15, 12, 10, 8, 6, 4, 2, ...
instruction
0
99,714
17
199,428
Tags: implementation Correct Solution: ``` t, q = {}, [25, 18, 15, 12, 10, 8, 6, 4, 2, 1] for i in range(int(input())): for j in range(int(input())): p = input() if not p in t: t[p] = [0] * 52 if j < 10: t[p][0] += q[j] t[p][j + 1] += 1 print(max(t.items(), key = lambda x: x[1])[0]) ...
output
1
99,714
17
199,429
Provide tags and a correct Python 3 solution for this coding contest problem. Formula One championship consists of series of races called Grand Prix. After every race drivers receive points according to their final position. Only the top 10 drivers receive points in the following order 25, 18, 15, 12, 10, 8, 6, 4, 2, ...
instruction
0
99,715
17
199,430
Tags: implementation Correct Solution: ``` def solution(): n = int(input()) # number of races scores = {} points = [25, 18, 15, 12, 10, 8, 6, 4, 2, 1] # the scores of drivers places = {} # the places of drivers for i in range(n): m = int(input()) # number of drivers parti...
output
1
99,715
17
199,431
Provide tags and a correct Python 3 solution for this coding contest problem. Formula One championship consists of series of races called Grand Prix. After every race drivers receive points according to their final position. Only the top 10 drivers receive points in the following order 25, 18, 15, 12, 10, 8, 6, 4, 2, ...
instruction
0
99,716
17
199,432
Tags: implementation Correct Solution: ``` t, q = {}, [25, 18, 15, 12, 10, 8, 6, 4, 2, 1] for i in range(int(input())): for j in range(int(input())): p = input() if not p in t: t[p] = [0] * 52 if j < 10: t[p][0] += q[j] t[p][j + 1] += 1 print(max(t.items(), key = lambda x: x[1...
output
1
99,716
17
199,433
Provide tags and a correct Python 3 solution for this coding contest problem. Formula One championship consists of series of races called Grand Prix. After every race drivers receive points according to their final position. Only the top 10 drivers receive points in the following order 25, 18, 15, 12, 10, 8, 6, 4, 2, ...
instruction
0
99,717
17
199,434
Tags: implementation Correct Solution: ``` n = int(input()) lis=[25,18,15,12, 10, 8, 6, 4, 2, 1]+[0]*52 li=dict() for i in range(n): for j in range(int(input())): player = input() if player not in li: li[player]=[0]*51+[player] li[player][0] +=lis[j] li[player][j+1] +=1 ...
output
1
99,717
17
199,435