message stringlengths 2 30.5k | message_type stringclasses 2
values | message_id int64 0 1 | conversation_id int64 237 109k | cluster float64 10 10 | __index_level_0__ int64 474 217k |
|---|---|---|---|---|---|
Provide tags and a correct Python 3 solution for this coding contest problem.
The only difference between easy and hard versions is constraints.
Ivan plays a computer game that contains some microtransactions to make characters look cooler. Since Ivan wants his character to be really cool, he wants to use some of the... | instruction | 0 | 79,222 | 10 | 158,444 |
Tags: binary search, greedy, implementation
Correct Solution:
```
import math
from collections import defaultdict
import sys
#input = sys.stdin.readline
def main():
n, m = map(int, input().split())
k = list(map(int, input().split()))
sales = [(0, 0)] * m
for i in range(m):
a, b = map(int, inpu... | output | 1 | 79,222 | 10 | 158,445 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The only difference between easy and hard versions is constraints.
Ivan plays a computer game that contains some microtransactions to make characters look cooler. Since Ivan wants his character to be really cool, he wants to use some of the... | instruction | 0 | 79,223 | 10 | 158,446 |
Tags: binary search, greedy, implementation
Correct Solution:
```
import sys
def main():
n, m = map(int, input().split())
k = [int(x) for x in input().split()]
d = [[] for _ in range(4 * 10**5 + 1)]
for j in range(m):
dj, tj = map(int, input().split())
d[dj - 1].append(tj - 1)
lo,... | output | 1 | 79,223 | 10 | 158,447 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The only difference between easy and hard versions is constraints.
Ivan plays a computer game that contains some microtransactions to make characters look cooler. Since Ivan wants his character... | instruction | 0 | 79,224 | 10 | 158,448 |
Yes | output | 1 | 79,224 | 10 | 158,449 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The only difference between easy and hard versions is constraints.
Ivan plays a computer game that contains some microtransactions to make characters look cooler. Since Ivan wants his character... | instruction | 0 | 79,225 | 10 | 158,450 |
Yes | output | 1 | 79,225 | 10 | 158,451 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The only difference between easy and hard versions is constraints.
Ivan plays a computer game that contains some microtransactions to make characters look cooler. Since Ivan wants his character... | instruction | 0 | 79,226 | 10 | 158,452 |
Yes | output | 1 | 79,226 | 10 | 158,453 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The only difference between easy and hard versions is constraints.
Ivan plays a computer game that contains some microtransactions to make characters look cooler. Since Ivan wants his character... | instruction | 0 | 79,227 | 10 | 158,454 |
Yes | output | 1 | 79,227 | 10 | 158,455 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The only difference between easy and hard versions is constraints.
Ivan plays a computer game that contains some microtransactions to make characters look cooler. Since Ivan wants his character... | instruction | 0 | 79,228 | 10 | 158,456 |
No | output | 1 | 79,228 | 10 | 158,457 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Alfred wants to buy a toy moose that costs c dollars. The store doesnβt give change, so he must give the store exactly c dollars, no more and no less. He has n coins. To make c dollars from his ... | instruction | 0 | 79,603 | 10 | 159,206 |
No | output | 1 | 79,603 | 10 | 159,207 |
Provide a correct Python 3 solution for this coding contest problem.
You have successfully completed your studies and are preparing to move from near Komaba to near Hongo. As I was organizing my house, I found a lot of lottery tickets I bought last year. After confirming the exchange deadline, I have to cash in by tom... | instruction | 0 | 79,873 | 10 | 159,746 |
"Correct Solution:
```
while True:
n, m = map(int, input().split())
if n == 0:
break
N, M = zip(*[[x.strip("*") if i == 0 else int(x) for i, x in enumerate(input().split())] for _ in range(n)])
print(sum([M[i] for b in [input() for _ in range(m)] for i, x in enumerate(N) if b.endswith(x)]))
``... | output | 1 | 79,873 | 10 | 159,747 |
Provide a correct Python 3 solution for this coding contest problem.
You have successfully completed your studies and are preparing to move from near Komaba to near Hongo. As I was organizing my house, I found a lot of lottery tickets I bought last year. After confirming the exchange deadline, I have to cash in by tom... | instruction | 0 | 79,874 | 10 | 159,748 |
"Correct Solution:
```
while True:
n, m = map(int, input().split())
if n == 0:break
h = [input().split() for _ in range(n)]
t = [input() for _ in range(m)]
c = 0
for kuji in t:
for atari in h:
for i in range(len(kuji)):
if atari[0][i] != "*" and kuji[i] != ata... | output | 1 | 79,874 | 10 | 159,749 |
Provide a correct Python 3 solution for this coding contest problem.
You have successfully completed your studies and are preparing to move from near Komaba to near Hongo. As I was organizing my house, I found a lot of lottery tickets I bought last year. After confirming the exchange deadline, I have to cash in by tom... | instruction | 0 | 79,875 | 10 | 159,750 |
"Correct Solution:
```
while True:
n, m = map(int, input().split())
if n == 0 and m == 0:
break
tousen = [[] for i in range(n)]
for i in range(n):
tousen[i] = list(input().split())
tousen[i][0] = list(tousen[i][0])
tousen[i][1] = int(tousen[i][1])
ans = 0
... | output | 1 | 79,875 | 10 | 159,751 |
Provide a correct Python 3 solution for this coding contest problem.
You have successfully completed your studies and are preparing to move from near Komaba to near Hongo. As I was organizing my house, I found a lot of lottery tickets I bought last year. After confirming the exchange deadline, I have to cash in by tom... | instruction | 0 | 79,876 | 10 | 159,752 |
"Correct Solution:
```
import re
while 1:
n,m=map(int,input().split())
if n==0:break
p=[];s=0
for _ in [0]*n:
n,M=input().replace('*','[0-9]').split()
p.append([re.compile(n),int(M)])
for _ in [0]*m:
l=input()
for n,M in p:
if n.search(l):
... | output | 1 | 79,876 | 10 | 159,753 |
Provide a correct Python 3 solution for this coding contest problem.
You have successfully completed your studies and are preparing to move from near Komaba to near Hongo. As I was organizing my house, I found a lot of lottery tickets I bought last year. After confirming the exchange deadline, I have to cash in by tom... | instruction | 0 | 79,877 | 10 | 159,754 |
"Correct Solution:
```
while True:
n, m = map(int, input().split())
if n == 0:break
lst = []
for _ in range(n):
num, x = input().split()
lst.append((num, int(x)))
ans= 0
for _ in range(m):
b = input()
for num, x in lst:
for i in range(8):
if num[i] == "*" or num[i] == b[i]:c... | output | 1 | 79,877 | 10 | 159,755 |
Provide a correct Python 3 solution for this coding contest problem.
You have successfully completed your studies and are preparing to move from near Komaba to near Hongo. As I was organizing my house, I found a lot of lottery tickets I bought last year. After confirming the exchange deadline, I have to cash in by tom... | instruction | 0 | 79,878 | 10 | 159,756 |
"Correct Solution:
```
while 1:
n,m=map(int,input().split())
if all([n==0,m==0]):break
winning=[]
for i in range(n):
ni,mi=map(str,input().split())
nl=8
while ni[0]=="*":
nl-=1
ni=ni[1:]
winning.append([ni,nl,int(mi)])
ans=0
for i in range(... | output | 1 | 79,878 | 10 | 159,757 |
Provide a correct Python 3 solution for this coding contest problem.
You have successfully completed your studies and are preparing to move from near Komaba to near Hongo. As I was organizing my house, I found a lot of lottery tickets I bought last year. After confirming the exchange deadline, I have to cash in by tom... | instruction | 0 | 79,879 | 10 | 159,758 |
"Correct Solution:
```
def Com(a, b) :
list_a = list(a)
list_b = list(b)
list_a.reverse()
list_b.reverse()
while '*' in list_a :
list_a.remove('*')
ans = True
for i in range(len(list_a)) :
if list_a[i] != list_b[i] :
ans = False
break
return a... | output | 1 | 79,879 | 10 | 159,759 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
You have successfully completed your studies and are preparing to move from near Komaba to near Hongo. As I was organizing my house, I found a lot of lottery tickets I bought last year. After co... | instruction | 0 | 79,880 | 10 | 159,760 |
No | output | 1 | 79,880 | 10 | 159,761 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X yen. If he exchanges his money so that he will gain the ... | instruction | 0 | 80,606 | 10 | 161,212 |
"Correct Solution:
```
X = int(input())
print(X//500*1000+(X-X//500*500)//5*5)
``` | output | 1 | 80,606 | 10 | 161,213 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X yen. If he exchanges his money so that he will gain the ... | instruction | 0 | 80,607 | 10 | 161,214 |
"Correct Solution:
```
x=int(input())
y=x//500
z=(x-y*500)//5
print(1000*y+5*z)
``` | output | 1 | 80,607 | 10 | 161,215 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X yen. If he exchanges his money so that he will gain the ... | instruction | 0 | 80,608 | 10 | 161,216 |
"Correct Solution:
```
X = int(input())
print(1000*(X//500)+5*((X%500)//5))
``` | output | 1 | 80,608 | 10 | 161,217 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X yen. If he exchanges his money so that he will gain the ... | instruction | 0 | 80,609 | 10 | 161,218 |
"Correct Solution:
```
X=int(input());t=500;print(X//t*2*t+X%t//5*5)
``` | output | 1 | 80,609 | 10 | 161,219 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X yen. If he exchanges his money so that he will gain the ... | instruction | 0 | 80,610 | 10 | 161,220 |
"Correct Solution:
```
x=int(input())
a=x//500
x-=a*500
print(a*1000+(x//5)*5)
``` | output | 1 | 80,610 | 10 | 161,221 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X yen. If he exchanges his money so that he will gain the ... | instruction | 0 | 80,611 | 10 | 161,222 |
"Correct Solution:
```
S=int(input())
A = S//500
a =S%500//5
print(A*1000 + a*5)
``` | output | 1 | 80,611 | 10 | 161,223 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X yen. If he exchanges his money so that he will gain the ... | instruction | 0 | 80,612 | 10 | 161,224 |
"Correct Solution:
```
x = int(input())
print(x//500 * 1000 + (x%500)//5 * 5)
``` | output | 1 | 80,612 | 10 | 161,225 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X yen. If he exchanges his money so that he will gain the ... | instruction | 0 | 80,613 | 10 | 161,226 |
"Correct Solution:
```
x = int(input())
print(1000*(x//500) + 5*((x%500)//5))
``` | output | 1 | 80,613 | 10 | 161,227 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X ... | instruction | 0 | 80,614 | 10 | 161,228 |
Yes | output | 1 | 80,614 | 10 | 161,229 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X ... | instruction | 0 | 80,615 | 10 | 161,230 |
Yes | output | 1 | 80,615 | 10 | 161,231 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X ... | instruction | 0 | 80,616 | 10 | 161,232 |
Yes | output | 1 | 80,616 | 10 | 161,233 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X ... | instruction | 0 | 80,617 | 10 | 161,234 |
Yes | output | 1 | 80,617 | 10 | 161,235 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X ... | instruction | 0 | 80,618 | 10 | 161,236 |
No | output | 1 | 80,618 | 10 | 161,237 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X ... | instruction | 0 | 80,619 | 10 | 161,238 |
No | output | 1 | 80,619 | 10 | 161,239 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X ... | instruction | 0 | 80,620 | 10 | 161,240 |
No | output | 1 | 80,620 | 10 | 161,241 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi loves gold coins. He gains 1000 happiness points for each 500-yen coin he has and gains 5 happiness points for each 5-yen coin he has. (Yen is the currency of Japan.)
Takahashi has X ... | instruction | 0 | 80,621 | 10 | 161,242 |
No | output | 1 | 80,621 | 10 | 161,243 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive integer number 1 β€ x β€ s, buy food that costs e... | instruction | 0 | 80,943 | 10 | 161,886 |
Tags: math
Correct Solution:
```
import sys
import math
from collections import defaultdict,Counter
input=sys.stdin.readline
def print(x):
sys.stdout.write(str(x)+"\n")
# sys.stdout=open("CP1/output.txt",'w')
# sys.stdin=open("CP1/input.txt",'r')
# m=pow(10,9)+7
t=int(input())
for i in range(t):
s=int(input(... | output | 1 | 80,943 | 10 | 161,887 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive integer number 1 β€ x β€ s, buy food that costs e... | instruction | 0 | 80,944 | 10 | 161,888 |
Tags: math
Correct Solution:
```
for i in range(int(input())):
n=int(input())
t=0
if n%9==0:
print(n+ n//9 -1)
else:
print(n+(n//9))
``` | output | 1 | 80,944 | 10 | 161,889 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive integer number 1 β€ x β€ s, buy food that costs e... | instruction | 0 | 80,945 | 10 | 161,890 |
Tags: math
Correct Solution:
```
a = int(input())
for i in range(a):
b = int(input())
sumi = 0
while True:
if b<10:
sumi = sumi + b
break
else:
part = b//2
cb = part % 10
if 5<=cb<10:
part = part + 10 - cb
... | output | 1 | 80,945 | 10 | 161,891 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive integer number 1 β€ x β€ s, buy food that costs e... | instruction | 0 | 80,946 | 10 | 161,892 |
Tags: math
Correct Solution:
```
for i in range(int(input())):
print(int(int(input())//0.9))
``` | output | 1 | 80,946 | 10 | 161,893 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive integer number 1 β€ x β€ s, buy food that costs e... | instruction | 0 | 80,947 | 10 | 161,894 |
Tags: math
Correct Solution:
```
import sys
r_input = sys.stdin.readline
if __name__ == '__main__':
T = int(r_input())
for _ in range(T):
N = int(r_input())
total = 0
while True:
div = N // 10
N %= 10
total += div * 10
N += div
... | output | 1 | 80,947 | 10 | 161,895 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive integer number 1 β€ x β€ s, buy food that costs e... | instruction | 0 | 80,948 | 10 | 161,896 |
Tags: math
Correct Solution:
```
for i in range(int(input())):
n = int(input())
print(n + (n - 1) // 9)
``` | output | 1 | 80,948 | 10 | 161,897 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive integer number 1 β€ x β€ s, buy food that costs e... | instruction | 0 | 80,949 | 10 | 161,898 |
Tags: math
Correct Solution:
```
n=int(input())
i = 0
while i<n:
x = int(input())
#print(x/0.9)
sum=x
while x>=0.1:
x = x - (0.9*x)
#print(x)
sum=sum+x
print(int(sum))
i=i+1
``` | output | 1 | 80,949 | 10 | 161,899 |
Provide tags and a correct Python 3 solution for this coding contest problem.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive integer number 1 β€ x β€ s, buy food that costs e... | instruction | 0 | 80,950 | 10 | 161,900 |
Tags: math
Correct Solution:
```
import math
testcase = int(input())
while testcase>0:
n = int(input())
x = n
spend = 0
p=0
while True:
if x<10:
spend+=x
break
spend+= x - (x%10)
cash = math.floor(x/10)
x -= x - (x%10)
x+= cash
prin... | output | 1 | 80,950 | 10 | 161,901 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive ... | instruction | 0 | 80,951 | 10 | 161,902 |
Yes | output | 1 | 80,951 | 10 | 161,903 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive ... | instruction | 0 | 80,952 | 10 | 161,904 |
Yes | output | 1 | 80,952 | 10 | 161,905 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive ... | instruction | 0 | 80,953 | 10 | 161,906 |
Yes | output | 1 | 80,953 | 10 | 161,907 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive ... | instruction | 0 | 80,954 | 10 | 161,908 |
Yes | output | 1 | 80,954 | 10 | 161,909 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive ... | instruction | 0 | 80,955 | 10 | 161,910 |
No | output | 1 | 80,955 | 10 | 161,911 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive ... | instruction | 0 | 80,956 | 10 | 161,912 |
No | output | 1 | 80,956 | 10 | 161,913 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive ... | instruction | 0 | 80,957 | 10 | 161,914 |
No | output | 1 | 80,957 | 10 | 161,915 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Mishka wants to buy some food in the nearby shop. Initially, he has s burles on his card.
Mishka can perform the following operation any number of times (possibly, zero): choose some positive ... | instruction | 0 | 80,958 | 10 | 161,916 |
No | output | 1 | 80,958 | 10 | 161,917 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are an environmental activist at heart but the reality is harsh and you are just a cashier in a cinema. But you can still do something!
You have n tickets to sell. The price of the i-th ticket is p_i. As a teller, you have a possibility... | instruction | 0 | 81,806 | 10 | 163,612 |
Tags: binary search, greedy
Correct Solution:
```
def gcd(a, b):
if a*b == 0:
return a+b
return gcd(b, a%b)
def f():
n = int(input())
p = list(map(lambda x:int(x)//100, input().split()))
x, a = map(int, input().split())
y, b = map(int, input().split())
k = int(input())
p.sort(r... | output | 1 | 81,806 | 10 | 163,613 |
Provide tags and a correct Python 3 solution for this coding contest problem.
You are an environmental activist at heart but the reality is harsh and you are just a cashier in a cinema. But you can still do something!
You have n tickets to sell. The price of the i-th ticket is p_i. As a teller, you have a possibility... | instruction | 0 | 81,807 | 10 | 163,614 |
Tags: binary search, greedy
Correct Solution:
```
# Legends Always Come Up with Solution
# Author: Manvir Singh
import os
import sys
from io import BytesIO, IOBase
from math import gcd
def lcm(x,y):
return x*y//gcd(x,y)
def check(p,x,a,y,b,k,mid):
z,i,su=lcm(a,b),0,0
while i<mid//z:
su+=(p[i]*(x+... | output | 1 | 81,807 | 10 | 163,615 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.