contestId
int64
0
1.01k
index
stringclasses
57 values
name
stringlengths
2
58
type
stringclasses
2 values
rating
int64
0
3.5k
tags
listlengths
0
11
title
stringclasses
522 values
time-limit
stringclasses
8 values
memory-limit
stringclasses
8 values
problem-description
stringlengths
0
7.15k
input-specification
stringlengths
0
2.05k
output-specification
stringlengths
0
1.5k
demo-input
listlengths
0
7
demo-output
listlengths
0
7
note
stringlengths
0
5.24k
points
float64
0
425k
test_cases
listlengths
0
402
creationTimeSeconds
int64
1.37B
1.7B
relativeTimeSeconds
int64
8
2.15B
programmingLanguage
stringclasses
3 values
verdict
stringclasses
14 values
testset
stringclasses
12 values
passedTestCount
int64
0
1k
timeConsumedMillis
int64
0
15k
memoryConsumedBytes
int64
0
805M
code
stringlengths
3
65.5k
prompt
stringlengths
262
8.2k
response
stringlengths
17
65.5k
score
float64
-1
3.99
0
none
none
none
0
[ "none" ]
null
null
The main road in Bytecity is a straight line from south to north. Conveniently, there are coordinates measured in meters from the southernmost building in north direction. At some points on the road there are *n* friends, and *i*-th of them is standing at the point *x**i* meters and can move with any speed no greater ...
The first line contains single integer *n* (2<=≤<=*n*<=≤<=60<=000) — the number of friends. The second line contains *n* integers *x*1,<=*x*2,<=...,<=*x**n* (1<=≤<=*x**i*<=≤<=109) — the current coordinates of the friends, in meters. The third line contains *n* integers *v*1,<=*v*2,<=...,<=*v**n* (1<=≤<=*v**i*<=≤<=109...
Print the minimum time (in seconds) needed for all the *n* friends to meet at some point on the road. Your answer will be considered correct, if its absolute or relative error isn't greater than 10<=-<=6. Formally, let your answer be *a*, while jury's answer be *b*. Your answer will be considered correct if holds.
[ "3\n7 1 3\n1 2 1\n", "4\n5 10 3 2\n2 3 2 4\n" ]
[ "2.000000000000\n", "1.400000000000\n" ]
In the first sample, all friends can gather at the point 5 within 2 seconds. In order to achieve this, the first friend should go south all the time at his maximum speed, while the second and the third friends should go north at their maximum speeds.
0
[ { "input": "3\n7 1 3\n1 2 1", "output": "2.000000000000" }, { "input": "4\n5 10 3 2\n2 3 2 4", "output": "1.400000000000" }, { "input": "3\n1 1000000000 2\n1 2 1000000000", "output": "333333332.999999999971" }, { "input": "2\n4 5\n10 8", "output": "0.055555555556" }, ...
1,627,411,806
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
46
6,963,200
num=int(input()) x=[int(x) for x in input().split()] v=[int(x) for x in input().split()] def solve(h): return max(abs(h-x[i])/v[i] for i in range(n)) l,r=1.0,1e9 while r-l>5e-7: mid=(l+r)/2 if (solve(mid-4e-7)<solve(mid+4e-7)): r=mid else: l=mid print(solve(l))
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: The main road in Bytecity is a straight line from south to north. Conveniently, there are coordinates measured in meters from the southernmost building in north direction. At some points on the road there are *n* friends, and *i*...
```python num=int(input()) x=[int(x) for x in input().split()] v=[int(x) for x in input().split()] def solve(h): return max(abs(h-x[i])/v[i] for i in range(n)) l,r=1.0,1e9 while r-l>5e-7: mid=(l+r)/2 if (solve(mid-4e-7)<solve(mid+4e-7)): r=mid else: l=mid print(solve(l)) ```
-1
312
B
Archer
PROGRAMMING
1,300
[ "math", "probabilities" ]
null
null
SmallR is an archer. SmallR is taking a match of archer with Zanoes. They try to shoot in the target in turns, and SmallR shoots first. The probability of shooting the target each time is for SmallR while for Zanoes. The one who shoots in the target first should be the winner. Output the probability that SmallR will...
A single line contains four integers .
Print a single real number, the probability that SmallR will win the match. The answer will be considered correct if the absolute or relative error doesn't exceed 10<=-<=6.
[ "1 2 1 2\n" ]
[ "0.666666666667" ]
none
1,000
[ { "input": "1 2 1 2", "output": "0.666666666667" }, { "input": "1 3 1 3", "output": "0.600000000000" }, { "input": "1 3 2 3", "output": "0.428571428571" }, { "input": "3 4 3 4", "output": "0.800000000000" }, { "input": "1 2 10 11", "output": "0.523809523810" ...
1,670,392,165
2,147,483,647
PyPy 3-64
OK
TESTS
31
62
0
a, b, c, d = map(int, input().split()) p = a/b q = (1-p)*(1-c/d) print(p/(1-q))
Title: Archer Time Limit: None seconds Memory Limit: None megabytes Problem Description: SmallR is an archer. SmallR is taking a match of archer with Zanoes. They try to shoot in the target in turns, and SmallR shoots first. The probability of shooting the target each time is for SmallR while for Zanoes. The one w...
```python a, b, c, d = map(int, input().split()) p = a/b q = (1-p)*(1-c/d) print(p/(1-q)) ```
3
994
A
Fingerprints
PROGRAMMING
800
[ "implementation" ]
null
null
You are locked in a room with a door that has a keypad with 10 keys corresponding to digits from 0 to 9. To escape from the room, you need to enter a correct code. You also have a sequence of digits. Some keys on the keypad have fingerprints. You believe the correct code is the longest not necessarily contiguous subse...
The first line contains two integers $n$ and $m$ ($1 \le n, m \le 10$) representing the number of digits in the sequence you have and the number of keys on the keypad that have fingerprints. The next line contains $n$ distinct space-separated integers $x_1, x_2, \ldots, x_n$ ($0 \le x_i \le 9$) representing the sequen...
In a single line print a space-separated sequence of integers representing the code. If the resulting sequence is empty, both printing nothing and printing a single line break is acceptable.
[ "7 3\n3 5 7 1 6 2 8\n1 2 7\n", "4 4\n3 4 1 0\n0 1 7 9\n" ]
[ "7 1 2\n", "1 0\n" ]
In the first example, the only digits with fingerprints are $1$, $2$ and $7$. All three of them appear in the sequence you know, $7$ first, then $1$ and then $2$. Therefore the output is 7 1 2. Note that the order is important, and shall be the same as the order in the original sequence. In the second example digits $...
500
[ { "input": "7 3\n3 5 7 1 6 2 8\n1 2 7", "output": "7 1 2" }, { "input": "4 4\n3 4 1 0\n0 1 7 9", "output": "1 0" }, { "input": "9 4\n9 8 7 6 5 4 3 2 1\n2 4 6 8", "output": "8 6 4 2" }, { "input": "10 5\n3 7 1 2 4 6 9 0 5 8\n4 3 0 7 9", "output": "3 7 4 9 0" }, { "...
1,573,136,420
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
77
0
a,b=map(int,input().split()) m=list(map(int,input().split())) n=list(map(int,input().split())) n.sort() for x in range(1,b+1): if n[-x] in m: print(n[-x],end=" ")
Title: Fingerprints Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are locked in a room with a door that has a keypad with 10 keys corresponding to digits from 0 to 9. To escape from the room, you need to enter a correct code. You also have a sequence of digits. Some keys on the keyp...
```python a,b=map(int,input().split()) m=list(map(int,input().split())) n=list(map(int,input().split())) n.sort() for x in range(1,b+1): if n[-x] in m: print(n[-x],end=" ") ```
0
432
A
Choosing Teams
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. According to the ACM ICPC rules, each person can participate in the world championship at most 5 times. Th...
The first line contains two integers, *n* and *k* (1<=≤<=*n*<=≤<=2000; 1<=≤<=*k*<=≤<=5). The next line contains *n* integers: *y*1,<=*y*2,<=...,<=*y**n* (0<=≤<=*y**i*<=≤<=5), where *y**i* shows the number of times the *i*-th person participated in the ACM ICPC world championship.
Print a single number — the answer to the problem.
[ "5 2\n0 4 5 1 0\n", "6 4\n0 1 2 3 4 5\n", "6 5\n0 0 0 0 0 0\n" ]
[ "1\n", "0\n", "2\n" ]
In the first sample only one team could be made: the first, the fourth and the fifth participants. In the second sample no teams could be created. In the third sample two teams could be created. Any partition into two teams fits.
500
[ { "input": "5 2\n0 4 5 1 0", "output": "1" }, { "input": "6 4\n0 1 2 3 4 5", "output": "0" }, { "input": "6 5\n0 0 0 0 0 0", "output": "2" }, { "input": "3 4\n0 1 0", "output": "1" }, { "input": "3 4\n0 2 0", "output": "0" }, { "input": "6 5\n0 0 0 0 0...
1,686,828,539
2,147,483,647
Python 3
OK
TESTS
35
31
0
n,k=list(map(int,input().split())) y=list(map(int,input().split())) m=[] for i in y: if (5-i)>=k: m.append(i) print(len(m)//3)
Title: Choosing Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. Accordi...
```python n,k=list(map(int,input().split())) y=list(map(int,input().split())) m=[] for i in y: if (5-i)>=k: m.append(i) print(len(m)//3) ```
3
933
B
A Determined Cleanup
PROGRAMMING
2,000
[ "math" ]
null
null
In order to put away old things and welcome a fresh new year, a thorough cleaning of the house is a must. Little Tommy finds an old polynomial and cleaned it up by taking it modulo another. But now he regrets doing this... Given two integers *p* and *k*, find a polynomial *f*(*x*) with non-negative integer coefficien...
The only line of input contains two space-separated integers *p* and *k* (1<=≤<=*p*<=≤<=1018, 2<=≤<=*k*<=≤<=2<=000).
If the polynomial does not exist, print a single integer -1, or output two lines otherwise. In the first line print a non-negative integer *d* — the number of coefficients in the polynomial. In the second line print *d* space-separated integers *a*0,<=*a*1,<=...,<=*a**d*<=-<=1, describing a polynomial fulfilling the...
[ "46 2\n", "2018 214\n" ]
[ "7\n0 1 0 0 1 1 1\n", "3\n92 205 1\n" ]
In the first example, *f*(*x*) = *x*<sup class="upper-index">6</sup> + *x*<sup class="upper-index">5</sup> + *x*<sup class="upper-index">4</sup> + *x* = (*x*<sup class="upper-index">5</sup> - *x*<sup class="upper-index">4</sup> + 3*x*<sup class="upper-index">3</sup> - 6*x*<sup class="upper-index">2</sup> + 12*x* - 23)·...
750
[ { "input": "46 2", "output": "7\n0 1 0 0 1 1 1" }, { "input": "2018 214", "output": "3\n92 205 1" }, { "input": "4 2", "output": "3\n0 0 1" }, { "input": "5 2", "output": "3\n1 0 1" }, { "input": "10 3", "output": "3\n1 0 1" }, { "input": "250 1958", ...
1,518,614,296
4,396
Python 3
OK
TESTS
40
77
5,632,000
def negaternary(i, k): if i == 0: digits = [0] else: digits = [] while i != 0: i, remainder = divmod(i, -k) if remainder < 0: i, remainder = i + 1, remainder + k digits.append(remainder) return digits p, k = map(int, ...
Title: A Determined Cleanup Time Limit: None seconds Memory Limit: None megabytes Problem Description: In order to put away old things and welcome a fresh new year, a thorough cleaning of the house is a must. Little Tommy finds an old polynomial and cleaned it up by taking it modulo another. But now he regrets doin...
```python def negaternary(i, k): if i == 0: digits = [0] else: digits = [] while i != 0: i, remainder = divmod(i, -k) if remainder < 0: i, remainder = i + 1, remainder + k digits.append(remainder) return digits p, k =...
3
382
A
Ksenia and Pan Scales
PROGRAMMING
1,100
[ "greedy", "implementation" ]
null
null
Ksenia has ordinary pan scales and several weights of an equal mass. Ksenia has already put some weights on the scales, while other weights are untouched. Ksenia is now wondering whether it is possible to put all the remaining weights on the scales so that the scales were in equilibrium. The scales is in equilibrium ...
The first line has a non-empty sequence of characters describing the scales. In this sequence, an uppercase English letter indicates a weight, and the symbol "|" indicates the delimiter (the character occurs in the sequence exactly once). All weights that are recorded in the sequence before the delimiter are initially ...
If you cannot put all the weights on the scales so that the scales were in equilibrium, print string "Impossible". Otherwise, print the description of the resulting scales, copy the format of the input. If there are multiple answers, print any of them.
[ "AC|T\nL\n", "|ABC\nXYZ\n", "W|T\nF\n", "ABC|\nD\n" ]
[ "AC|TL\n", "XYZ|ABC\n", "Impossible\n", "Impossible\n" ]
none
500
[ { "input": "AC|T\nL", "output": "AC|TL" }, { "input": "|ABC\nXYZ", "output": "XYZ|ABC" }, { "input": "W|T\nF", "output": "Impossible" }, { "input": "ABC|\nD", "output": "Impossible" }, { "input": "A|BC\nDEF", "output": "ADF|BCE" }, { "input": "|\nABC",...
1,690,686,952
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
30
0
inp1,inp2=input().split("|") inp3=input() count=0 for i in range(len(inp3)): if len(inp1)>len(inp2): inp2+=inp3[i] count+=1 if len(inp2)>len(inp1): inp1+=inp3[i] count+=1 if len(inp1)==len(inp2) and count!=0: print(inp1+"|"+inp2) else: print("Impossible")
Title: Ksenia and Pan Scales Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ksenia has ordinary pan scales and several weights of an equal mass. Ksenia has already put some weights on the scales, while other weights are untouched. Ksenia is now wondering whether it is possible to put all ...
```python inp1,inp2=input().split("|") inp3=input() count=0 for i in range(len(inp3)): if len(inp1)>len(inp2): inp2+=inp3[i] count+=1 if len(inp2)>len(inp1): inp1+=inp3[i] count+=1 if len(inp1)==len(inp2) and count!=0: print(inp1+"|"+inp2) else: print("Imposs...
0
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,606,153,877
2,147,483,647
Python 3
OK
TESTS
81
218
0
NumberOfLines = input() x=0 y=0 z=0 for i in range(int(NumberOfLines)): Line = input() x+=int(Line.split(" ")[0]) y+=int(Line.split(" ")[1]) z+=int(Line.split(" ")[2]) if x==0 and y==0 and z==0: print("YES") else: print("NO")
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python NumberOfLines = input() x=0 y=0 z=0 for i in range(int(NumberOfLines)): Line = input() x+=int(Line.split(" ")[0]) y+=int(Line.split(" ")[1]) z+=int(Line.split(" ")[2]) if x==0 and y==0 and z==0: print("YES") else: print("NO") ```
3.9455
821
B
Okabe and Banana Trees
PROGRAMMING
1,300
[ "brute force", "math" ]
null
null
Okabe needs bananas for one of his experiments for some strange reason. So he decides to go to the forest and cut banana trees. Consider the point (*x*,<=*y*) in the 2D plane such that *x* and *y* are integers and 0<=≤<=*x*,<=*y*. There is a tree in such a point, and it has *x*<=+<=*y* bananas. There are no trees nor ...
The first line of input contains two space-separated integers *m* and *b* (1<=≤<=*m*<=≤<=1000, 1<=≤<=*b*<=≤<=10000).
Print the maximum number of bananas Okabe can get from the trees he cuts.
[ "1 5\n", "2 3\n" ]
[ "30\n", "25\n" ]
The graph above corresponds to sample test 1. The optimal rectangle is shown in red and has 30 bananas.
1,000
[ { "input": "1 5", "output": "30" }, { "input": "2 3", "output": "25" }, { "input": "4 6", "output": "459" }, { "input": "6 3", "output": "171" }, { "input": "1 1", "output": "1" }, { "input": "10 1", "output": "55" }, { "input": "20 10", ...
1,499,981,516
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
62
4,608,000
from math import inf m, b = map(int, input().split()) ans = -inf for y in range(b): x = (b-y) * m x = int(x) if ans < (x+1)*y*(y+1)/2 + (y+1)*x*(x+1)/2: ans = (x+1)*y*(y+1)/2 + (y+1)*x*(x+1)/2 print(int(ans))
Title: Okabe and Banana Trees Time Limit: None seconds Memory Limit: None megabytes Problem Description: Okabe needs bananas for one of his experiments for some strange reason. So he decides to go to the forest and cut banana trees. Consider the point (*x*,<=*y*) in the 2D plane such that *x* and *y* are integers a...
```python from math import inf m, b = map(int, input().split()) ans = -inf for y in range(b): x = (b-y) * m x = int(x) if ans < (x+1)*y*(y+1)/2 + (y+1)*x*(x+1)/2: ans = (x+1)*y*(y+1)/2 + (y+1)*x*(x+1)/2 print(int(ans)) ```
0
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,654,884,353
2,147,483,647
PyPy 3
OK
TESTS
34
248
0
#while((n=int(input()))!=EOF): def asb(): n=int(input()) c1=0 c2=0 a2='s' ab=[] for i in range(n): ab.append(input()) a1=ab[0] for i in range(1,n,1): if(ab[i] != a1): a2=ab[i] break for i in range(n): if(a1==ab[i]):...
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python #while((n=int(input()))!=EOF): def asb(): n=int(input()) c1=0 c2=0 a2='s' ab=[] for i in range(n): ab.append(input()) a1=ab[0] for i in range(1,n,1): if(ab[i] != a1): a2=ab[i] break for i in range(n): if(a...
3.938
961
D
Pair Of Lines
PROGRAMMING
2,000
[ "geometry" ]
null
null
You are given *n* points on Cartesian plane. Every point is a lattice point (i.<=e. both of its coordinates are integers), and all points are distinct. You may draw two straight lines (not necessarily distinct). Is it possible to do this in such a way that every point lies on at least one of these lines?
The first line contains one integer *n* (1<=≤<=*n*<=≤<=105) — the number of points you are given. Then *n* lines follow, each line containing two integers *x**i* and *y**i* (|*x**i*|,<=|*y**i*|<=≤<=109)— coordinates of *i*-th point. All *n* points are distinct.
If it is possible to draw two straight lines in such a way that each of given points belongs to at least one of these lines, print YES. Otherwise, print NO.
[ "5\n0 0\n0 1\n1 1\n1 -1\n2 2\n", "5\n0 0\n1 0\n2 1\n1 1\n2 3\n" ]
[ "YES\n", "NO\n" ]
In the first example it is possible to draw two lines, the one containing the points 1, 3 and 5, and another one containing two remaining points.
0
[ { "input": "5\n0 0\n0 1\n1 1\n1 -1\n2 2", "output": "YES" }, { "input": "5\n0 0\n1 0\n2 1\n1 1\n2 3", "output": "NO" }, { "input": "1\n-1000000000 1000000000", "output": "YES" }, { "input": "5\n2 -1\n-4 1\n0 -9\n5 -9\n9 -10", "output": "NO" }, { "input": "5\n6 1\n...
1,691,413,157
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
2
62
2,867,200
n = int(input()) L = [] for i in range(n): a = list(map(int,input().split())) L.append(a) def P(p1,p2): global L l = [] if p1[0] == p2[0]: for p in L: if p[0] != p1[0]: l.append(p) else: a = (p1[1]-p2[1])/(p1[0]-p2[0]) b = p...
Title: Pair Of Lines Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given *n* points on Cartesian plane. Every point is a lattice point (i.<=e. both of its coordinates are integers), and all points are distinct. You may draw two straight lines (not necessarily distinct). Is it po...
```python n = int(input()) L = [] for i in range(n): a = list(map(int,input().split())) L.append(a) def P(p1,p2): global L l = [] if p1[0] == p2[0]: for p in L: if p[0] != p1[0]: l.append(p) else: a = (p1[1]-p2[1])/(p1[0]-p2[0]) ...
-1
602
B
Approximating a Constant Range
PROGRAMMING
1,400
[ "dp", "implementation", "two pointers" ]
null
null
When Xellos was doing a practice course in university, he once had to measure the intensity of an effect that slowly approached equilibrium. A good way to determine the equilibrium intensity would be choosing a sufficiently large number of consecutive data points that seems as constant as possible and taking their aver...
The first line of the input contains a single integer *n* (2<=≤<=*n*<=≤<=100<=000) — the number of data points. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100<=000).
Print a single number — the maximum length of an almost constant range of the given sequence.
[ "5\n1 2 3 3 2\n", "11\n5 4 5 5 6 7 8 8 8 7 6\n" ]
[ "4\n", "5\n" ]
In the first sample, the longest almost constant range is [2, 5]; its length (the number of data points in it) is 4. In the second sample, there are three almost constant ranges of length 4: [1, 4], [6, 9] and [7, 10]; the only almost constant range of the maximum length 5 is [6, 10].
1,000
[ { "input": "5\n1 2 3 3 2", "output": "4" }, { "input": "11\n5 4 5 5 6 7 8 8 8 7 6", "output": "5" }, { "input": "2\n3 2", "output": "2" }, { "input": "4\n1001 1000 1000 1001", "output": "4" }, { "input": "4\n1 1 2 3", "output": "3" }, { "input": "3\n1 ...
1,448,385,808
2,908
Python 3
WRONG_ANSWER
PRETESTS
7
295
7,270,400
n = input() seq = list(map(int, input().split())) max_len = 1 j = 0 seque = seq[j] for i in range(len(seq)): if i < len(seq) - 1: seque = seq[i + 1] for j in range(j, len(seq)): if abs(seq[i] - seq[j]) > 1 or abs(seque - seq[j]) > 1: # print("BREaked: i=%s, j=%s, seq[i]=%...
Title: Approximating a Constant Range Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Xellos was doing a practice course in university, he once had to measure the intensity of an effect that slowly approached equilibrium. A good way to determine the equilibrium intensity would be choo...
```python n = input() seq = list(map(int, input().split())) max_len = 1 j = 0 seque = seq[j] for i in range(len(seq)): if i < len(seq) - 1: seque = seq[i + 1] for j in range(j, len(seq)): if abs(seq[i] - seq[j]) > 1 or abs(seque - seq[j]) > 1: # print("BREaked: i=%s, j=%s...
0
33
A
What is for dinner?
PROGRAMMING
1,200
[ "greedy", "implementation" ]
A. What is for dinner?
2
256
In one little known, but very beautiful country called Waterland, lives a lovely shark Valerie. Like all the sharks, she has several rows of teeth, and feeds on crucians. One of Valerie's distinguishing features is that while eating one crucian she uses only one row of her teeth, the rest of the teeth are "relaxing". ...
The first line contains three integers *n*, *m*, *k* (1<=≤<=*m*<=≤<=*n*<=≤<=1000,<=0<=≤<=*k*<=≤<=106) — total amount of Valerie's teeth, amount of tooth rows and amount of crucians in Valerie's portion for dinner. Then follow *n* lines, each containing two integers: *r* (1<=≤<=*r*<=≤<=*m*) — index of the row, where bel...
In the first line output the maximum amount of crucians that Valerie can consume for dinner.
[ "4 3 18\n2 3\n1 2\n3 6\n2 3\n", "2 2 13\n1 13\n2 12\n" ]
[ "11\n", "13\n" ]
none
500
[ { "input": "4 3 18\n2 3\n1 2\n3 6\n2 3", "output": "11" }, { "input": "2 2 13\n1 13\n2 12", "output": "13" }, { "input": "5 4 8\n4 6\n4 5\n1 3\n2 0\n3 3", "output": "8" }, { "input": "1 1 0\n1 3", "output": "0" }, { "input": "7 1 30\n1 8\n1 15\n1 5\n1 17\n1 9\n1 1...
1,564,499,665
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
156
0
s=str(input()) a=s.find("h") b=s.find("e",a) c=s.find("l",b) d=s.find("l",c+1) e=s.find("o",d) if s[a]+s[b]+s[c]+s[d]+s[e]=="hello": print("YES") else: print("NO")
Title: What is for dinner? Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: In one little known, but very beautiful country called Waterland, lives a lovely shark Valerie. Like all the sharks, she has several rows of teeth, and feeds on crucians. One of Valerie's distinguishing features is that...
```python s=str(input()) a=s.find("h") b=s.find("e",a) c=s.find("l",b) d=s.find("l",c+1) e=s.find("o",d) if s[a]+s[b]+s[c]+s[d]+s[e]=="hello": print("YES") else: print("NO") ```
0
0
none
none
none
0
[ "none" ]
null
null
Limak is a little polar bear. He loves connecting with other bears via social networks. He has *n* friends and his relation with the *i*-th of them is described by a unique integer *t**i*. The bigger this value is, the better the friendship is. No two friends have the same value *t**i*. Spring is starting and the Wint...
The first line contains three integers *n*, *k* and *q* (1<=≤<=*n*,<=*q*<=≤<=150<=000,<=1<=≤<=*k*<=≤<=*min*(6,<=*n*)) — the number of friends, the maximum number of displayed online friends and the number of queries, respectively. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=109) ...
For each query of the second type print one line with the answer — "YES" (without quotes) if the given friend is displayed and "NO" (without quotes) otherwise.
[ "4 2 8\n300 950 500 200\n1 3\n2 4\n2 3\n1 1\n1 2\n2 1\n2 2\n2 3\n", "6 3 9\n50 20 51 17 99 24\n1 3\n1 4\n1 5\n1 2\n2 4\n2 2\n1 1\n2 4\n2 3\n" ]
[ "NO\nYES\nNO\nYES\nYES\n", "NO\nYES\nNO\nYES\n" ]
In the first sample, Limak has 4 friends who all sleep initially. At first, the system displays nobody because nobody is online. There are the following 8 queries: 1. "1 3" — Friend 3 becomes online. 1. "2 4" — We should check if friend 4 is displayed. He isn't even online and thus we print "NO". 1. "2 3" — We shou...
0
[ { "input": "4 2 8\n300 950 500 200\n1 3\n2 4\n2 3\n1 1\n1 2\n2 1\n2 2\n2 3", "output": "NO\nYES\nNO\nYES\nYES" }, { "input": "6 3 9\n50 20 51 17 99 24\n1 3\n1 4\n1 5\n1 2\n2 4\n2 2\n1 1\n2 4\n2 3", "output": "NO\nYES\nNO\nYES" }, { "input": "6 3 10\n62417580 78150524 410053501 582708235 ...
1,462,097,500
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
4,608,000
import heapq n,k,q=[int(i) for i in input().split()] k=min(k,n) Relations=[None] ind=[0]*(n+1) heap=[] l=0 Rmax=0 for i in input().split() : Relations.append(-int(i)) for i in range(q) : Q,ID=[int(j) for j in input().split()] if Q==1 : ind[ID]=1 if l<k : heap.appen...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is a little polar bear. He loves connecting with other bears via social networks. He has *n* friends and his relation with the *i*-th of them is described by a unique integer *t**i*. The bigger this value is, the better the ...
```python import heapq n,k,q=[int(i) for i in input().split()] k=min(k,n) Relations=[None] ind=[0]*(n+1) heap=[] l=0 Rmax=0 for i in input().split() : Relations.append(-int(i)) for i in range(q) : Q,ID=[int(j) for j in input().split()] if Q==1 : ind[ID]=1 if l<k : ...
0
757
A
Gotta Catch Em' All!
PROGRAMMING
1,000
[ "implementation" ]
null
null
Bash wants to become a Pokemon master one day. Although he liked a lot of Pokemon, he has always been fascinated by Bulbasaur the most. Soon, things started getting serious and his fascination turned into an obsession. Since he is too young to go out and catch Bulbasaur, he came up with his own way of catching a Bulbas...
Input contains a single line containing a string *s* (1<=<=≤<=<=|*s*|<=<=≤<=<=105) — the text on the front page of the newspaper without spaces and punctuation marks. |*s*| is the length of the string *s*. The string *s* contains lowercase and uppercase English letters, i.e. .
Output a single integer, the answer to the problem.
[ "Bulbbasaur\n", "F\n", "aBddulbasaurrgndgbualdBdsagaurrgndbb\n" ]
[ "1\n", "0\n", "2\n" ]
In the first case, you could pick: Bulbbasaur. In the second case, there is no way to pick even a single Bulbasaur. In the third case, you can rearrange the string to BulbasaurBulbasauraddrgndgddgargndbb to get two words "Bulbasaur".
500
[ { "input": "Bulbbasaur", "output": "1" }, { "input": "F", "output": "0" }, { "input": "aBddulbasaurrgndgbualdBdsagaurrgndbb", "output": "2" }, { "input": "BBBBBBBBBBbbbbbbbbbbuuuuuuuuuullllllllllssssssssssaaaaaaaaaarrrrrrrrrr", "output": "5" }, { "input": "BBBBBBB...
1,485,804,134
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
77
4,608,000
spisok = [str(x) for x in input()] pokemon = ['B', 'u', 'l', 'b', 'a', 's', 'a', 'u', 'r'] net = [str(x) for x in spisok if x in pokemon] s = len(net)//len(pokemon) number_B = net.count('B') if number_B >= s: print(s) elif (number_B < s) and (number_B > 0): print(number_B)
Title: Gotta Catch Em' All! Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bash wants to become a Pokemon master one day. Although he liked a lot of Pokemon, he has always been fascinated by Bulbasaur the most. Soon, things started getting serious and his fascination turned into an obsess...
```python spisok = [str(x) for x in input()] pokemon = ['B', 'u', 'l', 'b', 'a', 's', 'a', 'u', 'r'] net = [str(x) for x in spisok if x in pokemon] s = len(net)//len(pokemon) number_B = net.count('B') if number_B >= s: print(s) elif (number_B < s) and (number_B > 0): print(number_B) ```
0
615
A
Bulbs
PROGRAMMING
800
[ "implementation" ]
null
null
Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is pressed, it turns on all the bulbs it's connected to. Can Vasya light up all the bulbs? I...
The first line of the input contains integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of buttons and the number of bulbs respectively. Each of the next *n* lines contains *x**i* (0<=≤<=*x**i*<=≤<=*m*) — the number of bulbs that are turned on by the *i*-th button, and then *x**i* numbers *y**ij* (1<=≤<=*y**...
If it's possible to turn on all *m* bulbs print "YES", otherwise print "NO".
[ "3 4\n2 1 4\n3 1 3 1\n1 2\n", "3 3\n1 1\n1 2\n1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample you can press each button once and turn on all the bulbs. In the 2 sample it is impossible to turn on the 3-rd lamp.
500
[ { "input": "3 4\n2 1 4\n3 1 3 1\n1 2", "output": "YES" }, { "input": "3 3\n1 1\n1 2\n1 1", "output": "NO" }, { "input": "3 4\n1 1\n1 2\n1 3", "output": "NO" }, { "input": "1 5\n5 1 2 3 4 5", "output": "YES" }, { "input": "1 5\n5 4 4 1 2 3", "output": "NO" },...
1,688,048,107
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
n,m=input().split() n,m=int(n,m) import numpy as np a=np.zeroes(m) for i in range(n): l=[] l=list(map(int,input().split().strip())) k=l[0] for i in range(k): a[l[k+1]-1]=1 if 0 is in a: print("NO") else: print("YES")
Title: Bulbs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is...
```python n,m=input().split() n,m=int(n,m) import numpy as np a=np.zeroes(m) for i in range(n): l=[] l=list(map(int,input().split().strip())) k=l[0] for i in range(k): a[l[k+1]-1]=1 if 0 is in a: print("NO") else: print("YES") ```
-1
538
A
Cutting Banner
PROGRAMMING
1,400
[ "brute force", "implementation" ]
null
null
A large banner with word CODEFORCES was ordered for the 1000-th onsite round of Codeforcesω that takes place on the Miami beach. Unfortunately, the company that made the banner mixed up two orders and delivered somebody else's banner that contains someone else's word. The word on the banner consists only of upper-case ...
The single line of the input contains the word written on the banner. The word only consists of upper-case English letters. The word is non-empty and its length doesn't exceed 100 characters. It is guaranteed that the word isn't word CODEFORCES.
Print 'YES', if there exists a way to cut out the substring, and 'NO' otherwise (without the quotes).
[ "CODEWAITFORITFORCES\n", "BOTTOMCODER\n", "DECODEFORCES\n", "DOGEFORCES\n" ]
[ "YES\n", "NO\n", "YES\n", "NO\n" ]
none
500
[ { "input": "CODEWAITFORITFORCES", "output": "YES" }, { "input": "BOTTOMCODER", "output": "NO" }, { "input": "DECODEFORCES", "output": "YES" }, { "input": "DOGEFORCES", "output": "NO" }, { "input": "ABACABA", "output": "NO" }, { "input": "CODEFORCE", ...
1,479,193,939
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
62
0
a = input() b = list("CODEFORCES") lst = [0,0,0,0,0,0,0,0,0,0] #nemu codenya dulu for i in range (len(b)): for x in range (len(a)): if b[i] in a[x]: lst[i] = a[x] if b == lst: print('YES') else: print("NO")
Title: Cutting Banner Time Limit: None seconds Memory Limit: None megabytes Problem Description: A large banner with word CODEFORCES was ordered for the 1000-th onsite round of Codeforcesω that takes place on the Miami beach. Unfortunately, the company that made the banner mixed up two orders and delivered somebody ...
```python a = input() b = list("CODEFORCES") lst = [0,0,0,0,0,0,0,0,0,0] #nemu codenya dulu for i in range (len(b)): for x in range (len(a)): if b[i] in a[x]: lst[i] = a[x] if b == lst: print('YES') else: print("NO") ```
0
604
A
Uncowed Forces
PROGRAMMING
1,000
[ "implementation" ]
null
null
Kevin Sun has just finished competing in Codeforces Round #334! The round was 120 minutes long and featured five problems with maximum point values of 500, 1000, 1500, 2000, and 2500, respectively. Despite the challenging tasks, Kevin was uncowed and bulldozed through all of them, distinguishing himself from the herd a...
The first line of the input contains five space-separated integers *m*1, *m*2, *m*3, *m*4, *m*5, where *m**i* (0<=≤<=*m**i*<=≤<=119) is the time of Kevin's last submission for problem *i*. His last submission is always correct and gets accepted. The second line contains five space-separated integers *w*1, *w*2, *w*3, ...
Print a single integer, the value of Kevin's final score.
[ "20 40 60 80 100\n0 1 2 3 4\n1 0\n", "119 119 119 119 119\n0 0 0 0 0\n10 0\n" ]
[ "4900\n", "4930\n" ]
In the second sample, Kevin takes 119 minutes on all of the problems. Therefore, he gets <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/42158dc2bc78cd21fa679530ae9ef8b9ea298d15.png" style="max-width: 100.0%;max-height: 100.0%;"/> of the points on each problem. So his score from solving pro...
500
[ { "input": "20 40 60 80 100\n0 1 2 3 4\n1 0", "output": "4900" }, { "input": "119 119 119 119 119\n0 0 0 0 0\n10 0", "output": "4930" }, { "input": "3 6 13 38 60\n6 10 10 3 8\n9 9", "output": "5088" }, { "input": "21 44 11 68 75\n6 2 4 8 4\n2 8", "output": "4522" }, {...
1,450,813,240
2,147,483,647
Python 3
OK
TESTS
57
62
0
minutes = input().split() tries = input().split() good_bad = input().split() s = 0 for i in range(len(minutes)): if i == 0: s += max(0.3 * 500, (1 - int(minutes[0])/250)*500 - 50*int(tries[0])) elif i == 1: s += max(0.3 * 1000, (1 - int(minutes[1])/250)*1000 - 50*int(tries[1])) elif i == 2: s += max(0.3 * 15...
Title: Uncowed Forces Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kevin Sun has just finished competing in Codeforces Round #334! The round was 120 minutes long and featured five problems with maximum point values of 500, 1000, 1500, 2000, and 2500, respectively. Despite the challengin...
```python minutes = input().split() tries = input().split() good_bad = input().split() s = 0 for i in range(len(minutes)): if i == 0: s += max(0.3 * 500, (1 - int(minutes[0])/250)*500 - 50*int(tries[0])) elif i == 1: s += max(0.3 * 1000, (1 - int(minutes[1])/250)*1000 - 50*int(tries[1])) elif i == 2: s += ma...
3
681
A
A Good Contest
PROGRAMMING
800
[ "implementation" ]
null
null
Codeforces user' handle color depends on his rating — it is red if his rating is greater or equal to 2400; it is orange if his rating is less than 2400 but greater or equal to 2200, etc. Each time participant takes part in a rated contest, his rating is changed depending on his performance. Anton wants the color of hi...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of participants Anton has outscored in this contest . The next *n* lines describe participants results: the *i*-th of them consists of a participant handle *name**i* and two integers *before**i* and *after**i* (<=-<=4000<=≤<=*be...
Print «YES» (quotes for clarity), if Anton has performed good in the contest and «NO» (quotes for clarity) otherwise.
[ "3\nBurunduk1 2526 2537\nBudAlNik 2084 2214\nsubscriber 2833 2749\n", "3\nApplejack 2400 2400\nFluttershy 2390 2431\nPinkie_Pie -2500 -2450\n" ]
[ "YES", "NO" ]
In the first sample, Anton has outscored user with handle Burunduk1, whose handle was colored red before the contest and his rating has increased after the contest. In the second sample, Applejack's rating has not increased after the contest, while both Fluttershy's and Pinkie_Pie's handles were not colored red before...
500
[ { "input": "3\nBurunduk1 2526 2537\nBudAlNik 2084 2214\nsubscriber 2833 2749", "output": "YES" }, { "input": "3\nApplejack 2400 2400\nFluttershy 2390 2431\nPinkie_Pie -2500 -2450", "output": "NO" }, { "input": "1\nDb -3373 3591", "output": "NO" }, { "input": "5\nQ2bz 960 2342...
1,664,474,994
2,147,483,647
PyPy 3-64
OK
TESTS
60
62
0
tt = int(input()) for _ in range(tt): ttt = input().split(" ") point1 = int(ttt[1]) point2 = int(ttt[2]) diffrance = point2 - point1 if diffrance > 0 and point1 >= 2400: print("YES") exit() print("NO")
Title: A Good Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Codeforces user' handle color depends on his rating — it is red if his rating is greater or equal to 2400; it is orange if his rating is less than 2400 but greater or equal to 2200, etc. Each time participant takes part ...
```python tt = int(input()) for _ in range(tt): ttt = input().split(" ") point1 = int(ttt[1]) point2 = int(ttt[2]) diffrance = point2 - point1 if diffrance > 0 and point1 >= 2400: print("YES") exit() print("NO") ```
3
304
B
Calendar
PROGRAMMING
1,300
[ "brute force", "implementation" ]
null
null
Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's scheme of leap years as follows: Every year that is exactly divisible by four is a leap yea...
The first two lines contain two dates, each date is in the format yyyy:mm:dd (1900<=≤<=*yyyy*<=≤<=2038 and yyyy:mm:dd is a legal date).
Print a single integer — the answer to the problem.
[ "1900:01:01\n2038:12:31\n", "1996:03:09\n1991:11:12\n" ]
[ "50768\n", "1579\n" ]
none
1,000
[ { "input": "1900:01:01\n2038:12:31", "output": "50768" }, { "input": "1996:03:09\n1991:11:12", "output": "1579" }, { "input": "1999:12:31\n2000:02:29", "output": "60" }, { "input": "1903:09:27\n1988:06:15", "output": "30943" }, { "input": "1913:11:14\n1901:05:11",...
1,541,319,967
2,147,483,647
Python 3
OK
TESTS
40
466
1,126,400
import datetime _a = datetime.datetime.strptime(input(),"%Y:%m:%d") _b = datetime.datetime.strptime(input(),"%Y:%m:%d") print (abs((_a-_b).days))
Title: Calendar Time Limit: None seconds Memory Limit: None megabytes Problem Description: Calendars in widespread use today include the Gregorian calendar, which is the de facto international standard, and is used almost everywhere in the world for civil purposes. The Gregorian reform modified the Julian calendar's...
```python import datetime _a = datetime.datetime.strptime(input(),"%Y:%m:%d") _b = datetime.datetime.strptime(input(),"%Y:%m:%d") print (abs((_a-_b).days)) ```
3
557
B
Pasha and Tea
PROGRAMMING
1,500
[ "constructive algorithms", "implementation", "math", "sortings" ]
null
null
Pasha decided to invite his friends to a tea party. For that occasion, he has a large teapot with the capacity of *w* milliliters and 2*n* tea cups, each cup is for one of Pasha's friends. The *i*-th cup can hold at most *a**i* milliliters of water. It turned out that among Pasha's friends there are exactly *n* boys a...
The first line of the input contains two integers, *n* and *w* (1<=≤<=*n*<=≤<=105, 1<=≤<=*w*<=≤<=109) — the number of Pasha's friends that are boys (equal to the number of Pasha's friends that are girls) and the capacity of Pasha's teapot in milliliters. The second line of the input contains the sequence of integers *...
Print a single real number — the maximum total amount of water in milliliters that Pasha can pour to his friends without violating the given conditions. Your answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=6.
[ "2 4\n1 1 1 1\n", "3 18\n4 4 4 2 2 2\n", "1 5\n2 3\n" ]
[ "3", "18", "4.5" ]
Pasha also has candies that he is going to give to girls but that is another task...
1,000
[ { "input": "2 4\n1 1 1 1", "output": "3.0000000000" }, { "input": "3 18\n4 4 4 2 2 2", "output": "18.0000000000" }, { "input": "1 5\n2 3", "output": "4.5000000000" }, { "input": "1 1\n1000000000 1000000000", "output": "1.0000000000" }, { "input": "4 1000000000\n1 ...
1,516,880,543
2,147,483,647
Python 3
OK
TESTS
50
187
23,654,400
# http://codeforces.com/problemset/problem/557/B boy_count, amount_of_tea = map(int, input().split()) cups = map(int, input().split()) cups = sorted(cups) smallest_cup_girl = cups[0] smallest_cup_boy = cups[boy_count] tea_unit_needed = boy_count * 3 min_amount = min(float(smallest_cup_girl), smallest_cup...
Title: Pasha and Tea Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha decided to invite his friends to a tea party. For that occasion, he has a large teapot with the capacity of *w* milliliters and 2*n* tea cups, each cup is for one of Pasha's friends. The *i*-th cup can hold at most ...
```python # http://codeforces.com/problemset/problem/557/B boy_count, amount_of_tea = map(int, input().split()) cups = map(int, input().split()) cups = sorted(cups) smallest_cup_girl = cups[0] smallest_cup_boy = cups[boy_count] tea_unit_needed = boy_count * 3 min_amount = min(float(smallest_cup_girl), sm...
3
895
A
Pizza Separation
PROGRAMMING
1,200
[ "brute force", "implementation" ]
null
null
Students Vasya and Petya are studying at the BSU (Byteland State University). At one of the breaks they decided to order a pizza. In this problem pizza is a circle of some radius. The pizza was delivered already cut into *n* pieces. The *i*-th piece is a sector of angle equal to *a**i*. Vasya and Petya want to divide a...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=360)  — the number of pieces into which the delivered pizza was cut. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=360)  — the angles of the sectors into which the pizza was cut. The sum of all *a**i* is 360.
Print one integer  — the minimal difference between angles of sectors that will go to Vasya and Petya.
[ "4\n90 90 90 90\n", "3\n100 100 160\n", "1\n360\n", "4\n170 30 150 10\n" ]
[ "0\n", "40\n", "360\n", "0\n" ]
In first sample Vasya can take 1 and 2 pieces, Petya can take 3 and 4 pieces. Then the answer is |(90 + 90) - (90 + 90)| = 0. In third sample there is only one piece of pizza that can be taken by only one from Vasya and Petya. So the answer is |360 - 0| = 360. In fourth sample Vasya can take 1 and 4 pieces, then Pety...
500
[ { "input": "4\n90 90 90 90", "output": "0" }, { "input": "3\n100 100 160", "output": "40" }, { "input": "1\n360", "output": "360" }, { "input": "4\n170 30 150 10", "output": "0" }, { "input": "5\n10 10 10 10 320", "output": "280" }, { "input": "8\n45 4...
1,511,714,012
1,712
Python 3
OK
TESTS
93
78
5,734,400
from collections import deque n = int(input()) a = deque(map(int, input().split())) piece = 0 ans = [] for cnt in range(n): for p in a: piece += p if piece >= 180: ans.append(piece - (360 - piece)) piece = 0 a.appendleft(a.pop()) break print(min(ans...
Title: Pizza Separation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Students Vasya and Petya are studying at the BSU (Byteland State University). At one of the breaks they decided to order a pizza. In this problem pizza is a circle of some radius. The pizza was delivered already cut in...
```python from collections import deque n = int(input()) a = deque(map(int, input().split())) piece = 0 ans = [] for cnt in range(n): for p in a: piece += p if piece >= 180: ans.append(piece - (360 - piece)) piece = 0 a.appendleft(a.pop()) break pri...
3
362
B
Petya and Staircases
PROGRAMMING
1,100
[ "implementation", "sortings" ]
null
null
Little boy Petya loves stairs very much. But he is bored from simple going up and down them — he loves jumping over several stairs at a time. As he stands on some stair, he can either jump to the next one or jump over one or two stairs at a time. But some stairs are too dirty and Petya doesn't want to step on them. No...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=109, 0<=≤<=*m*<=≤<=3000) — the number of stairs in the staircase and the number of dirty stairs, correspondingly. The second line contains *m* different space-separated integers *d*1,<=*d*2,<=...,<=*d**m* (1<=≤<=*d**i*<=≤<=*n*) — the numbers of the dirty s...
Print "YES" if Petya can reach stair number *n*, stepping only on the clean stairs. Otherwise print "NO".
[ "10 5\n2 4 8 3 6\n", "10 5\n2 4 5 7 9\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "10 5\n2 4 8 3 6", "output": "NO" }, { "input": "10 5\n2 4 5 7 9", "output": "YES" }, { "input": "10 9\n2 3 4 5 6 7 8 9 10", "output": "NO" }, { "input": "5 2\n4 5", "output": "NO" }, { "input": "123 13\n36 73 111 2 92 5 47 55 48 113 7 78 37", "outp...
1,626,181,465
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
6,758,400
n,m=map(int,input().split()) d=list(map(int,input().split())) a=0 b=0 for i in d: if i%2==0: a+=1 else: b+=1 if a>b: print("NO") else: print("YES")
Title: Petya and Staircases Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little boy Petya loves stairs very much. But he is bored from simple going up and down them — he loves jumping over several stairs at a time. As he stands on some stair, he can either jump to the next one or jump o...
```python n,m=map(int,input().split()) d=list(map(int,input().split())) a=0 b=0 for i in d: if i%2==0: a+=1 else: b+=1 if a>b: print("NO") else: print("YES") ```
0
652
A
Gabriel and Caterpillar
PROGRAMMING
1,400
[ "implementation", "math" ]
null
null
The 9-th grade student Gabriel noticed a caterpillar on a tree when walking around in a forest after the classes. The caterpillar was on the height *h*1 cm from the ground. On the height *h*2 cm (*h*2<=&gt;<=*h*1) on the same tree hung an apple and the caterpillar was crawling to the apple. Gabriel is interested when ...
The first line contains two integers *h*1,<=*h*2 (1<=≤<=*h*1<=&lt;<=*h*2<=≤<=105) — the heights of the position of the caterpillar and the apple in centimeters. The second line contains two integers *a*,<=*b* (1<=≤<=*a*,<=*b*<=≤<=105) — the distance the caterpillar goes up by day and slips down by night, in centimeter...
Print the only integer *k* — the number of days Gabriel should wait to return to the forest and see the caterpillar getting the apple. If the caterpillar can't get the apple print the only integer <=-<=1.
[ "10 30\n2 1\n", "10 13\n1 1\n", "10 19\n1 2\n", "1 50\n5 4\n" ]
[ "1\n", "0\n", "-1\n", "1\n" ]
In the first example at 10 pm of the first day the caterpillar gets the height 26. At 10 am of the next day it slips down to the height 14. And finally at 6 pm of the same day the caterpillar gets the apple. Note that in the last example the caterpillar was slipping down under the ground and getting the apple on the n...
0
[ { "input": "10 30\n2 1", "output": "1" }, { "input": "10 13\n1 1", "output": "0" }, { "input": "10 19\n1 2", "output": "-1" }, { "input": "1 50\n5 4", "output": "1" }, { "input": "1 1000\n2 1", "output": "82" }, { "input": "999 1000\n1 1", "output"...
1,678,791,691
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
1,000
0
h1h2 = input().split() ab = input().split() h1 = int(h1h2[0]) h2 = int(h1h2[1]) a = int(ab[0]) b = int(ab[1]) def main(): t = h1 + (8 * a) if t >= h2: return 0 if b > a: return -1 days = 0 while t <= h2: t -= 12*b t += 12*a ...
Title: Gabriel and Caterpillar Time Limit: None seconds Memory Limit: None megabytes Problem Description: The 9-th grade student Gabriel noticed a caterpillar on a tree when walking around in a forest after the classes. The caterpillar was on the height *h*1 cm from the ground. On the height *h*2 cm (*h*2<=&gt;<=*h*...
```python h1h2 = input().split() ab = input().split() h1 = int(h1h2[0]) h2 = int(h1h2[1]) a = int(ab[0]) b = int(ab[1]) def main(): t = h1 + (8 * a) if t >= h2: return 0 if b > a: return -1 days = 0 while t <= h2: t -= 12*b t += 12*a ...
0
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,692,874,310
2,147,483,647
Python 3
OK
TESTS
35
92
0
m,n=map(int,input().split()) if m%2!=0 and n%2!=0: max_dom=(m*n-1)//2 else: max_dom=m*n//2 print(max_dom)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python m,n=map(int,input().split()) if m%2!=0 and n%2!=0: max_dom=(m*n-1)//2 else: max_dom=m*n//2 print(max_dom) ```
3.977
507
A
Amr and Music
PROGRAMMING
1,000
[ "greedy", "implementation", "sortings" ]
null
null
Amr is a young coder who likes music a lot. He always wanted to learn how to play music but he was busy coding so he got an idea. Amr has *n* instruments, it takes *a**i* days to learn *i*-th instrument. Being busy, Amr dedicated *k* days to learn how to play the maximum possible number of instruments. Amr asked for ...
The first line contains two numbers *n*, *k* (1<=≤<=*n*<=≤<=100, 0<=≤<=*k*<=≤<=10<=000), the number of instruments and number of days respectively. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=100), representing number of days required to learn the *i*-th instrument.
In the first line output one integer *m* representing the maximum number of instruments Amr can learn. In the second line output *m* space-separated integers: the indices of instruments to be learnt. You may output indices in any order. if there are multiple optimal solutions output any. It is not necessary to use al...
[ "4 10\n4 3 1 2\n", "5 6\n4 3 1 1 2\n", "1 3\n4\n" ]
[ "4\n1 2 3 4", "3\n1 3 4", "0\n" ]
In the first test Amr can learn all 4 instruments. In the second test other possible solutions are: {2, 3, 5} or {3, 4, 5}. In the third test Amr doesn't have enough time to learn the only presented instrument.
500
[ { "input": "4 10\n4 3 1 2", "output": "4\n1 2 3 4" }, { "input": "5 6\n4 3 1 1 2", "output": "3\n3 4 5" }, { "input": "1 3\n4", "output": "0" }, { "input": "2 100\n100 100", "output": "1\n1" }, { "input": "3 150\n50 50 50", "output": "3\n1 2 3" }, { "i...
1,593,957,169
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
108
20,172,800
n,k=map(int,input().split()) a=list(map(int,input().split())) a.sort() c=0 for j in range(n): if((k-a[j])>=0): c=c+1 k=k-a[j] print(c) print(*a[:c])
Title: Amr and Music Time Limit: None seconds Memory Limit: None megabytes Problem Description: Amr is a young coder who likes music a lot. He always wanted to learn how to play music but he was busy coding so he got an idea. Amr has *n* instruments, it takes *a**i* days to learn *i*-th instrument. Being busy, Amr ...
```python n,k=map(int,input().split()) a=list(map(int,input().split())) a.sort() c=0 for j in range(n): if((k-a[j])>=0): c=c+1 k=k-a[j] print(c) print(*a[:c]) ```
0
686
A
Free Ice Cream
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, people start standing in the queue before Kay and Gerda's house even in the night. Each person in the...
The first line contains two space-separated integers *n* and *x* (1<=≤<=*n*<=≤<=1000, 0<=≤<=*x*<=≤<=109). Each of the next *n* lines contains a character '+' or '-', and an integer *d**i*, separated by a space (1<=≤<=*d**i*<=≤<=109). Record "+ *d**i*" in *i*-th line means that a carrier with *d**i* ice cream packs occ...
Print two space-separated integers — number of ice cream packs left after all operations, and number of kids that left the house in distress.
[ "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20\n", "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98\n" ]
[ "22 1\n", "3 2\n" ]
Consider the first sample. 1. Initially Kay and Gerda have 7 packs of ice cream. 1. Carrier brings 5 more, so now they have 12 packs. 1. A kid asks for 10 packs and receives them. There are only 2 packs remaining. 1. Another kid asks for 20 packs. Kay and Gerda do not have them, so the kid goes away distressed. 1....
500
[ { "input": "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20", "output": "22 1" }, { "input": "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98", "output": "3 2" }, { "input": "6 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000", "output": "7000000000 0" }, { ...
1,684,424,198
2,147,483,647
PyPy 3-64
OK
TESTS
34
139
9,011,200
import math from sys import stdin from collections import Counter, defaultdict, deque, namedtuple from bisect import bisect_right, bisect_left from typing import List, DefaultDict from itertools import permutations def readarray(typ): return list(map(typ, stdin.readline().split())) def readint...
Title: Free Ice Cream Time Limit: None seconds Memory Limit: None megabytes Problem Description: After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, p...
```python import math from sys import stdin from collections import Counter, defaultdict, deque, namedtuple from bisect import bisect_right, bisect_left from typing import List, DefaultDict from itertools import permutations def readarray(typ): return list(map(typ, stdin.readline().split())) d...
3
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,661,539,433
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
31
92
0
a,b=list(map(int,input().split())) t=2 if a%2==0: k=0 else: k=1 if k==0: sum=(a//2)*b elif k==1: for i in range(0,b): if t+2<=b: t+=2 sum=((a//2)*b)+t//2 print(sum)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python a,b=list(map(int,input().split())) t=2 if a%2==0: k=0 else: k=1 if k==0: sum=(a//2)*b elif k==1: for i in range(0,b): if t+2<=b: t+=2 sum=((a//2)*b)+t//2 print(sum) ```
0
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,669,447,052
2,147,483,647
Python 3
OK
TESTS
40
46
0
s = input() n = len(s) word = 'hello' k = 0 for i in range(n): if s[i] == word[k]: k += 1 if k == 5: print('YES') break else: print('NO')
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s = input() n = len(s) word = 'hello' k = 0 for i in range(n): if s[i] == word[k]: k += 1 if k == 5: print('YES') break else: print('NO') ```
3.977
242
A
Heads or Tails
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
Petya and Vasya are tossing a coin. Their friend Valera is appointed as a judge. The game is very simple. First Vasya tosses a coin *x* times, then Petya tosses a coin *y* times. If the tossing player gets head, he scores one point. If he gets tail, nobody gets any points. The winner is the player with most points by t...
The single line contains four integers *x*,<=*y*,<=*a*,<=*b* (1<=≤<=*a*<=≤<=*x*<=≤<=100,<=1<=≤<=*b*<=≤<=*y*<=≤<=100). The numbers on the line are separated by a space.
In the first line print integer *n* — the number of possible outcomes of the game. Then on *n* lines print the outcomes. On the *i*-th line print a space-separated pair of integers *c**i*, *d**i* — the number of heads Vasya and Petya got in the *i*-th outcome of the game, correspondingly. Print pairs of integers (*c**i...
[ "3 2 1 1\n", "2 4 2 2\n" ]
[ "3\n2 1\n3 1\n3 2\n", "0\n" ]
none
500
[ { "input": "3 2 1 1", "output": "3\n2 1\n3 1\n3 2" }, { "input": "2 4 2 2", "output": "0" }, { "input": "1 1 1 1", "output": "0" }, { "input": "4 5 2 3", "output": "1\n4 3" }, { "input": "10 6 3 4", "output": "15\n5 4\n6 4\n6 5\n7 4\n7 5\n7 6\n8 4\n8 5\n8 6\n9...
1,609,142,704
2,147,483,647
Python 3
OK
TESTS
23
218
307,200
def solve(): x, y, a,b = map(int, input().split()) newA = a res = [] while newA <= x: newB = b while newB<=y and newB < newA: res.append((newA, newB)) newB+=1 newA+=1 n = len(res) print(n) for x, y in res: print(x, ...
Title: Heads or Tails Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya and Vasya are tossing a coin. Their friend Valera is appointed as a judge. The game is very simple. First Vasya tosses a coin *x* times, then Petya tosses a coin *y* times. If the tossing player gets head, he score...
```python def solve(): x, y, a,b = map(int, input().split()) newA = a res = [] while newA <= x: newB = b while newB<=y and newB < newA: res.append((newA, newB)) newB+=1 newA+=1 n = len(res) print(n) for x, y in res: ...
3
453
A
Little Pony and Expected Maximum
PROGRAMMING
1,600
[ "probabilities" ]
null
null
Twilight Sparkle was playing Ludo with her friends Rainbow Dash, Apple Jack and Flutter Shy. But she kept losing. Having returned to the castle, Twilight Sparkle became interested in the dice that were used in the game. The dice has *m* faces: the first face of the dice contains a dot, the second one contains two dots...
A single line contains two integers *m* and *n* (1<=≤<=*m*,<=*n*<=≤<=105).
Output a single real number corresponding to the expected maximum. The answer will be considered correct if its relative or absolute error doesn't exceed 10<=<=-<=4.
[ "6 1\n", "6 3\n", "2 2\n" ]
[ "3.500000000000\n", "4.958333333333\n", "1.750000000000\n" ]
Consider the third test example. If you've made two tosses: 1. You can get 1 in the first toss, and 2 in the second. Maximum equals to 2. 1. You can get 1 in the first toss, and 1 in the second. Maximum equals to 1. 1. You can get 2 in the first toss, and 1 in the second. Maximum equals to 2. 1. You can get 2 in t...
500
[ { "input": "6 1", "output": "3.500000000000" }, { "input": "6 3", "output": "4.958333333333" }, { "input": "2 2", "output": "1.750000000000" }, { "input": "5 4", "output": "4.433600000000" }, { "input": "5 8", "output": "4.814773760000" }, { "input": "...
1,499,151,683
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include<bits/stdc++.h> using namespace std; #define int long long int #define slld(x) scanf("%lld",&(x)) #define sd(x) scanf("%lld",&(x)) #define fi first #define se second #define mx 100001 #define md 1000000007 #define pii pair<int,int> #define pll pair<ll,ll> #define vii vector<int> #define vll vector<l...
Title: Little Pony and Expected Maximum Time Limit: None seconds Memory Limit: None megabytes Problem Description: Twilight Sparkle was playing Ludo with her friends Rainbow Dash, Apple Jack and Flutter Shy. But she kept losing. Having returned to the castle, Twilight Sparkle became interested in the dice that were ...
```python #include<bits/stdc++.h> using namespace std; #define int long long int #define slld(x) scanf("%lld",&(x)) #define sd(x) scanf("%lld",&(x)) #define fi first #define se second #define mx 100001 #define md 1000000007 #define pii pair<int,int> #define pll pair<ll,ll> #define vii vector<int> #define vl...
-1
5
D
Follow Traffic Rules
PROGRAMMING
2,100
[ "implementation", "math" ]
D. Follow Traffic Rules
1
64
Everybody knows that the capital of Berland is connected to Bercouver (the Olympic capital) by a direct road. To improve the road's traffic capacity, there was placed just one traffic sign, limiting the maximum speed. Traffic signs in Berland are a bit peculiar, because they limit the speed only at that point on the ro...
The first line of the input file contains two integer numbers *a* and *v* (1<=≤<=*a*,<=*v*<=≤<=10000). The second line contains three integer numbers *l*, *d* and *w* (2<=≤<=*l*<=≤<=10000; 1<=≤<=*d*<=&lt;<=*l*; 1<=≤<=*w*<=≤<=10000).
Print the answer with at least five digits after the decimal point.
[ "1 1\n2 1 3\n", "5 70\n200 170 40\n" ]
[ "2.500000000000\n", "8.965874696353\n" ]
none
0
[ { "input": "1 1\n2 1 3", "output": "2.500000000000" }, { "input": "5 70\n200 170 40", "output": "8.965874696353" }, { "input": "6 80\n100 50 10", "output": "7.312347829731" }, { "input": "7 80\n100 50 50", "output": "5.345224838248" }, { "input": "8 80\n100 50 199...
1,613,335,896
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
154
0
from math import * a,v=list(map(int,input().split())) l,d,w=list(map(int,input().split())) if v>w: s1=w**2/2/a if d<=s1: t=sqrt(2*d/a) else: t=sqrt(2*s1/a) s2=min((d-s1)/2,(v**2-w**2)/(2*a)) if s2==(d-s1)/2: t+=2*(sqrt(2*(s1+s2)/a)-sqrt(2*s1/a)) ...
Title: Follow Traffic Rules Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Everybody knows that the capital of Berland is connected to Bercouver (the Olympic capital) by a direct road. To improve the road's traffic capacity, there was placed just one traffic sign, limiting the maximum speed. T...
```python from math import * a,v=list(map(int,input().split())) l,d,w=list(map(int,input().split())) if v>w: s1=w**2/2/a if d<=s1: t=sqrt(2*d/a) else: t=sqrt(2*s1/a) s2=min((d-s1)/2,(v**2-w**2)/(2*a)) if s2==(d-s1)/2: t+=2*(sqrt(2*(s1+s2)/a)-sqrt(2*s1/a...
0
112
A
Petya and Strings
PROGRAMMING
800
[ "implementation", "strings" ]
A. Petya and Strings
2
256
Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. The letters' case does not matter, that is an uppercase letter is considered equivalent to the corr...
Each of the first two lines contains a bought string. The strings' lengths range from 1 to 100 inclusive. It is guaranteed that the strings are of the same length and also consist of uppercase and lowercase Latin letters.
If the first string is less than the second one, print "-1". If the second string is less than the first one, print "1". If the strings are equal, print "0". Note that the letters' case is not taken into consideration when the strings are compared.
[ "aaaa\naaaA\n", "abs\nAbz\n", "abcdefg\nAbCdEfF\n" ]
[ "0\n", "-1\n", "1\n" ]
If you want more formal information about the lexicographical order (also known as the "dictionary order" or "alphabetical order"), you can visit the following site: - http://en.wikipedia.org/wiki/Lexicographical_order
500
[ { "input": "aaaa\naaaA", "output": "0" }, { "input": "abs\nAbz", "output": "-1" }, { "input": "abcdefg\nAbCdEfF", "output": "1" }, { "input": "asadasdasd\nasdwasdawd", "output": "-1" }, { "input": "aslkjlkasdd\nasdlkjdajwi", "output": "1" }, { "input":...
1,697,695,857
2,147,483,647
PyPy 3-64
OK
TESTS
53
218
0
s=input().lower() t=input().lower() print((s>t)-(s<t))
Title: Petya and Strings Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. ...
```python s=input().lower() t=input().lower() print((s>t)-(s<t)) ```
3.9455
987
A
Infinity Gauntlet
PROGRAMMING
800
[ "implementation" ]
null
null
You took a peek on Thanos wearing Infinity Gauntlet. In the Gauntlet there is a place for six Infinity Gems: - the Power Gem of purple color, - the Time Gem of green color, - the Space Gem of blue color, - the Soul Gem of orange color, - the Reality Gem of red color, - the Mind Gem of yellow color. Using colors...
In the first line of input there is one integer $n$ ($0 \le n \le 6$) — the number of Gems in Infinity Gauntlet. In next $n$ lines there are colors of Gems you saw. Words used for colors are: purple, green, blue, orange, red, yellow. It is guaranteed that all the colors are distinct. All colors are given in lowercase ...
In the first line output one integer $m$ ($0 \le m \le 6$) — the number of absent Gems. Then in $m$ lines print the names of absent Gems, each on its own line. Words used for names are: Power, Time, Space, Soul, Reality, Mind. Names can be printed in any order. Keep the first letter uppercase, others lowercase.
[ "4\nred\npurple\nyellow\norange\n", "0\n" ]
[ "2\nSpace\nTime\n", "6\nTime\nMind\nSoul\nPower\nReality\nSpace\n" ]
In the first sample Thanos already has Reality, Power, Mind and Soul Gems, so he needs two more: Time and Space. In the second sample Thanos doesn't have any Gems, so he needs all six.
500
[ { "input": "4\nred\npurple\nyellow\norange", "output": "2\nSpace\nTime" }, { "input": "0", "output": "6\nMind\nSpace\nPower\nTime\nReality\nSoul" }, { "input": "6\npurple\nblue\nyellow\nred\ngreen\norange", "output": "0" }, { "input": "1\npurple", "output": "5\nTime\nReal...
1,654,906,285
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
0
n=int(input()) d1={'green':'Time','yellow':'Mind','orange':'Soul','purple':'Power','red':'Reality','blue':'Space'} if n==0: for x in d1.values(): print(x) else: for x in range(0,n): colour=input() del d1[colour] for x in d1.values(): print(x)
Title: Infinity Gauntlet Time Limit: None seconds Memory Limit: None megabytes Problem Description: You took a peek on Thanos wearing Infinity Gauntlet. In the Gauntlet there is a place for six Infinity Gems: - the Power Gem of purple color, - the Time Gem of green color, - the Space Gem of blue color, - the So...
```python n=int(input()) d1={'green':'Time','yellow':'Mind','orange':'Soul','purple':'Power','red':'Reality','blue':'Space'} if n==0: for x in d1.values(): print(x) else: for x in range(0,n): colour=input() del d1[colour] for x in d1.values(): print(x) ```
0
602
B
Approximating a Constant Range
PROGRAMMING
1,400
[ "dp", "implementation", "two pointers" ]
null
null
When Xellos was doing a practice course in university, he once had to measure the intensity of an effect that slowly approached equilibrium. A good way to determine the equilibrium intensity would be choosing a sufficiently large number of consecutive data points that seems as constant as possible and taking their aver...
The first line of the input contains a single integer *n* (2<=≤<=*n*<=≤<=100<=000) — the number of data points. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100<=000).
Print a single number — the maximum length of an almost constant range of the given sequence.
[ "5\n1 2 3 3 2\n", "11\n5 4 5 5 6 7 8 8 8 7 6\n" ]
[ "4\n", "5\n" ]
In the first sample, the longest almost constant range is [2, 5]; its length (the number of data points in it) is 4. In the second sample, there are three almost constant ranges of length 4: [1, 4], [6, 9] and [7, 10]; the only almost constant range of the maximum length 5 is [6, 10].
1,000
[ { "input": "5\n1 2 3 3 2", "output": "4" }, { "input": "11\n5 4 5 5 6 7 8 8 8 7 6", "output": "5" }, { "input": "2\n3 2", "output": "2" }, { "input": "4\n1001 1000 1000 1001", "output": "4" }, { "input": "4\n1 1 2 3", "output": "3" }, { "input": "3\n1 ...
1,448,920,867
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
21
2,000
7,577,600
import sys n = int(sys.stdin.readline()) a = sys.stdin.readline().split(" ") a = [int(x) for x in a] maxcount = 0 for i in range(n): count = 0 j = i s = a[j] t = s while j<n and abs(a[j] - s) <=1 and abs(a[j] - t) <=1: count +=1 if a[j]!= s: t = a[j] ...
Title: Approximating a Constant Range Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Xellos was doing a practice course in university, he once had to measure the intensity of an effect that slowly approached equilibrium. A good way to determine the equilibrium intensity would be choo...
```python import sys n = int(sys.stdin.readline()) a = sys.stdin.readline().split(" ") a = [int(x) for x in a] maxcount = 0 for i in range(n): count = 0 j = i s = a[j] t = s while j<n and abs(a[j] - s) <=1 and abs(a[j] - t) <=1: count +=1 if a[j]!= s: t =...
0
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,616,640,220
2,147,483,647
Python 3
OK
TESTS
35
154
0
L=input().split() M=int(L[0]) N=int(L[1]) if(1<=M<=N<=16): print(((M*N)-(M*N%2))//2)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python L=input().split() M=int(L[0]) N=int(L[1]) if(1<=M<=N<=16): print(((M*N)-(M*N%2))//2) ```
3.9615
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,639,695,183
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
0
x = str(input()) countUpper = 0 countLower = 0 newWord = "" for i in x: if(i.isupper()): countUpper += 1 elif(i.islower()): countLower += 1 if(countUpper>countLower): newWord += x.upper() elif(countLower>countUpper): newWord += x.lower() print(newWord)
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python x = str(input()) countUpper = 0 countLower = 0 newWord = "" for i in x: if(i.isupper()): countUpper += 1 elif(i.islower()): countLower += 1 if(countUpper>countLower): newWord += x.upper() elif(countLower>countUpper): newWord += x.lower() print(newWord) ``...
0
255
A
Greg's Workout
PROGRAMMING
800
[ "implementation" ]
null
null
Greg is a beginner bodybuilder. Today the gym coach gave him the training plan. All it had was *n* integers *a*1,<=*a*2,<=...,<=*a**n*. These numbers mean that Greg needs to do exactly *n* exercises today. Besides, Greg should repeat the *i*-th in order exercise *a**i* times. Greg now only does three types of exercise...
The first line contains integer *n* (1<=≤<=*n*<=≤<=20). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=25) — the number of times Greg repeats the exercises.
Print word "chest" (without the quotes), if the chest gets the most exercise, "biceps" (without the quotes), if the biceps gets the most exercise and print "back" (without the quotes) if the back gets the most exercise. It is guaranteed that the input is such that the answer to the problem is unambiguous.
[ "2\n2 8\n", "3\n5 1 10\n", "7\n3 3 2 7 9 6 8\n" ]
[ "biceps\n", "back\n", "chest\n" ]
In the first sample Greg does 2 chest, 8 biceps and zero back exercises, so the biceps gets the most exercises. In the second sample Greg does 5 chest, 1 biceps and 10 back exercises, so the back gets the most exercises. In the third sample Greg does 18 chest, 12 biceps and 8 back exercises, so the chest gets the mos...
500
[ { "input": "2\n2 8", "output": "biceps" }, { "input": "3\n5 1 10", "output": "back" }, { "input": "7\n3 3 2 7 9 6 8", "output": "chest" }, { "input": "4\n5 6 6 2", "output": "chest" }, { "input": "5\n8 2 2 6 3", "output": "chest" }, { "input": "6\n8 7 ...
1,615,971,863
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
92
307,200
t=int(input()) n=list(map(int,input().split())) l=len(n) A=list() B=list() C=list() for i in range (l-1): A=a.append(a[i]) i=i+3 for j in range (1,l-1): B=a.append(a[j]) j=j+3 for m in range (2,l-1): ba=a.append(a[m]) C=m+3 chest=sum(A) biceps=sum(B) back=sum(C) if(chest>...
Title: Greg's Workout Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greg is a beginner bodybuilder. Today the gym coach gave him the training plan. All it had was *n* integers *a*1,<=*a*2,<=...,<=*a**n*. These numbers mean that Greg needs to do exactly *n* exercises today. Besides, Greg ...
```python t=int(input()) n=list(map(int,input().split())) l=len(n) A=list() B=list() C=list() for i in range (l-1): A=a.append(a[i]) i=i+3 for j in range (1,l-1): B=a.append(a[j]) j=j+3 for m in range (2,l-1): ba=a.append(a[m]) C=m+3 chest=sum(A) biceps=sum(B) back=sum(C) ...
-1
557
B
Pasha and Tea
PROGRAMMING
1,500
[ "constructive algorithms", "implementation", "math", "sortings" ]
null
null
Pasha decided to invite his friends to a tea party. For that occasion, he has a large teapot with the capacity of *w* milliliters and 2*n* tea cups, each cup is for one of Pasha's friends. The *i*-th cup can hold at most *a**i* milliliters of water. It turned out that among Pasha's friends there are exactly *n* boys a...
The first line of the input contains two integers, *n* and *w* (1<=≤<=*n*<=≤<=105, 1<=≤<=*w*<=≤<=109) — the number of Pasha's friends that are boys (equal to the number of Pasha's friends that are girls) and the capacity of Pasha's teapot in milliliters. The second line of the input contains the sequence of integers *...
Print a single real number — the maximum total amount of water in milliliters that Pasha can pour to his friends without violating the given conditions. Your answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=6.
[ "2 4\n1 1 1 1\n", "3 18\n4 4 4 2 2 2\n", "1 5\n2 3\n" ]
[ "3", "18", "4.5" ]
Pasha also has candies that he is going to give to girls but that is another task...
1,000
[ { "input": "2 4\n1 1 1 1", "output": "3.0000000000" }, { "input": "3 18\n4 4 4 2 2 2", "output": "18.0000000000" }, { "input": "1 5\n2 3", "output": "4.5000000000" }, { "input": "1 1\n1000000000 1000000000", "output": "1.0000000000" }, { "input": "4 1000000000\n1 ...
1,593,231,082
2,147,483,647
Python 3
OK
TESTS
50
280
21,913,600
n,w=input().split() n=int(n) w=int(w) a=[0]*(2*n) a=input().split() for i in range (2*n): a[i]=int(a[i]) a.sort() print(min(a[0],a[n]/2,w/3/n)*3*n)
Title: Pasha and Tea Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha decided to invite his friends to a tea party. For that occasion, he has a large teapot with the capacity of *w* milliliters and 2*n* tea cups, each cup is for one of Pasha's friends. The *i*-th cup can hold at most ...
```python n,w=input().split() n=int(n) w=int(w) a=[0]*(2*n) a=input().split() for i in range (2*n): a[i]=int(a[i]) a.sort() print(min(a[0],a[n]/2,w/3/n)*3*n) ```
3
381
A
Sereja and Dima
PROGRAMMING
800
[ "greedy", "implementation", "two pointers" ]
null
null
Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. During his turn a player can take one card: either the leftmost card in a row, or the rightmost one. Th...
The first line contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of cards on the table. The second line contains space-separated numbers on the cards from left to right. The numbers on the cards are distinct integers from 1 to 1000.
On a single line, print two integers. The first number is the number of Sereja's points at the end of the game, the second number is the number of Dima's points at the end of the game.
[ "4\n4 1 2 10\n", "7\n1 2 3 4 5 6 7\n" ]
[ "12 5\n", "16 12\n" ]
In the first sample Sereja will take cards with numbers 10 and 2, so Sereja's sum is 12. Dima will take cards with numbers 4 and 1, so Dima's sum is 5.
500
[ { "input": "4\n4 1 2 10", "output": "12 5" }, { "input": "7\n1 2 3 4 5 6 7", "output": "16 12" }, { "input": "42\n15 29 37 22 16 5 26 31 6 32 19 3 45 36 33 14 25 20 48 7 42 11 24 28 9 18 8 21 47 17 38 40 44 4 35 1 43 39 41 27 12 13", "output": "613 418" }, { "input": "43\n32 ...
1,668,422,170
2,147,483,647
Python 3
OK
TESTS
34
46
0
n=int(input()) lt=list(map(int, input().split())) i=0 j=n-1 k=n tr=0 sereja, dima = 0, 0 while k>0: maxim=max(lt[i],lt[j]) if maxim==lt[i]: i+=1 else: j-=1 if tr%2 !=0: dima+=maxim else: sereja+=maxim k-=1 tr+=1 print(sereja, dima)
Title: Sereja and Dima Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. Du...
```python n=int(input()) lt=list(map(int, input().split())) i=0 j=n-1 k=n tr=0 sereja, dima = 0, 0 while k>0: maxim=max(lt[i],lt[j]) if maxim==lt[i]: i+=1 else: j-=1 if tr%2 !=0: dima+=maxim else: sereja+=maxim k-=1 tr+=1 print(sereja, dima)...
3
182
B
Vasya's Calendar
PROGRAMMING
1,000
[ "implementation" ]
null
null
Vasya lives in a strange world. The year has *n* months and the *i*-th month has *a**i* days. Vasya got a New Year present — the clock that shows not only the time, but also the date. The clock's face can display any number from 1 to *d*. It is guaranteed that *a**i*<=≤<=*d* for all *i* from 1 to *n*. The clock does n...
The first line contains the single number *d* — the maximum number of the day that Vasya's clock can show (1<=≤<=*d*<=≤<=106). The second line contains a single integer *n* — the number of months in the year (1<=≤<=*n*<=≤<=2000). The third line contains *n* space-separated integers: *a**i* (1<=≤<=*a**i*<=≤<=*d*) — th...
Print a single number — the number of times Vasya manually increased the day number by one throughout the last year.
[ "4\n2\n2 2\n", "5\n3\n3 4 3\n", "31\n12\n31 28 31 30 31 30 31 31 30 31 30 31\n" ]
[ "2\n", "3\n", "7\n" ]
In the first sample the situation is like this: - Day 1. Month 1. The clock shows 1. Vasya changes nothing. - Day 2. Month 1. The clock shows 2. Vasya changes nothing. - Day 1. Month 2. The clock shows 3. Vasya manually increases the day number by 1. After that the clock shows 4. Vasya increases the day number by ...
500
[ { "input": "4\n2\n2 2", "output": "2" }, { "input": "5\n3\n3 4 3", "output": "3" }, { "input": "31\n12\n31 28 31 30 31 30 31 31 30 31 30 31", "output": "7" }, { "input": "1\n1\n1", "output": "0" }, { "input": "1\n2\n1 1", "output": "0" }, { "input": "2...
1,623,672,213
2,147,483,647
PyPy 3
OK
TESTS
40
216
1,638,400
d = int(input()) n = int(input()) months = list(map(int, input().split())) changes = 0 for month in months[:-1]: changes += d - month print(changes)
Title: Vasya's Calendar Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya lives in a strange world. The year has *n* months and the *i*-th month has *a**i* days. Vasya got a New Year present — the clock that shows not only the time, but also the date. The clock's face can display any ...
```python d = int(input()) n = int(input()) months = list(map(int, input().split())) changes = 0 for month in months[:-1]: changes += d - month print(changes) ```
3
0
none
none
none
0
[ "none" ]
null
null
Oleg writes down the history of the days he lived. For each day he decides if it was good or bad. Oleg calls a non-empty sequence of days a zebra, if it starts with a bad day, ends with a bad day, and good and bad days are alternating in it. Let us denote bad days as 0 and good days as 1. Then, for example, sequences o...
In the only line of input data there is a non-empty string *s* consisting of characters 0 and 1, which describes the history of Oleg's life. Its length (denoted as |*s*|) does not exceed 200<=000 characters.
If there is a way to divide history into zebra subsequences, in the first line of output you should print an integer *k* (1<=≤<=*k*<=≤<=|*s*|), the resulting number of subsequences. In the *i*-th of following *k* lines first print the integer *l**i* (1<=≤<=*l**i*<=≤<=|*s*|), which is the length of the *i*-th subsequenc...
[ "0010100\n", "111\n" ]
[ "3\n3 1 3 4\n3 2 5 6\n1 7\n", "-1\n" ]
none
0
[ { "input": "0010100", "output": "3\n1 1\n5 2 3 4 5 6\n1 7" }, { "input": "111", "output": "-1" }, { "input": "0", "output": "1\n1 1" }, { "input": "1", "output": "-1" }, { "input": "0101010101", "output": "-1" }, { "input": "010100001", "output": "...
1,521,085,180
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
1,000
6,553,600
s = input() ans = [] for i in range(len(s)): if(s[i] == '0'): for j in ans: if(j[-1][1] == '1'): j.append((i,0)) break else:ans.append([(i,'0')]) else: for j in ans: if(j[-1][1] == '0'): j.append((i,'1'))...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Oleg writes down the history of the days he lived. For each day he decides if it was good or bad. Oleg calls a non-empty sequence of days a zebra, if it starts with a bad day, ends with a bad day, and good and bad days are alterna...
```python s = input() ans = [] for i in range(len(s)): if(s[i] == '0'): for j in ans: if(j[-1][1] == '1'): j.append((i,0)) break else:ans.append([(i,'0')]) else: for j in ans: if(j[-1][1] == '0'): j.appen...
0
784
A
Numbers Joke
PROGRAMMING
1,700
[ "*special" ]
null
null
The input contains a single integer *a* (1<=≤<=*a*<=≤<=30). Output a single integer.
The input contains a single integer *a* (1<=≤<=*a*<=≤<=30).
Output a single integer.
[ "3\n" ]
[ "27\n" ]
none
0
[ { "input": "3", "output": "27" }, { "input": "1", "output": "4" }, { "input": "2", "output": "22" }, { "input": "4", "output": "58" }, { "input": "5", "output": "85" }, { "input": "6", "output": "94" }, { "input": "7", "output": "121" ...
1,522,572,471
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
77
7,065,600
a = int(input().strip()) if a==1: print("4") elif a==3: print("27") else: print(a*a*a)
Title: Numbers Joke Time Limit: None seconds Memory Limit: None megabytes Problem Description: The input contains a single integer *a* (1<=≤<=*a*<=≤<=30). Output a single integer. Input Specification: The input contains a single integer *a* (1<=≤<=*a*<=≤<=30). Output Specification: Output a single integer. Demo ...
```python a = int(input().strip()) if a==1: print("4") elif a==3: print("27") else: print(a*a*a) ```
0
148
A
Insomnia cure
PROGRAMMING
800
[ "constructive algorithms", "implementation", "math" ]
null
null
«One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entertained herself at best she could. Tonight she imagined that all dragons were here to steal her, and ...
Input data contains integer numbers *k*,<=*l*,<=*m*,<=*n* and *d*, each number in a separate line (1<=≤<=*k*,<=*l*,<=*m*,<=*n*<=≤<=10, 1<=≤<=*d*<=≤<=105).
Output the number of damaged dragons.
[ "1\n2\n3\n4\n12\n", "2\n3\n4\n5\n24\n" ]
[ "12\n", "17\n" ]
In the first case every first dragon got punched with a frying pan. Some of the dragons suffered from other reasons as well, but the pan alone would be enough. In the second case dragons 1, 7, 11, 13, 17, 19 and 23 escaped unharmed.
1,000
[ { "input": "1\n2\n3\n4\n12", "output": "12" }, { "input": "2\n3\n4\n5\n24", "output": "17" }, { "input": "1\n1\n1\n1\n100000", "output": "100000" }, { "input": "10\n9\n8\n7\n6", "output": "0" }, { "input": "8\n4\n4\n3\n65437", "output": "32718" }, { "i...
1,688,614,117
2,147,483,647
Python 3
OK
TESTS
40
216
40,857,600
k=int(input()) l=int(input()) m=int(input()) n=int(input()) d=int(input()) a=[] b=[] c=[] f=[] z=[] for i in range(k,d+1,k): a.append(i) for i in range(l,d+1,l): b.append(i) for i in range(m,d+1,m): c.append(i) for i in range(n,d+1,n): f.append(i) for i in range(1,d+1): z.append(i...
Title: Insomnia cure Time Limit: None seconds Memory Limit: None megabytes Problem Description: «One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entert...
```python k=int(input()) l=int(input()) m=int(input()) n=int(input()) d=int(input()) a=[] b=[] c=[] f=[] z=[] for i in range(k,d+1,k): a.append(i) for i in range(l,d+1,l): b.append(i) for i in range(m,d+1,m): c.append(i) for i in range(n,d+1,n): f.append(i) for i in range(1,d+1): ...
3
165
A
Supercentral Point
PROGRAMMING
1,000
[ "implementation" ]
null
null
One day Vasya painted a Cartesian coordinate system on a piece of paper and marked some set of points (*x*1,<=*y*1),<=(*x*2,<=*y*2),<=...,<=(*x**n*,<=*y**n*). Let's define neighbors for some fixed point from the given set (*x*,<=*y*): - point (*x*',<=*y*') is (*x*,<=*y*)'s right neighbor, if *x*'<=&gt;<=*x* and *y*'...
The first input line contains the only integer *n* (1<=≤<=*n*<=≤<=200) — the number of points in the given set. Next *n* lines contain the coordinates of the points written as "*x* *y*" (without the quotes) (|*x*|,<=|*y*|<=≤<=1000), all coordinates are integers. The numbers in the line are separated by exactly one spac...
Print the only number — the number of supercentral points of the given set.
[ "8\n1 1\n4 2\n3 1\n1 2\n0 2\n0 1\n1 0\n1 3\n", "5\n0 0\n0 1\n1 0\n0 -1\n-1 0\n" ]
[ "2\n", "1\n" ]
In the first sample the supercentral points are only points (1, 1) and (1, 2). In the second sample there is one supercental point — point (0, 0).
500
[ { "input": "8\n1 1\n4 2\n3 1\n1 2\n0 2\n0 1\n1 0\n1 3", "output": "2" }, { "input": "5\n0 0\n0 1\n1 0\n0 -1\n-1 0", "output": "1" }, { "input": "9\n-565 -752\n-184 723\n-184 -752\n-184 1\n950 723\n-565 723\n950 -752\n950 1\n-565 1", "output": "1" }, { "input": "25\n-651 897\n...
1,676,213,927
2,147,483,647
Python 3
OK
TESTS
26
122
0
n = int(input()) A = [] for _ in range(n): (x, y) = map(int, input().split()) A.append((x, y)) ans = 0 for i in range(len(A)): a, b = A[i] q, w, e, r = 0, 0, 0, 0 for j in range(len(A)): n, m = A[j] if n > a and m == b: q = 1 elif n < a and m == b: w = 1 elif ...
Title: Supercentral Point Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya painted a Cartesian coordinate system on a piece of paper and marked some set of points (*x*1,<=*y*1),<=(*x*2,<=*y*2),<=...,<=(*x**n*,<=*y**n*). Let's define neighbors for some fixed point from the give...
```python n = int(input()) A = [] for _ in range(n): (x, y) = map(int, input().split()) A.append((x, y)) ans = 0 for i in range(len(A)): a, b = A[i] q, w, e, r = 0, 0, 0, 0 for j in range(len(A)): n, m = A[j] if n > a and m == b: q = 1 elif n < a and m == b: w = 1 ...
3
182
B
Vasya's Calendar
PROGRAMMING
1,000
[ "implementation" ]
null
null
Vasya lives in a strange world. The year has *n* months and the *i*-th month has *a**i* days. Vasya got a New Year present — the clock that shows not only the time, but also the date. The clock's face can display any number from 1 to *d*. It is guaranteed that *a**i*<=≤<=*d* for all *i* from 1 to *n*. The clock does n...
The first line contains the single number *d* — the maximum number of the day that Vasya's clock can show (1<=≤<=*d*<=≤<=106). The second line contains a single integer *n* — the number of months in the year (1<=≤<=*n*<=≤<=2000). The third line contains *n* space-separated integers: *a**i* (1<=≤<=*a**i*<=≤<=*d*) — th...
Print a single number — the number of times Vasya manually increased the day number by one throughout the last year.
[ "4\n2\n2 2\n", "5\n3\n3 4 3\n", "31\n12\n31 28 31 30 31 30 31 31 30 31 30 31\n" ]
[ "2\n", "3\n", "7\n" ]
In the first sample the situation is like this: - Day 1. Month 1. The clock shows 1. Vasya changes nothing. - Day 2. Month 1. The clock shows 2. Vasya changes nothing. - Day 1. Month 2. The clock shows 3. Vasya manually increases the day number by 1. After that the clock shows 4. Vasya increases the day number by ...
500
[ { "input": "4\n2\n2 2", "output": "2" }, { "input": "5\n3\n3 4 3", "output": "3" }, { "input": "31\n12\n31 28 31 30 31 30 31 31 30 31 30 31", "output": "7" }, { "input": "1\n1\n1", "output": "0" }, { "input": "1\n2\n1 1", "output": "0" }, { "input": "2...
1,662,138,128
2,147,483,647
Python 3
OK
TESTS
40
92
0
#4314540 Aug 20, 2013 9:13:16 AM fuwutu 182B - Vasya's Calendar Python 3 Accepted 124 ms 0 KB d = int(input()) n = int(input()) l = input().split(' ') times = 0 for i in range(0, n-1): times += d - int(l[i]) print(times)
Title: Vasya's Calendar Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya lives in a strange world. The year has *n* months and the *i*-th month has *a**i* days. Vasya got a New Year present — the clock that shows not only the time, but also the date. The clock's face can display any ...
```python #4314540 Aug 20, 2013 9:13:16 AM fuwutu 182B - Vasya's Calendar Python 3 Accepted 124 ms 0 KB d = int(input()) n = int(input()) l = input().split(' ') times = 0 for i in range(0, n-1): times += d - int(l[i]) print(times) ```
3
618
A
Slime Combining
PROGRAMMING
800
[ "implementation" ]
null
null
Your friend recently gave you some slimes for your birthday. You have *n* slimes all initially with value 1. You are going to play a game with these slimes. Initially, you put a single slime by itself in a row. Then, you will add the other *n*<=-<=1 slimes one by one. When you add a slime, you place it at the right of...
The first line of the input will contain a single integer, *n* (1<=≤<=*n*<=≤<=100<=000).
Output a single line with *k* integers, where *k* is the number of slimes in the row after you've finished the procedure described in the problem statement. The *i*-th of these numbers should be the value of the *i*-th slime from the left.
[ "1\n", "2\n", "3\n", "8\n" ]
[ "1\n", "2\n", "2 1\n", "4\n" ]
In the first sample, we only have a single slime with value 1. The final state of the board is just a single slime with value 1. In the second sample, we perform the following steps: Initially we place a single slime in a row by itself. Thus, row is initially 1. Then, we will add another slime. The row is now 1 1. S...
500
[ { "input": "1", "output": "1" }, { "input": "2", "output": "2" }, { "input": "3", "output": "2 1" }, { "input": "8", "output": "4" }, { "input": "100000", "output": "17 16 11 10 8 6" }, { "input": "12345", "output": "14 13 6 5 4 1" }, { "in...
1,690,380,878
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
def solve(n): b = format(n,'b') x = [i+1 for i,x in enumerate(b) if x == '1'] return x n = int(input()) res = solve(n) print(" ".join(str(x) for x in res))
Title: Slime Combining Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your friend recently gave you some slimes for your birthday. You have *n* slimes all initially with value 1. You are going to play a game with these slimes. Initially, you put a single slime by itself in a row. Then, y...
```python def solve(n): b = format(n,'b') x = [i+1 for i,x in enumerate(b) if x == '1'] return x n = int(input()) res = solve(n) print(" ".join(str(x) for x in res)) ```
0
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,589,374,091
2,147,483,647
Python 3
OK
TESTS
36
216
6,656,000
m, n = map(int, input().split()) a = max(m, n) zaehler = 7 - a nenner = 6 if(zaehler % 2 == 0): zaehler = zaehler // 2 nenner = nenner // 2 if(zaehler % 3 == 0): zaehler = zaehler // 3 nenner = nenner // 3 print('{}/{}'.format(zaehler, nenner))
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python m, n = map(int, input().split()) a = max(m, n) zaehler = 7 - a nenner = 6 if(zaehler % 2 == 0): zaehler = zaehler // 2 nenner = nenner // 2 if(zaehler % 3 == 0): zaehler = zaehler // 3 nenner = nenner // 3 print('{}/{}'.format(zaehler, nenner)) ```
3.842409
114
A
Cifera
PROGRAMMING
1,000
[ "math" ]
null
null
When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousand and "tma tmyschaya" (which literally means "the tma of tmas") used to stand for a million...
The first input line contains integer number *k*, the second line contains integer number *l* (2<=≤<=*k*,<=*l*<=≤<=231<=-<=1).
You should print in the first line of the output "YES", if the number belongs to the set petriciumus cifera and otherwise print "NO". If the number belongs to the set, then print on the seconds line the only number — the importance of number *l*.
[ "5\n25\n", "3\n8\n" ]
[ "YES\n1\n", "NO\n" ]
none
500
[ { "input": "5\n25", "output": "YES\n1" }, { "input": "3\n8", "output": "NO" }, { "input": "123\n123", "output": "YES\n0" }, { "input": "99\n970300", "output": "NO" }, { "input": "1000\n6666666", "output": "NO" }, { "input": "59\n3571", "output": "N...
1,695,073,931
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
19
124
0
from collections import defaultdict import math def pug_func(k: int, l: int) -> str: # arr = list(map(int, s.split(" "))) # rev_arr = arr[::-1] # s = set() # L = 0 # for i in range(len(arr)): # if rev_arr[i] not in s: # s.add(rev_arr[i]) # else: # ...
Title: Cifera Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousa...
```python from collections import defaultdict import math def pug_func(k: int, l: int) -> str: # arr = list(map(int, s.split(" "))) # rev_arr = arr[::-1] # s = set() # L = 0 # for i in range(len(arr)): # if rev_arr[i] not in s: # s.add(rev_arr[i]) # else: ...
0
251
A
Points on Line
PROGRAMMING
1,300
[ "binary search", "combinatorics", "two pointers" ]
null
null
Little Petya likes points a lot. Recently his mom has presented him *n* points lying on the line *OX*. Now Petya is wondering in how many ways he can choose three distinct points so that the distance between the two farthest of them doesn't exceed *d*. Note that the order of the points inside the group of three chosen...
The first line contains two integers: *n* and *d* (1<=≤<=*n*<=≤<=105; 1<=≤<=*d*<=≤<=109). The next line contains *n* integers *x*1,<=*x*2,<=...,<=*x**n*, their absolute value doesn't exceed 109 — the *x*-coordinates of the points that Petya has got. It is guaranteed that the coordinates of the points in the input stri...
Print a single integer — the number of groups of three points, where the distance between two farthest points doesn't exceed *d*. Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.
[ "4 3\n1 2 3 4\n", "4 2\n-3 -2 -1 0\n", "5 19\n1 10 20 30 50\n" ]
[ "4\n", "2\n", "1\n" ]
In the first sample any group of three points meets our conditions. In the seconds sample only 2 groups of three points meet our conditions: {-3, -2, -1} and {-2, -1, 0}. In the third sample only one group does: {1, 10, 20}.
500
[ { "input": "4 3\n1 2 3 4", "output": "4" }, { "input": "4 2\n-3 -2 -1 0", "output": "2" }, { "input": "5 19\n1 10 20 30 50", "output": "1" }, { "input": "10 5\n31 36 43 47 48 50 56 69 71 86", "output": "2" }, { "input": "10 50\n1 4 20 27 65 79 82 83 99 100", "...
1,654,959,295
2,147,483,647
Python 3
OK
TESTS
39
1,278
8,089,600
[n , d ] = list(map(lambda x : int(x) , input().split())) arr = list(map(lambda x : int(x) , input().split())) def bs(arr,l,r,target): while(l<=r): mid = l + (r-l)//2 if(arr[mid] <= target): l = mid+1 else: r = mid-1 return r ...
Title: Points on Line Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya likes points a lot. Recently his mom has presented him *n* points lying on the line *OX*. Now Petya is wondering in how many ways he can choose three distinct points so that the distance between the two fart...
```python [n , d ] = list(map(lambda x : int(x) , input().split())) arr = list(map(lambda x : int(x) , input().split())) def bs(arr,l,r,target): while(l<=r): mid = l + (r-l)//2 if(arr[mid] <= target): l = mid+1 else: r = mid-1 re...
3
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,690,866,308
2,147,483,647
PyPy 3-64
OK
TESTS
81
124
0
x,y,z=0,0,0 for i in range(int(input())): x1,y1,z1=map(int,input().split()) x,y,z=x+x1,y+y1,z+z1 if x==0 and y==0 and z==0: print("YES") else: print("NO")
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python x,y,z=0,0,0 for i in range(int(input())): x1,y1,z1=map(int,input().split()) x,y,z=x+x1,y+y1,z+z1 if x==0 and y==0 and z==0: print("YES") else: print("NO") ```
3.969
930
A
Peculiar apple-tree
PROGRAMMING
1,500
[ "dfs and similar", "graphs", "trees" ]
null
null
In Arcady's garden there grows a peculiar apple-tree that fruits one time per year. Its peculiarity can be explained in following way: there are *n* inflorescences, numbered from 1 to *n*. Inflorescence number 1 is situated near base of tree and any other inflorescence with number *i* (*i*<=&gt;<=1) is situated at the ...
First line of input contains single integer number *n* (2<=≤<=*n*<=≤<=100<=000)  — number of inflorescences. Second line of input contains sequence of *n*<=-<=1 integer numbers *p*2,<=*p*3,<=...,<=*p**n* (1<=≤<=*p**i*<=&lt;<=*i*), where *p**i* is number of inflorescence into which the apple from *i*-th inflorescence r...
Single line of output should contain one integer number: amount of apples that Arcady will be able to collect from first inflorescence during one harvest.
[ "3\n1 1\n", "5\n1 2 2 2\n", "18\n1 1 1 4 4 3 2 2 2 10 8 9 9 9 10 10 4\n" ]
[ "1\n", "3\n", "4\n" ]
In first example Arcady will be able to collect only one apple, initially situated in 1st inflorescence. In next second apples from 2nd and 3rd inflorescences will roll down and annihilate, and Arcady won't be able to collect them. In the second example Arcady will be able to collect 3 apples. First one is one initial...
500
[ { "input": "3\n1 1", "output": "1" }, { "input": "5\n1 2 2 2", "output": "3" }, { "input": "18\n1 1 1 4 4 3 2 2 2 10 8 9 9 9 10 10 4", "output": "4" }, { "input": "2\n1", "output": "2" }, { "input": "3\n1 2", "output": "3" }, { "input": "20\n1 1 1 1 1 ...
1,626,904,448
2,147,483,647
PyPy 3
OK
TESTS
90
218
35,532,800
import sys from collections import defaultdict from collections import deque input = sys.stdin.readline def solve(parents, n): childs = defaultdict(list) for i in range(n-1): childs[parents[i]].append(i+1) root = 0 nodes = [root] cnt = 0 while nodes: cnt += len...
Title: Peculiar apple-tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: In Arcady's garden there grows a peculiar apple-tree that fruits one time per year. Its peculiarity can be explained in following way: there are *n* inflorescences, numbered from 1 to *n*. Inflorescence number 1 is ...
```python import sys from collections import defaultdict from collections import deque input = sys.stdin.readline def solve(parents, n): childs = defaultdict(list) for i in range(n-1): childs[parents[i]].append(i+1) root = 0 nodes = [root] cnt = 0 while nodes: ...
3
54
C
First Digit Law
PROGRAMMING
2,000
[ "dp", "math", "probabilities" ]
C. First Digit Law
2
256
In the probability theory the following paradox called Benford's law is known: "In many lists of random numbers taken from real sources, numbers starting with digit 1 occur much more often than numbers starting with any other digit" (that's the simplest form of the law). Having read about it on Codeforces, the Hedgeho...
The first line contains number *N* which is the number of random variables (1<=≤<=*N*<=≤<=1000). Then follow *N* lines containing pairs of numbers *L**i*,<=*R**i*, each of whom is a description of a random variable. It is guaranteed that 1<=≤<=*L**i*<=≤<=*R**i*<=≤<=1018. The last line contains an integer *K* (0<=≤<=*K...
Print the required probability. Print the fractional number with such a precision that the relative or absolute error of the result won't exceed 10<=-<=9.
[ "1\n1 2\n50\n", "2\n1 2\n9 11\n50\n" ]
[ "0.500000000000000", "0.833333333333333" ]
none
1,500
[ { "input": "1\n1 2\n50", "output": "0.500000000000000" }, { "input": "2\n1 2\n9 11\n50", "output": "0.833333333333333" }, { "input": "3\n2 9\n20 99\n5 5\n0", "output": "1.000000000000000" }, { "input": "3\n2 9\n20 99\n5 5\n100", "output": "0.000000000000000" }, { ...
1,448,747,922
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
122
204,800
def num_ones(a,b): '''returns how many nums start with digit 1 in [a,b]''' if a==0: if b==0: return 0 ans=0 b=str(b) for i in range(1,len(b)): ans+=10**(i-1) if b[0]=='1': x=b[1:] if x=='': x=0 ...
Title: First Digit Law Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: In the probability theory the following paradox called Benford's law is known: "In many lists of random numbers taken from real sources, numbers starting with digit 1 occur much more often than numbers starting with any oth...
```python def num_ones(a,b): '''returns how many nums start with digit 1 in [a,b]''' if a==0: if b==0: return 0 ans=0 b=str(b) for i in range(1,len(b)): ans+=10**(i-1) if b[0]=='1': x=b[1:] if x=='': x=0 ...
0
463
A
Caisa and Sugar
PROGRAMMING
1,200
[ "brute force", "implementation" ]
null
null
Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just *s* dollars for sugar. But that's not a reason to be sad, because there are *n* types of sugar in the supermarket, maybe he able to buy one. B...
The first line contains two space-separated integers *n*,<=*s* (1<=≤<=*n*,<=*s*<=≤<=100). The *i*-th of the next *n* lines contains two integers *x**i*, *y**i* (1<=≤<=*x**i*<=≤<=100; 0<=≤<=*y**i*<=&lt;<=100), where *x**i* represents the number of dollars and *y**i* the number of cents needed in order to buy the *i*-th...
Print a single integer representing the maximum number of sweets he can buy, or -1 if he can't buy any type of sugar.
[ "5 10\n3 90\n12 0\n9 70\n5 50\n7 0\n", "5 5\n10 10\n20 20\n30 30\n40 40\n50 50\n" ]
[ "50\n", "-1\n" ]
In the first test sample Caisa can buy the fourth type of sugar, in such a case he will take 50 sweets as a change.
500
[ { "input": "5 10\n3 90\n12 0\n9 70\n5 50\n7 0", "output": "50" }, { "input": "5 5\n10 10\n20 20\n30 30\n40 40\n50 50", "output": "-1" }, { "input": "1 2\n1 0", "output": "0" }, { "input": "2 10\n20 99\n30 99", "output": "-1" }, { "input": "15 21\n16 51\n33 44\n32 ...
1,689,239,544
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
30
0
a=list(map(int,input().split())) e=-1 for i in range(a[0]): b=list(map(int,input().split())) if b[0]<=a[1]: if e<abs(-b[1]+100): e=abs(100-b[1]) print(e)
Title: Caisa and Sugar Time Limit: None seconds Memory Limit: None megabytes Problem Description: Caisa is going to have a party and he needs to buy the ingredients for a big chocolate cake. For that he is going to the biggest supermarket in town. Unfortunately, he has just *s* dollars for sugar. But that's not a r...
```python a=list(map(int,input().split())) e=-1 for i in range(a[0]): b=list(map(int,input().split())) if b[0]<=a[1]: if e<abs(-b[1]+100): e=abs(100-b[1]) print(e) ```
0
862
A
Mahmoud and Ehab and the MEX
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
Dr. Evil kidnapped Mahmoud and Ehab in the evil land because of their performance in the Evil Olympiad in Informatics (EOI). He decided to give them some problems to let them go. Dr. Evil is interested in sets, He has a set of *n* integers. Dr. Evil calls a set of integers evil if the MEX of it is exactly *x*. the MEX...
The first line contains two integers *n* and *x* (1<=≤<=*n*<=≤<=100, 0<=≤<=*x*<=≤<=100) — the size of the set Dr. Evil owns, and the desired MEX. The second line contains *n* distinct non-negative integers not exceeding 100 that represent the set.
The only line should contain one integer — the minimal number of operations Dr. Evil should perform.
[ "5 3\n0 4 5 6 7\n", "1 0\n0\n", "5 0\n1 2 3 4 5\n" ]
[ "2\n", "1\n", "0\n" ]
For the first test case Dr. Evil should add 1 and 2 to the set performing 2 operations. For the second test case Dr. Evil should erase 0 from the set. After that, the set becomes empty, so the MEX of it is 0. In the third test case the set is already evil.
500
[ { "input": "5 3\n0 4 5 6 7", "output": "2" }, { "input": "1 0\n0", "output": "1" }, { "input": "5 0\n1 2 3 4 5", "output": "0" }, { "input": "10 5\n57 1 47 9 93 37 76 70 78 15", "output": "4" }, { "input": "10 5\n99 98 93 97 95 100 92 94 91 96", "output": "5" ...
1,511,147,029
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
0
n, x = map(int, input().split()) l = list(map(int, input().split())) cnt = 0 for i in range(min(l), max(l) + 1): if i in l and i ==x: cnt += 1 elif i not in l and i != x: l.append(i) cnt += 1 elif i not in l and i == x: l.append(i) break print(cnt)
Title: Mahmoud and Ehab and the MEX Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dr. Evil kidnapped Mahmoud and Ehab in the evil land because of their performance in the Evil Olympiad in Informatics (EOI). He decided to give them some problems to let them go. Dr. Evil is interested in ...
```python n, x = map(int, input().split()) l = list(map(int, input().split())) cnt = 0 for i in range(min(l), max(l) + 1): if i in l and i ==x: cnt += 1 elif i not in l and i != x: l.append(i) cnt += 1 elif i not in l and i == x: l.append(i) break print(cnt) ```
0
727
A
Transformation: from A to B
PROGRAMMING
1,000
[ "brute force", "dfs and similar", "math" ]
null
null
Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2·*x*); - append the digit 1 to the right of current number (that is, replace the number *x* by 10·*x*<=+<=1). You need to he...
The first line contains two positive integers *a* and *b* (1<=≤<=*a*<=&lt;<=*b*<=≤<=109) — the number which Vasily has and the number he wants to have.
If there is no way to get *b* from *a*, print "NO" (without quotes). Otherwise print three lines. On the first line print "YES" (without quotes). The second line should contain single integer *k* — the length of the transformation sequence. On the third line print the sequence of transformations *x*1,<=*x*2,<=...,<=*x...
[ "2 162\n", "4 42\n", "100 40021\n" ]
[ "YES\n5\n2 4 8 81 162 \n", "NO\n", "YES\n5\n100 200 2001 4002 40021 \n" ]
none
1,000
[ { "input": "2 162", "output": "YES\n5\n2 4 8 81 162 " }, { "input": "4 42", "output": "NO" }, { "input": "100 40021", "output": "YES\n5\n100 200 2001 4002 40021 " }, { "input": "1 111111111", "output": "YES\n9\n1 11 111 1111 11111 111111 1111111 11111111 111111111 " }, ...
1,645,564,230
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
import sys sys.setrecursionlimit(3000) dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] def procuraCirculo(x_atual, y_atual, de_x, de_y, cor, campo, caminho, verificados): if x_atual >= len(campo) or y_atual >= len(campo[0]): return False if x_atual < 0 or y_atual < 0: return False corAtual = camp...
Title: Transformation: from A to B Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2·*x*); - app...
```python import sys sys.setrecursionlimit(3000) dx = [1, -1, 0, 0] dy = [0, 0, 1, -1] def procuraCirculo(x_atual, y_atual, de_x, de_y, cor, campo, caminho, verificados): if x_atual >= len(campo) or y_atual >= len(campo[0]): return False if x_atual < 0 or y_atual < 0: return False corAt...
-1
652
B
z-sort
PROGRAMMING
1,000
[ "sortings" ]
null
null
A student of *z*-school found a kind of sorting called *z*-sort. The array *a* with *n* elements are *z*-sorted if two conditions hold: 1. *a**i*<=≥<=*a**i*<=-<=1 for all even *i*, 1. *a**i*<=≤<=*a**i*<=-<=1 for all odd *i*<=&gt;<=1. For example the arrays [1,2,1,2] and [1,1,1,1] are *z*-sorted while the array [1,2...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of elements in the array *a*. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=109) — the elements of the array *a*.
If it's possible to make the array *a* *z*-sorted print *n* space separated integers *a**i* — the elements after *z*-sort. Otherwise print the only word "Impossible".
[ "4\n1 2 2 1\n", "5\n1 3 2 2 5\n" ]
[ "1 2 1 2\n", "1 5 2 3 2\n" ]
none
0
[ { "input": "4\n1 2 2 1", "output": "1 2 1 2" }, { "input": "5\n1 3 2 2 5", "output": "1 5 2 3 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 1", "output": "1 1 1 1 1 1 1 1 1 1" }, { "input": "10\n1 9 7 6 2 4 7 8 1 3", "output": "1 ...
1,593,498,209
2,147,483,647
PyPy 3
OK
TESTS
16
140
20,172,800
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Jun 30 11:36:12 2020 @author: shailesh """ n = int(input()) a = [int(i) for i in input().split()] a.sort() even_positions = a[(n+1)//2:] odd_positions = a[:(n+1)//2] l = [] for i in range(len(even_positions)): l.append(str(odd_positions[0]))...
Title: z-sort Time Limit: None seconds Memory Limit: None megabytes Problem Description: A student of *z*-school found a kind of sorting called *z*-sort. The array *a* with *n* elements are *z*-sorted if two conditions hold: 1. *a**i*<=≥<=*a**i*<=-<=1 for all even *i*, 1. *a**i*<=≤<=*a**i*<=-<=1 for all odd *i*<=...
```python #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Tue Jun 30 11:36:12 2020 @author: shailesh """ n = int(input()) a = [int(i) for i in input().split()] a.sort() even_positions = a[(n+1)//2:] odd_positions = a[:(n+1)//2] l = [] for i in range(len(even_positions)): l.append(str(odd_posi...
3
352
B
Jeff and Periods
PROGRAMMING
1,300
[ "implementation", "sortings" ]
null
null
One day Jeff got hold of an integer sequence *a*1, *a*2, ..., *a**n* of length *n*. The boy immediately decided to analyze the sequence. For that, he needs to find all values of *x*, for which these conditions hold: - *x* occurs in sequence *a*. - Consider all positions of numbers *x* in the sequence *a* (such *i*, ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105). The next line contains integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105). The numbers are separated by spaces.
In the first line print integer *t* — the number of valid *x*. On each of the next *t* lines print two integers *x* and *p**x*, where *x* is current suitable value, *p**x* is the common difference between numbers in the progression (if *x* occurs exactly once in the sequence, *p**x* must equal 0). Print the pairs in th...
[ "1\n2\n", "8\n1 2 1 3 1 2 1 5\n" ]
[ "1\n2 0\n", "4\n1 2\n2 4\n3 0\n5 0\n" ]
In the first test 2 occurs exactly once in the sequence, ergo *p*<sub class="lower-index">2</sub> = 0.
1,000
[ { "input": "1\n2", "output": "1\n2 0" }, { "input": "8\n1 2 1 3 1 2 1 5", "output": "4\n1 2\n2 4\n3 0\n5 0" }, { "input": "3\n1 10 5", "output": "3\n1 0\n5 0\n10 0" }, { "input": "4\n9 9 3 5", "output": "3\n3 0\n5 0\n9 1" }, { "input": "6\n1 2 2 1 1 2", "outpu...
1,629,482,627
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
6,963,200
n=int(input()) a=list(map(int,input().split())) mp={} temp=[] ans=[] diff=0 cnt=0 for i in range(len(a)): if(a[i] not in mp.keys()): mp[a[i]]=[] mp[a[i]].append(i+1) else: mp[a[i]].append(i+1) for i in mp.keys(): if(len(mp[i])==1): ans.append(i) ...
Title: Jeff and Periods Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Jeff got hold of an integer sequence *a*1, *a*2, ..., *a**n* of length *n*. The boy immediately decided to analyze the sequence. For that, he needs to find all values of *x*, for which these conditions hold: -...
```python n=int(input()) a=list(map(int,input().split())) mp={} temp=[] ans=[] diff=0 cnt=0 for i in range(len(a)): if(a[i] not in mp.keys()): mp[a[i]]=[] mp[a[i]].append(i+1) else: mp[a[i]].append(i+1) for i in mp.keys(): if(len(mp[i])==1): ans.append(...
0
930
B
Game with String
PROGRAMMING
1,600
[ "implementation", "probabilities", "strings" ]
null
null
Vasya and Kolya play a game with a string, using the following rules. Initially, Kolya creates a string *s*, consisting of small English letters, and uniformly at random chooses an integer *k* from a segment [0,<=*len*(*s*)<=-<=1]. He tells Vasya this string *s*, and then shifts it *k* letters to the left, i. e. create...
The only string contains the string *s* of length *l* (3<=≤<=*l*<=≤<=5000), consisting of small English letters only.
Print the only number — the answer for the problem. You answer is considered correct, if its absolute or relative error does not exceed 10<=-<=6. Formally, let your answer be *a*, and the jury's answer be *b*. Your answer is considered correct if
[ "technocup\n", "tictictactac\n", "bbaabaabbb\n" ]
[ "1.000000000000000\n", "0.333333333333333\n", "0.100000000000000\n" ]
In the first example Vasya can always open the second letter after opening the first letter, and the cyclic shift is always determined uniquely. In the second example if the first opened letter of *t* is "t" or "c", then Vasya can't guess the shift by opening only one other letter. On the other hand, if the first lett...
1,000
[ { "input": "technocup", "output": "1.000000000000000" }, { "input": "tictictactac", "output": "0.333333333333333" }, { "input": "bbaabaabbb", "output": "0.100000000000000" }, { "input": "cbbbbcaaca", "output": "0.800000000000000" }, { "input": "cadbcdddda", "o...
1,520,178,766
1,066
Python 3
COMPILATION_ERROR
PRETESTS
0
0
0
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.StringTokenizer; import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.InputStream; /** * Built using CHelper plug-in * Actual soluti...
Title: Game with String Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya and Kolya play a game with a string, using the following rules. Initially, Kolya creates a string *s*, consisting of small English letters, and uniformly at random chooses an integer *k* from a segment [0,<=*len*...
```python import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.StringTokenizer; import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.InputStream; /** * Built using CHelper plug-in * Act...
-1
447
B
DZY Loves Strings
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter *c* DZY knows its value *w**c*. For each special string *s*<==<=*s*1*s*2... *s*|*s*| (|*s*| is the length of the string) he represents its value with a function *f*(*s*), where Now DZY has a string *s*. He wants to in...
The first line contains a single string *s* (1<=≤<=|*s*|<=≤<=103). The second line contains a single integer *k* (0<=≤<=*k*<=≤<=103). The third line contains twenty-six integers from *w**a* to *w**z*. Each such number is non-negative and doesn't exceed 1000.
Print a single integer — the largest possible value of the resulting string DZY could get.
[ "abc\n3\n1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n" ]
[ "41\n" ]
In the test sample DZY can obtain "abcbbc", *value* = 1·1 + 2·2 + 3·2 + 4·2 + 5·2 + 6·2 = 41.
1,000
[ { "input": "abc\n3\n1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1", "output": "41" }, { "input": "mmzhr\n3\n443 497 867 471 195 670 453 413 579 466 553 881 847 642 269 996 666 702 487 209 257 741 974 133 519 453", "output": "29978" }, { "input": "ajeeseerqnpaujubmajpibxrccazaawetyw...
1,606,743,986
2,147,483,647
PyPy 3
OK
TESTS
24
140
0
s = input() k = int(input()) w = list(map(int,input().split())) c = 0 i = 0 while i<len(s): c += w[ord(s[i])-97]*(i+1) i+=1 m = max(w) for j in range(k): c+=m*(i+1) i+=1 print(c)
Title: DZY Loves Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter *c* DZY knows its value *w**c*. For each special string *s*<==<=*s*1*s*2... *s*|*s*| (|*s*| is the length of the str...
```python s = input() k = int(input()) w = list(map(int,input().split())) c = 0 i = 0 while i<len(s): c += w[ord(s[i])-97]*(i+1) i+=1 m = max(w) for j in range(k): c+=m*(i+1) i+=1 print(c) ```
3
8
B
Obsession with Robots
PROGRAMMING
1,400
[ "constructive algorithms", "graphs", "implementation" ]
B. Obsession with Robots
2
64
The whole world got obsessed with robots,and to keep pace with the progress, great Berland's programmer Draude decided to build his own robot. He was working hard at the robot. He taught it to walk the shortest path from one point to another, to record all its movements, but like in many Draude's programs, there was a ...
The first line of the input file contains the recording of the robot's movements. This recording is a non-empty string, consisting of uppercase Latin letters L, R, U and D, standing for movements left, right, up and down respectively. The length of the string does not exceed 100.
In the first line output the only word OK (if the above described map exists), or BUG (if such a map does not exist).
[ "LLUUUR\n", "RRUULLDD\n" ]
[ "OK\n", "BUG\n" ]
none
0
[ { "input": "LLUUUR", "output": "OK" }, { "input": "RRUULLDD", "output": "BUG" }, { "input": "L", "output": "OK" }, { "input": "R", "output": "OK" }, { "input": "R", "output": "OK" }, { "input": "RR", "output": "OK" }, { "input": "DL", "...
1,543,698,494
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
216
0
def no(): print('BUG') quit() m=input() a,b=0,0 d=set() d.add((a,b)) for i in m: if i == 'R': b+=1 if i == 'L': b-=1 if i == 'U': a+=1 if i == 'D': a-=1 if (a,b) in d: no() d.add((a,b)) if abs(a)+abs(b) <= 1: no() print('OK...
Title: Obsession with Robots Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: The whole world got obsessed with robots,and to keep pace with the progress, great Berland's programmer Draude decided to build his own robot. He was working hard at the robot. He taught it to walk the shortest path fr...
```python def no(): print('BUG') quit() m=input() a,b=0,0 d=set() d.add((a,b)) for i in m: if i == 'R': b+=1 if i == 'L': b-=1 if i == 'U': a+=1 if i == 'D': a-=1 if (a,b) in d: no() d.add((a,b)) if abs(a)+abs(b) <= 1: no() ...
0
960
A
Check the string
PROGRAMMING
1,200
[ "implementation" ]
null
null
A has a string consisting of some number of lowercase English letters 'a'. He gives it to his friend B who appends some number of letters 'b' to the end of this string. Since both A and B like the characters 'a' and 'b', they have made sure that at this point, at least one 'a' and one 'b' exist in the string. B now gi...
The first and only line consists of a string $S$ ($ 1 \le |S| \le 5\,000 $). It is guaranteed that the string will only consist of the lowercase English letters 'a', 'b', 'c'.
Print "YES" or "NO", according to the condition.
[ "aaabccc\n", "bbacc\n", "aabc\n" ]
[ "YES\n", "NO\n", "YES\n" ]
Consider first example: the number of 'c' is equal to the number of 'a'. Consider second example: although the number of 'c' is equal to the number of the 'b', the order is not correct. Consider third example: the number of 'c' is equal to the number of 'b'.
500
[ { "input": "aaabccc", "output": "YES" }, { "input": "bbacc", "output": "NO" }, { "input": "aabc", "output": "YES" }, { "input": "aabbcc", "output": "YES" }, { "input": "aaacccbb", "output": "NO" }, { "input": "abc", "output": "YES" }, { "in...
1,523,888,500
2,147,483,647
Python 3
OK
TESTS
55
93
7,065,600
s=input() a=b=c=0 t1=t2=t3=0 a=s.count('a') b=s.count('b') c=s.count('c') t1=s.count("ba") t2=s.count("ca") t3=s.count("cb") if(t1>0 or t2>0 or t3>0): print("No") elif a!=0 and b!=0 and (c==a or c==b): print("YES") else: print("NO")
Title: Check the string Time Limit: None seconds Memory Limit: None megabytes Problem Description: A has a string consisting of some number of lowercase English letters 'a'. He gives it to his friend B who appends some number of letters 'b' to the end of this string. Since both A and B like the characters 'a' and 'b...
```python s=input() a=b=c=0 t1=t2=t3=0 a=s.count('a') b=s.count('b') c=s.count('c') t1=s.count("ba") t2=s.count("ca") t3=s.count("cb") if(t1>0 or t2>0 or t3>0): print("No") elif a!=0 and b!=0 and (c==a or c==b): print("YES") else: print("NO") ```
3
626
G
Raffles
PROGRAMMING
3,100
[ "data structures", "dp", "greedy", "math" ]
null
null
Johnny is at a carnival which has *n* raffles. Raffle *i* has a prize with value *p**i*. Each participant can put tickets in whichever raffles they choose (they may have more than one ticket in a single raffle). At the end of the carnival, one ticket is selected at random from each raffle, and the owner of the ticket w...
The first line contains two integers *n*, *t*, and *q* (1<=≤<=*n*,<=*t*,<=*q*<=≤<=200 000) — the number of raffles, the number of tickets Johnny has, and the total number of updates, respectively. The second line contains *n* space-separated integers *p**i* (1<=≤<=*p**i*<=≤<=1000) — the value of the *i*-th prize. The...
Print *q* lines, each containing a single real number — the maximum expected value of Johnny's winnings after the *k*-th update. Your answer will be considered correct if its absolute or relative error does not exceed 10<=-<=6. Namely: let's assume that your answer is *a*, and the answer of the jury is *b*. The check...
[ "2 1 3\n4 5\n1 2\n1 1\n1 2\n2 1\n", "3 20 5\n6 8 10\n6 6 6\n1 1\n1 2\n1 3\n2 3\n2 3\n" ]
[ "1.666666667\n1.333333333\n2.000000000\n", "12.000000000\n12.000000000\n11.769230769\n12.000000000\n12.000000000\n" ]
In the first case, Johnny only has one ticket to distribute. The prizes are worth 4 and 5, and the raffles initially have 1 and 2 tickets, respectively. After the first update, each raffle has 2 tickets, so Johnny has expected value <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/436bcf2181...
3,000
[]
1,689,652,836
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
30
0
print("_RANDOM_GUESS_1689652836.165087")# 1689652836.1651082
Title: Raffles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Johnny is at a carnival which has *n* raffles. Raffle *i* has a prize with value *p**i*. Each participant can put tickets in whichever raffles they choose (they may have more than one ticket in a single raffle). At the end of t...
```python print("_RANDOM_GUESS_1689652836.165087")# 1689652836.1651082 ```
0
928
A
Login Verification
PROGRAMMING
1,200
[ "*special", "strings" ]
null
null
When registering in a social network, users are allowed to create their own convenient login to make it easier to share contacts, print it on business cards, etc. Login is an arbitrary sequence of lower and uppercase latin letters, digits and underline symbols («_»). However, in order to decrease the number of frauds ...
The first line contains a non-empty string *s* consisting of lower and uppercase latin letters, digits and underline symbols («_») with length not exceeding 50  — the login itself. The second line contains a single integer *n* (1<=≤<=*n*<=≤<=1<=000) — the number of existing logins. The next *n* lines describe the exi...
Print «Yes» (without quotes), if user can register via this login, i.e. none of the existing logins is similar with it. Otherwise print «No» (without quotes).
[ "1_wat\n2\n2_wat\nwat_1\n", "000\n3\n00\nooA\noOo\n", "_i_\n3\n__i_\n_1_\nI\n", "La0\n3\n2a0\nLa1\n1a0\n", "abc\n1\naBc\n", "0Lil\n2\nLIL0\n0Ril\n" ]
[ "Yes\n", "No\n", "No\n", "No\n", "No\n", "Yes\n" ]
In the second sample case the user wants to create a login consisting of three zeros. It's impossible due to collision with the third among the existing. In the third sample case the new login is similar with the second one.
500
[ { "input": "1_wat\n2\n2_wat\nwat_1", "output": "Yes" }, { "input": "000\n3\n00\nooA\noOo", "output": "No" }, { "input": "_i_\n3\n__i_\n_1_\nI", "output": "No" }, { "input": "La0\n3\n2a0\nLa1\n1a0", "output": "No" }, { "input": "abc\n1\naBc", "output": "No" }...
1,520,587,992
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
60
77
6,553,600
original = input() num = int(input()) def check(s1, s2): s1 = s1.replace('0', 'o') s2 = s2.replace('0', 'o') if s1 == s2: return True for char in ['I', 'l']: _s1 = s1.replace('1', char) _s2 = s2.replace('1', char) if _s1 == _s2: return True if _s...
Title: Login Verification Time Limit: None seconds Memory Limit: None megabytes Problem Description: When registering in a social network, users are allowed to create their own convenient login to make it easier to share contacts, print it on business cards, etc. Login is an arbitrary sequence of lower and uppercas...
```python original = input() num = int(input()) def check(s1, s2): s1 = s1.replace('0', 'o') s2 = s2.replace('0', 'o') if s1 == s2: return True for char in ['I', 'l']: _s1 = s1.replace('1', char) _s2 = s2.replace('1', char) if _s1 == _s2: return True ...
0
2
A
Winner
PROGRAMMING
1,500
[ "hashing", "implementation" ]
A. Winner
1
64
The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes more difficult if the number of such players is more than one. During each round a pla...
The first line contains an integer number *n* (1<=<=≤<=<=*n*<=<=≤<=<=1000), *n* is the number of rounds played. Then follow *n* lines, containing the information about the rounds in "name score" format in chronological order, where name is a string of lower-case Latin letters with the length from 1 to 32, and score is ...
Print the name of the winner.
[ "3\nmike 3\nandrew 5\nmike 2\n", "3\nandrew 3\nandrew 2\nmike 5\n" ]
[ "andrew\n", "andrew\n" ]
none
0
[ { "input": "3\nmike 3\nandrew 5\nmike 2", "output": "andrew" }, { "input": "3\nandrew 3\nandrew 2\nmike 5", "output": "andrew" }, { "input": "5\nkaxqybeultn -352\nmgochgrmeyieyskhuourfg -910\nkaxqybeultn 691\nmgochgrmeyieyskhuourfg -76\nkaxqybeultn -303", "output": "kaxqybeultn" },...
1,470,504,271
2,147,483,647
PyPy 3
OK
TESTS
20
312
23,552,000
l = [input().split() for i in range(int(input()))] d = {} for x,y in l: d[x] = d.get(x,0) + int(y) w = max(d.values()) s = {} for x,y in l: s[x] = s.get(x,0) + int(y) if s[x] >= w and d[x] == w: print(x) break
Title: Winner Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes...
```python l = [input().split() for i in range(int(input()))] d = {} for x,y in l: d[x] = d.get(x,0) + int(y) w = max(d.values()) s = {} for x,y in l: s[x] = s.get(x,0) + int(y) if s[x] >= w and d[x] == w: print(x) break ```
3.668524
859
B
Lazy Security Guard
PROGRAMMING
1,000
[ "brute force", "geometry", "math" ]
null
null
Your security guard friend recently got a new job at a new security company. The company requires him to patrol an area of the city encompassing exactly *N* city blocks, but they let him choose which blocks. That is, your friend must walk the perimeter of a region whose area is exactly *N* blocks. Your friend is quite ...
Input will consist of a single integer *N* (1<=≤<=*N*<=≤<=106), the number of city blocks that must be enclosed by the route.
Print the minimum perimeter that can be achieved.
[ "4\n", "11\n", "22\n" ]
[ "8\n", "14\n", "20\n" ]
Here are some possible shapes for the examples: <img class="tex-graphics" src="https://espresso.codeforces.com/e11bef2cf82b55dd583cfc97d12b5aee5e483a65.png" style="max-width: 100.0%;max-height: 100.0%;"/>
750
[ { "input": "4", "output": "8" }, { "input": "11", "output": "14" }, { "input": "22", "output": "20" }, { "input": "3", "output": "8" }, { "input": "1024", "output": "128" }, { "input": "101", "output": "42" }, { "input": "30", "output":...
1,505,727,597
2,147,483,647
Python 3
OK
TESTS
35
62
4,608,000
a=int(input()) b=int(pow(a,0.5)) if(a==(b*b)): print(4*b) elif(a<=b*(b+1)): print(4*b+2) else: print(4*b+4)
Title: Lazy Security Guard Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your security guard friend recently got a new job at a new security company. The company requires him to patrol an area of the city encompassing exactly *N* city blocks, but they let him choose which blocks. That is...
```python a=int(input()) b=int(pow(a,0.5)) if(a==(b*b)): print(4*b) elif(a<=b*(b+1)): print(4*b+2) else: print(4*b+4) ```
3
595
B
Pasha and Phone
PROGRAMMING
1,600
[ "binary search", "math" ]
null
null
Pasha has recently bought a new phone jPager and started adding his friends' phone numbers there. Each phone number consists of exactly *n* digits. Also Pasha has a number *k* and two sequences of length *n*<=/<=*k* (*n* is divisible by *k*) *a*1,<=*a*2,<=...,<=*a**n*<=/<=*k* and *b*1,<=*b*2,<=...,<=*b**n*<=/<=*k*. Le...
The first line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*k*<=≤<=*min*(*n*,<=9)) — the length of all phone numbers and the length of each block, respectively. It is guaranteed that *n* is divisible by *k*. The second line of the input contains *n*<=/<=*k* space-separated positive in...
Print a single integer — the number of good phone numbers of length *n* modulo 109<=+<=7.
[ "6 2\n38 56 49\n7 3 4\n", "8 2\n1 22 3 44\n5 4 3 2\n" ]
[ "8\n", "32400\n" ]
In the first test sample good phone numbers are: 000000, 000098, 005600, 005698, 380000, 380098, 385600, 385698.
1,000
[ { "input": "6 2\n38 56 49\n7 3 4", "output": "8" }, { "input": "8 2\n1 22 3 44\n5 4 3 2", "output": "32400" }, { "input": "2 1\n9 9\n9 9", "output": "1" }, { "input": "2 1\n9 9\n0 9", "output": "1" }, { "input": "4 1\n4 3 2 1\n1 2 3 4", "output": "540" }, ...
1,646,112,574
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
140
4,505,600
from math import sqrt,log,ceil,gcd import sys # sys.stdin=open('input.txt','r') # sys.stdout=open('output.txt','w') from random import randint as rd fun=lambda: map(int,input().split()) def div(srg,erg,d): f=erg//d s=(srg-1)//d return f-s def total(num,k,dig): k=10**k-1 ans=k//num ...
Title: Pasha and Phone Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha has recently bought a new phone jPager and started adding his friends' phone numbers there. Each phone number consists of exactly *n* digits. Also Pasha has a number *k* and two sequences of length *n*<=/<=*k* (*...
```python from math import sqrt,log,ceil,gcd import sys # sys.stdin=open('input.txt','r') # sys.stdout=open('output.txt','w') from random import randint as rd fun=lambda: map(int,input().split()) def div(srg,erg,d): f=erg//d s=(srg-1)//d return f-s def total(num,k,dig): k=10**k-1 a...
0
41
C
Email address
PROGRAMMING
1,300
[ "expression parsing", "implementation" ]
C. Email address
2
256
Sometimes one has to spell email addresses over the phone. Then one usually pronounces a dot as dot, an at sign as at. As a result, we get something like vasyaatgmaildotcom. Your task is to transform it into a proper email address ([[email protected]](/cdn-cgi/l/email-protection)). It is known that a proper email add...
The first line contains the email address description. It is guaranteed that that is a proper email address with all the dots replaced by dot an the at signs replaced by at. The line is not empty and its length does not exceed 100 symbols.
Print the shortest email address, from which the given line could be made by the described above replacements. If there are several solutions to that problem, print the lexicographically minimal one (the lexicographical comparison of the lines are implemented with an operator &lt; in modern programming languages). In ...
[ "vasyaatgmaildotcom\n", "dotdotdotatdotdotat\n", "aatt\n" ]
[ "[email protected]\n", "[email protected]\n", "a@t\n" ]
none
1,500
[ { "input": "vasyaatgmaildotcom", "output": "vasya@gmail.com" }, { "input": "dotdotdotatdotdotat", "output": "dot..@..at" }, { "input": "aatt", "output": "a@t" }, { "input": "zdotdotatdotz", "output": "z..@.z" }, { "input": "dotdotdotdotatdotatatatdotdotdot", "...
1,584,823,889
2,147,483,647
PyPy 3
OK
TESTS
52
310
0
s = input() c1 = s[0] c2 = s[-1] s = s[1:-1] s = s.replace("dot", ".") s = s.replace("at", "@", 1) print(c1 + s + c2) # Your last C/C++ code is saved below: # #include <iostream> # using namespace std; # #define ll long long # #define fi first # #define se second # typedef vector <> # type...
Title: Email address Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Sometimes one has to spell email addresses over the phone. Then one usually pronounces a dot as dot, an at sign as at. As a result, we get something like vasyaatgmaildotcom. Your task is to transform it into a proper email ad...
```python s = input() c1 = s[0] c2 = s[-1] s = s[1:-1] s = s.replace("dot", ".") s = s.replace("at", "@", 1) print(c1 + s + c2) # Your last C/C++ code is saved below: # #include <iostream> # using namespace std; # #define ll long long # #define fi first # #define se second # typedef vector ...
3.9225
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,634,030,773
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
n=int(input()) lst=list(map(int,input().split())) lst1=[] for i in range(n): lst1+=int(lst[i]%2) if lst1.count(1)!=1: print(lst1.find(0)+1) else: print(lst1.find(1)+1)
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python n=int(input()) lst=list(map(int,input().split())) lst1=[] for i in range(n): lst1+=int(lst[i]%2) if lst1.count(1)!=1: print(lst1.find(0)+1) else: print(lst1.find(1)+1) ```
-1
82
A
Double Cola
PROGRAMMING
1,100
[ "implementation", "math" ]
A. Double Cola
1
256
Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resulting two Sheldons go to the end of the queue. Then the next in the queue (Leonard) buys a can, d...
The input data consist of a single integer *n* (1<=≤<=*n*<=≤<=109). It is guaranteed that the pretests check the spelling of all the five names, that is, that they contain all the five possible answers.
Print the single line — the name of the person who drinks the *n*-th can of cola. The cans are numbered starting from 1. Please note that you should spell the names like this: "Sheldon", "Leonard", "Penny", "Rajesh", "Howard" (without the quotes). In that order precisely the friends are in the queue initially.
[ "1\n", "6\n", "1802\n" ]
[ "Sheldon\n", "Sheldon\n", "Penny\n" ]
none
500
[ { "input": "1", "output": "Sheldon" }, { "input": "6", "output": "Sheldon" }, { "input": "1802", "output": "Penny" }, { "input": "1", "output": "Sheldon" }, { "input": "2", "output": "Leonard" }, { "input": "3", "output": "Penny" }, { "inpu...
1,533,636,538
2,147,483,647
Python 3
OK
TESTS
41
109
0
n = int(input()) nameline = ['Sheldon', 'Leonard', 'Penny', 'Rajesh', 'Howard'] if n <= 5: print(nameline[n-1]) else: five = 5 minus = 2 while True: nkeep = n - five if nkeep > 0: n = nkeep minus *= 2 five *= 2 else: ...
Title: Double Cola Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resultin...
```python n = int(input()) nameline = ['Sheldon', 'Leonard', 'Penny', 'Rajesh', 'Howard'] if n <= 5: print(nameline[n-1]) else: five = 5 minus = 2 while True: nkeep = n - five if nkeep > 0: n = nkeep minus *= 2 five *= 2 else: ...
3.9455
451
A
Game With Sticks
PROGRAMMING
900
[ "implementation" ]
null
null
After winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made of *n* horizontal and *m* vertical sticks. An intersection point is any point on the grid which is formed by the intersection of one horizontal stick and one vertical stick. In the grid show...
The first line of input contains two space-separated integers, *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100).
Print a single line containing "Akshat" or "Malvika" (without the quotes), depending on the winner of the game.
[ "2 2\n", "2 3\n", "3 3\n" ]
[ "Malvika\n", "Malvika\n", "Akshat\n" ]
Explanation of the first sample: The grid has four intersection points, numbered from 1 to 4. If Akshat chooses intersection point 1, then he will remove two sticks (1 - 2 and 1 - 3). The resulting grid will look like this. Now there is only one remaining intersection point (i.e. 4). Malvika must choose it and remov...
500
[ { "input": "2 2", "output": "Malvika" }, { "input": "2 3", "output": "Malvika" }, { "input": "3 3", "output": "Akshat" }, { "input": "20 68", "output": "Malvika" }, { "input": "1 1", "output": "Akshat" }, { "input": "1 2", "output": "Akshat" }, ...
1,679,518,655
2,147,483,647
Python 3
OK
TESTS
28
46
0
n, m = map(int, input().split()) if (n>=m and m%2 == 0) or (m>=n and n%2 == 0): print('Malvika') else: print('Akshat')
Title: Game With Sticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: After winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made of *n* horizontal and *m* vertical sticks. An intersection point is any point on the grid...
```python n, m = map(int, input().split()) if (n>=m and m%2 == 0) or (m>=n and n%2 == 0): print('Malvika') else: print('Akshat') ```
3
320
A
Magic Numbers
PROGRAMMING
900
[ "brute force", "greedy" ]
null
null
A magic number is a number formed by concatenation of numbers 1, 14 and 144. We can use each of these numbers any number of times. Therefore 14144, 141414 and 1411 are magic numbers but 1444, 514 and 414 are not. You're given a number. Determine if it is a magic number or not.
The first line of input contains an integer *n*, (1<=≤<=*n*<=≤<=109). This number doesn't contain leading zeros.
Print "YES" if *n* is a magic number or print "NO" if it's not.
[ "114114\n", "1111\n", "441231\n" ]
[ "YES\n", "YES\n", "NO\n" ]
none
500
[ { "input": "114114", "output": "YES" }, { "input": "1111", "output": "YES" }, { "input": "441231", "output": "NO" }, { "input": "1", "output": "YES" }, { "input": "14", "output": "YES" }, { "input": "114", "output": "YES" }, { "input": "9",...
1,669,878,741
2,147,483,647
Python 3
OK
TESTS
47
92
0
c=input() c=c.replace('144','+') c=c.replace('14','+') c=c.replace('1','+') print('YNEOS'[any(i!='+' for i in c)::2])
Title: Magic Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: A magic number is a number formed by concatenation of numbers 1, 14 and 144. We can use each of these numbers any number of times. Therefore 14144, 141414 and 1411 are magic numbers but 1444, 514 and 414 are not. You're ...
```python c=input() c=c.replace('144','+') c=c.replace('14','+') c=c.replace('1','+') print('YNEOS'[any(i!='+' for i in c)::2]) ```
3
1,004
A
Sonya and Hotels
PROGRAMMING
900
[ "implementation" ]
null
null
Sonya decided that having her own hotel business is the best way of earning money because she can profit and rest wherever she wants. The country where Sonya lives is an endless line. There is a city in each integer coordinate on this line. She has $n$ hotels, where the $i$-th hotel is located in the city with coordin...
The first line contains two integers $n$ and $d$ ($1\leq n\leq 100$, $1\leq d\leq 10^9$) — the number of Sonya's hotels and the needed minimum distance from a new hotel to all others. The second line contains $n$ different integers in strictly increasing order $x_1, x_2, \ldots, x_n$ ($-10^9\leq x_i\leq 10^9$) — coord...
Print the number of cities where Sonya can build a new hotel so that the minimum distance from this hotel to all others is equal to $d$.
[ "4 3\n-3 2 9 16\n", "5 2\n4 8 11 18 19\n" ]
[ "6\n", "5\n" ]
In the first example, there are $6$ possible cities where Sonya can build a hotel. These cities have coordinates $-6$, $5$, $6$, $12$, $13$, and $19$. In the second example, there are $5$ possible cities where Sonya can build a hotel. These cities have coordinates $2$, $6$, $13$, $16$, and $21$.
500
[ { "input": "4 3\n-3 2 9 16", "output": "6" }, { "input": "5 2\n4 8 11 18 19", "output": "5" }, { "input": "10 10\n-67 -59 -49 -38 -8 20 41 59 74 83", "output": "8" }, { "input": "10 10\n0 20 48 58 81 95 111 137 147 159", "output": "9" }, { "input": "100 1\n0 1 2 3...
1,530,897,544
2,147,483,647
Python 3
OK
TESTS
45
109
0
n1,d1=input().split(" ") n=int(n1) d=int(d1) a1=[0]*n a=[0]*n s=2 a1=input().split(" ") for i in range(n): a[i]=int(a1[i]) if i>0 and i<n: if a[i-1]+d*2==a[i]: s+=1 elif a[i-1]+d*2<a[i]: s+=2 print(s)
Title: Sonya and Hotels Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sonya decided that having her own hotel business is the best way of earning money because she can profit and rest wherever she wants. The country where Sonya lives is an endless line. There is a city in each integer c...
```python n1,d1=input().split(" ") n=int(n1) d=int(d1) a1=[0]*n a=[0]*n s=2 a1=input().split(" ") for i in range(n): a[i]=int(a1[i]) if i>0 and i<n: if a[i-1]+d*2==a[i]: s+=1 elif a[i-1]+d*2<a[i]: s+=2 print(s) ```
3
776
A
A Serial Killer
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
Our beloved detective, Sherlock is currently trying to catch a serial killer who kills a person each day. Using his powers of deduction, he came to know that the killer has a strategy for selecting his next victim. The killer starts with two potential victims on his first day, selects one of these two, kills selected ...
First line of input contains two names (length of each of them doesn't exceed 10), the two initials potential victims. Next line contains integer *n* (1<=≤<=*n*<=≤<=1000), the number of days. Next *n* lines contains two names (length of each of them doesn't exceed 10), first being the person murdered on this day and t...
Output *n*<=+<=1 lines, the *i*-th line should contain the two persons from which the killer selects for the *i*-th murder. The (*n*<=+<=1)-th line should contain the two persons from which the next victim is selected. In each line, the two names can be printed in any order.
[ "ross rachel\n4\nross joey\nrachel phoebe\nphoebe monica\nmonica chandler\n", "icm codeforces\n1\ncodeforces technex\n" ]
[ "ross rachel\njoey rachel\njoey phoebe\njoey monica\njoey chandler\n", "icm codeforces\nicm technex\n" ]
In first example, the killer starts with ross and rachel. - After day 1, ross is killed and joey appears. - After day 2, rachel is killed and phoebe appears. - After day 3, phoebe is killed and monica appears. - After day 4, monica is killed and chandler appears.
500
[ { "input": "ross rachel\n4\nross joey\nrachel phoebe\nphoebe monica\nmonica chandler", "output": "ross rachel\njoey rachel\njoey phoebe\njoey monica\njoey chandler" }, { "input": "icm codeforces\n1\ncodeforces technex", "output": "icm codeforces\nicm technex" }, { "input": "a b\n3\na c\n...
1,623,770,481
2,147,483,647
Python 3
OK
TESTS
57
62
0
name1, name2 = input().split() num = int(input()) lst = [name1, name2] print(*lst) for i in range(num): temp1, temp2 = input().split() pos = lst.index(temp1) lst[pos] = temp2 print(*lst)
Title: A Serial Killer Time Limit: None seconds Memory Limit: None megabytes Problem Description: Our beloved detective, Sherlock is currently trying to catch a serial killer who kills a person each day. Using his powers of deduction, he came to know that the killer has a strategy for selecting his next victim. The...
```python name1, name2 = input().split() num = int(input()) lst = [name1, name2] print(*lst) for i in range(num): temp1, temp2 = input().split() pos = lst.index(temp1) lst[pos] = temp2 print(*lst) ```
3
844
A
Diversity
PROGRAMMING
1,000
[ "greedy", "implementation", "strings" ]
null
null
Calculate the minimum number of characters you need to change in the string *s*, so that it contains at least *k* different letters, or print that it is impossible. String *s* consists only of lowercase Latin letters, and it is allowed to change characters only to lowercase Latin letters too.
First line of input contains string *s*, consisting only of lowercase Latin letters (1<=≤<=|*s*|<=≤<=1000, |*s*| denotes the length of *s*). Second line of input contains integer *k* (1<=≤<=*k*<=≤<=26).
Print single line with a minimum number of necessary changes, or the word «impossible» (without quotes) if it is impossible.
[ "yandex\n6\n", "yahoo\n5\n", "google\n7\n" ]
[ "0\n", "1\n", "impossible\n" ]
In the first test case string contains 6 different letters, so we don't need to change anything. In the second test case string contains 4 different letters: {'*a*', '*h*', '*o*', '*y*'}. To get 5 different letters it is necessary to change one occurrence of '*o*' to some letter, which doesn't occur in the string, for...
500
[ { "input": "yandex\n6", "output": "0" }, { "input": "yahoo\n5", "output": "1" }, { "input": "google\n7", "output": "impossible" }, { "input": "a\n1", "output": "0" }, { "input": "z\n2", "output": "impossible" }, { "input": "fwgfrwgkuwghfiruhewgirueguhe...
1,511,861,023
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
46
5,632,000
a=input() b=int(input()) c=set(a) if b>len(a): print('impossible') else: q=max(0,b-len(c)) print(q)
Title: Diversity Time Limit: None seconds Memory Limit: None megabytes Problem Description: Calculate the minimum number of characters you need to change in the string *s*, so that it contains at least *k* different letters, or print that it is impossible. String *s* consists only of lowercase Latin letters, and it...
```python a=input() b=int(input()) c=set(a) if b>len(a): print('impossible') else: q=max(0,b-len(c)) print(q) ```
-1
214
A
System of Equations
PROGRAMMING
800
[ "brute force" ]
null
null
Furik loves math lessons very much, so he doesn't attend them, unlike Rubik. But now Furik wants to get a good mark for math. For that Ms. Ivanova, his math teacher, gave him a new task. Furik solved the task immediately. Can you? You are given a system of equations: You should count, how many there are pairs of int...
A single line contains two integers *n*,<=*m* (1<=≤<=*n*,<=*m*<=≤<=1000) — the parameters of the system. The numbers on the line are separated by a space.
On a single line print the answer to the problem.
[ "9 3\n", "14 28\n", "4 20\n" ]
[ "1\n", "1\n", "0\n" ]
In the first sample the suitable pair is integers (3, 0). In the second sample the suitable pair is integers (3, 5). In the third sample there is no suitable pair.
500
[ { "input": "9 3", "output": "1" }, { "input": "14 28", "output": "1" }, { "input": "4 20", "output": "0" }, { "input": "18 198", "output": "1" }, { "input": "22 326", "output": "1" }, { "input": "26 104", "output": "1" }, { "input": "14 10"...
1,670,929,843
2,147,483,647
PyPy 3-64
OK
TESTS
54
124
0
def System_of_Equations(): import math strInput1 = input().split(' ') n = int(strInput1[0]) m = int(strInput1[1]) answer = 0 for a in range(m+1): b_sqaure = m - a b = math.sqrt(b_sqaure) if (a*a) + b == n : answer += 1 print(answer) ...
Title: System of Equations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Furik loves math lessons very much, so he doesn't attend them, unlike Rubik. But now Furik wants to get a good mark for math. For that Ms. Ivanova, his math teacher, gave him a new task. Furik solved the task immedi...
```python def System_of_Equations(): import math strInput1 = input().split(' ') n = int(strInput1[0]) m = int(strInput1[1]) answer = 0 for a in range(m+1): b_sqaure = m - a b = math.sqrt(b_sqaure) if (a*a) + b == n : answer += 1 print(answ...
3
376
A
Lever
PROGRAMMING
900
[ "implementation", "math" ]
null
null
You have a description of a lever as string *s*. We'll represent the string length as record |*s*|, then the lever looks as a horizontal bar with weights of length |*s*|<=-<=1 with exactly one pivot. We will assume that the bar is a segment on the *Ox* axis between points 0 and |*s*|<=-<=1. The decoding of the lever d...
The first line contains the lever description as a non-empty string *s* (3<=≤<=|*s*|<=≤<=106), consisting of digits (1-9) and characters "^" and "=". It is guaranteed that the line contains exactly one character "^". It is guaranteed that the pivot of the lever isn't located in any end of the lever bar. To solve the p...
Print "left" if the given lever tilts to the left, "right" if it tilts to the right and "balance", if it is in balance.
[ "=^==\n", "9===^==1\n", "2==^7==\n", "41^52==\n" ]
[ "balance\n", "left\n", "right\n", "balance\n" ]
As you solve the problem, you may find the following link useful to better understand how a lever functions: http://en.wikipedia.org/wiki/Lever. The pictures to the examples:
500
[ { "input": "=^==", "output": "balance" }, { "input": "9===^==1", "output": "left" }, { "input": "2==^7==", "output": "right" }, { "input": "41^52==", "output": "balance" }, { "input": "=^2=4=1===1=", "output": "right" }, { "input": "9=6===5==3=9=1=1^7=...
1,647,597,998
2,147,483,647
Python 3
OK
TESTS
60
452
3,072,000
import math s = input() indX = s.index("^") c = 0 i = 0 for i in range(len(s)): if s[i].isdigit(): c += int(s[i]) * (indX - i) if c == 0: print("balance") else: print(["right", "left"][c > 0])
Title: Lever Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have a description of a lever as string *s*. We'll represent the string length as record |*s*|, then the lever looks as a horizontal bar with weights of length |*s*|<=-<=1 with exactly one pivot. We will assume that the bar i...
```python import math s = input() indX = s.index("^") c = 0 i = 0 for i in range(len(s)): if s[i].isdigit(): c += int(s[i]) * (indX - i) if c == 0: print("balance") else: print(["right", "left"][c > 0]) ```
3
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,655,715,277
2,147,483,647
Python 3
OK
TESTS
20
46
0
import math s=[int(x)for x in input().split()] n,m,a=s[0],s[1],s[2] if (m==a and n>=1) or ( n==m) or (n==a and m>=1): print(math.ceil(m/a)*math.ceil(n/a)) elif n>a and m>a: l=math.ceil(n/a) b=math.ceil(m/a) print(l*b) elif (n==a and m==a): print(1) else: print(1)
Title: Theatre Square Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each ...
```python import math s=[int(x)for x in input().split()] n,m,a=s[0],s[1],s[2] if (m==a and n>=1) or ( n==m) or (n==a and m>=1): print(math.ceil(m/a)*math.ceil(n/a)) elif n>a and m>a: l=math.ceil(n/a) b=math.ceil(m/a) print(l*b) elif (n==a and m==a): print(1) else: print(1) ```
3.977
609
A
USB Flash Drives
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
Sean is trying to save a large file to a USB flash drive. He has *n* USB flash drives with capacities equal to *a*1,<=*a*2,<=...,<=*a**n* megabytes. The file size is equal to *m* megabytes. Find the minimum number of USB flash drives needed to write Sean's file, if he can split the file between drives.
The first line contains positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of USB flash drives. The second line contains positive integer *m* (1<=≤<=*m*<=≤<=105) — the size of Sean's file. Each of the next *n* lines contains positive integer *a**i* (1<=≤<=*a**i*<=≤<=1000) — the sizes of USB flash drives in megabyt...
Print the minimum number of USB flash drives to write Sean's file, if he can split the file between drives.
[ "3\n5\n2\n1\n3\n", "3\n6\n2\n3\n2\n", "2\n5\n5\n10\n" ]
[ "2\n", "3\n", "1\n" ]
In the first example Sean needs only two USB flash drives — the first and the third. In the second example Sean needs all three USB flash drives. In the third example Sean needs only one USB flash drive and he can use any available USB flash drive — the first or the second.
0
[ { "input": "3\n5\n2\n1\n3", "output": "2" }, { "input": "3\n6\n2\n3\n2", "output": "3" }, { "input": "2\n5\n5\n10", "output": "1" }, { "input": "5\n16\n8\n1\n3\n4\n9", "output": "2" }, { "input": "10\n121\n10\n37\n74\n56\n42\n39\n6\n68\n8\n100", "output": "2" ...
1,547,893,316
2,147,483,647
Python 3
OK
TESTS
34
109
0
n = int(input()) ; m = int(input()) x = [] ; v = [] count = 0 for i in range(n): f = int(input()) x.append(f) x.sort() v = x[::-1] for i in range(n): if m > 0: m -= v[i] count += 1 else: break print(count)
Title: USB Flash Drives Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sean is trying to save a large file to a USB flash drive. He has *n* USB flash drives with capacities equal to *a*1,<=*a*2,<=...,<=*a**n* megabytes. The file size is equal to *m* megabytes. Find the minimum number of...
```python n = int(input()) ; m = int(input()) x = [] ; v = [] count = 0 for i in range(n): f = int(input()) x.append(f) x.sort() v = x[::-1] for i in range(n): if m > 0: m -= v[i] count += 1 else: break print(count) ```
3
518
A
Vitaly and Strings
PROGRAMMING
1,600
[ "constructive algorithms", "strings" ]
null
null
Vitaly is a diligent student who never missed a lesson in his five years of studying in the university. He always does his homework on time and passes his exams in time. During the last lesson the teacher has provided two strings *s* and *t* to Vitaly. The strings have the same length, they consist of lowercase Engli...
The first line contains string *s* (1<=≤<=|*s*|<=≤<=100), consisting of lowercase English letters. Here, |*s*| denotes the length of the string. The second line contains string *t* (|*t*|<==<=|*s*|), consisting of lowercase English letters. It is guaranteed that the lengths of strings *s* and *t* are the same and str...
If the string that meets the given requirements doesn't exist, print a single string "No such string" (without the quotes). If such string exists, print it. If there are multiple valid strings, you may print any of them.
[ "a\nc\n", "aaa\nzzz\n", "abcdefg\nabcdefh\n" ]
[ "b\n", "kkk\n", "No such string\n" ]
String *s* = *s*<sub class="lower-index">1</sub>*s*<sub class="lower-index">2</sub>... *s*<sub class="lower-index">*n*</sub> is said to be lexicographically smaller than *t* = *t*<sub class="lower-index">1</sub>*t*<sub class="lower-index">2</sub>... *t*<sub class="lower-index">*n*</sub>, if there exists such *i*, that ...
500
[ { "input": "a\nc", "output": "b" }, { "input": "aaa\nzzz", "output": "kkk" }, { "input": "abcdefg\nabcdefh", "output": "No such string" }, { "input": "abcdefg\nabcfefg", "output": "abcdefh" }, { "input": "frt\nfru", "output": "No such string" }, { "inp...
1,554,354,532
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
93
0
s=input() t=input() a=list(s) for i in range(len(s)-1,-1,-1): if a[i]=='z': a[i]==a else: a[i]=chr(ord(a[i])+1) break s=''.join(a) if s>=t: print("No such string") else: print(s)
Title: Vitaly and Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vitaly is a diligent student who never missed a lesson in his five years of studying in the university. He always does his homework on time and passes his exams in time. During the last lesson the teacher has provi...
```python s=input() t=input() a=list(s) for i in range(len(s)-1,-1,-1): if a[i]=='z': a[i]==a else: a[i]=chr(ord(a[i])+1) break s=''.join(a) if s>=t: print("No such string") else: print(s) ```
0
169
B
Replacing Digits
PROGRAMMING
1,100
[ "greedy" ]
null
null
You are given an integer *a* that consists of *n* digits. You are also given a sequence of digits *s* of length *m*. The digit in position *j* (1<=≤<=*j*<=≤<=*m*) of sequence *s* means that you can choose an arbitrary position *i* (1<=≤<=*i*<=≤<=*n*) in *a* and replace the digit in the chosen position *i* with *s**j*. ...
The first line contains positive integer *a*. Its length *n* is positive and doesn't exceed 105. The second line contains sequence of digits *s*. Its length *m* is positive and doesn't exceed 105. The digits in the sequence *s* are written consecutively without any separators. The given number *a* doesn't contain lead...
Print the maximum value that can be obtained from *a* after a series of replacements. You are allowed to use not all elements from *s*. The printed number shouldn't contain any leading zeroes.
[ "1024\n010\n", "987\n1234567\n" ]
[ "1124\n", "987\n" ]
none
1,000
[ { "input": "1024\n010", "output": "1124" }, { "input": "987\n1234567", "output": "987" }, { "input": "10\n1", "output": "11" }, { "input": "11\n1", "output": "11" }, { "input": "12\n2", "output": "22" }, { "input": "1\n0", "output": "1" }, { ...
1,657,177,335
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
4
62
0
n = list(input()) s = list(input()) n = list(map(int,n)) s = list(map(int,s)) for i in range(len(n)): if n[i] < max(s): n.pop(i) n.insert(i,max(s)) s.remove(max(s)) print(''.join(map(str,n)))
Title: Replacing Digits Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an integer *a* that consists of *n* digits. You are also given a sequence of digits *s* of length *m*. The digit in position *j* (1<=≤<=*j*<=≤<=*m*) of sequence *s* means that you can choose an arbitrary ...
```python n = list(input()) s = list(input()) n = list(map(int,n)) s = list(map(int,s)) for i in range(len(n)): if n[i] < max(s): n.pop(i) n.insert(i,max(s)) s.remove(max(s)) print(''.join(map(str,n))) ```
-1
914
C
Travelling Salesman and Special Numbers
PROGRAMMING
1,800
[ "brute force", "combinatorics", "dp" ]
null
null
The Travelling Salesman spends a lot of time travelling so he tends to get bored. To pass time, he likes to perform operations on numbers. One such operation is to take a positive integer *x* and reduce it to the number of bits set to 1 in the binary representation of *x*. For example for number 13 it's true that 1310<...
The first line contains integer *n* (1<=≤<=*n*<=&lt;<=21000). The second line contains integer *k* (0<=≤<=*k*<=≤<=1000). Note that *n* is given in its binary representation without any leading zeros.
Output a single integer — the number of special numbers not greater than *n*, modulo 109<=+<=7.
[ "110\n2\n", "111111011\n2\n" ]
[ "3\n", "169\n" ]
In the first sample, the three special numbers are 3, 5 and 6. They get reduced to 2 in one operation (since there are two set bits in each of 3, 5 and 6) and then to 1 in one more operation (since there is only one set bit in 2).
1,500
[ { "input": "110\n2", "output": "3" }, { "input": "111111011\n2", "output": "169" }, { "input": "100011110011110110100\n7", "output": "0" }, { "input": "110100110\n0", "output": "1" }, { "input": "10000000000000000000000000000000000000000000\n2", "output": "792...
1,631,418,410
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
109
21,606,400
p = int(1e9+7) def count1(n): c = 0 while n: if n&1: c+=1 n >>= 1 return c n = 1000 f = [count1(i) for i in range(n+1)] g = [0]*(n+1) for i in range(2,n+1): g[i] = g[f[i]]+1 def solv(s,k): global n,g he = [1] + [0]*n hl = [0]*(n+1) for c in s: ...
Title: Travelling Salesman and Special Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Travelling Salesman spends a lot of time travelling so he tends to get bored. To pass time, he likes to perform operations on numbers. One such operation is to take a positive integer *x* and...
```python p = int(1e9+7) def count1(n): c = 0 while n: if n&1: c+=1 n >>= 1 return c n = 1000 f = [count1(i) for i in range(n+1)] g = [0]*(n+1) for i in range(2,n+1): g[i] = g[f[i]]+1 def solv(s,k): global n,g he = [1] + [0]*n hl = [0]*(n+1) for c...
0
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,663,056,605
2,147,483,647
Python 3
OK
TESTS
20
31
0
length = input().split() import math a = math.ceil(int(length[0]) / int(length[2])) b = math.ceil(int(length[1]) / int(length[2])) print(a * b)
Title: Theatre Square Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each ...
```python length = input().split() import math a = math.ceil(int(length[0]) / int(length[2])) b = math.ceil(int(length[1]) / int(length[2])) print(a * b) ```
3.9845
732
A
Buy a Shovel
PROGRAMMING
800
[ "brute force", "constructive algorithms", "implementation", "math" ]
null
null
Polycarp urgently needs a shovel! He comes to the shop and chooses an appropriate one. The shovel that Policarp chooses is sold for *k* burles. Assume that there is an unlimited number of such shovels in the shop. In his pocket Polycarp has an unlimited number of "10-burle coins" and exactly one coin of *r* burles (1<...
The single line of input contains two integers *k* and *r* (1<=≤<=*k*<=≤<=1000, 1<=≤<=*r*<=≤<=9) — the price of one shovel and the denomination of the coin in Polycarp's pocket that is different from "10-burle coins". Remember that he has an unlimited number of coins in the denomination of 10, that is, Polycarp has e...
Print the required minimum number of shovels Polycarp has to buy so that he can pay for them without any change.
[ "117 3\n", "237 7\n", "15 2\n" ]
[ "9\n", "1\n", "2\n" ]
In the first example Polycarp can buy 9 shovels and pay 9·117 = 1053 burles. Indeed, he can pay this sum by using 10-burle coins and one 3-burle coin. He can't buy fewer shovels without any change. In the second example it is enough for Polycarp to buy one shovel. In the third example Polycarp should buy two shovels ...
500
[ { "input": "117 3", "output": "9" }, { "input": "237 7", "output": "1" }, { "input": "15 2", "output": "2" }, { "input": "1 1", "output": "1" }, { "input": "1 9", "output": "9" }, { "input": "1000 3", "output": "1" }, { "input": "1000 1", ...
1,678,972,756
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
def BuyShovel(): a, b= [int(x) for x in input().split()] sums = 0 for i in range(a): sums += a if sums %10 == 0 or sums%10 ==b: print(i) break else: continue
Title: Buy a Shovel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp urgently needs a shovel! He comes to the shop and chooses an appropriate one. The shovel that Policarp chooses is sold for *k* burles. Assume that there is an unlimited number of such shovels in the shop. In his ...
```python def BuyShovel(): a, b= [int(x) for x in input().split()] sums = 0 for i in range(a): sums += a if sums %10 == 0 or sums%10 ==b: print(i) break else: continue ```
0
476
A
Dreamoon and Stairs
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Dreamoon wants to climb up a stair of *n* steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer *m*. What is the minimal number of moves making him climb to the top of the stairs that satisfies his condition?
The single line contains two space separated integers *n*, *m* (0<=&lt;<=*n*<=≤<=10000,<=1<=&lt;<=*m*<=≤<=10).
Print a single integer — the minimal number of moves being a multiple of *m*. If there is no way he can climb satisfying condition print <=-<=1 instead.
[ "10 2\n", "3 5\n" ]
[ "6\n", "-1\n" ]
For the first sample, Dreamoon could climb in 6 moves with following sequence of steps: {2, 2, 2, 2, 1, 1}. For the second sample, there are only three valid sequence of steps {2, 1}, {1, 2}, {1, 1, 1} with 2, 2, and 3 steps respectively. All these numbers are not multiples of 5.
500
[ { "input": "10 2", "output": "6" }, { "input": "3 5", "output": "-1" }, { "input": "29 7", "output": "21" }, { "input": "2 2", "output": "2" }, { "input": "1 2", "output": "-1" }, { "input": "10000 2", "output": "5000" }, { "input": "10000 ...
1,677,819,157
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
93
0
n,m=map(int,input().split()) if n<m or n>2*m: print('-1') elif n==m: print(n) else: print(m)
Title: Dreamoon and Stairs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dreamoon wants to climb up a stair of *n* steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer *m*. What is the minimal number of moves making him climb ...
```python n,m=map(int,input().split()) if n<m or n>2*m: print('-1') elif n==m: print(n) else: print(m) ```
0
722
C
Destroying Array
PROGRAMMING
1,600
[ "data structures", "dsu" ]
null
null
You are given an array consisting of *n* non-negative integers *a*1,<=*a*2,<=...,<=*a**n*. You are going to destroy integers in the array one by one. Thus, you are given the permutation of integers from 1 to *n* defining the order elements of the array are destroyed. After each element is destroyed you have to find o...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the length of the array. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109). The third line contains a permutation of integers from 1 to *n* — the order used to destroy elements.
Print *n* lines. The *i*-th line should contain a single integer — the maximum possible sum of elements on the segment containing no destroyed elements, after first *i* operations are performed.
[ "4\n1 3 2 5\n3 4 1 2\n", "5\n1 2 3 4 5\n4 2 3 5 1\n", "8\n5 5 4 4 6 6 5 5\n5 2 8 7 1 3 4 6\n" ]
[ "5\n4\n3\n0\n", "6\n5\n5\n1\n0\n", "18\n16\n11\n8\n8\n6\n6\n0\n" ]
Consider the first sample: 1. Third element is destroyed. Array is now 1 3  *  5. Segment with maximum sum 5 consists of one integer 5. 1. Fourth element is destroyed. Array is now 1 3  *   * . Segment with maximum sum 4 consists of two integers 1 3. 1. First element is destroyed. Array is now  *  3  *   * . Segme...
1,000
[ { "input": "4\n1 3 2 5\n3 4 1 2", "output": "5\n4\n3\n0" }, { "input": "5\n1 2 3 4 5\n4 2 3 5 1", "output": "6\n5\n5\n1\n0" }, { "input": "8\n5 5 4 4 6 6 5 5\n5 2 8 7 1 3 4 6", "output": "18\n16\n11\n8\n8\n6\n6\n0" }, { "input": "10\n3 3 3 5 6 9 3 1 7 3\n3 4 6 7 5 1 10 9 2 8"...
1,645,591,465
2,147,483,647
Python 3
OK
TESTS
49
514
16,281,600
n=int(input()) l=list(map(int,input().split())) l1=list(map(int,input().split())) l1=l1[::-1] mi=0 V=[0] L=[[] for i in range(n)] for i in range(n-1) : a=l1[i]-1 b=l1[i]-1 s=l[l1[i]-1] if a-1!=-1 : if L[a-1] : s+=L[a-1][0] a=L[a-1][1] if b+1<n : ...
Title: Destroying Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array consisting of *n* non-negative integers *a*1,<=*a*2,<=...,<=*a**n*. You are going to destroy integers in the array one by one. Thus, you are given the permutation of integers from 1 to *n* defin...
```python n=int(input()) l=list(map(int,input().split())) l1=list(map(int,input().split())) l1=l1[::-1] mi=0 V=[0] L=[[] for i in range(n)] for i in range(n-1) : a=l1[i]-1 b=l1[i]-1 s=l[l1[i]-1] if a-1!=-1 : if L[a-1] : s+=L[a-1][0] a=L[a-1][1] if b+1<n...
3
908
B
New Year and Buggy Bot
PROGRAMMING
1,200
[ "brute force", "implementation" ]
null
null
Bob programmed a robot to navigate through a 2d maze. The maze has some obstacles. Empty cells are denoted by the character '.', where obstacles are denoted by '#'. There is a single robot in the maze. Its start position is denoted with the character 'S'. This position has no obstacle in it. There is also a single ex...
The first line of input will contain two integers *n* and *m* (2<=≤<=*n*,<=*m*<=≤<=50), denoting the dimensions of the maze. The next *n* lines will contain exactly *m* characters each, denoting the maze. Each character of the maze will be '.', '#', 'S', or 'E'. There will be exactly one 'S' and exactly one 'E' in t...
Print a single integer, the number of mappings of digits to directions that will lead the robot to the exit.
[ "5 6\n.....#\nS....#\n.#....\n.#....\n...E..\n333300012\n", "6 6\n......\n......\n..SE..\n......\n......\n......\n01232123212302123021\n", "5 3\n...\n.S.\n###\n.E.\n...\n3\n" ]
[ "1\n", "14\n", "0\n" ]
For the first sample, the only valid mapping is <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/87a55361bde12e4223a96f0e1d83b94428f26f02.png" style="max-width: 100.0%;max-height: 100.0%;"/>, where *D* is down, *L* is left, *U* is up, *R* is right.
750
[ { "input": "5 6\n.....#\nS....#\n.#....\n.#....\n...E..\n333300012", "output": "1" }, { "input": "6 6\n......\n......\n..SE..\n......\n......\n......\n01232123212302123021", "output": "14" }, { "input": "5 3\n...\n.S.\n###\n.E.\n...\n3", "output": "0" }, { "input": "10 10\n.#...
1,514,623,584
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
5,632,000
class Point: def __init__(self,i,j): self.i = i self.j = j def move(self,p): return Point(self.i + p.i,self.j + p.j) def pos(self,p): return self.i == p.i and self.j == p.j def out(self): return self.i < 0 or self.i >= n or self.j < 0 or self.j >= m n,m ...
Title: New Year and Buggy Bot Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bob programmed a robot to navigate through a 2d maze. The maze has some obstacles. Empty cells are denoted by the character '.', where obstacles are denoted by '#'. There is a single robot in the maze. Its star...
```python class Point: def __init__(self,i,j): self.i = i self.j = j def move(self,p): return Point(self.i + p.i,self.j + p.j) def pos(self,p): return self.i == p.i and self.j == p.j def out(self): return self.i < 0 or self.i >= n or self.j < 0 or self.j ...
0
792
B
Counting-out Rhyme
PROGRAMMING
1,300
[ "implementation" ]
null
null
*n* children are standing in a circle and playing the counting-out game. Children are numbered clockwise from 1 to *n*. In the beginning, the first child is considered the leader. The game is played in *k* steps. In the *i*-th step the leader counts out *a**i* people in clockwise order, starting from the next person. T...
The first line contains two integer numbers *n* and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=*n*<=-<=1). The next line contains *k* integer numbers *a*1,<=*a*2,<=...,<=*a**k* (1<=≤<=*a**i*<=≤<=109).
Print *k* numbers, the *i*-th one corresponds to the number of child to be eliminated at the *i*-th step.
[ "7 5\n10 4 11 4 1\n", "3 2\n2 5\n" ]
[ "4 2 5 6 1 \n", "3 2 \n" ]
Let's consider first example: - In the first step child 4 is eliminated, child 5 becomes the leader. - In the second step child 2 is eliminated, child 3 becomes the leader. - In the third step child 5 is eliminated, child 6 becomes the leader. - In the fourth step child 6 is eliminated, child 7 becomes the leader...
0
[ { "input": "7 5\n10 4 11 4 1", "output": "4 2 5 6 1 " }, { "input": "3 2\n2 5", "output": "3 2 " }, { "input": "2 1\n1", "output": "2 " }, { "input": "2 1\n2", "output": "1 " }, { "input": "2 1\n3", "output": "2 " }, { "input": "10 7\n5 10 4 3 8 10 6",...
1,490,627,061
1,761
PyPy 3
RUNTIME_ERROR
TESTS
3
93
23,142,400
n, k = [int(x) for x in str(input()).split(' ', 1)] next_ = [i+1 for i in range(n+1)] next_[n] = 1 a = [int(x) for x in str(input()).split(' ')] remain = n cur = 1 prev = None eli = [] for a0 in a: a0 = a0 % remain for _ in range(a0): prev = cur # print("{}->{}".format(cur, next_[cur...
Title: Counting-out Rhyme Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* children are standing in a circle and playing the counting-out game. Children are numbered clockwise from 1 to *n*. In the beginning, the first child is considered the leader. The game is played in *k* steps. In ...
```python n, k = [int(x) for x in str(input()).split(' ', 1)] next_ = [i+1 for i in range(n+1)] next_[n] = 1 a = [int(x) for x in str(input()).split(' ')] remain = n cur = 1 prev = None eli = [] for a0 in a: a0 = a0 % remain for _ in range(a0): prev = cur # print("{}->{}".format(cur,...
-1
958
F2
Lightsabers (medium)
PROGRAMMING
1,800
[ "binary search", "two pointers" ]
null
null
There is unrest in the Galactic Senate. Several thousand solar systems have declared their intentions to leave the Republic. Master Heidi needs to select the Jedi Knights who will go on peacekeeping missions throughout the galaxy. It is well-known that the success of any peacekeeping mission depends on the colors of th...
The first line of the input contains *n* (1<=≤<=*n*<=≤<=2·105) and *m* (1<=≤<=*m*<=≤<=*n*). The second line contains *n* integers in the range {1,<=2,<=...,<=*m*} representing colors of the lightsabers of the subsequent Jedi Knights. The third line contains *m* integers *k*1,<=*k*2,<=...,<=*k**m* (with ) – the desired ...
Output one number: the minimum number of Jedi Knights that need to be removed from the sequence so that, in what remains, there is an interval with the prescribed counts of lightsaber colors. If this is not possible, output <=-<=1.
[ "8 3\n3 3 1 2 2 1 1 3\n3 1 1\n" ]
[ "1\n" ]
none
0
[ { "input": "8 3\n3 3 1 2 2 1 1 3\n3 1 1", "output": "1" }, { "input": "6 5\n1 2 4 2 4 3\n0 0 1 0 0", "output": "0" }, { "input": "1 1\n1\n1", "output": "0" }, { "input": "2 1\n1 1\n1", "output": "0" }, { "input": "2 1\n1 1\n2", "output": "0" }, { "inpu...
1,682,912,253
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
import collections n,m=list(map(int,input().split())) a=list(map(int,input().split())) k=list(map(int,input().split())) f1=[0]*4 f2=[0]*4 for i in range(m): f1[i+1]=k[i] print(f1) l,r=0,0 c=0 anslen=float('inf') ans=[] while r<n: #print(l,r) f2[a[r]]+=1 if f2[a[r]]==f1[a[r]]: ...
Title: Lightsabers (medium) Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is unrest in the Galactic Senate. Several thousand solar systems have declared their intentions to leave the Republic. Master Heidi needs to select the Jedi Knights who will go on peacekeeping missions throug...
```python import collections n,m=list(map(int,input().split())) a=list(map(int,input().split())) k=list(map(int,input().split())) f1=[0]*4 f2=[0]*4 for i in range(m): f1[i+1]=k[i] print(f1) l,r=0,0 c=0 anslen=float('inf') ans=[] while r<n: #print(l,r) f2[a[r]]+=1 if f2[a[r]]==f1[a[...
0
898
A
Rounding
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5 Vasya can round it to 0 or to 10. Both ways are correct. For given *n* find out to which int...
The first line contains single integer *n* (0<=≤<=*n*<=≤<=109) — number that Vasya has.
Print result of rounding *n*. Pay attention that in some cases answer isn't unique. In that case print any correct answer.
[ "5\n", "113\n", "1000000000\n", "5432359\n" ]
[ "0\n", "110\n", "1000000000\n", "5432360\n" ]
In the first example *n* = 5. Nearest integers, that ends up with zero are 0 and 10. Any of these answers is correct, so you can print 0 or 10.
500
[ { "input": "5", "output": "0" }, { "input": "113", "output": "110" }, { "input": "1000000000", "output": "1000000000" }, { "input": "5432359", "output": "5432360" }, { "input": "999999994", "output": "999999990" }, { "input": "10", "output": "10" ...
1,656,441,258
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
31
0
n = int(input()) if(n%10 != 0): if(n >= 5): while(n%10 != 0): n = n+1 print (n) else: while(n%10 != 0): n = n-1 print (n) else: print(n)
Title: Rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5...
```python n = int(input()) if(n%10 != 0): if(n >= 5): while(n%10 != 0): n = n+1 print (n) else: while(n%10 != 0): n = n-1 print (n) else: print(n) ```
0
115
A
Party
PROGRAMMING
900
[ "dfs and similar", "graphs", "trees" ]
null
null
A company has *n* employees numbered from 1 to *n*. Each employee either has no immediate manager or exactly one immediate manager, who is another employee with a different number. An employee *A* is said to be the superior of another employee *B* if at least one of the following is true: - Employee *A* is the immedi...
The first line contains integer *n* (1<=≤<=*n*<=≤<=2000) — the number of employees. The next *n* lines contain the integers *p**i* (1<=≤<=*p**i*<=≤<=*n* or *p**i*<==<=-1). Every *p**i* denotes the immediate manager for the *i*-th employee. If *p**i* is -1, that means that the *i*-th employee does not have an immediate...
Print a single integer denoting the minimum number of groups that will be formed in the party.
[ "5\n-1\n1\n2\n1\n-1\n" ]
[ "3\n" ]
For the first example, three groups are sufficient, for example: - Employee 1 - Employees 2 and 4 - Employees 3 and 5
500
[ { "input": "5\n-1\n1\n2\n1\n-1", "output": "3" }, { "input": "4\n-1\n1\n2\n3", "output": "4" }, { "input": "12\n-1\n1\n2\n3\n-1\n5\n6\n7\n-1\n9\n10\n11", "output": "4" }, { "input": "6\n-1\n-1\n2\n3\n1\n1", "output": "3" }, { "input": "3\n-1\n1\n1", "output": ...
1,640,960,312
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
38
436
14,950,400
class Node: def __init__(self, i): self.index = i self.children = [] res = [] max_height = 0 max_arr = [] visited = set() def dfs(nodes): global max_height, max_arr component = -1 for i in range(1, len(nodes)): node = nodes[i] if node not in visited: ...
Title: Party Time Limit: None seconds Memory Limit: None megabytes Problem Description: A company has *n* employees numbered from 1 to *n*. Each employee either has no immediate manager or exactly one immediate manager, who is another employee with a different number. An employee *A* is said to be the superior of an...
```python class Node: def __init__(self, i): self.index = i self.children = [] res = [] max_height = 0 max_arr = [] visited = set() def dfs(nodes): global max_height, max_arr component = -1 for i in range(1, len(nodes)): node = nodes[i] if node not in visited...
-1
985
C
Liebig's Barrels
PROGRAMMING
1,500
[ "greedy" ]
null
null
You have *m*<==<=*n*·*k* wooden staves. The *i*-th stave has length *a**i*. You have to assemble *n* barrels consisting of *k* staves each, you can use any *k* staves to construct a barrel. Each stave must belong to exactly one barrel. Let volume *v**j* of barrel *j* be equal to the length of the minimal stave in it. ...
The first line contains three space-separated integers *n*, *k* and *l* (1<=≤<=*n*,<=*k*<=≤<=105, 1<=≤<=*n*·*k*<=≤<=105, 0<=≤<=*l*<=≤<=109). The second line contains *m*<==<=*n*·*k* space-separated integers *a*1,<=*a*2,<=...,<=*a**m* (1<=≤<=*a**i*<=≤<=109) — lengths of staves.
Print single integer — maximal total sum of the volumes of barrels or 0 if it's impossible to construct exactly *n* barrels satisfying the condition |*v**x*<=-<=*v**y*|<=≤<=*l* for any 1<=≤<=*x*<=≤<=*n* and 1<=≤<=*y*<=≤<=*n*.
[ "4 2 1\n2 2 1 2 3 2 2 3\n", "2 1 0\n10 10\n", "1 2 1\n5 2\n", "3 2 1\n1 2 3 4 5 6\n" ]
[ "7\n", "20\n", "2\n", "0\n" ]
In the first example you can form the following barrels: [1, 2], [2, 2], [2, 3], [2, 3]. In the second example you can form the following barrels: [10], [10]. In the third example you can form the following barrels: [2, 5]. In the fourth example difference between volumes of barrels in any partition is at least 2 so...
0
[ { "input": "4 2 1\n2 2 1 2 3 2 2 3", "output": "7" }, { "input": "2 1 0\n10 10", "output": "20" }, { "input": "1 2 1\n5 2", "output": "2" }, { "input": "3 2 1\n1 2 3 4 5 6", "output": "0" }, { "input": "10 3 189\n267 697 667 4 52 128 85 616 142 344 413 660 962 194...
1,638,497,439
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
6
186
10,547,200
from bisect import bisect_left n,k,d=list(map(int,input().split())) l=sorted(list(map(int,input().split()))) t=0;ans=0;p=l[0]+d c=bisect_left(l,p) for x in l[:c][::k]: ans+=x t+=1 cc=c;le=n*k while c!=le and l[c]==p: c+=1 cc=c-cc if cc+t>=n: print(ans+(n-t)*p) else: print(0)
Title: Liebig's Barrels Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have *m*<==<=*n*·*k* wooden staves. The *i*-th stave has length *a**i*. You have to assemble *n* barrels consisting of *k* staves each, you can use any *k* staves to construct a barrel. Each stave must belong to ex...
```python from bisect import bisect_left n,k,d=list(map(int,input().split())) l=sorted(list(map(int,input().split()))) t=0;ans=0;p=l[0]+d c=bisect_left(l,p) for x in l[:c][::k]: ans+=x t+=1 cc=c;le=n*k while c!=le and l[c]==p: c+=1 cc=c-cc if cc+t>=n: print(ans+(n-t)*p) else: print(0) ```
0
900
D
Unusual Sequences
PROGRAMMING
2,000
[ "bitmasks", "combinatorics", "dp", "math", "number theory" ]
null
null
Count the number of distinct sequences *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*) consisting of positive integers such that *gcd*(*a*1,<=*a*2,<=...,<=*a**n*)<==<=*x* and . As this number could be large, print the answer modulo 109<=+<=7. *gcd* here means the [greatest common divisor](https://en.wikipedia.org/wiki/Great...
The only line contains two positive integers *x* and *y* (1<=≤<=*x*,<=*y*<=≤<=109).
Print the number of such sequences modulo 109<=+<=7.
[ "3 9\n", "5 8\n" ]
[ "3\n", "0\n" ]
There are three suitable sequences in the first test: (3, 3, 3), (3, 6), (6, 3). There are no suitable sequences in the second test.
2,000
[ { "input": "3 9", "output": "3" }, { "input": "5 8", "output": "0" }, { "input": "2 12", "output": "27" }, { "input": "1 8", "output": "120" }, { "input": "1 9", "output": "252" }, { "input": "1000000000 1000000000", "output": "1" }, { "inp...
1,687,453,697
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
import sys input = sys.stdin.buffer.readline """ y total? 2**(y-1) """ prime = 10**9+7 def f(y): start = pow(2, y-1, prime) fact = [] for x in range(1, y+1): if x*x > y: break if y % x==0: if y==x*x: fact.append(x) ...
Title: Unusual Sequences Time Limit: None seconds Memory Limit: None megabytes Problem Description: Count the number of distinct sequences *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*) consisting of positive integers such that *gcd*(*a*1,<=*a*2,<=...,<=*a**n*)<==<=*x* and . As this number could be large, print the answe...
```python import sys input = sys.stdin.buffer.readline """ y total? 2**(y-1) """ prime = 10**9+7 def f(y): start = pow(2, y-1, prime) fact = [] for x in range(1, y+1): if x*x > y: break if y % x==0: if y==x*x: fact.append(x) ...
0
612
B
HDD is Outdated Technology
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
HDD hard drives group data by sectors. All files are split to fragments and each of them are written in some sector of hard drive. Note the fragments can be written in sectors in arbitrary order. One of the problems of HDD hard drives is the following: the magnetic head should move from one sector to another to read s...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=2·105) — the number of fragments. The second line contains *n* different integers *f**i* (1<=≤<=*f**i*<=≤<=*n*) — the number of the fragment written in the *i*-th sector.
Print the only integer — the number of time units needed to read the file.
[ "3\n3 1 2\n", "5\n1 3 5 4 2\n" ]
[ "3\n", "10\n" ]
In the second example the head moves in the following way: - 1-&gt;2 means movement from the sector 1 to the sector 5, i.e. it takes 4 time units - 2-&gt;3 means movement from the sector 5 to the sector 2, i.e. it takes 3 time units - 3-&gt;4 means movement from the sector 2 to the sector 4, i.e. it takes 2 time un...
0
[ { "input": "3\n3 1 2", "output": "3" }, { "input": "5\n1 3 5 4 2", "output": "10" }, { "input": "1\n1", "output": "0" }, { "input": "1\n1", "output": "0" }, { "input": "1\n1", "output": "0" }, { "input": "10\n8 2 10 3 4 6 1 7 9 5", "output": "40" ...
1,686,029,257
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
14
1,000
1,126,400
total=int(input()) a=[]*total sum,last=0,0 a=list(map(int,input().split())) for i in range(1,total+1): for j in range(total): if a[j]==i: min1=abs(j-last) last=j sum+=min1 if a[j]==1: first=j print(sum-first)
Title: HDD is Outdated Technology Time Limit: None seconds Memory Limit: None megabytes Problem Description: HDD hard drives group data by sectors. All files are split to fragments and each of them are written in some sector of hard drive. Note the fragments can be written in sectors in arbitrary order. One of the ...
```python total=int(input()) a=[]*total sum,last=0,0 a=list(map(int,input().split())) for i in range(1,total+1): for j in range(total): if a[j]==i: min1=abs(j-last) last=j sum+=min1 if a[j]==1: first=j print(sum-first) ```
0
621
A
Wet Shark and Odd and Even
PROGRAMMING
900
[ "implementation" ]
null
null
Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, that if Wet Shark uses no integers from the *n* integers, the sum is an even integer 0.
The first line of the input contains one integer, *n* (1<=≤<=*n*<=≤<=100<=000). The next line contains *n* space separated integers given to Wet Shark. Each of these integers is in range from 1 to 109, inclusive.
Print the maximum possible even sum that can be obtained if we use some of the given integers.
[ "3\n1 2 3\n", "5\n999999999 999999999 999999999 999999999 999999999\n" ]
[ "6", "3999999996" ]
In the first sample, we can simply take all three integers for a total sum of 6. In the second sample Wet Shark should take any four out of five integers 999 999 999.
500
[ { "input": "3\n1 2 3", "output": "6" }, { "input": "5\n999999999 999999999 999999999 999999999 999999999", "output": "3999999996" }, { "input": "1\n1", "output": "0" }, { "input": "15\n39 52 88 78 46 95 84 98 55 3 68 42 6 18 98", "output": "870" }, { "input": "15\...
1,600,557,195
2,147,483,647
Python 3
OK
TESTS
87
170
8,192,000
n = int(input()) odd = 10**10 out = 0 a = list(map(int, input().split())) for i in a: if i%2==0: out += i else: out += i if i < odd: odd = i if out%2==0: print(out) else: print(out - odd)
Title: Wet Shark and Odd and Even Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, th...
```python n = int(input()) odd = 10**10 out = 0 a = list(map(int, input().split())) for i in a: if i%2==0: out += i else: out += i if i < odd: odd = i if out%2==0: print(out) else: print(out - odd) ```
3
0
none
none
none
0
[ "none" ]
null
null
This is an interactive problem. In the output section below you will see the information about flushing the output. On Sunday Leha the hacker took Nura from the house where she lives and went with her to one of the most luxurious restaurants in Vičkopolis. Upon arrival, they left the car in a huge parking lot near the...
There are two numbers *n* and *k* (2<=≤<=*k*<=≤<=*n*<=≤<=105) in the single line of input denoting the number of dishes in the menu and the number of dishes Noora ordered.
If you want to provide an answer, output a string of the form 2 *x* *y* (1<=≤<=*x*,<=*y*<=≤<=*n*,<=*x*<=≠<=*y*), if you think the dishes *x* and *y* was among dishes ordered by Noora. After that, flush the output and terminate your program.
[ "3 2\nNIE\nTAK\nNIE\nTAK\nTAK\nTAK\n" ]
[ "1 1 2\n1 2 1\n1 1 3\n1 3 1\n1 2 3\n1 3 2\n2 2 3\n" ]
There are three dishes in sample. Noora ordered dished numberes 2 and 3, which Leha should guess. If Noora receive requests for the first dish (*x* = 1), then she'll choose the second dish (*a* = 2) as the dish with the minimum value <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/e5a4a1705...
0
[]
1,495,432,150
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
from sys import * def check(x) : if x==-1: return False print (1, x, x+1) stdout. flush () ans=input () return (ans =="TAK") def search (left, right) : if left>right: return - 1 tmp_left, tmp_right=left-1, right while tmp_right-tmp_left>1: mid=(tmp_left+tmp_r...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: This is an interactive problem. In the output section below you will see the information about flushing the output. On Sunday Leha the hacker took Nura from the house where she lives and went with her to one of the most luxurious...
```python from sys import * def check(x) : if x==-1: return False print (1, x, x+1) stdout. flush () ans=input () return (ans =="TAK") def search (left, right) : if left>right: return - 1 tmp_left, tmp_right=left-1, right while tmp_right-tmp_left>1: mid=(tmp_...
0
501
A
Contest
PROGRAMMING
900
[ "implementation" ]
null
null
Misha and Vasya participated in a Codeforces contest. Unfortunately, each of them solved only one problem, though successfully submitted it at the first attempt. Misha solved the problem that costs *a* points and Vasya solved the problem that costs *b* points. Besides, Misha submitted the problem *c* minutes after the ...
The first line contains four integers *a*, *b*, *c*, *d* (250<=≤<=*a*,<=*b*<=≤<=3500, 0<=≤<=*c*,<=*d*<=≤<=180). It is guaranteed that numbers *a* and *b* are divisible by 250 (just like on any real Codeforces round).
Output on a single line: "Misha" (without the quotes), if Misha got more points than Vasya. "Vasya" (without the quotes), if Vasya got more points than Misha. "Tie" (without the quotes), if both of them got the same number of points.
[ "500 1000 20 30\n", "1000 1000 1 1\n", "1500 1000 176 177\n" ]
[ "Vasya\n", "Tie\n", "Misha\n" ]
none
500
[ { "input": "500 1000 20 30", "output": "Vasya" }, { "input": "1000 1000 1 1", "output": "Tie" }, { "input": "1500 1000 176 177", "output": "Misha" }, { "input": "1500 1000 74 177", "output": "Misha" }, { "input": "750 2500 175 178", "output": "Vasya" }, { ...
1,671,612,926
2,147,483,647
PyPy 3-64
OK
TESTS
40
62
0
a,b,c,d = list(map(int,input().split())) #a,c maish = max(((3*a)/10),(a-(a/250)*c)) vas = max(((3*b)/10),(b-(b/250)*d)) if maish > vas: print("Misha") elif vas > maish: print("Vasya") else: print("Tie")
Title: Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Misha and Vasya participated in a Codeforces contest. Unfortunately, each of them solved only one problem, though successfully submitted it at the first attempt. Misha solved the problem that costs *a* points and Vasya solved t...
```python a,b,c,d = list(map(int,input().split())) #a,c maish = max(((3*a)/10),(a-(a/250)*c)) vas = max(((3*b)/10),(b-(b/250)*d)) if maish > vas: print("Misha") elif vas > maish: print("Vasya") else: print("Tie") ```
3
954
A
Diagonal Walking
PROGRAMMING
800
[ "implementation" ]
null
null
Mikhail walks on a 2D plane. He can go either up or right. You are given a sequence of Mikhail's moves. He thinks that this sequence is too long and he wants to make it as short as possible. In the given sequence moving up is described by character U and moving right is described by character R. Mikhail can replace an...
The first line of the input contains one integer *n* (1<=≤<=*n*<=≤<=100) — the length of the sequence. The second line contains the sequence consisting of *n* characters U and R.
Print the minimum possible length of the sequence of moves after all replacements are done.
[ "5\nRUURU\n", "17\nUUURRRRRUUURURUUU\n" ]
[ "3\n", "13\n" ]
In the first test the shortened sequence of moves may be DUD (its length is 3). In the second test the shortened sequence of moves can be UUDRRRDUDDUUU (its length is 13).
0
[ { "input": "5\nRUURU", "output": "3" }, { "input": "17\nUUURRRRRUUURURUUU", "output": "13" }, { "input": "100\nUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU", "output": "100" }, { "input": "100\nRRURRUUUURURRRURRRRURRRRRR...
1,637,727,836
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
x=input() n=len(x) count=0 i=0 while i<n-1: if s[i]!=s[i+1]: count=count+1 i=i+2 else: i=i+1 res=n-countprint(yes)
Title: Diagonal Walking Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mikhail walks on a 2D plane. He can go either up or right. You are given a sequence of Mikhail's moves. He thinks that this sequence is too long and he wants to make it as short as possible. In the given sequence movi...
```python x=input() n=len(x) count=0 i=0 while i<n-1: if s[i]!=s[i+1]: count=count+1 i=i+2 else: i=i+1 res=n-countprint(yes) ```
-1
534
B
Covered Path
PROGRAMMING
1,400
[ "dp", "greedy", "math" ]
null
null
The on-board computer on Polycarp's car measured that the car speed at the beginning of some section of the path equals *v*1 meters per second, and in the end it is *v*2 meters per second. We know that this section of the route took exactly *t* seconds to pass. Assuming that at each of the seconds the speed is constan...
The first line contains two integers *v*1 and *v*2 (1<=≤<=*v*1,<=*v*2<=≤<=100) — the speeds in meters per second at the beginning of the segment and at the end of the segment, respectively. The second line contains two integers *t* (2<=≤<=*t*<=≤<=100) — the time when the car moves along the segment in seconds, *d* (0<...
Print the maximum possible length of the path segment in meters.
[ "5 6\n4 2\n", "10 10\n10 0\n" ]
[ "26", "100" ]
In the first sample the sequence of speeds of Polycarpus' car can look as follows: 5, 7, 8, 6. Thus, the total path is 5 + 7 + 8 + 6 = 26 meters. In the second sample, as *d* = 0, the car covers the whole segment at constant speed *v* = 10. In *t* = 10 seconds it covers the distance of 100 meters.
1,000
[ { "input": "5 6\n4 2", "output": "26" }, { "input": "10 10\n10 0", "output": "100" }, { "input": "87 87\n2 10", "output": "174" }, { "input": "1 11\n6 2", "output": "36" }, { "input": "100 10\n10 10", "output": "550" }, { "input": "1 1\n100 10", "o...
1,657,894,264
2,147,483,647
PyPy 3-64
OK
TESTS
64
62
0
import sys input = sys.stdin.readline a, b = map(int, input().split()) t, d = map(int, input().split()) d1, d2 = [0] * t, [0] * t d1[0], d2[-1] = a, b for i in range(1, t): d1[i] = d1[i - 1] + d for i in range(t - 2, -1, -1): d2[i] = d2[i + 1] + d c = 0 s2 = sum(d2) s1 = 0 for i in rang...
Title: Covered Path Time Limit: None seconds Memory Limit: None megabytes Problem Description: The on-board computer on Polycarp's car measured that the car speed at the beginning of some section of the path equals *v*1 meters per second, and in the end it is *v*2 meters per second. We know that this section of the ...
```python import sys input = sys.stdin.readline a, b = map(int, input().split()) t, d = map(int, input().split()) d1, d2 = [0] * t, [0] * t d1[0], d2[-1] = a, b for i in range(1, t): d1[i] = d1[i - 1] + d for i in range(t - 2, -1, -1): d2[i] = d2[i + 1] + d c = 0 s2 = sum(d2) s1 = 0 for...
3
56
B
Spoilt Permutation
PROGRAMMING
1,300
[ "implementation" ]
B. Spoilt Permutation
2
256
Vasya collects coins: he has exactly one coin for every year from 1 to *n*. Naturally, Vasya keeps all the coins in his collection in the order in which they were released. Once Vasya's younger brother made a change — he took all the coins whose release year dated from *l* to *r* inclusively and put them in the reverse...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=1000) which is the number of coins in Vasya's collection. The second line contains space-separated *n* integers which are the spoilt sequence of coins. It is guaranteed that the given sequence is a permutation, i.e. it contains only integers from 1 to *n*, and every...
If it is impossible to obtain the given permutation from the original one in exactly one action, print 0 0. Otherwise, print two numbers *l* *r* (1<=≤<=*l*<=&lt;<=*r*<=≤<=*n*) which are the endpoints of the segment that needs to be reversed to obtain from permutation 1 2 ... *n* the given one.
[ "8\n1 6 5 4 3 2 7 8\n", "4\n2 3 4 1\n", "4\n1 2 3 4\n" ]
[ "2 6\n", "0 0\n", "0 0\n" ]
none
1,000
[ { "input": "8\n1 6 5 4 3 2 7 8", "output": "2 6" }, { "input": "4\n2 3 4 1", "output": "0 0" }, { "input": "4\n1 2 3 4", "output": "0 0" }, { "input": "8\n1 3 2 4 6 5 7 8", "output": "0 0" }, { "input": "8\n1 3 4 2 6 5 7 8", "output": "0 0" }, { "input...
1,600,436,814
2,147,483,647
Python 3
OK
TESTS
33
216
307,200
a=int(input());flag=0;l,r=0,0;i=0 b=[int(i) for i in input().split()] while i<a: if b[i]!=i+1: if sorted(b[i:b[i]])!=[*range(i+1,b[i]+1)]: exit(print("0 0")) else: if flag==0:flag=1;l=i+1;r=b[i];i=b[i] else:exit(print("0 0")) else:i+=1 print(l,r)
Title: Spoilt Permutation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya collects coins: he has exactly one coin for every year from 1 to *n*. Naturally, Vasya keeps all the coins in his collection in the order in which they were released. Once Vasya's younger brother made a change — he...
```python a=int(input());flag=0;l,r=0,0;i=0 b=[int(i) for i in input().split()] while i<a: if b[i]!=i+1: if sorted(b[i:b[i]])!=[*range(i+1,b[i]+1)]: exit(print("0 0")) else: if flag==0:flag=1;l=i+1;r=b[i];i=b[i] else:exit(print("0 0")) else:i+=1 prin...
3.945428
158
A
Next Round
PROGRAMMING
800
[ "*special", "implementation" ]
null
null
"Contestant who earns a score equal to or greater than the *k*-th place finisher's score will advance to the next round, as long as the contestant earns a positive score..." — an excerpt from contest rules. A total of *n* participants took part in the contest (*n*<=≥<=*k*), and you already know their scores. Calculate...
The first line of the input contains two integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=50) separated by a single space. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=100), where *a**i* is the score earned by the participant who got the *i*-th place. The given sequence...
Output the number of participants who advance to the next round.
[ "8 5\n10 9 8 7 7 7 5 5\n", "4 2\n0 0 0 0\n" ]
[ "6\n", "0\n" ]
In the first example the participant on the 5th place earned 7 points. As the participant on the 6th place also earned 7 points, there are 6 advancers. In the second example nobody got a positive score.
500
[ { "input": "8 5\n10 9 8 7 7 7 5 5", "output": "6" }, { "input": "4 2\n0 0 0 0", "output": "0" }, { "input": "5 1\n1 1 1 1 1", "output": "5" }, { "input": "5 5\n1 1 1 1 1", "output": "5" }, { "input": "1 1\n10", "output": "1" }, { "input": "17 14\n16 15...
1,697,347,163
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
92
0
""" ! TODO: number of participents who advanced -------------------------------------------- n: int number of participants k: int the k-th place on standings a: array the standings after contest from 1 to n """ n, k = map(int, input().split()) a = input().split() passed_score = a[k-1] while a[-1] < p...
Title: Next Round Time Limit: None seconds Memory Limit: None megabytes Problem Description: "Contestant who earns a score equal to or greater than the *k*-th place finisher's score will advance to the next round, as long as the contestant earns a positive score..." — an excerpt from contest rules. A total of *n* p...
```python """ ! TODO: number of participents who advanced -------------------------------------------- n: int number of participants k: int the k-th place on standings a: array the standings after contest from 1 to n """ n, k = map(int, input().split()) a = input().split() passed_score = a[k-1] while...
0