message
stringlengths
2
65.1k
message_type
stringclasses
2 values
message_id
int64
0
1
conversation_id
int64
0
108k
cluster
float64
14
14
__index_level_0__
int64
0
217k
Provide tags and a correct Python 3 solution for this coding contest problem. Xenia is a girl being born a noble. Due to the inflexibility and harshness of her family, Xenia has to find some ways to amuse herself. <image> Recently Xenia has bought n_r red gems, n_g green gems and n_b blue gems. Each of the gems has ...
instruction
0
73,478
14
146,956
Tags: binary search, greedy, math, sortings, two pointers Correct Solution: ``` # ------------------- fast io -------------------- 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.buf...
output
1
73,478
14
146,957
Provide tags and a correct Python 3 solution for this coding contest problem. Xenia is a girl being born a noble. Due to the inflexibility and harshness of her family, Xenia has to find some ways to amuse herself. <image> Recently Xenia has bought n_r red gems, n_g green gems and n_b blue gems. Each of the gems has ...
instruction
0
73,479
14
146,958
Tags: binary search, greedy, math, sortings, two pointers Correct Solution: ``` def cal(x, y, z): return (x-y)*(x-y) + (y-z)*(y-z) + (z-x)*(z-x) def lb(val, arr): if (val >= arr[len(arr) - 1]): return arr[len(arr) - 1] if (val <= arr[0]): return arr[0] l = 0 r = len(arr) while...
output
1
73,479
14
146,959
Provide tags and a correct Python 3 solution for this coding contest problem. Xenia is a girl being born a noble. Due to the inflexibility and harshness of her family, Xenia has to find some ways to amuse herself. <image> Recently Xenia has bought n_r red gems, n_g green gems and n_b blue gems. Each of the gems has ...
instruction
0
73,480
14
146,960
Tags: binary search, greedy, math, sortings, two pointers Correct Solution: ``` '''Solution ''' def val(gems): g1, g2, g3 = gems v = (g1 - g2)**2 + (g2 - g3)**2 + (g3 - g1)**2 return v def binarysearch(lwr, upr, lst, target, dxn): if upr == lwr: return lst[lwr] elif upr - lwr == 1 and dxn =...
output
1
73,480
14
146,961
Provide tags and a correct Python 3 solution for this coding contest problem. Xenia is a girl being born a noble. Due to the inflexibility and harshness of her family, Xenia has to find some ways to amuse herself. <image> Recently Xenia has bought n_r red gems, n_g green gems and n_b blue gems. Each of the gems has ...
instruction
0
73,481
14
146,962
Tags: binary search, greedy, math, sortings, two pointers Correct Solution: ``` # -*- coding: utf-8 -*- import sys from bisect import bisect_left def input(): return sys.stdin.buffer.readline().strip() def list2d(a, b, c): return [[c] * b for i in range(a)] def list3d(a, b, c, d): return [[[d] * c for j in range(b)] ...
output
1
73,481
14
146,963
Provide tags and a correct Python 3 solution for this coding contest problem. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed fr...
instruction
0
73,706
14
147,412
Tags: *special, data structures, dp, implementation Correct Solution: ``` import math as mt import sys,string input=sys.stdin.readline #print=sys.stdout.write import random from collections import deque,defaultdict L=lambda : list(map(int,input().split())) Ls=lambda : list(input().split()) M=lambda : map(int,input().s...
output
1
73,706
14
147,413
Provide tags and a correct Python 3 solution for this coding contest problem. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed fr...
instruction
0
73,707
14
147,414
Tags: *special, data structures, dp, implementation Correct Solution: ``` s = 0 L = [] M = [] for i in range(int(input())) : w , l = map(int , input().split()) L.append((w , l)) s += w M.append(l) M.sort(reverse = True) for i in L : if i[1] != M[0] : print((s - i[0]) * M[0] , end =" ") ...
output
1
73,707
14
147,415
Provide tags and a correct Python 3 solution for this coding contest problem. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed fr...
instruction
0
73,708
14
147,416
Tags: *special, data structures, dp, implementation Correct Solution: ``` n = int(input()) W, H, H2 = 0, 0, 0 data = [] for i in range(n): wi, hi = map(int, input().split()) W += wi H = max(H, hi) data.append((wi, hi)) help = [] for i in range(n): help.append([data[i][1], True]) for i in range(n): ...
output
1
73,708
14
147,417
Provide tags and a correct Python 3 solution for this coding contest problem. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed fr...
instruction
0
73,709
14
147,418
Tags: *special, data structures, dp, implementation Correct Solution: ``` st=int(input()) summa=0 q=[] w=[] ish=[] for i in range(st): z,x=map(int,input().split()) q.append(z) w.append(x) ish.append(x) summa=sum(q) w.sort() for i in range(st): qw=w[st-1] if ish[i]==qw: qw=w[st-2] pri...
output
1
73,709
14
147,419
Provide tags and a correct Python 3 solution for this coding contest problem. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed fr...
instruction
0
73,710
14
147,420
Tags: *special, data structures, dp, implementation Correct Solution: ``` n = int(input()) w,h = [], [] h1,h2, s = 0, 0, 0 for _ in range(n): a,b = list(map(int,input().split())) w.append(a) h.append(b) s += a if b > h1: h2 = h1 h1 = b elif b > h2: h2 = b for i i...
output
1
73,710
14
147,421
Provide tags and a correct Python 3 solution for this coding contest problem. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed fr...
instruction
0
73,711
14
147,422
Tags: *special, data structures, dp, implementation Correct Solution: ``` n = int(input()) h0 = int(-1) h1 = int(-1) arr = [] sw = int(0) cnt = int(0) for _ in range(n): w, h = map(int, input().split()) arr.append([w, h]) sw += w if h0 < h: cnt = 0 h0 = h elif h0 == h: cnt +=...
output
1
73,711
14
147,423
Provide tags and a correct Python 3 solution for this coding contest problem. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed fr...
instruction
0
73,712
14
147,424
Tags: *special, data structures, dp, implementation Correct Solution: ``` n = int(input()) def solve(n): w = [] h = [] for i in range(n): inp = input().split() w.append(int(inp[0])) h.append(int(inp[-1])) res = [] sm = sum(w) h_mx = sorted(enumerate(h), reverse=True, ke...
output
1
73,712
14
147,425
Provide tags and a correct Python 3 solution for this coding contest problem. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed fr...
instruction
0
73,713
14
147,426
Tags: *special, data structures, dp, implementation Correct Solution: ``` s=0 L=[] M=[] for i in range(int(input())): w,l=[int(x) for x in input().split()];L.append((w,l));s+=w;M.append(l) M.sort();M=M[::-1] for i in L: if i[1]==M[0]:print(M[1]*(s-i[0])) else:print(M[0]*(s-i[0])) ```
output
1
73,713
14
147,427
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described...
instruction
0
73,714
14
147,428
Yes
output
1
73,714
14
147,429
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described...
instruction
0
73,715
14
147,430
Yes
output
1
73,715
14
147,431
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described...
instruction
0
73,716
14
147,432
Yes
output
1
73,716
14
147,433
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described...
instruction
0
73,717
14
147,434
Yes
output
1
73,717
14
147,435
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described...
instruction
0
73,718
14
147,436
No
output
1
73,718
14
147,437
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described...
instruction
0
73,719
14
147,438
No
output
1
73,719
14
147,439
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described...
instruction
0
73,720
14
147,440
No
output
1
73,720
14
147,441
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. One day n friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described...
instruction
0
73,721
14
147,442
No
output
1
73,721
14
147,443
Provide tags and a correct Python 3 solution for this coding contest problem. Vasya's birthday is approaching and Lena decided to sew a patterned handkerchief to him as a present. Lena chose digits from 0 to n as the pattern. The digits will form a rhombus. The largest digit n should be located in the centre. The digi...
instruction
0
74,239
14
148,478
Tags: constructive algorithms, implementation Correct Solution: ``` n =int(input()) loop = n+1 for i in range(1,loop+1): firstloop = n-i+1 for j in range(firstloop): print(" ",end=' ') secondloop = i value = 0 for j in range(secondloop-1): print(value,end=' ') value+=1 i...
output
1
74,239
14
148,479
Provide tags and a correct Python 3 solution for this coding contest problem. Vasya's birthday is approaching and Lena decided to sew a patterned handkerchief to him as a present. Lena chose digits from 0 to n as the pattern. The digits will form a rhombus. The largest digit n should be located in the centre. The digi...
instruction
0
74,240
14
148,480
Tags: constructive algorithms, implementation Correct Solution: ``` '''input 2 ''' n = int(input()) for x in range(n+1): y = list(range(x)) + [x] + list(range(x))[::-1] y = " ".join(str(z) for z in y) print(" " * 2*(n-x) + y) for i in range(n-1,-1,-1): j = list(range(i)) + [i] + list(range(i))[::-1] j = " ".join(s...
output
1
74,240
14
148,481
Provide tags and a correct Python 3 solution for this coding contest problem. Vasya's birthday is approaching and Lena decided to sew a patterned handkerchief to him as a present. Lena chose digits from 0 to n as the pattern. The digits will form a rhombus. The largest digit n should be located in the centre. The digi...
instruction
0
74,241
14
148,482
Tags: constructive algorithms, implementation Correct Solution: ``` n = int(input()) s = [] for i in range(n + 1): s.append(' ' * 2 * (n - i) + ' '.join(str(j) for j in range(i + 1)) + ' ' * min(i, 1) + ' '.join(str(i - j - 1) for j in range(i))) for i in range(n + 1): print(s[i]) for i in range(n): print(s...
output
1
74,241
14
148,483
Provide tags and a correct Python 3 solution for this coding contest problem. Vasya's birthday is approaching and Lena decided to sew a patterned handkerchief to him as a present. Lena chose digits from 0 to n as the pattern. The digits will form a rhombus. The largest digit n should be located in the centre. The digi...
instruction
0
74,242
14
148,484
Tags: constructive algorithms, implementation Correct Solution: ``` n = int(input()) k=(n*2)-1 o=[] z=[] q=-1 for i in range(0,n+1): for j in range(0,i): o.append(j) for w in range(i-2,-1,-1): o.append(w) if len(o)>0: if k>0: print(k*" ",*o) k-=2 ...
output
1
74,242
14
148,485
Provide tags and a correct Python 3 solution for this coding contest problem. Vasya's birthday is approaching and Lena decided to sew a patterned handkerchief to him as a present. Lena chose digits from 0 to n as the pattern. The digits will form a rhombus. The largest digit n should be located in the centre. The digi...
instruction
0
74,243
14
148,486
Tags: constructive algorithms, implementation Correct Solution: ``` n = int(input()) for i in range(n + n + 1): result = '' for j in range(n + n + 1): if i <= n: if j >= n - i and j <= n: if j == 0: result += str(abs(n - j - i)) else: ...
output
1
74,243
14
148,487
Provide tags and a correct Python 3 solution for this coding contest problem. Vasya's birthday is approaching and Lena decided to sew a patterned handkerchief to him as a present. Lena chose digits from 0 to n as the pattern. The digits will form a rhombus. The largest digit n should be located in the centre. The digi...
instruction
0
74,244
14
148,488
Tags: constructive algorithms, implementation Correct Solution: ``` n=int(input()) for i in range(n): s=[] for j in range(i): s.append(str(j)) s = s + [str(i)] + s[::-1] print(' '.join(s).center(4*n+1).rstrip()) s=[] for i in range(n): s.append(i) s = s + [str(i+1)]+s[::-1] print(' '.join([s...
output
1
74,244
14
148,489
Provide tags and a correct Python 3 solution for this coding contest problem. Vasya's birthday is approaching and Lena decided to sew a patterned handkerchief to him as a present. Lena chose digits from 0 to n as the pattern. The digits will form a rhombus. The largest digit n should be located in the centre. The digi...
instruction
0
74,245
14
148,490
Tags: constructive algorithms, implementation Correct Solution: ``` n = int(input()) arr = [[0]] rev = [] for i in range(1,n+1): tmp = [0] for j in range(1,i+1): tmp.append(j) for j in range(i-1,0,-1): tmp.append(j) tmp.append(0) if i != n: rev.append(tmp) arr.append(tmp)...
output
1
74,245
14
148,491
Provide tags and a correct Python 3 solution for this coding contest problem. Vasya's birthday is approaching and Lena decided to sew a patterned handkerchief to him as a present. Lena chose digits from 0 to n as the pattern. The digits will form a rhombus. The largest digit n should be located in the centre. The digi...
instruction
0
74,246
14
148,492
Tags: constructive algorithms, implementation Correct Solution: ``` a = int(input()) for itema in range(a): print(" " * 2 * (a - itema) + " ".join([str(item) for item in range(itema+1)] + [str(item) for item in range(itema)][::-1])) print(" ".join([str(item) for item in range(a+1)] + [str(item) for item in range(a)...
output
1
74,246
14
148,493
Provide tags and a correct Python 3 solution for this coding contest problem. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its complexity. The complexity of the i-th chore eq...
instruction
0
74,450
14
148,900
Tags: sortings Correct Solution: ``` input1 = list(map(int,input().split())) numberOfChores = input1[0] numberOfPetyaChores = input1[1] numberOfVasyaChores = input1[2] choresComplexities = list(map(int, input().split())) choresComplexities.sort() numberOfWayToChooseN = choresComplexities[numberOfVasyaChores] - chore...
output
1
74,450
14
148,901
Provide tags and a correct Python 3 solution for this coding contest problem. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its complexity. The complexity of the i-th chore eq...
instruction
0
74,451
14
148,902
Tags: sortings Correct Solution: ``` n,a,b=list(map(int, input().split())) h = list(map(int, input().split())) h.sort() print(h[0-a]-h[b-1]) ```
output
1
74,451
14
148,903
Provide tags and a correct Python 3 solution for this coding contest problem. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its complexity. The complexity of the i-th chore eq...
instruction
0
74,452
14
148,904
Tags: sortings Correct Solution: ``` n, a, b = map(int,input().split()) h = list(map(int,input().split())) h.sort() c = h[b] - h[b - 1] print(c) ```
output
1
74,452
14
148,905
Provide tags and a correct Python 3 solution for this coding contest problem. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its complexity. The complexity of the i-th chore eq...
instruction
0
74,453
14
148,906
Tags: sortings Correct Solution: ``` n,a,b = tuple(map(int, input().strip().split())) h = list(map(int, input().strip().split())) def insertionsort(lst): for i in range(1,len(lst)): val = lst[i] for j in range(0, i): if lst[j] < val: tmp = lst[j] ...
output
1
74,453
14
148,907
Provide tags and a correct Python 3 solution for this coding contest problem. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its complexity. The complexity of the i-th chore eq...
instruction
0
74,454
14
148,908
Tags: sortings Correct Solution: ``` n,a,b = map(int, input().split()) h = list(map(int, input().split())) h.sort(reverse=True) ans = h[a-1] - h[a] print(ans) ```
output
1
74,454
14
148,909
Provide tags and a correct Python 3 solution for this coding contest problem. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its complexity. The complexity of the i-th chore eq...
instruction
0
74,455
14
148,910
Tags: sortings Correct Solution: ``` # Codeforces: 169A - Chores n, a, b = map(int, input().split()) h = list(map(int, input().split())) h.sort() ans = h[b] - h[b - 1] print(ans) ```
output
1
74,455
14
148,911
Provide tags and a correct Python 3 solution for this coding contest problem. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its complexity. The complexity of the i-th chore eq...
instruction
0
74,456
14
148,912
Tags: sortings Correct Solution: ``` a=list(map(int, input().split())) b=list(map(int, input().split())) h=sorted(b,reverse=True) print(h[a[1]-1]-h[a[1]]) ```
output
1
74,456
14
148,913
Provide tags and a correct Python 3 solution for this coding contest problem. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its complexity. The complexity of the i-th chore eq...
instruction
0
74,457
14
148,914
Tags: sortings Correct Solution: ``` a,b,c=map(int,input().split()) d=list(map(int,input().split())) d.sort(reverse=True) print(d[b-1]-d[b]) ```
output
1
74,457
14
148,915
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its ...
instruction
0
74,458
14
148,916
Yes
output
1
74,458
14
148,917
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its ...
instruction
0
74,459
14
148,918
Yes
output
1
74,459
14
148,919
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its ...
instruction
0
74,460
14
148,920
Yes
output
1
74,460
14
148,921
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its ...
instruction
0
74,461
14
148,922
Yes
output
1
74,461
14
148,923
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its ...
instruction
0
74,462
14
148,924
No
output
1
74,462
14
148,925
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its ...
instruction
0
74,463
14
148,926
No
output
1
74,463
14
148,927
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its ...
instruction
0
74,464
14
148,928
No
output
1
74,464
14
148,929
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response. Petya and Vasya are brothers. Today is a special day for them as their parents left them home alone and commissioned them to do n chores. Each chore is characterized by a single parameter β€” its ...
instruction
0
74,465
14
148,930
No
output
1
74,465
14
148,931
Provide tags and a correct Python 3 solution for this coding contest problem. Maxim has opened his own restaurant! The restaurant has got a huge table, the table's length is p meters. Maxim has got a dinner party tonight, n guests will come to him. Let's index the guests of Maxim's restaurant from 1 to n. Maxim knows...
instruction
0
74,466
14
148,932
Tags: dp, math, probabilities Correct Solution: ``` n=int(input()) b=list(map(int,input().split())) p=int(input()) dp=[[0 for j in range(51)] for i in range(51)] dp[0][0]=1 fac=[1] for i in range(1,51): fac.append(fac[-1]*i) for i in range(n): k=i+1 while(k>=1): for s in range(b[i],p+1): ...
output
1
74,466
14
148,933
Provide tags and a correct Python 3 solution for this coding contest problem. Maxim has opened his own restaurant! The restaurant has got a huge table, the table's length is p meters. Maxim has got a dinner party tonight, n guests will come to him. Let's index the guests of Maxim's restaurant from 1 to n. Maxim knows...
instruction
0
74,467
14
148,934
Tags: dp, math, probabilities Correct Solution: ``` n = input() n = int(n) arr = [0] * n fact = [0] * 51 a = input().split() p = input() p = int(p) for i in range(n): arr[i] = int(a[i]) if n == 1: if arr[0] <= p: print(1) else: print(0) exit(0) def pre(): fact[0] = 1 for i in range(1, 51): fact[i] = fact...
output
1
74,467
14
148,935
Provide tags and a correct Python 3 solution for this coding contest problem. Maxim has opened his own restaurant! The restaurant has got a huge table, the table's length is p meters. Maxim has got a dinner party tonight, n guests will come to him. Let's index the guests of Maxim's restaurant from 1 to n. Maxim knows...
instruction
0
74,468
14
148,936
Tags: dp, math, probabilities Correct Solution: ``` n = int(input()) a = list(map(int, input().split())) p = int(input()) fact = [1] for i in range(1, 51): fact.append(fact[-1]*i) if sum(a) <= p: print(n) else: dp = [[0]*56 for _ in range(56)] dp[0][0] = 1 for i in range(n): for j in ran...
output
1
74,468
14
148,937
Provide tags and a correct Python 3 solution for this coding contest problem. Maxim has opened his own restaurant! The restaurant has got a huge table, the table's length is p meters. Maxim has got a dinner party tonight, n guests will come to him. Let's index the guests of Maxim's restaurant from 1 to n. Maxim knows...
instruction
0
74,469
14
148,938
Tags: dp, math, probabilities Correct Solution: ``` import math n = int(input()) a = [int(x) for x in input().split()] p = int(input()) sum=0; for x in range(n): sum+=a[x] if(sum<=p): print(n) else: ans=0 for i in range(n): dp = [[[0 for z in range(55)] for y in range(55)] for x in range(55)] dp[-1][0][0]=1 ...
output
1
74,469
14
148,939
Provide tags and a correct Python 3 solution for this coding contest problem. Maxim has opened his own restaurant! The restaurant has got a huge table, the table's length is p meters. Maxim has got a dinner party tonight, n guests will come to him. Let's index the guests of Maxim's restaurant from 1 to n. Maxim knows...
instruction
0
74,470
14
148,940
Tags: dp, math, probabilities Correct Solution: ``` from pprint import pprint n = int(input()) a = list(map(int, input().split())) p = int(input()) fact = [1] for i in range(1, 51): fact.append(fact[-1]*i) if sum(a) <= p: print(n) else: dp = [[0]*56 for _ in range(56)] dp[0][0] = 1 for i in ran...
output
1
74,470
14
148,941
Provide tags and a correct Python 3 solution for this coding contest problem. Maxim has opened his own restaurant! The restaurant has got a huge table, the table's length is p meters. Maxim has got a dinner party tonight, n guests will come to him. Let's index the guests of Maxim's restaurant from 1 to n. Maxim knows...
instruction
0
74,471
14
148,942
Tags: dp, math, probabilities Correct Solution: ``` n=int(input()) arr=list(map(int,input().split())) p=int(input()) dp=[[[0 for k in range(n+1)] for i in range(p+1)] for i in range(n+1)] for j in range(p+1): for k in range(n+1): dp[0][j][k]=1 for i in range(1,n+1): for j in range(p+1): for k in...
output
1
74,471
14
148,943