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
208
A
Dubstep
PROGRAMMING
900
[ "strings" ]
null
null
Vasya works as a DJ in the best Berland nightclub, and he often uses dubstep music in his performance. Recently, he has decided to take a couple of old songs and make dubstep remixes from them. Let's assume that a song consists of some number of words. To make the dubstep remix of this song, Vasya inserts a certain nu...
The input consists of a single non-empty string, consisting only of uppercase English letters, the string's length doesn't exceed 200 characters. It is guaranteed that before Vasya remixed the song, no word contained substring "WUB" in it; Vasya didn't change the word order. It is also guaranteed that initially the son...
Print the words of the initial song that Vasya used to make a dubsteb remix. Separate the words with a space.
[ "WUBWUBABCWUB\n", "WUBWEWUBAREWUBWUBTHEWUBCHAMPIONSWUBMYWUBFRIENDWUB\n" ]
[ "ABC ", "WE ARE THE CHAMPIONS MY FRIEND " ]
In the first sample: "WUBWUBABCWUB" = "WUB" + "WUB" + "ABC" + "WUB". That means that the song originally consisted of a single word "ABC", and all words "WUB" were added by Vasya. In the second sample Vasya added a single word "WUB" between all neighbouring words, in the beginning and in the end, except for words "ARE...
500
[ { "input": "WUBWUBABCWUB", "output": "ABC " }, { "input": "WUBWEWUBAREWUBWUBTHEWUBCHAMPIONSWUBMYWUBFRIENDWUB", "output": "WE ARE THE CHAMPIONS MY FRIEND " }, { "input": "WUBWUBWUBSR", "output": "SR " }, { "input": "RWUBWUBWUBLWUB", "output": "R L " }, { "input": "...
1,681,675,732
2,147,483,647
Python 3
OK
TESTS
71
154
0
s = input().replace('WUB', ' ') while s[0] == ' ': s = s[1:] while s[len(s)-1] == ' ': s = s[:-1] print(s)
Title: Dubstep Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya works as a DJ in the best Berland nightclub, and he often uses dubstep music in his performance. Recently, he has decided to take a couple of old songs and make dubstep remixes from them. Let's assume that a song consist...
```python s = input().replace('WUB', ' ') while s[0] == ' ': s = s[1:] while s[len(s)-1] == ' ': s = s[:-1] print(s) ```
3
828
B
Black Square
PROGRAMMING
1,300
[ "implementation" ]
null
null
Polycarp has a checkered sheet of paper of size *n*<=×<=*m*. Polycarp painted some of cells with black, the others remained white. Inspired by Malevich's "Black Square", Polycarp wants to paint minimum possible number of white cells with black so that all black cells form a square. You are to determine the minimum pos...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the sizes of the sheet. The next *n* lines contain *m* letters 'B' or 'W' each — the description of initial cells' colors. If a letter is 'B', then the corresponding cell is painted black, otherwise it is painted white.
Print the minimum number of cells needed to be painted black so that the black cells form a black square with sides parallel to the painting's sides. All the cells that do not belong to the square should be white. If it is impossible, print -1.
[ "5 4\nWWWW\nWWWB\nWWWB\nWWBB\nWWWW\n", "1 2\nBB\n", "3 3\nWWW\nWWW\nWWW\n" ]
[ "5\n", "-1\n", "1\n" ]
In the first example it is needed to paint 5 cells — (2, 2), (2, 3), (3, 2), (3, 3) and (4, 2). Then there will be a square with side equal to three, and the upper left corner in (2, 2). In the second example all the cells are painted black and form a rectangle, so it's impossible to get a square. In the third exampl...
750
[ { "input": "5 4\nWWWW\nWWWB\nWWWB\nWWBB\nWWWW", "output": "5" }, { "input": "1 2\nBB", "output": "-1" }, { "input": "3 3\nWWW\nWWW\nWWW", "output": "1" }, { "input": "100 1\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nB\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\nW\n...
1,653,471,121
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n=int(input()) m=int(input()) sheet=[] for i in range(n): s=input() sheet.append(s) final=[] for i in range(len(sheet)): if 'B' in sheet[i]: temp=[] for j in range(len(sheet[i])): if sheet[i][j]=='B': temp.append(j) x=len(temp) ...
Title: Black Square Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp has a checkered sheet of paper of size *n*<=×<=*m*. Polycarp painted some of cells with black, the others remained white. Inspired by Malevich's "Black Square", Polycarp wants to paint minimum possible number of w...
```python n=int(input()) m=int(input()) sheet=[] for i in range(n): s=input() sheet.append(s) final=[] for i in range(len(sheet)): if 'B' in sheet[i]: temp=[] for j in range(len(sheet[i])): if sheet[i][j]=='B': temp.append(j) x=len(t...
-1
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,687,584,491
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
2
1,000
0
k,r=map(int,input().split()) shovels=1 while (shovels*k)%10!=r: shovels+=1 print(shovels)
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 k,r=map(int,input().split()) shovels=1 while (shovels*k)%10!=r: shovels+=1 print(shovels) ```
0
758
A
Holiday Of Equality
PROGRAMMING
800
[ "implementation", "math" ]
null
null
In Berland it is the holiday of equality. In honor of the holiday the king decided to equalize the welfare of all citizens in Berland by the expense of the state treasury. Totally in Berland there are *n* citizens, the welfare of each of them is estimated as the integer in *a**i* burles (burle is the currency in Berl...
The first line contains the integer *n* (1<=≤<=*n*<=≤<=100) — the number of citizens in the kingdom. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n*, where *a**i* (0<=≤<=*a**i*<=≤<=106) — the welfare of the *i*-th citizen.
In the only line print the integer *S* — the minimum number of burles which are had to spend.
[ "5\n0 1 2 3 4\n", "5\n1 1 0 1 1\n", "3\n1 3 1\n", "1\n12\n" ]
[ "10", "1", "4", "0" ]
In the first example if we add to the first citizen 4 burles, to the second 3, to the third 2 and to the fourth 1, then the welfare of all citizens will equal 4. In the second example it is enough to give one burle to the third citizen. In the third example it is necessary to give two burles to the first and the thi...
500
[ { "input": "5\n0 1 2 3 4", "output": "10" }, { "input": "5\n1 1 0 1 1", "output": "1" }, { "input": "3\n1 3 1", "output": "4" }, { "input": "1\n12", "output": "0" }, { "input": "3\n1 2 3", "output": "3" }, { "input": "14\n52518 718438 358883 462189 853...
1,660,886,768
2,147,483,647
Python 3
OK
TESTS
41
46
0
b=int(input()) k=list(map(int,input().split())) n=max(k) o=0 for i in k: o+=n-i print(o)
Title: Holiday Of Equality Time Limit: None seconds Memory Limit: None megabytes Problem Description: In Berland it is the holiday of equality. In honor of the holiday the king decided to equalize the welfare of all citizens in Berland by the expense of the state treasury. Totally in Berland there are *n* citizens...
```python b=int(input()) k=list(map(int,input().split())) n=max(k) o=0 for i in k: o+=n-i print(o) ```
3
721
A
One-dimensional Japanese Crossword
PROGRAMMING
800
[ "implementation" ]
null
null
Recently Adaltik discovered japanese crosswords. Japanese crossword is a picture, represented as a table sized *a*<=×<=*b* squares, and each square is colored white or black. There are integers to the left of the rows and to the top of the columns, encrypting the corresponding row or column. The number of integers repr...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the length of the row. The second line of the input contains a single string consisting of *n* characters 'B' or 'W', ('B' corresponds to black square, 'W' — to white square in the row that Adaltik drew).
The first line should contain a single integer *k* — the number of integers encrypting the row, e.g. the number of groups of black squares in the row. The second line should contain *k* integers, encrypting the row, e.g. corresponding to sizes of groups of consecutive black squares in the order from left to right.
[ "3\nBBW\n", "5\nBWBWB\n", "4\nWWWW\n", "4\nBBBB\n", "13\nWBBBBWWBWBBBW\n" ]
[ "1\n2 ", "3\n1 1 1 ", "0\n", "1\n4 ", "3\n4 1 3 " ]
The last sample case correspond to the picture in the statement.
500
[ { "input": "3\nBBW", "output": "1\n2 " }, { "input": "5\nBWBWB", "output": "3\n1 1 1 " }, { "input": "4\nWWWW", "output": "0" }, { "input": "4\nBBBB", "output": "1\n4 " }, { "input": "13\nWBBBBWWBWBBBW", "output": "3\n4 1 3 " }, { "input": "1\nB", ...
1,619,416,356
2,147,483,647
Python 3
OK
TESTS
54
77
0
n = int(input()) bw = input() b = bw.replace("W", " ").split() print(len(b)) for i in b : print(len(i), end = " ")
Title: One-dimensional Japanese Crossword Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently Adaltik discovered japanese crosswords. Japanese crossword is a picture, represented as a table sized *a*<=×<=*b* squares, and each square is colored white or black. There are integers to the...
```python n = int(input()) bw = input() b = bw.replace("W", " ").split() print(len(b)) for i in b : print(len(i), end = " ") ```
3
514
A
Chewbaсca and Number
PROGRAMMING
1,200
[ "greedy", "implementation" ]
null
null
Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform the initial number *x* to the minimum possible positive number by inverting some (possibly, zero) digits....
The first line contains a single integer *x* (1<=≤<=*x*<=≤<=1018) — the number that Luke Skywalker gave to Chewbacca.
Print the minimum possible positive number that Chewbacca can obtain after inverting some digits. The number shouldn't contain leading zeroes.
[ "27\n", "4545\n" ]
[ "22\n", "4444\n" ]
none
500
[ { "input": "27", "output": "22" }, { "input": "4545", "output": "4444" }, { "input": "1", "output": "1" }, { "input": "9", "output": "9" }, { "input": "8772", "output": "1222" }, { "input": "81", "output": "11" }, { "input": "71723447", ...
1,689,599,129
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
a=list(input()) # print(a) for i in range(len(a)): if a[i]>'5': a[i]=str(9-int(a[i])) for i in a: print(i,end='')
Title: Chewbaсca and Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform...
```python a=list(input()) # print(a) for i in range(len(a)): if a[i]>'5': a[i]=str(9-int(a[i])) for i in a: print(i,end='') ```
0
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,698,926,387
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
124
0
k = input() n = input() c = 0 k = k.split(' ') k = [eval(i) for i in k] n = n.split(' ') n = [eval(i) for i in n] kp = n[k[1]-1] for i in n: if i >= kp: c=c+1 print(c)
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 k = input() n = input() c = 0 k = k.split(' ') k = [eval(i) for i in k] n = n.split(' ') n = [eval(i) for i in n] kp = n[k[1]-1] for i in n: if i >= kp: c=c+1 print(c) ```
0
1,004
C
Sonya and Robots
PROGRAMMING
1,400
[ "constructive algorithms", "implementation" ]
null
null
Since Sonya is interested in robotics too, she decided to construct robots that will read and recognize numbers. Sonya has drawn $n$ numbers in a row, $a_i$ is located in the $i$-th position. She also has put a robot at each end of the row (to the left of the first number and to the right of the last number). Sonya wi...
The first line contains a single integer $n$ ($1\leq n\leq 10^5$) — the number of numbers in a row. The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1\leq a_i\leq 10^5$) — the numbers in a row.
Print one number — the number of possible pairs that Sonya can give to robots so that they will not meet.
[ "5\n1 5 4 1 3\n", "7\n1 2 1 1 1 3 2\n" ]
[ "9\n", "7\n" ]
In the first example, Sonya can give pairs ($1$, $1$), ($1$, $3$), ($1$, $4$), ($1$, $5$), ($4$, $1$), ($4$, $3$), ($5$, $1$), ($5$, $3$), and ($5$, $4$). In the second example, Sonya can give pairs ($1$, $1$), ($1$, $2$), ($1$, $3$), ($2$, $1$), ($2$, $2$), ($2$, $3$), and ($3$, $2$).
1,500
[ { "input": "5\n1 5 4 1 3", "output": "9" }, { "input": "7\n1 2 1 1 1 3 2", "output": "7" }, { "input": "10\n2 2 4 4 3 1 1 2 3 2", "output": "14" }, { "input": "15\n1 2 2 1 2 4 2 1 1 6 6 4 2 5 4", "output": "20" }, { "input": "1\n1", "output": "0" } ]
1,530,813,563
5,063
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
5
1,000
6,758,400
n = int(input()) a = list(map(int, input().split())) beg = set() end = set() ans = 0 '''for i in range(n - 1, -1, -1): if a[i] not in end and a[i] not in beg: ans += n - (i + 1) end.add(a[i]) beg.add(a[i]) print(beg, a[i], end, ans) ''' for i in range(n): if a[i] not in be...
Title: Sonya and Robots Time Limit: None seconds Memory Limit: None megabytes Problem Description: Since Sonya is interested in robotics too, she decided to construct robots that will read and recognize numbers. Sonya has drawn $n$ numbers in a row, $a_i$ is located in the $i$-th position. She also has put a robot ...
```python n = int(input()) a = list(map(int, input().split())) beg = set() end = set() ans = 0 '''for i in range(n - 1, -1, -1): if a[i] not in end and a[i] not in beg: ans += n - (i + 1) end.add(a[i]) beg.add(a[i]) print(beg, a[i], end, ans) ''' for i in range(n): if a[i]...
0
116
A
Tram
PROGRAMMING
800
[ "implementation" ]
null
null
Linear Kingdom has exactly one tram line. It has *n* stops, numbered from 1 to *n* in the order of tram's movement. At the *i*-th stop *a**i* passengers exit the tram, while *b**i* passengers enter it. The tram is empty before it arrives at the first stop. Also, when the tram arrives at the last stop, all passengers ex...
The first line contains a single number *n* (2<=≤<=*n*<=≤<=1000) — the number of the tram's stops. Then *n* lines follow, each contains two integers *a**i* and *b**i* (0<=≤<=*a**i*,<=*b**i*<=≤<=1000) — the number of passengers that exits the tram at the *i*-th stop, and the number of passengers that enter the tram at...
Print a single integer denoting the minimum possible capacity of the tram (0 is allowed).
[ "4\n0 3\n2 5\n4 2\n4 0\n" ]
[ "6\n" ]
For the first example, a capacity of 6 is sufficient: - At the first stop, the number of passengers inside the tram before arriving is 0. Then, 3 passengers enter the tram, and the number of passengers inside the tram becomes 3. - At the second stop, 2 passengers exit the tram (1 passenger remains inside). Then, 5 ...
500
[ { "input": "4\n0 3\n2 5\n4 2\n4 0", "output": "6" }, { "input": "5\n0 4\n4 6\n6 5\n5 4\n4 0", "output": "6" }, { "input": "10\n0 5\n1 7\n10 8\n5 3\n0 5\n3 3\n8 8\n0 6\n10 1\n9 0", "output": "18" }, { "input": "3\n0 1\n1 1\n1 0", "output": "1" }, { "input": "4\n0 1...
1,692,574,514
2,147,483,647
Python 3
OK
TESTS
71
92
0
stations = int(input()) totalInside = 0 longTimeMax = 0 temp = 0 for i in range(stations): passenger = input() passengersSplit = passenger.split() passengersInt = [int(x) for x in passengersSplit] passengersOut = passengersInt[0] totalInside = totalInside - passengersOut ...
Title: Tram Time Limit: None seconds Memory Limit: None megabytes Problem Description: Linear Kingdom has exactly one tram line. It has *n* stops, numbered from 1 to *n* in the order of tram's movement. At the *i*-th stop *a**i* passengers exit the tram, while *b**i* passengers enter it. The tram is empty before it ...
```python stations = int(input()) totalInside = 0 longTimeMax = 0 temp = 0 for i in range(stations): passenger = input() passengersSplit = passenger.split() passengersInt = [int(x) for x in passengersSplit] passengersOut = passengersInt[0] totalInside = totalInside - passengersOut ...
3
724
A
Checking the Calendar
PROGRAMMING
1,000
[ "implementation" ]
null
null
You are given names of two days of the week. Please, determine whether it is possible that during some non-leap year the first day of some month was equal to the first day of the week you are given, while the first day of the next month was equal to the second day of the week you are given. Both months should belong t...
The input consists of two lines, each of them containing the name of exactly one day of the week. It's guaranteed that each string in the input is from the set "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday".
Print "YES" (without quotes) if such situation is possible during some non-leap year. Otherwise, print "NO" (without quotes).
[ "monday\ntuesday\n", "sunday\nsunday\n", "saturday\ntuesday\n" ]
[ "NO\n", "YES\n", "YES\n" ]
In the second sample, one can consider February 1 and March 1 of year 2015. Both these days were Sundays. In the third sample, one can consider July 1 and August 1 of year 2017. First of these two days is Saturday, while the second one is Tuesday.
500
[ { "input": "monday\ntuesday", "output": "NO" }, { "input": "sunday\nsunday", "output": "YES" }, { "input": "saturday\ntuesday", "output": "YES" }, { "input": "tuesday\nthursday", "output": "YES" }, { "input": "friday\nwednesday", "output": "NO" }, { "i...
1,475,930,375
1,475
Python 3
OK
TESTS
68
62
4,608,000
l=["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"] x=input() y=input() f=[] for n in [28,30,31]: d=n%7 f.append(d) c=l.index(x) v=l.index(y) for i in range(3): f[i]+=c f[i]=f[i]%7 if v in f : print("YES") else: print("NO")
Title: Checking the Calendar Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given names of two days of the week. Please, determine whether it is possible that during some non-leap year the first day of some month was equal to the first day of the week you are given, while the fir...
```python l=["monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday"] x=input() y=input() f=[] for n in [28,30,31]: d=n%7 f.append(d) c=l.index(x) v=l.index(y) for i in range(3): f[i]+=c f[i]=f[i]%7 if v in f : print("YES") else: print("NO") ```
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,618,755,553
2,147,483,647
Python 3
OK
TESTS
35
124
0
M , N = input().split() t = int(M) * int(N) c = 0 while True: if t >= 2: t -= 2 c += 1 else: break print(c)
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 = input().split() t = int(M) * int(N) c = 0 while True: if t >= 2: t -= 2 c += 1 else: break print(c) ```
3.969
519
A
A and B and Chess
PROGRAMMING
900
[ "implementation" ]
null
null
A and B are preparing themselves for programming contests. To train their logical thinking and solve problems better, A and B decided to play chess. During the game A wondered whose position is now stronger. For each chess piece we know its weight: - the queen's weight is 9, - the rook's weight is 5, - the bisho...
The input contains eight lines, eight characters each — the board's description. The white pieces on the board are marked with uppercase letters, the black pieces are marked with lowercase letters. The white pieces are denoted as follows: the queen is represented is 'Q', the rook — as 'R', the bishop — as'B', the kni...
Print "White" (without quotes) if the weight of the position of the white pieces is more than the weight of the position of the black pieces, print "Black" if the weight of the black pieces is more than the weight of the white pieces and print "Draw" if the weights of the white and black pieces are equal.
[ "...QK...\n........\n........\n........\n........\n........\n........\n...rk...\n", "rnbqkbnr\npppppppp\n........\n........\n........\n........\nPPPPPPPP\nRNBQKBNR\n", "rppppppr\n...k....\n........\n........\n........\n........\nK...Q...\n........\n" ]
[ "White\n", "Draw\n", "Black\n" ]
In the first test sample the weight of the position of the white pieces equals to 9, the weight of the position of the black pieces equals 5. In the second test sample the weights of the positions of the black and the white pieces are equal to 39. In the third test sample the weight of the position of the white piece...
500
[ { "input": "rnbqkbnr\npppppppp\n........\n........\n........\n........\nPPPPPPPP\nRNBQKBNR", "output": "Draw" }, { "input": "....bQ.K\n.B......\n.....P..\n........\n........\n........\n...N.P..\n.....R..", "output": "White" }, { "input": "b....p..\nR.......\n.pP...b.\npp......\nq.PPNpPR\...
1,660,915,301
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
inp = '' A = 0 B = 0 for _ in range(8): inp += input().replace('.', '') for x in inp: cost = { 'Q':9, 'R':5, 'B':3, 'N':3, 'P':1, 'K':0 }[x.upper()] if x.islower(): A += cost else: B += cost print({ A > B: 'White'...
Title: A and B and Chess Time Limit: None seconds Memory Limit: None megabytes Problem Description: A and B are preparing themselves for programming contests. To train their logical thinking and solve problems better, A and B decided to play chess. During the game A wondered whose position is now stronger. For eac...
```python inp = '' A = 0 B = 0 for _ in range(8): inp += input().replace('.', '') for x in inp: cost = { 'Q':9, 'R':5, 'B':3, 'N':3, 'P':1, 'K':0 }[x.upper()] if x.islower(): A += cost else: B += cost print({ A > ...
0
371
C
Hamburgers
PROGRAMMING
1,600
[ "binary search", "brute force" ]
null
null
Polycarpus loves hamburgers very much. He especially adores the hamburgers he makes with his own hands. Polycarpus thinks that there are only three decent ingredients to make hamburgers from: a bread, sausage and cheese. He writes down the recipe of his favorite "Le Hamburger de Polycarpus" as a string of letters 'B' (...
The first line of the input contains a non-empty string that describes the recipe of "Le Hamburger de Polycarpus". The length of the string doesn't exceed 100, the string contains only letters 'B' (uppercase English B), 'S' (uppercase English S) and 'C' (uppercase English C). The second line contains three integers *n...
Print the maximum number of hamburgers Polycarpus can make. If he can't make any hamburger, print 0.
[ "BBBSSC\n6 4 1\n1 2 3\n4\n", "BBC\n1 10 1\n1 10 1\n21\n", "BSC\n1 1 1\n1 1 3\n1000000000000\n" ]
[ "2\n", "7\n", "200000000001\n" ]
none
1,500
[ { "input": "BBBSSC\n6 4 1\n1 2 3\n4", "output": "2" }, { "input": "BBC\n1 10 1\n1 10 1\n21", "output": "7" }, { "input": "BSC\n1 1 1\n1 1 3\n1000000000000", "output": "200000000001" }, { "input": "B\n1 1 1\n1 1 1\n381", "output": "382" }, { "input": "BSC\n3 5 6\n7...
1,601,176,483
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
93
204,800
hamberger = input().strip() recipe = Counter(hamberger) nb,ns,nc = map(int,input().strip().split()) Pb,Ps,Pc = map(int,input().strip().split()) r = int(input().strip()) cnt = res = 0 dMake = min(nb//recipe.get("B") if recipe.get("B") else float("inf"),ns//recipe.get("S") if recipe.get("S") else float("inf"),nc//recipe....
Title: Hamburgers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus loves hamburgers very much. He especially adores the hamburgers he makes with his own hands. Polycarpus thinks that there are only three decent ingredients to make hamburgers from: a bread, sausage and cheese. He ...
```python hamberger = input().strip() recipe = Counter(hamberger) nb,ns,nc = map(int,input().strip().split()) Pb,Ps,Pc = map(int,input().strip().split()) r = int(input().strip()) cnt = res = 0 dMake = min(nb//recipe.get("B") if recipe.get("B") else float("inf"),ns//recipe.get("S") if recipe.get("S") else float("inf"),n...
-1
270
A
Fancy Fence
PROGRAMMING
1,100
[ "geometry", "implementation", "math" ]
null
null
Emuskald needs a fence around his farm, but he is too lazy to build it himself. So he purchased a fence-building robot. He wants the fence to be a regular polygon. The robot builds the fence along a single path, but it can only make fence corners at a single angle *a*. Will the robot be able to build the fence Emuska...
The first line of input contains an integer *t* (0<=&lt;<=*t*<=&lt;<=180) — the number of tests. Each of the following *t* lines contains a single integer *a* (0<=&lt;<=*a*<=&lt;<=180) — the angle the robot can make corners at measured in degrees.
For each test, output on a single line "YES" (without quotes), if the robot can build a fence Emuskald wants, and "NO" (without quotes), if it is impossible.
[ "3\n30\n60\n90\n" ]
[ "NO\nYES\nYES\n" ]
In the first test case, it is impossible to build the fence, since there is no regular polygon with angle <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/df5f4b07dd5316fde165b43657b2696e2919e791.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second test case, the fence is a r...
500
[ { "input": "3\n30\n60\n90", "output": "NO\nYES\nYES" }, { "input": "6\n1\n2\n3\n170\n179\n25", "output": "NO\nNO\nNO\nYES\nYES\nNO" } ]
1,664,495,581
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <iostream> #include <bits/stdc++.h> using namespace std; #define roshdy ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); void solve() { float value; cin >> value; value = (360/value)/(180/value -1); if (int(value) == value) cout << "YES"; else cout << "NO"; ...
Title: Fancy Fence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Emuskald needs a fence around his farm, but he is too lazy to build it himself. So he purchased a fence-building robot. He wants the fence to be a regular polygon. The robot builds the fence along a single path, but it can...
```python #include <iostream> #include <bits/stdc++.h> using namespace std; #define roshdy ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); void solve() { float value; cin >> value; value = (360/value)/(180/value -1); if (int(value) == value) cout << "YES"; else cout ...
-1
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,694,791,815
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
92
0
# insomniaCure.py # codeforces problem def main(): punched = int(input()) tail_shut = int(input()) trampled = int(input()) mom = int(input()) num_of_dragons = int(input()) damaged_dragons = 0 for i in range(num_of_dragons): if i % punched == 0 or i % tail_shut == 0 or i % trampled...
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 # insomniaCure.py # codeforces problem def main(): punched = int(input()) tail_shut = int(input()) trampled = int(input()) mom = int(input()) num_of_dragons = int(input()) damaged_dragons = 0 for i in range(num_of_dragons): if i % punched == 0 or i % tail_shut == 0 or i ...
0
245
A
System Administrator
PROGRAMMING
800
[ "implementation" ]
null
null
Polycarpus is a system administrator. There are two servers under his strict guidance — *a* and *b*. To stay informed about the servers' performance, Polycarpus executes commands "ping a" and "ping b". Each ping command sends exactly ten packets to the server specified in the argument of the command. Executing a progra...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=1000) — the number of commands Polycarpus has fulfilled. Each of the following *n* lines contains three integers — the description of the commands. The *i*-th of these lines contains three space-separated integers *t**i*, *x**i*, *y**i* (1<=≤<=*t**i*<=≤<=2; *x...
In the first line print string "LIVE" (without the quotes) if server *a* is "alive", otherwise print "DEAD" (without the quotes). In the second line print the state of server *b* in the similar format.
[ "2\n1 5 5\n2 6 4\n", "3\n1 0 10\n2 0 10\n1 10 0\n" ]
[ "LIVE\nLIVE\n", "LIVE\nDEAD\n" ]
Consider the first test case. There 10 packets were sent to server *a*, 5 of them reached it. Therefore, at least half of all packets sent to this server successfully reached it through the network. Overall there were 10 packets sent to server *b*, 6 of them reached it. Therefore, at least half of all packets sent to t...
0
[ { "input": "2\n1 5 5\n2 6 4", "output": "LIVE\nLIVE" }, { "input": "3\n1 0 10\n2 0 10\n1 10 0", "output": "LIVE\nDEAD" }, { "input": "10\n1 3 7\n2 4 6\n1 2 8\n2 5 5\n2 10 0\n2 10 0\n1 8 2\n2 2 8\n2 10 0\n1 1 9", "output": "DEAD\nLIVE" }, { "input": "11\n1 8 2\n1 6 4\n1 9 1\n1...
1,620,425,736
2,147,483,647
PyPy 3
OK
TESTS
13
186
20,172,800
import sys def main(): t = [0, 0] for s in sys.stdin.read().strip().split('\n')[1:]: n, x, y = map(int, s.split()) t[n-1] += x - y return [('LIVE', 'DEAD')[i < 0] for i in t] print(*main(), sep='\n')
Title: System Administrator Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus is a system administrator. There are two servers under his strict guidance — *a* and *b*. To stay informed about the servers' performance, Polycarpus executes commands "ping a" and "ping b". Each ping co...
```python import sys def main(): t = [0, 0] for s in sys.stdin.read().strip().split('\n')[1:]: n, x, y = map(int, s.split()) t[n-1] += x - y return [('LIVE', 'DEAD')[i < 0] for i in t] print(*main(), sep='\n') ```
3
739
A
Alyona and mex
PROGRAMMING
1,700
[ "constructive algorithms", "greedy" ]
null
null
Alyona's mother wants to present an array of *n* non-negative integers to Alyona. The array should be special. Alyona is a capricious girl so after she gets the array, she inspects *m* of its subarrays. Subarray is a set of some subsequent elements of the array. The *i*-th subarray is described with two integers *l**...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=105). The next *m* lines contain information about the subarrays chosen by Alyona. The *i*-th of these lines contains two integers *l**i* and *r**i* (1<=≤<=*l**i*<=≤<=*r**i*<=≤<=*n*), that describe the subarray *a*[*l**i*],<=*a*[*l**i*<=+<=1],<=...,...
In the first line print single integer — the maximum possible minimum mex. In the second line print *n* integers — the array *a*. All the elements in *a* should be between 0 and 109. It is guaranteed that there is an optimal answer in which all the elements in *a* are between 0 and 109. If there are multiple solutio...
[ "5 3\n1 3\n2 5\n4 5\n", "4 2\n1 4\n2 4\n" ]
[ "2\n1 0 2 1 0\n", "3\n5 2 0 1" ]
The first example: the mex of the subarray (1, 3) is equal to 3, the mex of the subarray (2, 5) is equal to 3, the mex of the subarray (4, 5) is equal to 2 as well, thus the minumal mex among the subarrays chosen by Alyona is equal to 2.
500
[ { "input": "5 3\n1 3\n2 5\n4 5", "output": "2\n0 1 0 1 0" }, { "input": "4 2\n1 4\n2 4", "output": "3\n0 1 2 0" }, { "input": "1 1\n1 1", "output": "1\n0" }, { "input": "2 1\n2 2", "output": "1\n0 0" }, { "input": "5 6\n2 4\n2 3\n1 4\n3 4\n2 5\n1 3", "output":...
1,625,590,803
2,147,483,647
PyPy 3
OK
TESTS
69
451
14,438,400
import sys import math import collections import heapq import decimal input=sys.stdin.readline n,m=(int(i) for i in input().split()) d={} k=n+1 for i in range(m): a,b=(int(i) for i in input().split()) k=min(k,b-a+1) l=[] for i in range(n): l.append(i%k) print(k) print(*l)
Title: Alyona and mex Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alyona's mother wants to present an array of *n* non-negative integers to Alyona. The array should be special. Alyona is a capricious girl so after she gets the array, she inspects *m* of its subarrays. Subarray is a s...
```python import sys import math import collections import heapq import decimal input=sys.stdin.readline n,m=(int(i) for i in input().split()) d={} k=n+1 for i in range(m): a,b=(int(i) for i in input().split()) k=min(k,b-a+1) l=[] for i in range(n): l.append(i%k) print(k) print(*l) ```
3
584
A
Olesya and Rodion
PROGRAMMING
1,000
[ "math" ]
null
null
Olesya loves numbers consisting of *n* digits, and Rodion only likes numbers that are divisible by *t*. Find some number that satisfies both of them. Your task is: given the *n* and *t* print an integer strictly larger than zero consisting of *n* digits that is divisible by *t*. If such number doesn't exist, print <=-...
The single line contains two numbers, *n* and *t* (1<=≤<=*n*<=≤<=100, 2<=≤<=*t*<=≤<=10) — the length of the number and the number it should be divisible by.
Print one such positive number without leading zeroes, — the answer to the problem, or <=-<=1, if such number doesn't exist. If there are multiple possible answers, you are allowed to print any of them.
[ "3 2\n" ]
[ "712" ]
none
500
[ { "input": "3 2", "output": "222" }, { "input": "2 2", "output": "22" }, { "input": "4 3", "output": "3333" }, { "input": "5 3", "output": "33333" }, { "input": "10 7", "output": "7777777777" }, { "input": "2 9", "output": "99" }, { "input"...
1,696,749,256
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
140
2,764,800
digts = int(input()) divider = int(input()) num = int ("1" + "0" * (digts - 1)) for i in range(num, num * 10 -1): if i % divider == 0 and i % digts == 0: print(i) break
Title: Olesya and Rodion Time Limit: None seconds Memory Limit: None megabytes Problem Description: Olesya loves numbers consisting of *n* digits, and Rodion only likes numbers that are divisible by *t*. Find some number that satisfies both of them. Your task is: given the *n* and *t* print an integer strictly larg...
```python digts = int(input()) divider = int(input()) num = int ("1" + "0" * (digts - 1)) for i in range(num, num * 10 -1): if i % divider == 0 and i % digts == 0: print(i) break ```
-1
755
B
PolandBall and Game
PROGRAMMING
1,100
[ "binary search", "data structures", "games", "greedy", "sortings", "strings" ]
null
null
PolandBall is playing a game with EnemyBall. The rules are simple. Players have to say words in turns. You cannot say a word which was already said. PolandBall starts. The Ball which can't say a new word loses. You're given two lists of words familiar to PolandBall and EnemyBall. Can you determine who wins the game, i...
The first input line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=103) — number of words PolandBall and EnemyBall know, respectively. Then *n* strings follow, one per line — words familiar to PolandBall. Then *m* strings follow, one per line — words familiar to EnemyBall. Note that one Ball cannot know a w...
In a single line of print the answer — "YES" if PolandBall wins and "NO" otherwise. Both Balls play optimally.
[ "5 1\npolandball\nis\na\ncool\ncharacter\nnope\n", "2 2\nkremowka\nwadowicka\nkremowka\nwiedenska\n", "1 2\na\na\nb\n" ]
[ "YES", "YES", "NO" ]
In the first example PolandBall knows much more words and wins effortlessly. In the second example if PolandBall says kremowka first, then EnemyBall cannot use that word anymore. EnemyBall can only say wiedenska. PolandBall says wadowicka and wins.
1,000
[ { "input": "5 1\npolandball\nis\na\ncool\ncharacter\nnope", "output": "YES" }, { "input": "2 2\nkremowka\nwadowicka\nkremowka\nwiedenska", "output": "YES" }, { "input": "1 2\na\na\nb", "output": "NO" }, { "input": "2 2\na\nb\nb\nc", "output": "YES" }, { "input": "...
1,625,715,404
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
62
0
numbers = input() numbersList = numbers.split() n = int(numbersList[0]) m = int(numbersList[1]) pollandBall = set() enemyBall = set() totalOfWords = n + m for i in range(totalOfWords): if i < n: pollandBall.add(input()) elif i >= n and i < totalOfWords: enemyBall.add(input()) if (len(pollandBall.differe...
Title: PolandBall and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: PolandBall is playing a game with EnemyBall. The rules are simple. Players have to say words in turns. You cannot say a word which was already said. PolandBall starts. The Ball which can't say a new word loses. You...
```python numbers = input() numbersList = numbers.split() n = int(numbersList[0]) m = int(numbersList[1]) pollandBall = set() enemyBall = set() totalOfWords = n + m for i in range(totalOfWords): if i < n: pollandBall.add(input()) elif i >= n and i < totalOfWords: enemyBall.add(input()) if (len(pollandBa...
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,689,079,521
2,147,483,647
PyPy 3-64
OK
TESTS
81
124
0
x = int(input()) a, b, c = 0, 0, 0 for _ in range(x): d, e, f = map(int, input().split()) a += d b += e c += f print('YES' if a == 0 and b == 0 and c == 0 else '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 = int(input()) a, b, c = 0, 0, 0 for _ in range(x): d, e, f = map(int, input().split()) a += d b += e c += f print('YES' if a == 0 and b == 0 and c == 0 else 'NO') ```
3.969
492
B
Vanya and Lanterns
PROGRAMMING
1,200
[ "binary search", "implementation", "math", "sortings" ]
null
null
Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the point *l*. Then the *i*-th lantern is at the point *a**i*. The lantern lights all points of the street that...
The first line contains two integers *n*, *l* (1<=≤<=*n*<=≤<=1000, 1<=≤<=*l*<=≤<=109) — the number of lanterns and the length of the street respectively. The next line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=*l*). Multiple lanterns can be located at the same point. The lanterns may be located at the ends of th...
Print the minimum light radius *d*, needed to light the whole street. The answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=9.
[ "7 15\n15 5 3 7 9 14 0\n", "2 5\n2 5\n" ]
[ "2.5000000000\n", "2.0000000000\n" ]
Consider the second sample. At *d* = 2 the first lantern will light the segment [0, 4] of the street, and the second lantern will light segment [3, 5]. Thus, the whole street will be lit.
1,000
[ { "input": "7 15\n15 5 3 7 9 14 0", "output": "2.5000000000" }, { "input": "2 5\n2 5", "output": "2.0000000000" }, { "input": "46 615683844\n431749087 271781274 274974690 324606253 480870261 401650581 13285442 478090364 266585394 425024433 588791449 492057200 391293435 563090494 317950 1...
1,685,188,583
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
10
31
0
n,l=map(int,input().split()) a=list(map(int,input().split())) a=list(set(a)) a.sort() distances=[] if n==1: print(a[0]-0) else: distances.append(a[0]-0) distances.append(l-a[n-1]) for i in range(1,n): distances.append((a[i]-a[i-1])/2) print(max(distances))
Title: Vanya and Lanterns Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the poi...
```python n,l=map(int,input().split()) a=list(map(int,input().split())) a=list(set(a)) a.sort() distances=[] if n==1: print(a[0]-0) else: distances.append(a[0]-0) distances.append(l-a[n-1]) for i in range(1,n): distances.append((a[i]-a[i-1])/2) print(max(distances)) ```
0
366
C
Dima and Salad
PROGRAMMING
1,900
[ "dp" ]
null
null
Dima, Inna and Seryozha have gathered in a room. That's right, someone's got to go. To cheer Seryozha up and inspire him to have a walk, Inna decided to cook something. Dima and Seryozha have *n* fruits in the fridge. Each fruit has two parameters: the taste and the number of calories. Inna decided to make a fruit sa...
The first line of the input contains two integers *n*, *k* (1<=≤<=*n*<=≤<=100,<=1<=≤<=*k*<=≤<=10). The second line of the input contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100) — the fruits' tastes. The third line of the input contains *n* integers *b*1,<=*b*2,<=...,<=*b**n* (1<=≤<=*b**i*<=≤<=100...
If there is no way Inna can choose the fruits for the salad, print in the single line number -1. Otherwise, print a single integer — the maximum possible sum of the taste values of the chosen fruits.
[ "3 2\n10 8 1\n2 7 1\n", "5 3\n4 4 4 4 4\n2 2 2 2 2\n" ]
[ "18\n", "-1\n" ]
In the first test sample we can get the total taste of the fruits equal to 18 if we choose fruit number 1 and fruit number 2, then the total calories will equal 9. The condition <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/f7429bb0084a26268b364ce919a5231a4d9e38a9.png" style="max-width: 1...
1,500
[ { "input": "3 2\n10 8 1\n2 7 1", "output": "18" }, { "input": "5 3\n4 4 4 4 4\n2 2 2 2 2", "output": "-1" }, { "input": "1 1\n1\n1", "output": "1" }, { "input": "1 1\n1\n2", "output": "-1" }, { "input": "2 1\n75 65\n16 60", "output": "-1" }, { "input":...
1,607,528,323
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
5
982
1,024,000
n,k=map(int,input().split()) a=[int(temp) for temp in input().split()]#味道 b=[int(temp) for temp in input().split()]#卡路里,味道/卡路里=k c=[a[i] - k*b[i] for i in range(n)] lis=[-1]*20000 lis[10000]=0 for i in range(n): temp=lis.copy() for j in range(c[i],20000+c[i]): if temp[j-c[i]]!=-1: lis[j]=max(temp[j],temp[j-c[...
Title: Dima and Salad Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dima, Inna and Seryozha have gathered in a room. That's right, someone's got to go. To cheer Seryozha up and inspire him to have a walk, Inna decided to cook something. Dima and Seryozha have *n* fruits in the fridge. ...
```python n,k=map(int,input().split()) a=[int(temp) for temp in input().split()]#味道 b=[int(temp) for temp in input().split()]#卡路里,味道/卡路里=k c=[a[i] - k*b[i] for i in range(n)] lis=[-1]*20000 lis[10000]=0 for i in range(n): temp=lis.copy() for j in range(c[i],20000+c[i]): if temp[j-c[i]]!=-1: lis[j]=max(temp[j]...
-1
271
A
Beautiful Year
PROGRAMMING
800
[ "brute force" ]
null
null
It seems like the year of 2013 came only yesterday. Do you know a curious fact? The year of 2013 is the first year after the old 1987 with only distinct digits. Now you are suggested to solve the following problem: given a year number, find the minimum year number which is strictly larger than the given one and has on...
The single line contains integer *y* (1000<=≤<=*y*<=≤<=9000) — the year number.
Print a single integer — the minimum year number that is strictly larger than *y* and all it's digits are distinct. It is guaranteed that the answer exists.
[ "1987\n", "2013\n" ]
[ "2013\n", "2014\n" ]
none
500
[ { "input": "1987", "output": "2013" }, { "input": "2013", "output": "2014" }, { "input": "1000", "output": "1023" }, { "input": "1001", "output": "1023" }, { "input": "1234", "output": "1235" }, { "input": "5555", "output": "5601" }, { "inp...
1,695,747,864
2,147,483,647
Python 3
OK
TESTS
27
92
5,632,000
def code(*args): year = args[0] while True: year += 1 a,b,c,d = year//1000, year//100 % 10, year//10 % 10, year%10 if (a != b and a != c and a != d and b != c and b != d and c != d): break return year if __name__ == "__main__": # Take inputs he...
Title: Beautiful Year Time Limit: None seconds Memory Limit: None megabytes Problem Description: It seems like the year of 2013 came only yesterday. Do you know a curious fact? The year of 2013 is the first year after the old 1987 with only distinct digits. Now you are suggested to solve the following problem: give...
```python def code(*args): year = args[0] while True: year += 1 a,b,c,d = year//1000, year//100 % 10, year//10 % 10, year%10 if (a != b and a != c and a != d and b != c and b != d and c != d): break return year if __name__ == "__main__": # Take...
3
22
A
Second Order Statistics
PROGRAMMING
800
[ "brute force" ]
A. Second Order Statistics
2
256
Once Bob needed to find the second order statistics of a sequence of integer numbers. Lets choose each number from the sequence exactly once and sort them. The value on the second position is the second order statistics of the given sequence. In other words it is the smallest element strictly greater than the minimum. ...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=100) — amount of numbers in the sequence. The second line contains *n* space-separated integer numbers — elements of the sequence. These numbers don't exceed 100 in absolute value.
If the given sequence has the second order statistics, output this order statistics, otherwise output NO.
[ "4\n1 2 2 -4\n", "5\n1 2 3 1 1\n" ]
[ "1\n", "2\n" ]
none
0
[ { "input": "4\n1 2 2 -4", "output": "1" }, { "input": "5\n1 2 3 1 1", "output": "2" }, { "input": "1\n28", "output": "NO" }, { "input": "2\n-28 12", "output": "12" }, { "input": "3\n-83 40 -80", "output": "-80" }, { "input": "8\n93 77 -92 26 21 -48 53 ...
1,653,299,700
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
n=int(input()) x=sorted(list(map(int,input().split()))) for i in range(n): if x[0]<x[i]: k=x[i] else: k='NO' print(k)
Title: Second Order Statistics Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once Bob needed to find the second order statistics of a sequence of integer numbers. Lets choose each number from the sequence exactly once and sort them. The value on the second position is the second order statis...
```python n=int(input()) x=sorted(list(map(int,input().split()))) for i in range(n): if x[0]<x[i]: k=x[i] else: k='NO' print(k) ```
0
102
B
Sum of Digits
PROGRAMMING
1,000
[ "implementation" ]
B. Sum of Digits
2
265
Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came across a number *n*. How many times can Gerald put a spell on it until the number becomes one-...
The first line contains the only integer *n* (0<=≤<=*n*<=≤<=10100000). It is guaranteed that *n* doesn't contain any leading zeroes.
Print the number of times a number can be replaced by the sum of its digits until it only contains one digit.
[ "0\n", "10\n", "991\n" ]
[ "0\n", "1\n", "3\n" ]
In the first sample the number already is one-digit — Herald can't cast a spell. The second test contains number 10. After one casting of a spell it becomes 1, and here the process is completed. Thus, Gerald can only cast the spell once. The third test contains number 991. As one casts a spell the following transform...
1,000
[ { "input": "0", "output": "0" }, { "input": "10", "output": "1" }, { "input": "991", "output": "3" }, { "input": "99", "output": "2" }, { "input": "100", "output": "1" }, { "input": "123456789", "output": "2" }, { "input": "32", "output...
1,685,022,598
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
# your code goes here digits = input() times = 0 if digits[1] != '0': digitsum = 0 for digit in digits: digitsum += int(digit) times += 1 while digitsum > 9: m = digitsum digitsum = 0 while m != 0: digitsum += m % 10 m //= 10 ...
Title: Sum of Digits Time Limit: 2 seconds Memory Limit: 265 megabytes Problem Description: Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came...
```python # your code goes here digits = input() times = 0 if digits[1] != '0': digitsum = 0 for digit in digits: digitsum += int(digit) times += 1 while digitsum > 9: m = digitsum digitsum = 0 while m != 0: digitsum += m % 10 m //...
-1
475
B
Strongly Connected City
PROGRAMMING
1,400
[ "brute force", "dfs and similar", "graphs", "implementation" ]
null
null
Imagine a city with *n* horizontal streets crossing *m* vertical streets, forming an (*n*<=-<=1)<=×<=(*m*<=-<=1) grid. In order to increase the traffic flow, mayor of the city has decided to make each street one way. This means in each horizontal street, the traffic moves only from west to east or only from east to wes...
The first line of input contains two integers *n* and *m*, (2<=≤<=*n*,<=*m*<=≤<=20), denoting the number of horizontal streets and the number of vertical streets. The second line contains a string of length *n*, made of characters '&lt;' and '&gt;', denoting direction of each horizontal street. If the *i*-th character...
If the given pattern meets the mayor's criteria, print a single line containing "YES", otherwise print a single line containing "NO".
[ "3 3\n&gt;&lt;&gt;\nv^v\n", "4 6\n&lt;&gt;&lt;&gt;\nv^v^v^\n" ]
[ "NO\n", "YES\n" ]
The figure above shows street directions in the second sample test case.
1,000
[ { "input": "3 3\n><>\nv^v", "output": "NO" }, { "input": "4 6\n<><>\nv^v^v^", "output": "YES" }, { "input": "2 2\n<>\nv^", "output": "YES" }, { "input": "2 2\n>>\n^v", "output": "NO" }, { "input": "3 3\n>><\n^^v", "output": "YES" }, { "input": "3 4\n>>...
1,622,241,230
2,147,483,647
PyPy 3
OK
TESTS
81
140
0
n, m = map(int, input().split()) horiz = input(); vert = input() corner1 = horiz[0]; corner2 = horiz[-1] corner3 = vert[0]; corner4 = vert[-1] b = [corner1, corner2, corner3, corner4] cw = '<>v^' ccw = '><^v' b = ''.join(b) if b == cw or b == ccw: print("YES") else: print("NO")
Title: Strongly Connected City Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imagine a city with *n* horizontal streets crossing *m* vertical streets, forming an (*n*<=-<=1)<=×<=(*m*<=-<=1) grid. In order to increase the traffic flow, mayor of the city has decided to make each street one...
```python n, m = map(int, input().split()) horiz = input(); vert = input() corner1 = horiz[0]; corner2 = horiz[-1] corner3 = vert[0]; corner4 = vert[-1] b = [corner1, corner2, corner3, corner4] cw = '<>v^' ccw = '><^v' b = ''.join(b) if b == cw or b == ccw: print("YES") else: print("NO") ...
3
569
A
Music
PROGRAMMING
1,500
[ "implementation", "math" ]
null
null
Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk. Unfortunately, internet is not that fast in the city of Ekaterinozavodsk and the song takes a lot of time to download. But Lesha is quite ...
The single line contains three integers *T*,<=*S*,<=*q* (2<=≤<=*q*<=≤<=104, 1<=≤<=*S*<=&lt;<=*T*<=≤<=105).
Print a single integer — the number of times the song will be restarted.
[ "5 2 2\n", "5 4 7\n", "6 2 3\n" ]
[ "2\n", "1\n", "1\n" ]
In the first test, the song is played twice faster than it is downloaded, which means that during four first seconds Lesha reaches the moment that has not been downloaded, and starts the song again. After another two seconds, the song is downloaded completely, and thus, Lesha starts the song twice. In the second test,...
500
[ { "input": "5 2 2", "output": "2" }, { "input": "5 4 7", "output": "1" }, { "input": "6 2 3", "output": "1" }, { "input": "2 1 2", "output": "1" }, { "input": "2 1 3", "output": "1" }, { "input": "2 1 10000", "output": "1" }, { "input": "12...
1,625,246,595
2,147,483,647
Python 3
OK
TESTS
33
77
0
t,s,q=map(int,input().split()) p=0 while s<t:s=s*q;p+=1 print(p)
Title: Music Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk. Unfortunately, internet is not that fast in the...
```python t,s,q=map(int,input().split()) p=0 while s<t:s=s*q;p+=1 print(p) ```
3
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,611,210,534
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
61
307,200
k = str(input()) out = [] count = 0 for i in range(len(k)): if k[i] == 'h': out.append('h') count = 1 if k[i] == 'e' and count == 1: out.append('e') count = 2 if k[i] == 'l' and k.index('l') > k.index('e') and k.index('l') < k.index('o'): out.append('l') ...
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 k = str(input()) out = [] count = 0 for i in range(len(k)): if k[i] == 'h': out.append('h') count = 1 if k[i] == 'e' and count == 1: out.append('e') count = 2 if k[i] == 'l' and k.index('l') > k.index('e') and k.index('l') < k.index('o'): out.appe...
0
37
A
Towers
PROGRAMMING
1,000
[ "sortings" ]
A. Towers
2
256
Little Vasya has received a young builder’s kit. The kit consists of several wooden bars, the lengths of all of them are known. The bars can be put one on the top of the other if their lengths are the same. Vasya wants to construct the minimal number of towers from the bars. Help Vasya to use the bars in the best way ...
The first line contains an integer *N* (1<=≤<=*N*<=≤<=1000) — the number of bars at Vasya’s disposal. The second line contains *N* space-separated integers *l**i* — the lengths of the bars. All the lengths are natural numbers not exceeding 1000.
In one line output two numbers — the height of the largest tower and their total number. Remember that Vasya should use all the bars.
[ "3\n1 2 3\n", "4\n6 5 6 7\n" ]
[ "1 3\n", "2 3\n" ]
none
500
[ { "input": "3\n1 2 3", "output": "1 3" }, { "input": "4\n6 5 6 7", "output": "2 3" }, { "input": "4\n3 2 1 1", "output": "2 3" }, { "input": "4\n1 2 3 3", "output": "2 3" }, { "input": "3\n20 22 36", "output": "1 3" }, { "input": "25\n47 30 94 41 45 20...
1,639,073,908
2,147,483,647
PyPy 3-64
OK
TESTS
61
248
0
n, maxValue, dict = int(input()), 0, {} for key in [int(item) for item in input().split(' ')]: if key in dict: dict[key] += 1 else: dict[key] = 1 if maxValue < dict[key]: maxValue = dict[key] print(f'{maxValue} {len(dict)}')
Title: Towers Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Vasya has received a young builder’s kit. The kit consists of several wooden bars, the lengths of all of them are known. The bars can be put one on the top of the other if their lengths are the same. Vasya wants to construct...
```python n, maxValue, dict = int(input()), 0, {} for key in [int(item) for item in input().split(' ')]: if key in dict: dict[key] += 1 else: dict[key] = 1 if maxValue < dict[key]: maxValue = dict[key] print(f'{maxValue} {len(dict)}') ```
3.938
1,000
B
Light It Up
PROGRAMMING
1,500
[ "greedy" ]
null
null
Recently, you bought a brand new smart lamp with programming features. At first, you set up a schedule to the lamp. Every day it will turn power on at moment $0$ and turn power off at moment $M$. Moreover, the lamp allows you to set a program of switching its state (states are "lights on" and "lights off"). Unfortunate...
First line contains two space separated integers $n$ and $M$ ($1 \le n \le 10^5$, $2 \le M \le 10^9$) — the length of program $a$ and the moment when power turns off. Second line contains $n$ space separated integers $a_1, a_2, \dots, a_n$ ($0 &lt; a_1 &lt; a_2 &lt; \dots &lt; a_n &lt; M$) — initially installed progra...
Print the only integer — maximum possible total time when the lamp is lit.
[ "3 10\n4 6 7\n", "2 12\n1 10\n", "2 7\n3 4\n" ]
[ "8\n", "9\n", "6\n" ]
In the first example, one of possible optimal solutions is to insert value $x = 3$ before $a_1$, so program will be $[3, 4, 6, 7]$ and time of lamp being lit equals $(3 - 0) + (6 - 4) + (10 - 7) = 8$. Other possible solution is to insert $x = 5$ in appropriate place. In the second example, there is only one optimal so...
0
[ { "input": "3 10\n4 6 7", "output": "8" }, { "input": "2 12\n1 10", "output": "9" }, { "input": "2 7\n3 4", "output": "6" }, { "input": "1 2\n1", "output": "1" }, { "input": "5 10\n1 3 5 6 8", "output": "6" }, { "input": "7 1000000000\n1 10001 10011 20...
1,666,603,431
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
46
0
n,M = [int(x) for x in input().split()] pro = [0] + [int(x) for x in input().split()] + [M] time_1 = 0 for i in range(1,len(pro),2): time_1 += pro[i] - pro[i-1] ans = time_1 be_1 = 0 i = 1 while i < n+1: if i%2 == 1 and pro[i] - pro[i-1] > 1: be_1 += pro[i] - pro[i-1] time_2 = be_1-1 ...
Title: Light It Up Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently, you bought a brand new smart lamp with programming features. At first, you set up a schedule to the lamp. Every day it will turn power on at moment $0$ and turn power off at moment $M$. Moreover, the lamp allows y...
```python n,M = [int(x) for x in input().split()] pro = [0] + [int(x) for x in input().split()] + [M] time_1 = 0 for i in range(1,len(pro),2): time_1 += pro[i] - pro[i-1] ans = time_1 be_1 = 0 i = 1 while i < n+1: if i%2 == 1 and pro[i] - pro[i-1] > 1: be_1 += pro[i] - pro[i-1] time_2...
0
437
B
The Child and Set
PROGRAMMING
1,500
[ "bitmasks", "greedy", "implementation", "sortings" ]
null
null
At the children's day, the child came to Picks's house, and messed his house up. Picks was angry at him. A lot of important things were lost, in particular the favorite set of Picks. Fortunately, Picks remembers something about his set *S*: - its elements were distinct integers from 1 to *limit*; - the value of wa...
The first line contains two integers: *sum*,<=*limit* (1<=≤<=*sum*,<=*limit*<=≤<=105).
In the first line print an integer *n* (1<=≤<=*n*<=≤<=105), denoting the size of *S*. Then print the elements of set *S* in any order. If there are multiple answers, print any of them. If it's impossible to find a suitable set, print -1.
[ "5 5\n", "4 3\n", "5 1\n" ]
[ "2\n4 5\n", "3\n2 3 1\n", "-1\n" ]
In sample test 1: *lowbit*(4) = 4, *lowbit*(5) = 1, 4 + 1 = 5. In sample test 2: *lowbit*(1) = 1, *lowbit*(2) = 2, *lowbit*(3) = 1, 1 + 2 + 1 = 4.
1,500
[ { "input": "5 5", "output": "2\n4 5" }, { "input": "4 3", "output": "3\n2 3 1" }, { "input": "5 1", "output": "-1" }, { "input": "54321 12345", "output": "7008\n8958 8925 11009 10808 8221 9771 11269 7017 6416 11723 10324 5654 6569 10454 9164 10754 6069 7913 12154 11111 73...
1,526,297,374
2,147,483,647
Python 3
OK
TESTS
33
202
7,270,400
a=[0 for x in range(0,18)] k=[0 for x in range(0,18)] ss=input() kay = ss.split(" ") suma=int(kay[0]) limit = int(kay[1]) for i in range(16,-1,-1): a[i]=int(limit/pow(2,i))-int(limit/pow(2,i+1)) for i in range (16,-1,-1): while (suma>=pow(2,i) and a[i]>0): suma=suma-pow(2,i) a[i]...
Title: The Child and Set Time Limit: None seconds Memory Limit: None megabytes Problem Description: At the children's day, the child came to Picks's house, and messed his house up. Picks was angry at him. A lot of important things were lost, in particular the favorite set of Picks. Fortunately, Picks remembers some...
```python a=[0 for x in range(0,18)] k=[0 for x in range(0,18)] ss=input() kay = ss.split(" ") suma=int(kay[0]) limit = int(kay[1]) for i in range(16,-1,-1): a[i]=int(limit/pow(2,i))-int(limit/pow(2,i+1)) for i in range (16,-1,-1): while (suma>=pow(2,i) and a[i]>0): suma=suma-pow(2,i) ...
3
151
A
Soft Drinking
PROGRAMMING
800
[ "implementation", "math" ]
null
null
This winter is so cold in Nvodsk! A group of *n* friends decided to buy *k* bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has *l* milliliters of the drink. Also they bought *c* limes and cut each of them into *d* slices. After that they found *p* grams of salt. To make a toast, each frie...
The first and only line contains positive integers *n*, *k*, *l*, *c*, *d*, *p*, *nl*, *np*, not exceeding 1000 and no less than 1. The numbers are separated by exactly one space.
Print a single integer — the number of toasts each friend can make.
[ "3 4 5 10 8 100 3 1\n", "5 100 10 1 19 90 4 3\n", "10 1000 1000 25 23 1 50 1\n" ]
[ "2\n", "3\n", "0\n" ]
A comment to the first sample: Overall the friends have 4 * 5 = 20 milliliters of the drink, it is enough to make 20 / 3 = 6 toasts. The limes are enough for 10 * 8 = 80 toasts and the salt is enough for 100 / 1 = 100 toasts. However, there are 3 friends in the group, so the answer is *min*(6, 80, 100) / 3 = 2.
500
[ { "input": "3 4 5 10 8 100 3 1", "output": "2" }, { "input": "5 100 10 1 19 90 4 3", "output": "3" }, { "input": "10 1000 1000 25 23 1 50 1", "output": "0" }, { "input": "1 7 4 5 5 8 3 2", "output": "4" }, { "input": "2 3 3 5 5 10 1 3", "output": "1" }, { ...
1,692,217,213
2,147,483,647
PyPy 3
OK
TESTS
27
186
0
n, k, l, c, d, p, nl, np = map(int, input().split()) drink = k*l toast_d = drink//nl toast_c = c*d // 1 toast_s = p // np ans = min(toast_d, toast_c, toast_s)//n print(ans)
Title: Soft Drinking Time Limit: None seconds Memory Limit: None megabytes Problem Description: This winter is so cold in Nvodsk! A group of *n* friends decided to buy *k* bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has *l* milliliters of the drink. Also they bought *c* limes and cut...
```python n, k, l, c, d, p, nl, np = map(int, input().split()) drink = k*l toast_d = drink//nl toast_c = c*d // 1 toast_s = p // np ans = min(toast_d, toast_c, toast_s)//n print(ans) ```
3
625
A
Guest From the Past
PROGRAMMING
1,700
[ "implementation", "math" ]
null
null
Kolya Gerasimov loves kefir very much. He lives in year 1984 and knows all the details of buying this delicious drink. One day, as you probably know, he found himself in year 2084, and buying kefir there is much more complicated. Kolya is hungry, so he went to the nearest milk shop. In 2084 you may buy kefir in a plas...
First line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=1018) — the number of rubles Kolya has at the beginning. Then follow three lines containing integers *a*, *b* and *c* (1<=≤<=*a*<=≤<=1018, 1<=≤<=*c*<=&lt;<=*b*<=≤<=1018) — the cost of one plastic liter bottle, the cost of one glass liter bottle and t...
Print the only integer — maximum number of liters of kefir, that Kolya can drink.
[ "10\n11\n9\n8\n", "10\n5\n6\n1\n" ]
[ "2\n", "2\n" ]
In the first sample, Kolya can buy one glass bottle, then return it and buy one more glass bottle. Thus he will drink 2 liters of kefir. In the second sample, Kolya can buy two plastic bottle and get two liters of kefir, or he can buy one liter glass bottle, then return it and buy one plastic bottle. In both cases he ...
750
[ { "input": "10\n11\n9\n8", "output": "2" }, { "input": "10\n5\n6\n1", "output": "2" }, { "input": "2\n2\n2\n1", "output": "1" }, { "input": "10\n3\n3\n1", "output": "4" }, { "input": "10\n1\n2\n1", "output": "10" }, { "input": "10\n2\n3\n1", "outpu...
1,454,841,410
5,510
Python 3
TIME_LIMIT_EXCEEDED
CHALLENGES
0
1,000
0
n = int(input()) a = int(input()) b = int(input()) c = int(input()) m = n // a vsego = 0 while n // b: cur = n // b n = n % b + cur * c vsego += cur vsego += n // a print(max(m, vsego))
Title: Guest From the Past Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kolya Gerasimov loves kefir very much. He lives in year 1984 and knows all the details of buying this delicious drink. One day, as you probably know, he found himself in year 2084, and buying kefir there is much mor...
```python n = int(input()) a = int(input()) b = int(input()) c = int(input()) m = n // a vsego = 0 while n // b: cur = n // b n = n % b + cur * c vsego += cur vsego += n // a print(max(m, vsego)) ```
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,663,485,135
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
4
186
5,836,800
def solve(): s1=list(input()) st=input() l2=[int(st[i]) for i in range(len(st))] l2.sort(reverse=True) # print(s1,l2) n=len(s1) j=0 for i in range(n): if int(s1[i])<l2[j]: s1[i]=str(l2[j]) j+=1 for i in range(n): print(s1[i],en...
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 def solve(): s1=list(input()) st=input() l2=[int(st[i]) for i in range(len(st))] l2.sort(reverse=True) # print(s1,l2) n=len(s1) j=0 for i in range(n): if int(s1[i])<l2[j]: s1[i]=str(l2[j]) j+=1 for i in range(n): prin...
-1
461
A
Appleman and Toastman
PROGRAMMING
1,200
[ "greedy", "sortings" ]
null
null
Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all the numbers and adds this sum to the score. Then he gives the group to the Appleman. - Each time Appleman...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=3·105). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=106) — the initial group that is given to Toastman.
Print a single integer — the largest possible score.
[ "3\n3 1 5\n", "1\n10\n" ]
[ "26\n", "10\n" ]
Consider the following situation in the first example. Initially Toastman gets group [3, 1, 5] and adds 9 to the score, then he give the group to Appleman. Appleman splits group [3, 1, 5] into two groups: [3, 5] and [1]. Both of them should be given to Toastman. When Toastman receives group [1], he adds 1 to score and ...
500
[ { "input": "3\n3 1 5", "output": "26" }, { "input": "1\n10", "output": "10" }, { "input": "10\n8 10 2 5 6 2 4 7 2 1", "output": "376" }, { "input": "10\n171308 397870 724672 431255 228496 892002 542924 718337 888642 161821", "output": "40204082" }, { "input": "10\...
1,480,935,969
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
0
n=int(input()) x=[int(i) for i in input().split()] sum1=sum(x) x.sort() for j in x: for i in x: if i>=j and j!=x[-1]: sum1+=i print(sum1)
Title: Appleman and Toastman Time Limit: None seconds Memory Limit: None megabytes Problem Description: Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all...
```python n=int(input()) x=[int(i) for i in input().split()] sum1=sum(x) x.sort() for j in x: for i in x: if i>=j and j!=x[-1]: sum1+=i print(sum1) ```
0
802
G
Fake News (easy)
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
As it's the first of April, Heidi is suspecting that the news she reads today are fake, and she does not want to look silly in front of all the contestants. She knows that a newspiece is fake if it contains heidi as a subsequence. Help Heidi assess whether the given piece is true, but please be discreet about it...
The first and only line of input contains a single nonempty string *s* of length at most 1000 composed of lowercase letters (a-z).
Output YES if the string *s* contains heidi as a subsequence and NO otherwise.
[ "abcheaibcdi\n", "hiedi\n" ]
[ "YES", "NO" ]
A string *s* contains another string *p* as a subsequence if it is possible to delete some characters from *s* and obtain *p*.
0
[ { "input": "abcheaibcdi", "output": "YES" }, { "input": "hiedi", "output": "NO" }, { "input": "ihied", "output": "NO" }, { "input": "diehi", "output": "NO" }, { "input": "deiih", "output": "NO" }, { "input": "iheid", "output": "NO" }, { "in...
1,619,016,829
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
61
0
def isSubsequence(string, sub): letters = list(sub) for part in string: if part == letters[0]: letters.pop(0) return len(letters) == 0 news = input() if isSubsequence(news, "heidi"): print("YES") else: print("NO")
Title: Fake News (easy) Time Limit: None seconds Memory Limit: None megabytes Problem Description: As it's the first of April, Heidi is suspecting that the news she reads today are fake, and she does not want to look silly in front of all the contestants. She knows that a newspiece is fake if it contains heidi as a ...
```python def isSubsequence(string, sub): letters = list(sub) for part in string: if part == letters[0]: letters.pop(0) return len(letters) == 0 news = input() if isSubsequence(news, "heidi"): print("YES") else: print("NO") ```
-1
443
A
Anton and Letters
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
Recently, Anton has found a set. The set consists of small English letters. Anton carefully wrote out all the letters from the set in one line, separated by a comma. He also added an opening curved bracket at the beginning of the line and a closing curved bracket at the end of the line. Unfortunately, from time to ti...
The first and the single line contains the set of letters. The length of the line doesn't exceed 1000. It is guaranteed that the line starts from an opening curved bracket and ends with a closing curved bracket. Between them, small English letters are listed, separated by a comma. Each comma is followed by a space.
Print a single number — the number of distinct letters in Anton's set.
[ "{a, b, c}\n", "{b, a, b, a}\n", "{}\n" ]
[ "3\n", "2\n", "0\n" ]
none
500
[ { "input": "{a, b, c}", "output": "3" }, { "input": "{b, a, b, a}", "output": "2" }, { "input": "{}", "output": "0" }, { "input": "{a, a, c, b, b, b, c, c, c, c}", "output": "3" }, { "input": "{a, c, b, b}", "output": "3" }, { "input": "{a, b}", "o...
1,688,118,453
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
s = input() s = s.replace("{", "") s = s.replace("}", "") s = s.replace(",", "") s = s.replace(" ", "") f = len(s) s = set(s) f1 = len(s) print(f - f1)
Title: Anton and Letters Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently, Anton has found a set. The set consists of small English letters. Anton carefully wrote out all the letters from the set in one line, separated by a comma. He also added an opening curved bracket at the begi...
```python s = input() s = s.replace("{", "") s = s.replace("}", "") s = s.replace(",", "") s = s.replace(" ", "") f = len(s) s = set(s) f1 = len(s) print(f - f1) ```
0
1
B
Spreadsheet
PROGRAMMING
1,600
[ "implementation", "math" ]
B. Spreadsheets
10
64
In the popular spreadsheets systems (for example, in Excel) the following numeration of columns is used. The first column has number A, the second — number B, etc. till column 26 that is marked by Z. Then there are two-letter numbers: column 27 has number AA, 28 — AB, column 52 is marked by AZ. After ZZ there follow th...
The first line of the input contains integer number *n* (1<=≤<=*n*<=≤<=105), the number of coordinates in the test. Then there follow *n* lines, each of them contains coordinates. All the coordinates are correct, there are no cells with the column and/or the row numbers larger than 106 .
Write *n* lines, each line should contain a cell coordinates in the other numeration system.
[ "2\nR23C55\nBC23\n" ]
[ "BC23\nR23C55\n" ]
none
0
[ { "input": "2\nR23C55\nBC23", "output": "BC23\nR23C55" }, { "input": "1\nA1", "output": "R1C1" }, { "input": "5\nR8C3\nD1\nR7C2\nR8C9\nR8C9", "output": "C8\nR1C4\nB7\nI8\nI8" }, { "input": "4\nR4C25\nR90C35\nAP55\nX83", "output": "Y4\nAI90\nR55C42\nR83C24" }, { "i...
1,683,643,915
2,147,483,647
PyPy 3-64
OK
TESTS
10
434
11,264,000
import time import sys from collections import * from bisect import * from heapq import * input = sys.stdin.readline is_debug = '_local_debug_' in globals() #int input def inp(): return(int(input())) #list input def inlt(): return(list(map(int,input().split()))) #string input def insr(...
Title: Spreadsheet Time Limit: 10 seconds Memory Limit: 64 megabytes Problem Description: In the popular spreadsheets systems (for example, in Excel) the following numeration of columns is used. The first column has number A, the second — number B, etc. till column 26 that is marked by Z. Then there are two-letter n...
```python import time import sys from collections import * from bisect import * from heapq import * input = sys.stdin.readline is_debug = '_local_debug_' in globals() #int input def inp(): return(int(input())) #list input def inlt(): return(list(map(int,input().split()))) #string input ...
3.894377
158
B
Taxi
PROGRAMMING
1,100
[ "*special", "greedy", "implementation" ]
null
null
After the lessons *n* groups of schoolchildren went outside and decided to visit Polycarpus to celebrate his birthday. We know that the *i*-th group consists of *s**i* friends (1<=≤<=*s**i*<=≤<=4), and they want to go to Polycarpus together. They decided to get there by taxi. Each car can carry at most four passengers....
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of groups of schoolchildren. The second line contains a sequence of integers *s*1,<=*s*2,<=...,<=*s**n* (1<=≤<=*s**i*<=≤<=4). The integers are separated by a space, *s**i* is the number of children in the *i*-th group.
Print the single number — the minimum number of taxis necessary to drive all children to Polycarpus.
[ "5\n1 2 4 3 3\n", "8\n2 3 4 4 2 1 3 1\n" ]
[ "4\n", "5\n" ]
In the first test we can sort the children into four cars like this: - the third group (consisting of four children), - the fourth group (consisting of three children), - the fifth group (consisting of three children), - the first and the second group (consisting of one and two children, correspondingly). There a...
1,000
[ { "input": "5\n1 2 4 3 3", "output": "4" }, { "input": "8\n2 3 4 4 2 1 3 1", "output": "5" }, { "input": "5\n4 4 4 4 4", "output": "5" }, { "input": "12\n1 1 1 1 1 1 1 1 1 1 1 1", "output": "3" }, { "input": "2\n2 1", "output": "1" }, { "input": "4\n3 ...
1,699,241,875
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
62
0
aantal_elementen_in_reeks = int(input()) reeks_string = input() reeks_string_lijst_char = reeks_string.split() lijst_gehele_getallen = list(map(int, reeks_string_lijst_char)) aantal_taxis = 0 while lijst_gehele_getallen: if 4 in lijst_gehele_getallen: aantal_taxis= aantal_taxis +1 lijst_...
Title: Taxi Time Limit: None seconds Memory Limit: None megabytes Problem Description: After the lessons *n* groups of schoolchildren went outside and decided to visit Polycarpus to celebrate his birthday. We know that the *i*-th group consists of *s**i* friends (1<=≤<=*s**i*<=≤<=4), and they want to go to Polycarpu...
```python aantal_elementen_in_reeks = int(input()) reeks_string = input() reeks_string_lijst_char = reeks_string.split() lijst_gehele_getallen = list(map(int, reeks_string_lijst_char)) aantal_taxis = 0 while lijst_gehele_getallen: if 4 in lijst_gehele_getallen: aantal_taxis= aantal_taxis +1 ...
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,666,957,343
2,147,483,647
PyPy 3-64
OK
TESTS
61
124
0
n=int(input()) l=list(map(int,input().split())) chest=[] biseps=[] back=[] for i in range(0,len(l),3): chest.append(l[i]) for i in range(1,len(l),3): biseps.append(l[i]) for i in range(2,len(l),3): back.append(l[i]) ch=sum(chest) bi=sum(biseps) ba=sum(back) new=[ch,bi,ba] if max(new...
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 n=int(input()) l=list(map(int,input().split())) chest=[] biseps=[] back=[] for i in range(0,len(l),3): chest.append(l[i]) for i in range(1,len(l),3): biseps.append(l[i]) for i in range(2,len(l),3): back.append(l[i]) ch=sum(chest) bi=sum(biseps) ba=sum(back) new=[ch,bi,ba] ...
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,687,275,104
2,147,483,647
Python 3
OK
TESTS
35
92
0
from math import ceil m, n=[int(i) for i in input().split()] x=m*n y=x//2 print(y)
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 from math import ceil m, n=[int(i) for i in input().split()] x=m*n y=x//2 print(y) ```
3.977
96
A
Football
PROGRAMMING
900
[ "implementation", "strings" ]
A. Football
2
256
Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A zero corresponds to players of one team; a one corresponds to players of another team. If...
The first input line contains a non-empty string consisting of characters "0" and "1", which represents players. The length of the string does not exceed 100 characters. There's at least one player from each team present on the field.
Print "YES" if the situation is dangerous. Otherwise, print "NO".
[ "001001\n", "1000000001\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "001001", "output": "NO" }, { "input": "1000000001", "output": "YES" }, { "input": "00100110111111101", "output": "YES" }, { "input": "11110111111111111", "output": "YES" }, { "input": "01", "output": "NO" }, { "input": "10100101", "outp...
1,662,955,434
2,147,483,647
Python 3
OK
TESTS
44
92
0
n=input() if(("1"*7)in n)or(("0"*7)in n): print("YES") else: print("NO");
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A...
```python n=input() if(("1"*7)in n)or(("0"*7)in n): print("YES") else: print("NO"); ```
3.977
988
A
Diverse Team
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
There are $n$ students in a school class, the rating of the $i$-th student on Codehorses is $a_i$. You have to form a team consisting of $k$ students ($1 \le k \le n$) such that the ratings of all team members are distinct. If it is impossible to form a suitable team, print "NO" (without quotes). Otherwise print "YES"...
The first line contains two integers $n$ and $k$ ($1 \le k \le n \le 100$) — the number of students and the size of the team you have to form. The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 100$), where $a_i$ is the rating of $i$-th student.
If it is impossible to form a suitable team, print "NO" (without quotes). Otherwise print "YES", and then print $k$ distinct integers from $1$ to $n$ which should be the indices of students in the team you form. All the ratings of the students in the team should be distinct. You may print the indices in any order. If t...
[ "5 3\n15 13 15 15 12\n", "5 4\n15 13 15 15 12\n", "4 4\n20 10 40 30\n" ]
[ "YES\n1 2 5 \n", "NO\n", "YES\n1 2 3 4 \n" ]
All possible answers for the first example: - {1 2 5} - {2 3 5} - {2 4 5} Note that the order does not matter.
0
[ { "input": "5 3\n15 13 15 15 12", "output": "YES\n1 2 5 " }, { "input": "5 4\n15 13 15 15 12", "output": "NO" }, { "input": "4 4\n20 10 40 30", "output": "YES\n1 2 3 4 " }, { "input": "1 1\n1", "output": "YES\n1 " }, { "input": "100 53\n16 17 1 2 27 5 9 9 53 24 17...
1,680,153,557
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
46
0
def ca(n, k, s): d = set(s) if len(d) < k: print("NO") return q = set() res = [] for i, v in enumerate(s): if v not in q: res.append(i + 1) q.add(v) print("YES") print(*res) n, k = map(int, input().split()) s = list(map(int, input()....
Title: Diverse Team Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are $n$ students in a school class, the rating of the $i$-th student on Codehorses is $a_i$. You have to form a team consisting of $k$ students ($1 \le k \le n$) such that the ratings of all team members are distinct...
```python def ca(n, k, s): d = set(s) if len(d) < k: print("NO") return q = set() res = [] for i, v in enumerate(s): if v not in q: res.append(i + 1) q.add(v) print("YES") print(*res) n, k = map(int, input().split()) s = list(map(int...
0
1,011
A
Stages
PROGRAMMING
900
[ "greedy", "implementation", "sortings" ]
null
null
Natasha is going to fly to Mars. She needs to build a rocket, which consists of several stages in some order. Each of the stages is defined by a lowercase Latin letter. This way, the rocket can be described by the string — concatenation of letters, which correspond to the stages. There are $n$ stages available. The ro...
The first line of input contains two integers — $n$ and $k$ ($1 \le k \le n \le 50$) – the number of available stages and the number of stages to use in the rocket. The second line contains string $s$, which consists of exactly $n$ lowercase Latin letters. Each letter defines a new stage, which can be used to build th...
Print a single integer — the minimal total weight of the rocket or -1, if it is impossible to build the rocket at all.
[ "5 3\nxyabd\n", "7 4\nproblem\n", "2 2\nab\n", "12 1\nabaabbaaabbb\n" ]
[ "29", "34", "-1", "1" ]
In the first example, the following rockets satisfy the condition: - "adx" (weight is $1+4+24=29$);- "ady" (weight is $1+4+25=30$);- "bdx" (weight is $2+4+24=30$);- "bdy" (weight is $2+4+25=31$). Rocket "adx" has the minimal weight, so the answer is $29$. In the second example, target rocket is "belo". Its weight ...
500
[ { "input": "5 3\nxyabd", "output": "29" }, { "input": "7 4\nproblem", "output": "34" }, { "input": "2 2\nab", "output": "-1" }, { "input": "12 1\nabaabbaaabbb", "output": "1" }, { "input": "50 13\nqwertyuiopasdfghjklzxcvbnmaaaaaaaaaaaaaaaaaaaaaaaa", "output": ...
1,627,582,521
2,147,483,647
Python 3
OK
TESTS
29
62
6,963,200
s, n = map(int,input().split()) a=list(input()) a.sort() u=1 s1=ord(a[0])-ord('a')+1 n-=1 i=0 while u<s and n>0: if ord(a[u])-ord(a[i])>1: s1+=ord(a[u])-ord('a')+1 n-=1 i=u u+=1 if n==0: print(s1) else: print(-1)
Title: Stages Time Limit: None seconds Memory Limit: None megabytes Problem Description: Natasha is going to fly to Mars. She needs to build a rocket, which consists of several stages in some order. Each of the stages is defined by a lowercase Latin letter. This way, the rocket can be described by the string — conca...
```python s, n = map(int,input().split()) a=list(input()) a.sort() u=1 s1=ord(a[0])-ord('a')+1 n-=1 i=0 while u<s and n>0: if ord(a[u])-ord(a[i])>1: s1+=ord(a[u])-ord('a')+1 n-=1 i=u u+=1 if n==0: print(s1) else: print(-1) ```
3
26
B
Regular Bracket Sequence
PROGRAMMING
1,400
[ "greedy" ]
B. Regular Bracket Sequence
5
256
A bracket sequence is called regular if it is possible to obtain correct arithmetic expression by inserting characters «+» and «1» into this sequence. For example, sequences «(())()», «()» and «(()(()))» are regular, while «)(», «(()» and «(()))(» are not. One day Johnny got bracket sequence. He decided to remove some...
Input consists of a single line with non-empty string of «(» and «)» characters. Its length does not exceed 106.
Output the maximum possible length of a regular bracket sequence.
[ "(()))(\n", "((()())\n" ]
[ "4\n", "6\n" ]
none
1,000
[ { "input": "(()))(", "output": "4" }, { "input": "((()())", "output": "6" }, { "input": "(", "output": "0" }, { "input": ")", "output": "0" }, { "input": ")(()(", "output": "2" }, { "input": "))))))(", "output": "0" }, { "input": "()()(()((...
1,653,118,201
2,147,483,647
Python 3
OK
TESTS
38
498
2,867,200
brackets = input() count_open_brackets = 0 count_closed_brackets = 0 for _ in brackets: if _ == "(": count_open_brackets += 1 elif _ == ")" and count_open_brackets > count_closed_brackets: count_closed_brackets +=1 _result = count_closed_brackets * 2 print(_result)
Title: Regular Bracket Sequence Time Limit: 5 seconds Memory Limit: 256 megabytes Problem Description: A bracket sequence is called regular if it is possible to obtain correct arithmetic expression by inserting characters «+» and «1» into this sequence. For example, sequences «(())()», «()» and «(()(()))» are regula...
```python brackets = input() count_open_brackets = 0 count_closed_brackets = 0 for _ in brackets: if _ == "(": count_open_brackets += 1 elif _ == ")" and count_open_brackets > count_closed_brackets: count_closed_brackets +=1 _result = count_closed_brackets * 2 print(_result) ```
3.944859
0
none
none
none
0
[ "none" ]
null
null
Gennady is one of the best child dentists in Berland. Today *n* children got an appointment with him, they lined up in front of his office. All children love to cry loudly at the reception at the dentist. We enumerate the children with integers from 1 to *n* in the order they go in the line. Every child is associated ...
The first line of the input contains a positive integer *n* (1<=≤<=*n*<=≤<=4000) — the number of kids in the line. Next *n* lines contain three integers each *v**i*,<=*d**i*,<=*p**i* (1<=≤<=*v**i*,<=*d**i*,<=*p**i*<=≤<=106) — the volume of the cry in the doctor's office, the volume of the cry in the hall and the conf...
In the first line print number *k* — the number of children whose teeth Gennady will cure. In the second line print *k* integers — the numbers of the children who will make it to the end of the line in the increasing order.
[ "5\n4 2 2\n4 1 2\n5 2 4\n3 3 5\n5 1 2\n", "5\n4 5 1\n5 3 9\n4 1 2\n2 1 8\n4 1 9\n" ]
[ "2\n1 3 ", "4\n1 2 4 5 " ]
In the first example, Gennady first treats the teeth of the first child who will cry with volume 4. The confidences of the remaining children will get equal to  - 2, 1, 3, 1, respectively. Thus, the second child also cries at the volume of 1 and run to the exit. The confidence of the remaining children will be equal to...
0
[ { "input": "5\n4 2 2\n4 1 2\n5 2 4\n3 3 5\n5 1 2", "output": "2\n1 3 " }, { "input": "5\n4 5 1\n5 3 9\n4 1 2\n2 1 8\n4 1 9", "output": "4\n1 2 4 5 " }, { "input": "10\n10 7 10\n3 6 11\n8 4 10\n10 1 11\n7 3 13\n7 2 13\n7 6 14\n3 4 17\n9 4 20\n5 2 24", "output": "3\n1 2 5 " }, { ...
1,460,427,910
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
11
62
0
n = int(input()) v = [] d = [] p = [] for i in range(n): tem1, tem2, tem3 = [int(j) for j in input().split()] v.append(tem1) d.append(tem2) p.append(tem3) left = n go_in = [] i = 0 while left > 0: if p[i] >= 0 : go_in.append(i) left -= 1 for j in r...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gennady is one of the best child dentists in Berland. Today *n* children got an appointment with him, they lined up in front of his office. All children love to cry loudly at the reception at the dentist. We enumerate the childre...
```python n = int(input()) v = [] d = [] p = [] for i in range(n): tem1, tem2, tem3 = [int(j) for j in input().split()] v.append(tem1) d.append(tem2) p.append(tem3) left = n go_in = [] i = 0 while left > 0: if p[i] >= 0 : go_in.append(i) left -= 1 ...
0
445
A
DZY Loves Chessboard
PROGRAMMING
1,200
[ "dfs and similar", "implementation" ]
null
null
DZY loves chessboard, and he enjoys playing with it. He has a chessboard of *n* rows and *m* columns. Some cells of the chessboard are bad, others are good. For every good cell, DZY wants to put a chessman on it. Each chessman is either white or black. After putting all chessmen, DZY wants that no two chessmen with th...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). Each of the next *n* lines contains a string of *m* characters: the *j*-th character of the *i*-th string is either "." or "-". A "." means that the corresponding cell (in the *i*-th row and the *j*-th column) is good, while a ...
Output must contain *n* lines, each line must contain a string of *m* characters. The *j*-th character of the *i*-th string should be either "W", "B" or "-". Character "W" means the chessman on the cell is white, "B" means it is black, "-" means the cell is a bad cell. If multiple answers exist, print any of them. It ...
[ "1 1\n.\n", "2 2\n..\n..\n", "3 3\n.-.\n---\n--." ]
[ "B\n", "BW\nWB\n", "B-B\n---\n--B" ]
In the first sample, DZY puts a single black chessman. Of course putting a white one is also OK. In the second sample, all 4 cells are good. No two same chessmen share an edge in the sample output. In the third sample, no good cells are adjacent. So you can just put 3 chessmen, no matter what their colors are.
500
[ { "input": "1 1\n.", "output": "B" }, { "input": "2 2\n..\n..", "output": "BW\nWB" }, { "input": "3 3\n.-.\n---\n--.", "output": "B-B\n---\n--B" }, { "input": "3 1\n-\n.\n.", "output": "-\nW\nB" }, { "input": "11 11\n-----------\n-----------\n-----------\n--------...
1,644,718,546
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
31
0
def resolve(actual_pos , table , symbol): y= actual_pos if (y == len(table) ): # print(actual_pos , "retornou !!!") return now_symbol = symbol for i in range(len(table[y])): if (table[y][i] == "."): table[y][i] = symbol if(now_symbol == "B"): ...
Title: DZY Loves Chessboard Time Limit: None seconds Memory Limit: None megabytes Problem Description: DZY loves chessboard, and he enjoys playing with it. He has a chessboard of *n* rows and *m* columns. Some cells of the chessboard are bad, others are good. For every good cell, DZY wants to put a chessman on it. ...
```python def resolve(actual_pos , table , symbol): y= actual_pos if (y == len(table) ): # print(actual_pos , "retornou !!!") return now_symbol = symbol for i in range(len(table[y])): if (table[y][i] == "."): table[y][i] = symbol if(now_symbol == "B"): ...
0
467
A
George and Accommodation
PROGRAMMING
800
[ "implementation" ]
null
null
George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory. George and Alex want to live in the same room. The dormitory has *n* rooms in total. At the moment the *i*-th room has *p**i* peopl...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of rooms. The *i*-th of the next *n* lines contains two integers *p**i* and *q**i* (0<=≤<=*p**i*<=≤<=*q**i*<=≤<=100) — the number of people who already live in the *i*-th room and the room's capacity.
Print a single integer — the number of rooms where George and Alex can move in.
[ "3\n1 1\n2 2\n3 3\n", "3\n1 10\n0 10\n10 10\n" ]
[ "0\n", "2\n" ]
none
500
[ { "input": "3\n1 1\n2 2\n3 3", "output": "0" }, { "input": "3\n1 10\n0 10\n10 10", "output": "2" }, { "input": "2\n36 67\n61 69", "output": "2" }, { "input": "3\n21 71\n10 88\n43 62", "output": "3" }, { "input": "3\n1 2\n2 3\n3 4", "output": "0" }, { "...
1,692,560,799
2,147,483,647
Python 3
OK
TESTS
27
31
0
N = int(input()) X = 0 for i in range(1,N+1): P,Q = input().split() P = int(P) Q = int(Q) if (Q-P)>=2: X+=1 print(X)
Title: George and Accommodation Time Limit: None seconds Memory Limit: None megabytes Problem Description: George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory. George and Alex want ...
```python N = int(input()) X = 0 for i in range(1,N+1): P,Q = input().split() P = int(P) Q = int(Q) if (Q-P)>=2: X+=1 print(X) ```
3
236
A
Boy or Girl
PROGRAMMING
800
[ "brute force", "implementation", "strings" ]
null
null
Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he thought so). After that they talked very often and eventually they became a couple in the network. Bu...
The first line contains a non-empty string, that contains only lowercase English letters — the user name. This string contains at most 100 letters.
If it is a female by our hero's method, print "CHAT WITH HER!" (without the quotes), otherwise, print "IGNORE HIM!" (without the quotes).
[ "wjmzbmr\n", "xiaodao\n", "sevenkplus\n" ]
[ "CHAT WITH HER!\n", "IGNORE HIM!\n", "CHAT WITH HER!\n" ]
For the first example. There are 6 distinct characters in "wjmzbmr". These characters are: "w", "j", "m", "z", "b", "r". So wjmzbmr is a female and you should print "CHAT WITH HER!".
500
[ { "input": "wjmzbmr", "output": "CHAT WITH HER!" }, { "input": "xiaodao", "output": "IGNORE HIM!" }, { "input": "sevenkplus", "output": "CHAT WITH HER!" }, { "input": "pezu", "output": "CHAT WITH HER!" }, { "input": "wnemlgppy", "output": "CHAT WITH HER!" },...
1,698,446,622
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
92
0
k=0 input = input() for i in input: k+=1 if k%2==0: print("CHAT WITH HER!") else: print("IGNORE HIM!")
Title: Boy or Girl Time Limit: None seconds Memory Limit: None megabytes Problem Description: Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he though...
```python k=0 input = input() for i in input: k+=1 if k%2==0: print("CHAT WITH HER!") else: print("IGNORE HIM!") ```
0
271
A
Beautiful Year
PROGRAMMING
800
[ "brute force" ]
null
null
It seems like the year of 2013 came only yesterday. Do you know a curious fact? The year of 2013 is the first year after the old 1987 with only distinct digits. Now you are suggested to solve the following problem: given a year number, find the minimum year number which is strictly larger than the given one and has on...
The single line contains integer *y* (1000<=≤<=*y*<=≤<=9000) — the year number.
Print a single integer — the minimum year number that is strictly larger than *y* and all it's digits are distinct. It is guaranteed that the answer exists.
[ "1987\n", "2013\n" ]
[ "2013\n", "2014\n" ]
none
500
[ { "input": "1987", "output": "2013" }, { "input": "2013", "output": "2014" }, { "input": "1000", "output": "1023" }, { "input": "1001", "output": "1023" }, { "input": "1234", "output": "1235" }, { "input": "5555", "output": "5601" }, { "inp...
1,689,698,499
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
a=int(input()) if a>1987: print("2013") else: print(a+1)
Title: Beautiful Year Time Limit: None seconds Memory Limit: None megabytes Problem Description: It seems like the year of 2013 came only yesterday. Do you know a curious fact? The year of 2013 is the first year after the old 1987 with only distinct digits. Now you are suggested to solve the following problem: give...
```python a=int(input()) if a>1987: print("2013") else: print(a+1) ```
0
276
B
Little Girl and Game
PROGRAMMING
1,300
[ "games", "greedy" ]
null
null
The Little Girl loves problems on games very much. Here's one of them. Two players have got a string *s*, consisting of lowercase English letters. They play a game that is described by the following rules: - The players move in turns; In one move the player can remove an arbitrary letter from string *s*. - If the p...
The input contains a single line, containing string *s* (1<=≤<=|*s*|<=<=≤<=<=103). String *s* consists of lowercase English letters.
In a single line print word "First" if the first player wins (provided that both players play optimally well). Otherwise, print word "Second". Print the words without the quotes.
[ "aba\n", "abca\n" ]
[ "First\n", "Second\n" ]
none
1,000
[ { "input": "aba", "output": "First" }, { "input": "abca", "output": "Second" }, { "input": "aabb", "output": "First" }, { "input": "ctjxzuimsxnarlciuynqeoqmmbqtagszuo", "output": "Second" }, { "input": "gevqgtaorjixsxnbcoybr", "output": "First" }, { "i...
1,639,755,914
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
0
w=input() def alphabet_frequencies(w): alphabets={} for x in range(len(w)): alphabets[w[x]]=0 for x in range(len(w)): alphabets[w[x]]=alphabets[w[x]]+1 return alphabets def count_steps(alphabets): key_list=list(alphabets.keys()) steps=-1 for x in key_list: ...
Title: Little Girl and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Girl loves problems on games very much. Here's one of them. Two players have got a string *s*, consisting of lowercase English letters. They play a game that is described by the following rules: - The...
```python w=input() def alphabet_frequencies(w): alphabets={} for x in range(len(w)): alphabets[w[x]]=0 for x in range(len(w)): alphabets[w[x]]=alphabets[w[x]]+1 return alphabets def count_steps(alphabets): key_list=list(alphabets.keys()) steps=-1 for x in key_...
0
472
A
Design Tutorial: Learn from Math
PROGRAMMING
800
[ "math", "number theory" ]
null
null
One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statement called the "Goldbach's conjecture". It says: "each even number no less than four can be expressed as the sum of two ...
The only line contains an integer *n* (12<=≤<=*n*<=≤<=106).
Output two composite integers *x* and *y* (1<=&lt;<=*x*,<=*y*<=&lt;<=*n*) such that *x*<=+<=*y*<==<=*n*. If there are multiple solutions, you can output any of them.
[ "12\n", "15\n", "23\n", "1000000\n" ]
[ "4 8\n", "6 9\n", "8 15\n", "500000 500000\n" ]
In the first example, 12 = 4 + 8 and both 4, 8 are composite numbers. You can output "6 6" or "8 4" as well. In the second example, 15 = 6 + 9. Note that you can't output "1 14" because 1 is not a composite number.
500
[ { "input": "12", "output": "4 8" }, { "input": "15", "output": "6 9" }, { "input": "23", "output": "8 15" }, { "input": "1000000", "output": "500000 500000" }, { "input": "63874", "output": "4 63870" }, { "input": "14568", "output": "4 14564" }, ...
1,676,183,487
2,147,483,647
PyPy 3-64
OK
TESTS
33
77
0
i=int(input()) d=i%2+8 print(d,i-d)
Title: Design Tutorial: Learn from Math Time Limit: None seconds Memory Limit: None megabytes Problem Description: One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statemen...
```python i=int(input()) d=i%2+8 print(d,i-d) ```
3
0
none
none
none
0
[ "none" ]
null
null
Two positive integers *a* and *b* have a sum of *s* and a bitwise XOR of *x*. How many possible values are there for the ordered pair (*a*,<=*b*)?
The first line of the input contains two integers *s* and *x* (2<=≤<=*s*<=≤<=1012, 0<=≤<=*x*<=≤<=1012), the sum and bitwise xor of the pair of positive integers, respectively.
Print a single integer, the number of solutions to the given conditions. If no solutions exist, print 0.
[ "9 5\n", "3 3\n", "5 2\n" ]
[ "4\n", "2\n", "0\n" ]
In the first sample, we have the following solutions: (2, 7), (3, 6), (6, 3), (7, 2). In the second sample, the only solutions are (1, 2) and (2, 1).
0
[ { "input": "9 5", "output": "4" }, { "input": "3 3", "output": "2" }, { "input": "5 2", "output": "0" }, { "input": "6 0", "output": "1" }, { "input": "549755813887 549755813887", "output": "549755813886" }, { "input": "2 0", "output": "1" }, {...
1,665,521,844
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
4
202
46,694,400
def bootstrap(f, stack=[]): def wrappedfunc(*args, **kwargs): if stack: return f(*args, **kwargs) else: to = stack.append(f(*args, **kwargs)) while True: try: to = stack.append(stack[-1].send(to)) except...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two positive integers *a* and *b* have a sum of *s* and a bitwise XOR of *x*. How many possible values are there for the ordered pair (*a*,<=*b*)? Input Specification: The first line of the input contains two integers *s* and *x*...
```python def bootstrap(f, stack=[]): def wrappedfunc(*args, **kwargs): if stack: return f(*args, **kwargs) else: to = stack.append(f(*args, **kwargs)) while True: try: to = stack.append(stack[-1].send(to)) ...
-1
133
A
HQ9+
PROGRAMMING
900
[ "implementation" ]
null
null
HQ9+ is a joke programming language which has only four one-character instructions: - "H" prints "Hello, World!",- "Q" prints the source code of the program itself,- "9" prints the lyrics of "99 Bottles of Beer" song, - "+" increments the value stored in the internal accumulator. Instructions "H" and "Q" are case-s...
The input will consist of a single line *p* which will give a program in HQ9+. String *p* will contain between 1 and 100 characters, inclusive. ASCII-code of each character of *p* will be between 33 (exclamation mark) and 126 (tilde), inclusive.
Output "YES", if executing the program will produce any output, and "NO" otherwise.
[ "Hi!\n", "Codeforces\n" ]
[ "YES\n", "NO\n" ]
In the first case the program contains only one instruction — "H", which prints "Hello, World!". In the second case none of the program characters are language instructions.
500
[ { "input": "Hi!", "output": "YES" }, { "input": "Codeforces", "output": "NO" }, { "input": "a+b=c", "output": "NO" }, { "input": "hq-lowercase", "output": "NO" }, { "input": "Q", "output": "YES" }, { "input": "9", "output": "YES" }, { "inpu...
1,694,936,310
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
154
2,969,600
n = input() for i in range(len(n)): if l == 1: continue if n[i]=='H': l = 1 if n[i]=='Q': l = 1 if n[i]=='9': l = 1 if l == 1: print('YES') else: print('NO')
Title: HQ9+ Time Limit: None seconds Memory Limit: None megabytes Problem Description: HQ9+ is a joke programming language which has only four one-character instructions: - "H" prints "Hello, World!",- "Q" prints the source code of the program itself,- "9" prints the lyrics of "99 Bottles of Beer" song, - "+" in...
```python n = input() for i in range(len(n)): if l == 1: continue if n[i]=='H': l = 1 if n[i]=='Q': l = 1 if n[i]=='9': l = 1 if l == 1: print('YES') else: print('NO') ```
-1
610
B
Vika and Squares
PROGRAMMING
1,300
[ "constructive algorithms", "implementation" ]
null
null
Vika has *n* jars with paints of distinct colors. All the jars are numbered from 1 to *n* and the *i*-th jar contains *a**i* liters of paint of color *i*. Vika also has an infinitely long rectangular piece of paper of width 1, consisting of squares of size 1<=×<=1. Squares are numbered 1, 2, 3 and so on. Vika decided ...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of jars with colors Vika has. The second line of the input contains a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109), where *a**i* is equal to the number of liters of paint in the *i*-th jar, i.e. th...
The only line of the output should contain a single integer — the maximum number of squares that Vika can paint if she follows the rules described above.
[ "5\n2 4 2 3 3\n", "3\n5 5 5\n", "6\n10 10 10 1 10 10\n" ]
[ "12\n", "15\n", "11\n" ]
In the first sample the best strategy is to start painting using color 4. Then the squares will be painted in the following colors (from left to right): 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5. In the second sample Vika can start to paint using any color. In the third sample Vika should start painting using color number 5...
1,000
[ { "input": "5\n2 4 2 3 3", "output": "12" }, { "input": "3\n5 5 5", "output": "15" }, { "input": "6\n10 10 10 1 10 10", "output": "11" }, { "input": "1\n167959139", "output": "167959139" }, { "input": "10\n896619242 805194919 844752453 848347723 816995848 85681361...
1,591,651,480
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
5
2,000
19,046,400
a = int(input()) l = list(map(int,input().split())) b = list() for x in range(a): if l[x] == min(l): b.append(x) diff = 0 k = len(b) for x in range(0,k -1): diff = max(diff , b[x+1] - b[x]-1) diff = max(diff, a - max(b) + min(b) - 1 ) print(diff + a*min(l))
Title: Vika and Squares Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vika has *n* jars with paints of distinct colors. All the jars are numbered from 1 to *n* and the *i*-th jar contains *a**i* liters of paint of color *i*. Vika also has an infinitely long rectangular piece of paper of...
```python a = int(input()) l = list(map(int,input().split())) b = list() for x in range(a): if l[x] == min(l): b.append(x) diff = 0 k = len(b) for x in range(0,k -1): diff = max(diff , b[x+1] - b[x]-1) diff = max(diff, a - max(b) + min(b) - 1 ) print(diff + a*min(l)) ```
0
383
A
Milking cows
PROGRAMMING
1,600
[ "data structures", "greedy" ]
null
null
Iahub helps his grandfather at the farm. Today he must milk the cows. There are *n* cows sitting in a row, numbered from 1 to *n* from left to right. Each cow is either facing to the left or facing to the right. When Iahub milks a cow, all the cows that see the current cow get scared and lose one unit of the quantity o...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=200000). The second line contains *n* integers *a*1, *a*2, ..., *a**n*, where *a**i* is 0 if the cow number *i* is facing left, and 1 if it is facing right.
Print a single integer, the minimum amount of lost milk. Please, do not write 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\n0 0 1 0\n", "5\n1 0 1 0 1\n" ]
[ "1", "3" ]
In the first sample Iahub milks the cows in the following order: cow 3, cow 4, cow 2, cow 1. When he milks cow 3, cow 4 loses 1 unit of milk. After that, no more milk is lost.
500
[ { "input": "4\n0 0 1 0", "output": "1" }, { "input": "5\n1 0 1 0 1", "output": "3" }, { "input": "50\n1 1 0 1 1 1 1 1 1 0 0 1 1 0 1 1 0 0 1 0 1 1 0 1 1 1 1 0 1 0 1 0 1 1 1 0 0 0 0 0 0 0 1 1 0 1 0 0 1 0", "output": "416" }, { "input": "100\n1 1 0 0 1 1 1 1 0 1 1 1 1 1 1 1 0 0 ...
1,557,259,288
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
109
0
x=int(input()) s=[int(n) for n in input().split()] k=min(s.count(1),s.count(0)) l=0 if k==s.count(1): for n in range(x): if s[n]==1: for k in range(n): if s[k]==1: l+=1 s[k]=-5 for k in range(n,x): if s[k]==0: l+=1 s[k]=-5 else: for n in range(x): if s[n]==0: ...
Title: Milking cows Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub helps his grandfather at the farm. Today he must milk the cows. There are *n* cows sitting in a row, numbered from 1 to *n* from left to right. Each cow is either facing to the left or facing to the right. When Iahub...
```python x=int(input()) s=[int(n) for n in input().split()] k=min(s.count(1),s.count(0)) l=0 if k==s.count(1): for n in range(x): if s[n]==1: for k in range(n): if s[k]==1: l+=1 s[k]=-5 for k in range(n,x): if s[k]==0: l+=1 s[k]=-5 else: for n in range(x): if s[...
0
847
H
Load Testing
PROGRAMMING
1,600
[ "greedy" ]
null
null
Polycarp plans to conduct a load testing of its new project Fakebook. He already agreed with his friends that at certain points in time they will send requests to Fakebook. The load testing will last *n* minutes and in the *i*-th minute friends will send *a**i* requests. Polycarp plans to test Fakebook under a special...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the duration of the load testing. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109), where *a**i* is the number of requests from friends in the *i*-th minute of the load testing.
Print the minimum number of additional requests from Polycarp that would make the load strictly increasing in the beginning and then strictly decreasing afterwards.
[ "5\n1 4 3 2 5\n", "5\n1 2 2 2 1\n", "7\n10 20 40 50 70 90 30\n" ]
[ "6\n", "1\n", "0\n" ]
In the first example Polycarp must make two additional requests in the third minute and four additional requests in the fourth minute. So the resulting load will look like: [1, 4, 5, 6, 5]. In total, Polycarp will make 6 additional requests. In the second example it is enough to make one additional request in the thir...
0
[ { "input": "5\n1 4 3 2 5", "output": "6" }, { "input": "5\n1 2 2 2 1", "output": "1" }, { "input": "7\n10 20 40 50 70 90 30", "output": "0" }, { "input": "1\n1", "output": "0" }, { "input": "2\n1 15", "output": "0" }, { "input": "4\n36 54 55 9", "o...
1,508,785,861
2,147,483,647
Python 3
OK
TESTS
39
296
14,131,200
s, l, r = 0, 0, int(input()) - 1 t = list(map(int, input().split())) while 1: while l < r and t[l] < t[l + 1]: l += 1 while l < r and t[r] < t[r - 1]: r -= 1 if l == r: break if t[l] < t[r]: s += t[l] - t[l + 1] + 1 t[l + 1] = t[l] + 1 else: s += t[r] - t[r - 1] + 1...
Title: Load Testing Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp plans to conduct a load testing of its new project Fakebook. He already agreed with his friends that at certain points in time they will send requests to Fakebook. The load testing will last *n* minutes and in the...
```python s, l, r = 0, 0, int(input()) - 1 t = list(map(int, input().split())) while 1: while l < r and t[l] < t[l + 1]: l += 1 while l < r and t[r] < t[r - 1]: r -= 1 if l == r: break if t[l] < t[r]: s += t[l] - t[l + 1] + 1 t[l + 1] = t[l] + 1 else: s += t[r] - t[...
3
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,620,700,997
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
5
216
20,172,800
import sys import bisect def answer(n, name, score): s = set() name_list = [] #names corresponding to score_list[i] score_list = [] #sorted from low to high mx_score = 0 for i in range(n): if score[i] == 0: continue if name[i] in s: name_indx = ...
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 import sys import bisect def answer(n, name, score): s = set() name_list = [] #names corresponding to score_list[i] score_list = [] #sorted from low to high mx_score = 0 for i in range(n): if score[i] == 0: continue if name[i] in s: na...
0
750
A
New Year and Hurry
PROGRAMMING
800
[ "binary search", "brute force", "implementation", "math" ]
null
null
Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem 1 is the easiest and problem *n* is the hardest. Limak knows it will take him 5·*i* minutes to solve th...
The only line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=10, 1<=≤<=*k*<=≤<=240) — the number of the problems in the contest and the number of minutes Limak needs to get to the party from his house.
Print one integer, denoting the maximum possible number of problems Limak can solve so that he could get to the party at midnight or earlier.
[ "3 222\n", "4 190\n", "7 1\n" ]
[ "2\n", "4\n", "7\n" ]
In the first sample, there are 3 problems and Limak needs 222 minutes to get to the party. The three problems require 5, 10 and 15 minutes respectively. Limak can spend 5 + 10 = 15 minutes to solve first two problems. Then, at 20:15 he can leave his house to get to the party at 23:57 (after 222 minutes). In this scenar...
500
[ { "input": "3 222", "output": "2" }, { "input": "4 190", "output": "4" }, { "input": "7 1", "output": "7" }, { "input": "10 135", "output": "6" }, { "input": "10 136", "output": "5" }, { "input": "1 1", "output": "1" }, { "input": "1 240", ...
1,686,686,056
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
31
0
from math import floor, ceil a, b = [int(x)for x in input().split()] b = 240 - b print(min(floor((2*b/5)**0.5), a))
Title: New Year and Hurry Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem...
```python from math import floor, ceil a, b = [int(x)for x in input().split()] b = 240 - b print(min(floor((2*b/5)**0.5), a)) ```
0
727
C
Guess the Array
PROGRAMMING
1,400
[ "constructive algorithms", "interactive", "math" ]
null
null
This is an interactive problem. You should use flush operation after each printed line. For example, in C++ you should use fflush(stdout), in Java you should use System.out.flush(), and in Pascal — flush(output). In this problem you should guess an array *a* which is unknown for you. The only information you have init...
none
none
[ "5\n \n9\n \n7\n \n9\n \n11\n \n6\n " ]
[ "? 1 5\n \n? 2 3\n \n? 4 1\n \n? 5 2\n \n? 3 4\n \n! 4 6 1 5 5" ]
The format of a test to make a hack is: - The first line contains an integer number *n* (3 ≤ *n* ≤ 5000) — the length of the array.- The second line contains *n* numbers *a*<sub class="lower-index">1</sub>, *a*<sub class="lower-index">2</sub>, ..., *a*<sub class="lower-index">*n*</sub> (1 ≤ *a*<sub class="lower-inde...
1,500
[ { "input": "5\n4 6 1 5 5", "output": "5 out of 5" }, { "input": "3\n1 1 1", "output": "3 out of 3" }, { "input": "4\n100 1 100 1", "output": "4 out of 4" }, { "input": "10\n9 5 10 7 4 4 8 5 10 5", "output": "10 out of 10" }, { "input": "3\n1 1 1", "output": "3...
1,596,370,841
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
93
6,963,200
from sys import * n=int(input()) summ=[] arr=[0]*n for i in range(n): if(i==0): print("? 1 2") stdout.flush() inp=int(input()) summ.append(inp) elif(i==1): print("? 1 3") stdout.flush() inp=int(input()) summ.append(inp) elif(i==2...
Title: Guess the Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: This is an interactive problem. You should use flush operation after each printed line. For example, in C++ you should use fflush(stdout), in Java you should use System.out.flush(), and in Pascal — flush(output). In th...
```python from sys import * n=int(input()) summ=[] arr=[0]*n for i in range(n): if(i==0): print("? 1 2") stdout.flush() inp=int(input()) summ.append(inp) elif(i==1): print("? 1 3") stdout.flush() inp=int(input()) summ.append(inp) ...
0
894
A
QAQ
PROGRAMMING
800
[ "brute force", "dp" ]
null
null
"QAQ" is a word to denote an expression of crying. Imagine "Q" as eyes with tears and "A" as a mouth. Now Diamond has given Bort a string consisting of only uppercase English letters of length *n*. There is a great number of "QAQ" in the string (Diamond is so cute!). Bort wants to know how many subsequences "QAQ" are...
The only line contains a string of length *n* (1<=≤<=*n*<=≤<=100). It's guaranteed that the string only contains uppercase English letters.
Print a single integer — the number of subsequences "QAQ" in the string.
[ "QAQAQYSYIOIWIN\n", "QAQQQZZYNOIWIN\n" ]
[ "4\n", "3\n" ]
In the first example there are 4 subsequences "QAQ": "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN".
500
[ { "input": "QAQAQYSYIOIWIN", "output": "4" }, { "input": "QAQQQZZYNOIWIN", "output": "3" }, { "input": "QA", "output": "0" }, { "input": "IAQVAQZLQBQVQFTQQQADAQJA", "output": "24" }, { "input": "QQAAQASGAYAAAAKAKAQIQEAQAIAAIAQQQQQ", "output": "378" }, { ...
1,603,009,927
2,147,483,647
PyPy 3
OK
TESTS
43
140
0
def calcUtil(s,sub): calcUtil.times+=1 n=len(s) M=[[0 for i in range(4)] for j in range(n+1)] for i in range(n+1): M[i][0]=1 for i in range(1,4): for j in range(1,n+1): if s[j-1]==sub[i-1]: M[j][i]=M[j-1][i]+M[j-1][i-1] else: ...
Title: QAQ Time Limit: None seconds Memory Limit: None megabytes Problem Description: "QAQ" is a word to denote an expression of crying. Imagine "Q" as eyes with tears and "A" as a mouth. Now Diamond has given Bort a string consisting of only uppercase English letters of length *n*. There is a great number of "QAQ"...
```python def calcUtil(s,sub): calcUtil.times+=1 n=len(s) M=[[0 for i in range(4)] for j in range(n+1)] for i in range(n+1): M[i][0]=1 for i in range(1,4): for j in range(1,n+1): if s[j-1]==sub[i-1]: M[j][i]=M[j-1][i]+M[j-1][i-1] else...
3
5
C
Longest Regular Bracket Sequence
PROGRAMMING
1,900
[ "constructive algorithms", "data structures", "dp", "greedy", "sortings", "strings" ]
C. Longest Regular Bracket Sequence
2
256
This is yet another problem dealing with regular bracket sequences. We should remind you that a bracket sequence is called regular, if by inserting «+» and «1» into it we can get a correct mathematical expression. For example, sequences «(())()», «()» and «(()(()))» are regular, while «)(», «(()» and «(()))(» are not....
The first line of the input file contains a non-empty string, consisting of «(» and «)» characters. Its length does not exceed 106.
Print the length of the longest substring that is a regular bracket sequence, and the number of such substrings. If there are no such substrings, write the only line containing "0 1".
[ ")((())))(()())\n", "))(\n" ]
[ "6 2\n", "0 1\n" ]
none
0
[ { "input": ")((())))(()())", "output": "6 2" }, { "input": "))(", "output": "0 1" }, { "input": "()(())()", "output": "8 1" }, { "input": "((((()(((", "output": "2 1" }, { "input": "))))()())))", "output": "4 1" }, { "input": "(()())()(())()()())())()(...
1,566,303,557
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
216
0
string = input() index = [0]*len(string) stack = list() match = [("(",")")] i = 0 n = 0 count = 0 max_n = 0 while i < len(string): if string[i] == "(": stack.append(i) else: if stack != [] and (string[stack[-1]], string[i]) in match: index[stack.pop()] = 1 i...
Title: Longest Regular Bracket Sequence Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: This is yet another problem dealing with regular bracket sequences. We should remind you that a bracket sequence is called regular, if by inserting «+» and «1» into it we can get a correct mathematical exp...
```python string = input() index = [0]*len(string) stack = list() match = [("(",")")] i = 0 n = 0 count = 0 max_n = 0 while i < len(string): if string[i] == "(": stack.append(i) else: if stack != [] and (string[stack[-1]], string[i]) in match: index[stack.pop()] = 1 ...
0
620
B
Grandfather Dovlet’s calculator
PROGRAMMING
1,000
[ "implementation" ]
null
null
Once Max found an electronic calculator from his grandfather Dovlet's chest. He noticed that the numbers were written with seven-segment indicators ([https://en.wikipedia.org/wiki/Seven-segment_display](https://en.wikipedia.org/wiki/Seven-segment_display)). Max starts to type all the values from *a* to *b*. After typi...
The only line contains two integers *a*,<=*b* (1<=≤<=*a*<=≤<=*b*<=≤<=106) — the first and the last number typed by Max.
Print the only integer *a* — the total number of printed segments.
[ "1 3\n", "10 15\n" ]
[ "12\n", "39\n" ]
none
0
[ { "input": "1 3", "output": "12" }, { "input": "10 15", "output": "39" }, { "input": "1 100", "output": "928" }, { "input": "100 10000", "output": "188446" }, { "input": "213 221442", "output": "5645356" }, { "input": "1 1000000", "output": "287333...
1,678,995,921
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
3,891,200
#Калькулятор дедушки Довлета prices = [6,2,5,5,4,5,6,3,7,6] a, b = tuple(input().split(" ")) a,b = int(a), int(b) all_prices = [0]*1000000 def get_price(k): if k < 10: all_prices[k] = prices[k] else: all_prices[k] = get_price(k // 10) + prices[k % 10] return all_prices[k] res = 0 for ...
Title: Grandfather Dovlet’s calculator Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once Max found an electronic calculator from his grandfather Dovlet's chest. He noticed that the numbers were written with seven-segment indicators ([https://en.wikipedia.org/wiki/Seven-segment_display](...
```python #Калькулятор дедушки Довлета prices = [6,2,5,5,4,5,6,3,7,6] a, b = tuple(input().split(" ")) a,b = int(a), int(b) all_prices = [0]*1000000 def get_price(k): if k < 10: all_prices[k] = prices[k] else: all_prices[k] = get_price(k // 10) + prices[k % 10] return all_prices[k] re...
0
28
B
pSort
PROGRAMMING
1,600
[ "dfs and similar", "dsu", "graphs" ]
B. pSort
2
256
One day *n* cells of some array decided to play the following game. Initially each cell contains a number which is equal to it's ordinal number (starting from 1). Also each cell determined it's favourite number. On it's move *i*-th cell can exchange it's value with the value of some other *j*-th cell, if |*i*<=-<=*j*|<...
The first line contains positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of cells in the array. The second line contains *n* distinct integers from 1 to *n* — permutation. The last line contains *n* integers from 1 to *n* — favourite numbers of the cells.
If the given state is reachable in the described game, output YES, otherwise NO.
[ "5\n5 4 3 2 1\n1 1 1 1 1\n", "7\n4 3 5 1 2 7 6\n4 6 6 1 6 6 1\n", "7\n4 2 5 1 3 7 6\n4 6 6 1 6 6 1\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
1,000
[ { "input": "5\n5 4 3 2 1\n1 1 1 1 1", "output": "YES" }, { "input": "7\n4 3 5 1 2 7 6\n4 6 6 1 6 6 1", "output": "NO" }, { "input": "7\n4 2 5 1 3 7 6\n4 6 6 1 6 6 1", "output": "YES" }, { "input": "6\n3 2 1 4 6 5\n3 6 1 6 6 1", "output": "YES" }, { "input": "6\n3 ...
1,594,942,759
2,147,483,647
PyPy 3
OK
TESTS
33
280
20,172,800
n = int(input()) per = list(map(int,input().split())) d = [0] + list(map(int,input().split())) p = [i for i in range(n+1)] def find(node): while p[node] != node: p[node] = p[p[node]] node = p[node] return node def union(n1,n2): p1 = find(n1) p2 = find(n2) if p1 != p2:...
Title: pSort Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day *n* cells of some array decided to play the following game. Initially each cell contains a number which is equal to it's ordinal number (starting from 1). Also each cell determined it's favourite number. On it's move *i*-th c...
```python n = int(input()) per = list(map(int,input().split())) d = [0] + list(map(int,input().split())) p = [i for i in range(n+1)] def find(node): while p[node] != node: p[node] = p[p[node]] node = p[node] return node def union(n1,n2): p1 = find(n1) p2 = find(n2) if...
3.892425
918
B
Radio Station
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
As the guys fried the radio station facilities, the school principal gave them tasks as a punishment. Dustin's task was to add comments to nginx configuration for school's website. The school has *n* servers. Each server has a name and an ip (names aren't necessarily unique, but ips are). Dustin knows the ip and name o...
The first line of input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000). The next *n* lines contain the names and ips of the servers. Each line contains a string name, name of the server and a string ip, ip of the server, separated by space (1<=≤<=|*name*|<=≤<=10, *name* only consists of English lowercase...
Print *m* lines, the commands in the configuration file after Dustin did his task.
[ "2 2\nmain 192.168.0.2\nreplica 192.168.0.1\nblock 192.168.0.1;\nproxy 192.168.0.2;\n", "3 5\ngoogle 8.8.8.8\ncodeforces 212.193.33.27\nserver 138.197.64.57\nredirect 138.197.64.57;\nblock 8.8.8.8;\ncf 212.193.33.27;\nunblock 8.8.8.8;\ncheck 138.197.64.57;\n" ]
[ "block 192.168.0.1; #replica\nproxy 192.168.0.2; #main\n", "redirect 138.197.64.57; #server\nblock 8.8.8.8; #google\ncf 212.193.33.27; #codeforces\nunblock 8.8.8.8; #google\ncheck 138.197.64.57; #server\n" ]
none
1,000
[ { "input": "2 2\nmain 192.168.0.2\nreplica 192.168.0.1\nblock 192.168.0.1;\nproxy 192.168.0.2;", "output": "block 192.168.0.1; #replica\nproxy 192.168.0.2; #main" }, { "input": "3 5\ngoogle 8.8.8.8\ncodeforces 212.193.33.27\nserver 138.197.64.57\nredirect 138.197.64.57;\nblock 8.8.8.8;\ncf 212.193.3...
1,683,032,877
2,147,483,647
PyPy 3-64
OK
TESTS
28
155
7,782,400
n, m = map(int, input().split()) dt = dict() for _ in range(n): name, ip = input().split() dt[ip + ';'] = name for _ in range(m): cmd, ip = input().split() print(cmd, ip, '#' + dt[ip])
Title: Radio Station Time Limit: None seconds Memory Limit: None megabytes Problem Description: As the guys fried the radio station facilities, the school principal gave them tasks as a punishment. Dustin's task was to add comments to nginx configuration for school's website. The school has *n* servers. Each server ...
```python n, m = map(int, input().split()) dt = dict() for _ in range(n): name, ip = input().split() dt[ip + ';'] = name for _ in range(m): cmd, ip = input().split() print(cmd, ip, '#' + dt[ip]) ```
3
701
B
Cells Not Under Attack
PROGRAMMING
1,200
[ "data structures", "math" ]
null
null
Vasya has the square chessboard of size *n*<=×<=*n* and *m* rooks. Initially the chessboard is empty. Vasya will consequently put the rooks on the board one after another. The cell of the field is under rook's attack, if there is at least one rook located in the same row or in the same column with this cell. If there ...
The first line of the input contains two integers *n* and *m* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*m*<=≤<=*min*(100<=000,<=*n*2)) — the size of the board and the number of rooks. Each of the next *m* lines contains integers *x**i* and *y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<=*n*) — the number of the row and the number of the col...
Print *m* integer, the *i*-th of them should be equal to the number of cells that are not under attack after first *i* rooks are put.
[ "3 3\n1 1\n3 1\n2 2\n", "5 2\n1 5\n5 1\n", "100000 1\n300 400\n" ]
[ "4 2 0 \n", "16 9 \n", "9999800001 \n" ]
On the picture below show the state of the board after put each of the three rooks. The cells which painted with grey color is not under the attack.
750
[ { "input": "3 3\n1 1\n3 1\n2 2", "output": "4 2 0 " }, { "input": "5 2\n1 5\n5 1", "output": "16 9 " }, { "input": "100000 1\n300 400", "output": "9999800001 " }, { "input": "10 4\n2 8\n1 8\n9 8\n6 9", "output": "81 72 63 48 " }, { "input": "30 30\n3 13\n27 23\n18...
1,639,359,654
2,147,483,647
Python 3
OK
TESTS
40
499
3,891,200
n, m = map(int, input().split()) row = [False] * n column = [False] * n contC = 0 contR = 0 tot = n * n ret = [] for i in range(m): r, c = map(int, input().split()) op1 = op2 = False if(not row[r - 1]): row[r - 1] = True contR += 1 op1 = True if(not column[c - 1]): column[c - 1] = True ...
Title: Cells Not Under Attack Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has the square chessboard of size *n*<=×<=*n* and *m* rooks. Initially the chessboard is empty. Vasya will consequently put the rooks on the board one after another. The cell of the field is under rook's a...
```python n, m = map(int, input().split()) row = [False] * n column = [False] * n contC = 0 contR = 0 tot = n * n ret = [] for i in range(m): r, c = map(int, input().split()) op1 = op2 = False if(not row[r - 1]): row[r - 1] = True contR += 1 op1 = True if(not column[c - 1]): column[c - 1] =...
3
216
B
Forming Teams
PROGRAMMING
1,700
[ "dfs and similar", "implementation" ]
null
null
One day *n* students come to the stadium. They want to play football, and for that they need to split into teams, the teams must have an equal number of people. We know that this group of people has archenemies. Each student has at most two archenemies. Besides, if student *A* is an archenemy to student *B*, then stud...
The first line contains two integers *n* and *m* (2<=≤<=*n*<=≤<=100, 1<=≤<=*m*<=≤<=100) — the number of students and the number of pairs of archenemies correspondingly. Next *m* lines describe enmity between students. Each enmity is described as two numbers *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*, *a**i*<=≠<=...
Print a single integer — the minimum number of students you will have to send to the bench in order to start the game.
[ "5 4\n1 2\n2 4\n5 3\n1 4\n", "6 2\n1 4\n3 4\n", "6 6\n1 2\n2 3\n3 1\n4 5\n5 6\n6 4\n" ]
[ "1", "0", "2" ]
none
1,500
[ { "input": "5 4\n1 2\n2 4\n5 3\n1 4", "output": "1" }, { "input": "6 2\n1 4\n3 4", "output": "0" }, { "input": "6 6\n1 2\n2 3\n3 1\n4 5\n5 6\n6 4", "output": "2" }, { "input": "5 1\n1 2", "output": "1" }, { "input": "8 8\n1 2\n2 3\n3 4\n4 5\n5 6\n6 7\n7 8\n8 1", ...
1,677,920,442
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
248
8,908,800
import sys from typing import Callable, TypeAlias from collections import defaultdict, deque from enum import Enum AlGraph: TypeAlias = dict[int, list[int]] class Flags(Enum): UNVISITED = -1 VISITED = - 2 def flood_fill(graph: AlGraph, u: int, state: list[int], n: int) -> int: queue: dequ...
Title: Forming Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day *n* students come to the stadium. They want to play football, and for that they need to split into teams, the teams must have an equal number of people. We know that this group of people has archenemies. Each stu...
```python import sys from typing import Callable, TypeAlias from collections import defaultdict, deque from enum import Enum AlGraph: TypeAlias = dict[int, list[int]] class Flags(Enum): UNVISITED = -1 VISITED = - 2 def flood_fill(graph: AlGraph, u: int, state: list[int], n: int) -> int: q...
-1
999
C
Alphabetic Removals
PROGRAMMING
1,200
[ "implementation" ]
null
null
You are given a string $s$ consisting of $n$ lowercase Latin letters. Polycarp wants to remove exactly $k$ characters ($k \le n$) from the string $s$. Polycarp uses the following algorithm $k$ times: - if there is at least one letter 'a', remove the leftmost occurrence and stop the algorithm, otherwise go to next ite...
The first line of input contains two integers $n$ and $k$ ($1 \le k \le n \le 4 \cdot 10^5$) — the length of the string and the number of letters Polycarp will remove. The second line contains the string $s$ consisting of $n$ lowercase Latin letters.
Print the string that will be obtained from $s$ after Polycarp removes exactly $k$ letters using the above algorithm $k$ times. If the resulting string is empty, print nothing. It is allowed to print nothing or an empty line (line break).
[ "15 3\ncccaabababaccbc\n", "15 9\ncccaabababaccbc\n", "1 1\nu\n" ]
[ "cccbbabaccbc\n", "cccccc\n", "" ]
none
0
[ { "input": "15 3\ncccaabababaccbc", "output": "cccbbabaccbc" }, { "input": "15 9\ncccaabababaccbc", "output": "cccccc" }, { "input": "5 2\nzyzyx", "output": "zzy" }, { "input": "4 3\nhack", "output": "k" }, { "input": "4 3\nzzzz", "output": "z" }, { "i...
1,617,700,486
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
139
3,584,000
n,k=map(int,input().split()) s=input() def main(s,n,k): d={} if n==k: return for _ in s: if _ not in d: d.update({_:1}) else: d[_]+=1 x=0 i=ord("a") while i<ord("z")+1: if x<=k and chr(i) in d: x+=d[chr(i)] ...
Title: Alphabetic Removals Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string $s$ consisting of $n$ lowercase Latin letters. Polycarp wants to remove exactly $k$ characters ($k \le n$) from the string $s$. Polycarp uses the following algorithm $k$ times: - if there is...
```python n,k=map(int,input().split()) s=input() def main(s,n,k): d={} if n==k: return for _ in s: if _ not in d: d.update({_:1}) else: d[_]+=1 x=0 i=ord("a") while i<ord("z")+1: if x<=k and chr(i) in d: x+=d[chr(...
0
854
A
Fraction
PROGRAMMING
800
[ "brute force", "constructive algorithms", "math" ]
null
null
Petya is a big fan of mathematics, especially its part related to fractions. Recently he learned that a fraction is called proper iff its numerator is smaller than its denominator (*a*<=&lt;<=*b*) and that the fraction is called irreducible if its numerator and its denominator are coprime (they do not have positive co...
In the only line of input there is an integer *n* (3<=≤<=*n*<=≤<=1000), the sum of numerator and denominator of the fraction.
Output two space-separated positive integers *a* and *b*, numerator and denominator of the maximum possible proper irreducible fraction satisfying the given sum.
[ "3\n", "4\n", "12\n" ]
[ "1 2\n", "1 3\n", "5 7\n" ]
none
500
[ { "input": "3", "output": "1 2" }, { "input": "4", "output": "1 3" }, { "input": "12", "output": "5 7" }, { "input": "34", "output": "15 19" }, { "input": "13", "output": "6 7" }, { "input": "11", "output": "5 6" }, { "input": "24", "ou...
1,600,412,359
2,147,483,647
Python 3
OK
TESTS
26
109
0
n = int(input()) if n%4==2: print(n//2-2, n-n//2+2) elif n%4==0: print(n//2-1, n-n//2+1) else: print(n//2, n-n//2)
Title: Fraction Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya is a big fan of mathematics, especially its part related to fractions. Recently he learned that a fraction is called proper iff its numerator is smaller than its denominator (*a*<=&lt;<=*b*) and that the fraction is cal...
```python n = int(input()) if n%4==2: print(n//2-2, n-n//2+2) elif n%4==0: print(n//2-1, n-n//2+1) else: print(n//2, n-n//2) ```
3
794
B
Cutting Carrot
PROGRAMMING
1,200
[ "geometry", "math" ]
null
null
Igor the analyst has adopted *n* little bunnies. As we all know, bunnies love carrots. Thus, Igor has bought a carrot to be shared between his bunnies. Igor wants to treat all the bunnies equally, and thus he wants to cut the carrot into *n* pieces of equal area. Formally, the carrot can be viewed as an isosceles tri...
The first and only line of input contains two space-separated integers, *n* and *h* (2<=≤<=*n*<=≤<=1000, 1<=≤<=*h*<=≤<=105).
The output should contain *n*<=-<=1 real numbers *x*1,<=*x*2,<=...,<=*x**n*<=-<=1. The number *x**i* denotes that the *i*-th cut must be made *x**i* units away from the apex of the carrot. In addition, 0<=&lt;<=*x*1<=&lt;<=*x*2<=&lt;<=...<=&lt;<=*x**n*<=-<=1<=&lt;<=*h* must hold. Your output will be considered correc...
[ "3 2\n", "2 100000\n" ]
[ "1.154700538379 1.632993161855\n", "70710.678118654752\n" ]
Definition of isosceles triangle: [https://en.wikipedia.org/wiki/Isosceles_triangle](https://en.wikipedia.org/wiki/Isosceles_triangle).
1,000
[ { "input": "3 2", "output": "1.154700538379 1.632993161855" }, { "input": "2 100000", "output": "70710.678118654752" }, { "input": "1000 100000", "output": "3162.277660168379 4472.135954999579 5477.225575051661 6324.555320336759 7071.067811865475 7745.966692414834 8366.600265340755 8...
1,585,565,124
2,147,483,647
Python 3
OK
TESTS
31
124
307,200
# area of similar triangles is proportional to the squares of the corresponding sides # therefore, areas are proportional to squares of heights, h2=sqrt(A2/A1)xh1=sqrt((A1/n)xi/A1)xh1=sqrt(i/n)xh1 import math n,h=map(int, input().split()) for i in range(1,n): print(math.sqrt(i/n)*h)
Title: Cutting Carrot Time Limit: None seconds Memory Limit: None megabytes Problem Description: Igor the analyst has adopted *n* little bunnies. As we all know, bunnies love carrots. Thus, Igor has bought a carrot to be shared between his bunnies. Igor wants to treat all the bunnies equally, and thus he wants to cu...
```python # area of similar triangles is proportional to the squares of the corresponding sides # therefore, areas are proportional to squares of heights, h2=sqrt(A2/A1)xh1=sqrt((A1/n)xi/A1)xh1=sqrt(i/n)xh1 import math n,h=map(int, input().split()) for i in range(1,n): print(math.sqrt(i/n)*h) ```
3
368
B
Sereja and Suffixes
PROGRAMMING
1,100
[ "data structures", "dp" ]
null
null
Sereja has an array *a*, consisting of *n* integers *a*1, *a*2, ..., *a**n*. The boy cannot sit and do nothing, he decided to study an array. Sereja took a piece of paper and wrote out *m* integers *l*1,<=*l*2,<=...,<=*l**m* (1<=≤<=*l**i*<=≤<=*n*). For each number *l**i* he wants to know how many distinct numbers are s...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=105). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105) — the array elements. Next *m* lines contain integers *l*1,<=*l*2,<=...,<=*l**m*. The *i*-th line contains integer *l**i* (1<=≤<=*l**i*<=≤<=*n*).
Print *m* lines — on the *i*-th line print the answer to the number *l**i*.
[ "10 10\n1 2 3 4 1 2 3 4 100000 99999\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" ]
[ "6\n6\n6\n6\n6\n5\n4\n3\n2\n1\n" ]
none
1,000
[ { "input": "10 10\n1 2 3 4 1 2 3 4 100000 99999\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10", "output": "6\n6\n6\n6\n6\n5\n4\n3\n2\n1" }, { "input": "8 3\n8 6 4 3 4 2 4 8\n6\n4\n2", "output": "3\n4\n5" }, { "input": "7 10\n1 3 8 6 2 2 7\n4\n2\n6\n3\n4\n4\n6\n2\n7\n4", "output": "3\n5\n2\n4\n3\n3\...
1,698,140,717
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
10
1,000
10,752,000
n,m = map(int,input().split()) num_lst = list(map(int,input().split())) num_lst.reverse() dp = [0]*n new_lst = [num_lst[0]] dp[0] = 1 for i in range(1,n): if num_lst[i] not in set(new_lst): dp[i] = dp[i-1] + 1 new_lst.append(num_lst[i]) else: dp[i] = dp[i-1] result = [] for ...
Title: Sereja and Suffixes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja has an array *a*, consisting of *n* integers *a*1, *a*2, ..., *a**n*. The boy cannot sit and do nothing, he decided to study an array. Sereja took a piece of paper and wrote out *m* integers *l*1,<=*l*2,<=......
```python n,m = map(int,input().split()) num_lst = list(map(int,input().split())) num_lst.reverse() dp = [0]*n new_lst = [num_lst[0]] dp[0] = 1 for i in range(1,n): if num_lst[i] not in set(new_lst): dp[i] = dp[i-1] + 1 new_lst.append(num_lst[i]) else: dp[i] = dp[i-1] result ...
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,696,241,710
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
2
2,000
716,800
k=int(input()) l=int(input()) m=int(input()) n=int(input()) d=int(input()) dra=[] for i in range(d): dra=dra+list("0") for i in range(d): if ((i%k==0)or(i%l==0)or(i%m==0)or(i%n==0)): dra[i]="1" print(dra.count("1"))
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()) dra=[] for i in range(d): dra=dra+list("0") for i in range(d): if ((i%k==0)or(i%l==0)or(i%m==0)or(i%n==0)): dra[i]="1" print(dra.count("1")) ```
0
108
A
Palindromic Times
PROGRAMMING
1,000
[ "implementation", "strings" ]
A. Palindromic Times
2
256
Tattah is asleep if and only if Tattah is attending a lecture. This is a well-known formula among Tattah's colleagues. On a Wednesday afternoon, Tattah was attending Professor HH's lecture. At 12:21, right before falling asleep, he was staring at the digital watch around Saher's wrist. He noticed that the digits on th...
The first and only line of the input starts with a string with the format "HH:MM" where "HH" is from "00" to "23" and "MM" is from "00" to "59". Both "HH" and "MM" have exactly two digits.
Print the palindromic time of day that comes soonest after the time given in the input. If the input time is palindromic, output the soonest palindromic time after the input time.
[ "12:21\n", "23:59\n" ]
[ "13:31\n", "00:00\n" ]
none
500
[ { "input": "12:21", "output": "13:31" }, { "input": "23:59", "output": "00:00" }, { "input": "15:51", "output": "20:02" }, { "input": "10:44", "output": "11:11" }, { "input": "04:02", "output": "04:40" }, { "input": "02:11", "output": "02:20" }, ...
1,556,206,477
2,147,483,647
Python 3
OK
TESTS
36
248
0
a, b = map(int, input().split(':')) if a == 23 and b > 31: print('00:00'); exit() for i in range(b+1, 60): if 11*(a//10+a%10) == a + i: i = '0'*(a<10) + str(a) print(i+':'+i[::-1]) exit() for i in range(a+1, 24): for j in range(60): if 11*(i//10+i%10) == i + j: ...
Title: Palindromic Times Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Tattah is asleep if and only if Tattah is attending a lecture. This is a well-known formula among Tattah's colleagues. On a Wednesday afternoon, Tattah was attending Professor HH's lecture. At 12:21, right before falling...
```python a, b = map(int, input().split(':')) if a == 23 and b > 31: print('00:00'); exit() for i in range(b+1, 60): if 11*(a//10+a%10) == a + i: i = '0'*(a<10) + str(a) print(i+':'+i[::-1]) exit() for i in range(a+1, 24): for j in range(60): if 11*(i//10+i%10) == i + j:...
3.938
388
B
Fox and Minimal path
PROGRAMMING
1,900
[ "bitmasks", "constructive algorithms", "graphs", "implementation", "math" ]
null
null
Fox Ciel wants to write a task for a programming contest. The task is: "You are given a simple undirected graph with *n* vertexes. Each its edge has unit length. You should calculate the number of shortest paths between vertex 1 and vertex 2." Same with some writers, she wants to make an example with some certain outp...
The first line contains a single integer *k* (1<=≤<=*k*<=≤<=109).
You should output a graph *G* with *n* vertexes (2<=≤<=*n*<=≤<=1000). There must be exactly *k* shortest paths between vertex 1 and vertex 2 of the graph. The first line must contain an integer *n*. Then adjacency matrix *G* with *n* rows and *n* columns must follow. Each element of the matrix must be 'N' or 'Y'. If *...
[ "2", "9", "1" ]
[ "4\nNNYY\nNNYY\nYYNN\nYYNN", "8\nNNYYYNNN\nNNNNNYYY\nYNNNNYYY\nYNNNNYYY\nYNNNNYYY\nNYYYYNNN\nNYYYYNNN\nNYYYYNNN", "2\nNY\nYN" ]
In first example, there are 2 shortest paths: 1-3-2 and 1-4-2. In second example, there are 9 shortest paths: 1-3-6-2, 1-3-7-2, 1-3-8-2, 1-4-6-2, 1-4-7-2, 1-4-8-2, 1-5-6-2, 1-5-7-2, 1-5-8-2.
1,000
[ { "input": "2", "output": "498\nNNYYNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNN...
1,535,295,074
2,147,483,647
Python 3
OK
TESTS
47
139
102,400
n, m, cnt = int(input()), 148, 0 ans = [['N'] * m for i in range(m)] def edge(i, j): ans[i][j] = ans[j][i] = 'Y' def node(*adj): global cnt i = cnt cnt += 1 for j in adj: edge(i, j) return i start, end, choice = node(), node(), node() if n&1: edge(choice, end) for i in range(1, 30...
Title: Fox and Minimal path Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel wants to write a task for a programming contest. The task is: "You are given a simple undirected graph with *n* vertexes. Each its edge has unit length. You should calculate the number of shortest paths be...
```python n, m, cnt = int(input()), 148, 0 ans = [['N'] * m for i in range(m)] def edge(i, j): ans[i][j] = ans[j][i] = 'Y' def node(*adj): global cnt i = cnt cnt += 1 for j in adj: edge(i, j) return i start, end, choice = node(), node(), node() if n&1: edge(choice, end) for i in r...
3
670
D1
Magic Powder - 1
PROGRAMMING
1,400
[ "binary search", "brute force", "implementation" ]
null
null
This problem is given in two versions that differ only by constraints. If you can solve this problem in large constraints, then you can just write a single solution to the both versions. If you find the problem too difficult in large constraints, you can write solution to the simplified version only. Waking up in the ...
The first line of the input contains two positive integers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=1000) — the number of ingredients and the number of grams of the magic powder. The second line contains the sequence *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1000), where the *i*-th number is equal to the number of grams of...
Print the maximum number of cookies, which Apollinaria will be able to bake using the ingredients that she has and the magic powder.
[ "3 1\n2 1 4\n11 3 16\n", "4 3\n4 3 5 6\n11 12 14 20\n" ]
[ "4\n", "3\n" ]
In the first sample it is profitably for Apollinaria to make the existing 1 gram of her magic powder to ingredient with the index 2, then Apollinaria will be able to bake 4 cookies. In the second sample Apollinaria should turn 1 gram of magic powder to ingredient with the index 1 and 1 gram of magic powder to ingredie...
1,000
[ { "input": "3 1\n2 1 4\n11 3 16", "output": "4" }, { "input": "4 3\n4 3 5 6\n11 12 14 20", "output": "3" }, { "input": "10 926\n5 6 8 1 2 5 1 8 4 4\n351 739 998 725 953 970 906 691 707 1000", "output": "137" }, { "input": "20 925\n7 3 1 2 1 3 1 3 1 2 3 1 5 8 1 3 7 3 4 2\n837 ...
1,667,179,820
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
0
n, k = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) left, right = 0, 1001 res = -1 total = sum(b) while left <= right: mid = (left + right) // 2 cur_sum = 0 for i in range(n): cur_sum += mid * a[i] if cur_sum <= total + k: ...
Title: Magic Powder - 1 Time Limit: None seconds Memory Limit: None megabytes Problem Description: This problem is given in two versions that differ only by constraints. If you can solve this problem in large constraints, then you can just write a single solution to the both versions. If you find the problem too dif...
```python n, k = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) left, right = 0, 1001 res = -1 total = sum(b) while left <= right: mid = (left + right) // 2 cur_sum = 0 for i in range(n): cur_sum += mid * a[i] if cur_sum <= total ...
0
427
A
Police Recruits
PROGRAMMING
800
[ "implementation" ]
null
null
The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of the police force can investigate only one crime during his/her lifetime. If there is no police offi...
The first line of input will contain an integer *n* (1<=≤<=*n*<=≤<=105), the number of events. The next line will contain *n* space-separated integers. If the integer is -1 then it means a crime has occurred. Otherwise, the integer will be positive, the number of officers recruited together at that time. No more than ...
Print a single integer, the number of crimes which will go untreated.
[ "3\n-1 -1 1\n", "8\n1 -1 1 -1 -1 1 1 1\n", "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1\n" ]
[ "2\n", "1\n", "8\n" ]
Lets consider the second example: 1. Firstly one person is hired. 1. Then crime appears, the last hired person will investigate this crime. 1. One more person is hired. 1. One more crime appears, the last hired person will investigate this crime. 1. Crime appears. There is no free policeman at the time, so this c...
500
[ { "input": "3\n-1 -1 1", "output": "2" }, { "input": "8\n1 -1 1 -1 -1 1 1 1", "output": "1" }, { "input": "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1", "output": "8" }, { "input": "7\n-1 -1 1 1 -1 -1 1", "output": "2" }, { "input": "21\n-1 -1 -1 -1 -1 3 2 -1 6 -1 -1 2 1 ...
1,676,476,535
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
46
1,000
7,577,600
num = int(input()) koko = [int(i) for i in input().split()] for i in range(num): if koko[i] >= 1: for j in range(i, num): if koko[i] <= 0: break elif koko[j] <= -1: koko[i] += koko[j] koko[j] = 0 print(koko.count(-1))
Title: Police Recruits Time Limit: None seconds Memory Limit: None megabytes Problem Description: The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of...
```python num = int(input()) koko = [int(i) for i in input().split()] for i in range(num): if koko[i] >= 1: for j in range(i, num): if koko[i] <= 0: break elif koko[j] <= -1: koko[i] += koko[j] koko[j] = 0 print(koko.count(-1)...
0
281
A
Word Capitalization
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word. Note, that during capitalization all the letters except the first one remains unchanged.
A single line contains a non-empty word. This word consists of lowercase and uppercase English letters. The length of the word will not exceed 103.
Output the given word after capitalization.
[ "ApPLe\n", "konjac\n" ]
[ "ApPLe\n", "Konjac\n" ]
none
500
[ { "input": "ApPLe", "output": "ApPLe" }, { "input": "konjac", "output": "Konjac" }, { "input": "a", "output": "A" }, { "input": "A", "output": "A" }, { "input": "z", "output": "Z" }, { "input": "ABACABA", "output": "ABACABA" }, { "input": "...
1,696,217,178
2,147,483,647
Python 3
OK
TESTS
25
92
0
#王铭健,工学院 2300011118 str_list = list(input()) str_list[0] = str_list[0].upper() for i in str_list: print(i, end="")
Title: Word Capitalization Time Limit: None seconds Memory Limit: None megabytes Problem Description: Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word. Note, that during capitalization all the letters except the first one remains unchanged. Input...
```python #王铭健,工学院 2300011118 str_list = list(input()) str_list[0] = str_list[0].upper() for i in str_list: print(i, end="") ```
3
124
A
The number of positions
PROGRAMMING
1,000
[ "math" ]
null
null
Petr stands in line of *n* people, but he doesn't know exactly which position he occupies. He can say that there are no less than *a* people standing in front of him and no more than *b* people standing behind him. Find the number of different positions Petr can occupy.
The only line contains three integers *n*, *a* and *b* (0<=≤<=*a*,<=*b*<=&lt;<=*n*<=≤<=100).
Print the single number — the number of the sought positions.
[ "3 1 1\n", "5 2 3\n" ]
[ "2\n", "3\n" ]
The possible positions in the first sample are: 2 and 3 (if we number the positions starting with 1). In the second sample they are 3, 4 and 5.
500
[ { "input": "3 1 1", "output": "2" }, { "input": "5 2 3", "output": "3" }, { "input": "5 4 0", "output": "1" }, { "input": "6 5 5", "output": "1" }, { "input": "9 4 3", "output": "4" }, { "input": "11 4 6", "output": "7" }, { "input": "13 8 ...
1,659,894,436
2,147,483,647
PyPy 3
OK
TESTS
50
186
0
s = input() x = s.split(' ') n, a, b = int(x[0]), int(x[1]), int(x[2]) print(n-a if n-a < b+1 else b+1)
Title: The number of positions Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petr stands in line of *n* people, but he doesn't know exactly which position he occupies. He can say that there are no less than *a* people standing in front of him and no more than *b* people standing behind h...
```python s = input() x = s.split(' ') n, a, b = int(x[0]), int(x[1]), int(x[2]) print(n-a if n-a < b+1 else b+1) ```
3
706
A
Beru-taxi
PROGRAMMING
900
[ "brute force", "geometry", "implementation" ]
null
null
Vasiliy lives at point (*a*,<=*b*) of the coordinate plane. He is hurrying up to work so he wants to get out of his house as soon as possible. New app suggested *n* available Beru-taxi nearby. The *i*-th taxi is located at point (*x**i*,<=*y**i*) and moves with a speed *v**i*. Consider that each of *n* drivers will m...
The first line of the input contains two integers *a* and *b* (<=-<=100<=≤<=*a*,<=*b*<=≤<=100) — coordinates of Vasiliy's home. The second line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of available Beru-taxi cars nearby. The *i*-th of the following *n* lines contains three integers *x**i*, *y*...
Print a single real value — the minimum time Vasiliy needs to get in any of the Beru-taxi cars. You 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 checker program will consider your answ...
[ "0 0\n2\n2 0 1\n0 2 2\n", "1 3\n3\n3 3 2\n-2 3 6\n-2 7 10\n" ]
[ "1.00000000000000000000", "0.50000000000000000000" ]
In the first sample, first taxi will get to Vasiliy in time 2, and second will do this in time 1, therefore 1 is the answer. In the second sample, cars 2 and 3 will arrive simultaneously.
500
[ { "input": "0 0\n2\n2 0 1\n0 2 2", "output": "1.00000000000000000000" }, { "input": "1 3\n3\n3 3 2\n-2 3 6\n-2 7 10", "output": "0.50000000000000000000" }, { "input": "2 2\n10\n8 10 1\n14 18 5\n2 2 1\n4 2 2\n5 2 1\n0 2 1\n2 10 4\n10 2 4\n14 18 20\n14 18 10", "output": "0.000000000000...
1,692,028,790
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
import math def time(x, y, v): return math.sqrt(x**2 + y**2) / v a, b = map(int, input().split()) n = int(input()) min_time = float('inf') for _ in range(n): xi, yi, vi = map(int, input().split()) time = time(a - xi, b - yi, vi) min_time = min(min_time, time) print("{:.15f}".format(min_time)) ...
Title: Beru-taxi Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasiliy lives at point (*a*,<=*b*) of the coordinate plane. He is hurrying up to work so he wants to get out of his house as soon as possible. New app suggested *n* available Beru-taxi nearby. The *i*-th taxi is located at po...
```python import math def time(x, y, v): return math.sqrt(x**2 + y**2) / v a, b = map(int, input().split()) n = int(input()) min_time = float('inf') for _ in range(n): xi, yi, vi = map(int, input().split()) time = time(a - xi, b - yi, vi) min_time = min(min_time, time) print("{:.15f}".format(m...
-1
44
A
Indian Summer
PROGRAMMING
900
[ "implementation" ]
A. Indian Summer
2
256
Indian summer is such a beautiful time of the year! A girl named Alyona is walking in the forest and picking a bouquet from fallen leaves. Alyona is very choosy — she doesn't take a leaf if it matches the color and the species of the tree of one of the leaves she already has. Find out how many leaves Alyona has picked.
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of leaves Alyona has found. The next *n* lines contain the leaves' descriptions. Each leaf is characterized by the species of the tree it has fallen from and by the color. The species of the trees and colors are given in names, consisting of no mor...
Output the single number — the number of Alyona's leaves.
[ "5\nbirch yellow\nmaple red\nbirch yellow\nmaple yellow\nmaple green\n", "3\noak yellow\noak yellow\noak yellow\n" ]
[ "4\n", "1\n" ]
none
0
[ { "input": "5\nbirch yellow\nmaple red\nbirch yellow\nmaple yellow\nmaple green", "output": "4" }, { "input": "3\noak yellow\noak yellow\noak yellow", "output": "1" }, { "input": "5\nxbnbkzn hp\nkaqkl vrgzbvqstu\nj aqidx\nhos gyul\nwefxmh tygpluae", "output": "5" }, { "input"...
1,661,350,288
2,147,483,647
Python 3
OK
TESTS
29
92
0
a=[] b=[] n=int(input("")) for y in range(n): z=input("") a.append(z) # print(a) for tt in a: if tt not in b: b.append(tt) else: continue print(len(b))
Title: Indian Summer Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Indian summer is such a beautiful time of the year! A girl named Alyona is walking in the forest and picking a bouquet from fallen leaves. Alyona is very choosy — she doesn't take a leaf if it matches the color and the specie...
```python a=[] b=[] n=int(input("")) for y in range(n): z=input("") a.append(z) # print(a) for tt in a: if tt not in b: b.append(tt) else: continue print(len(b)) ```
3.977
343
A
Rational Resistance
PROGRAMMING
1,600
[ "math", "number theory" ]
null
null
Mad scientist Mike is building a time machine in his spare time. To finish the work, he needs a resistor with a certain resistance value. However, all Mike has is lots of identical resistors with unit resistance *R*0<==<=1. Elements with other resistance can be constructed from these resistors. In this problem, we wil...
The single input line contains two space-separated integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=1018). It is guaranteed that the fraction is irreducible. It is guaranteed that a solution always exists.
Print a single number — the answer to the problem. Please do not use the %lld specifier to read or write 64-bit integers in С++. It is recommended to use the cin, cout streams or the %I64d specifier.
[ "1 1\n", "3 2\n", "199 200\n" ]
[ "1\n", "3\n", "200\n" ]
In the first sample, one resistor is enough. In the second sample one can connect the resistors in parallel, take the resulting element and connect it to a third resistor consecutively. Then, we get an element with resistance <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/5305da389756aab6...
500
[ { "input": "1 1", "output": "1" }, { "input": "3 2", "output": "3" }, { "input": "199 200", "output": "200" }, { "input": "1 1000000000000000000", "output": "1000000000000000000" }, { "input": "3 1", "output": "3" }, { "input": "21 8", "output": "7...
1,643,956,549
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
5
156
0
a,b=[int(i) for i in input().split(' ')] series=int((a-1)/b) parallel=b print(series+parallel)
Title: Rational Resistance Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mad scientist Mike is building a time machine in his spare time. To finish the work, he needs a resistor with a certain resistance value. However, all Mike has is lots of identical resistors with unit resistance *R...
```python a,b=[int(i) for i in input().split(' ')] series=int((a-1)/b) parallel=b print(series+parallel) ```
0
257
D
Sum
PROGRAMMING
1,900
[ "greedy", "math" ]
null
null
Vasya has found a piece of paper with an array written on it. The array consists of *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Vasya noticed that the following condition holds for the array *a**i*<=≤<=*a**i*<=+<=1<=≤<=2·*a**i* for any positive integer *i* (*i*<=&lt;<=*n*). Vasya wants to add either a "+" or a "-" before...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the size of the array. The second line contains space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109) — the original array. It is guaranteed that the condition *a**i*<=≤<=*a**i*<=+<=1<=≤<=2·*a**i* fulfills for any positive integer *i* (*i*...
In a single line print the sequence of *n* characters "+" and "-", where the *i*-th character is the sign that is placed in front of number *a**i*. The value of the resulting expression *s* must fit into the limits 0<=≤<=*s*<=≤<=*a*1. If there are multiple solutions, you are allowed to print any of them.
[ "4\n1 2 3 5\n", "3\n3 3 5\n" ]
[ "+++-", "++-" ]
none
2,000
[ { "input": "4\n1 2 3 5", "output": "+++-" }, { "input": "3\n3 3 5", "output": "++-" }, { "input": "4\n2 4 5 6", "output": "-++-" }, { "input": "6\n3 5 10 11 12 20", "output": "++-++-" }, { "input": "10\n10 14 17 22 43 72 74 84 88 93", "output": "++---++--+" ...
1,689,251,556
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
124
0
print("_RANDOM_GUESS_1689251556.0372531")# 1689251556.037299
Title: Sum Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has found a piece of paper with an array written on it. The array consists of *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Vasya noticed that the following condition holds for the array *a**i*<=≤<=*a**i*<=+<=1<=≤<=2·*a**i* for an...
```python print("_RANDOM_GUESS_1689251556.0372531")# 1689251556.037299 ```
0
474
F
Ant colony
PROGRAMMING
2,100
[ "data structures", "math", "number theory" ]
null
null
Mole is hungry again. He found one ant colony, consisting of *n* ants, ordered in a row. Each ant *i* (1<=≤<=*i*<=≤<=*n*) has a strength *s**i*. In order to make his dinner more interesting, Mole organizes a version of «Hunger Games» for the ants. He chooses two numbers *l* and *r* (1<=≤<=*l*<=≤<=*r*<=≤<=*n*) and each...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=105), the size of the ant colony. The second line contains *n* integers *s*1,<=*s*2,<=...,<=*s**n* (1<=≤<=*s**i*<=≤<=109), the strengths of the ants. The third line contains one integer *t* (1<=≤<=*t*<=≤<=105), the number of test cases. Each of the next *t* l...
Print to the standard output *t* lines. The *i*-th line contains number of ants that Mole eats from the segment [*l**i*,<=*r**i*].
[ "5\n1 3 2 4 2\n4\n1 5\n2 5\n3 5\n4 5\n" ]
[ "4\n4\n1\n1\n" ]
In the first test battle points for each ant are *v* = [4, 0, 2, 0, 2], so ant number 1 is freed. Mole eats the ants 2, 3, 4, 5. In the second test case battle points are *v* = [0, 2, 0, 2], so no ant is freed and all of them are eaten by Mole. In the third test case battle points are *v* = [2, 0, 2], so ants number ...
3,000
[ { "input": "5\n1 3 2 4 2\n4\n1 5\n2 5\n3 5\n4 5", "output": "4\n4\n1\n1" } ]
1,698,413,869
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
n=int(input()) L=[int(x) for x in input().split()] t=int(input()) for i in range (t): T=[int(x) for x in input().split()] L1=L[T[0]-1:T[1]] V=[0 for x in range(len(L1))] for j in range(len(L1)-1): for k in range(j+1,len(L1)): if L1[j]%L1[k]==0: V[k]=V[k]+1 ...
Title: Ant colony Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mole is hungry again. He found one ant colony, consisting of *n* ants, ordered in a row. Each ant *i* (1<=≤<=*i*<=≤<=*n*) has a strength *s**i*. In order to make his dinner more interesting, Mole organizes a version of «Hun...
```python n=int(input()) L=[int(x) for x in input().split()] t=int(input()) for i in range (t): T=[int(x) for x in input().split()] L1=L[T[0]-1:T[1]] V=[0 for x in range(len(L1))] for j in range(len(L1)-1): for k in range(j+1,len(L1)): if L1[j]%L1[k]==0: V[k...
0
990
A
Commentary Boxes
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Berland Football Cup starts really soon! Commentators from all over the world come to the event. Organizers have already built $n$ commentary boxes. $m$ regional delegations will come to the Cup. Every delegation should get the same number of the commentary boxes. If any box is left unoccupied then the delegations wil...
The only line contains four integer numbers $n$, $m$, $a$ and $b$ ($1 \le n, m \le 10^{12}$, $1 \le a, b \le 100$), where $n$ is the initial number of the commentary boxes, $m$ is the number of delegations to come, $a$ is the fee to build a box and $b$ is the fee to demolish a box.
Output the minimal amount of burles organizers should pay to satisfy all the delegations (i.e. to make the number of the boxes be divisible by $m$). It is allowed that the final number of the boxes is equal to $0$.
[ "9 7 3 8\n", "2 7 3 7\n", "30 6 17 19\n" ]
[ "15\n", "14\n", "0\n" ]
In the first example organizers can build $5$ boxes to make the total of $14$ paying $3$ burles for the each of them. In the second example organizers can demolish $2$ boxes to make the total of $0$ paying $7$ burles for the each of them. In the third example organizers are already able to distribute all the boxes eq...
0
[ { "input": "9 7 3 8", "output": "15" }, { "input": "2 7 3 7", "output": "14" }, { "input": "30 6 17 19", "output": "0" }, { "input": "500000000001 1000000000000 100 100", "output": "49999999999900" }, { "input": "1000000000000 750000000001 10 100", "output": "...
1,528,649,596
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
n = int(input()) m = int(input()) a = int(input()) d = int(input()) div = n%m; left = m-div; if(div>0): print(min(left*a,div*d)) elif(div == 0): print(div)
Title: Commentary Boxes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Berland Football Cup starts really soon! Commentators from all over the world come to the event. Organizers have already built $n$ commentary boxes. $m$ regional delegations will come to the Cup. Every delegation shou...
```python n = int(input()) m = int(input()) a = int(input()) d = int(input()) div = n%m; left = m-div; if(div>0): print(min(left*a,div*d)) elif(div == 0): print(div) ```
-1
313
A
Ilya and Bank Account
PROGRAMMING
900
[ "implementation", "number theory" ]
null
null
Ilya is a very clever lion, he lives in an unusual city ZooVille. In this city all the animals have their rights and obligations. Moreover, they even have their own bank accounts. The state of a bank account is an integer. The state of a bank account can be a negative number. This means that the owner of the account ow...
The single line contains integer *n* (10<=≤<=|*n*|<=≤<=109) — the state of Ilya's bank account.
In a single line print an integer — the maximum state of the bank account that Ilya can get.
[ "2230\n", "-10\n", "-100003\n" ]
[ "2230\n", "0\n", "-10000\n" ]
In the first test sample Ilya doesn't profit from using the present. In the second test sample you can delete digit 1 and get the state of the account equal to 0.
500
[ { "input": "2230", "output": "2230" }, { "input": "-10", "output": "0" }, { "input": "-100003", "output": "-10000" }, { "input": "544883178", "output": "544883178" }, { "input": "-847251738", "output": "-84725173" }, { "input": "423654797", "output...
1,689,262,887
2,147,483,647
Python 3
OK
TESTS
47
62
0
balance = input() balance_int = int(balance) if balance_int > 0: print(balance) else: # check which digit (last or pre-last is the largest and remove it) if int(balance[-1]) > int(balance[-2]): output = balance[:-1] else: output = balance[:-2] + balance[-1] ...
Title: Ilya and Bank Account Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ilya is a very clever lion, he lives in an unusual city ZooVille. In this city all the animals have their rights and obligations. Moreover, they even have their own bank accounts. The state of a bank account is an...
```python balance = input() balance_int = int(balance) if balance_int > 0: print(balance) else: # check which digit (last or pre-last is the largest and remove it) if int(balance[-1]) > int(balance[-2]): output = balance[:-1] else: output = balance[:-2] + balance...
3
238
C
World Eater Brothers
PROGRAMMING
2,100
[ "dfs and similar", "dp", "greedy", "trees" ]
null
null
You must have heard of the two brothers dreaming of ruling the world. With all their previous plans failed, this time they decided to cooperate with each other in order to rule the world. As you know there are *n* countries in the world. These countries are connected by *n*<=-<=1 directed roads. If you don't consider...
The first line of input contains an integer *n* (1<=≤<=*n*<=≤<=3000). Each of the next *n*<=-<=1 lines contains two space-separated integers *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*; *a**i*<=≠<=*b**i*) saying there is a road from country *a**i* to country *b**i*. Consider that countries are numbered from 1 to ...
In the only line of output print the minimum number of roads that their direction should be changed so that the brothers will be able to rule the world.
[ "4\n2 1\n3 1\n4 1\n", "5\n2 1\n2 3\n4 3\n4 5\n" ]
[ "1\n", "0\n" ]
none
1,500
[]
1,667,285,266
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
3
340
10,342,400
R,G=lambda:map(int,input().split()),range;n,=R();z=n;g=[[]for _ in G(n+1)] for _ in G(n-1):u,v=R();g[u]+=[[v,0]];g[v]+=[[u,1]] def f(u,pre,subIn): global In,mxSubIn;mxSubIn=max(mxSubIn,subIn) for v,isIn in g[u]: if v!=pre:f(v,u,max(0,subIn+[-1,1][isIn>0]));In+=isIn for u in G(1,n+1):In=mxSubIn=0;f(u,0,0);...
Title: World Eater Brothers Time Limit: None seconds Memory Limit: None megabytes Problem Description: You must have heard of the two brothers dreaming of ruling the world. With all their previous plans failed, this time they decided to cooperate with each other in order to rule the world. As you know there are *n...
```python R,G=lambda:map(int,input().split()),range;n,=R();z=n;g=[[]for _ in G(n+1)] for _ in G(n-1):u,v=R();g[u]+=[[v,0]];g[v]+=[[u,1]] def f(u,pre,subIn): global In,mxSubIn;mxSubIn=max(mxSubIn,subIn) for v,isIn in g[u]: if v!=pre:f(v,u,max(0,subIn+[-1,1][isIn>0]));In+=isIn for u in G(1,n+1):In=mxSubIn=0...
-1
703
A
Mishka and Game
PROGRAMMING
800
[ "implementation" ]
null
null
Mishka is a little polar bear. As known, little bears loves spending their free time playing dice for chocolates. Once in a wonderful sunny morning, walking around blocks of ice, Mishka met her friend Chris, and they started playing the game. Rules of the game are very simple: at first number of rounds *n* is defined....
The first line of the input contains single integer *n* *n* (1<=≤<=*n*<=≤<=100) — the number of game rounds. The next *n* lines contains rounds description. *i*-th of them contains pair of integers *m**i* and *c**i* (1<=≤<=*m**i*,<=<=*c**i*<=≤<=6) — values on dice upper face after Mishka's and Chris' throws in *i*-th ...
If Mishka is the winner of the game, print "Mishka" (without quotes) in the only line. If Chris is the winner of the game, print "Chris" (without quotes) in the only line. If the result of the game is draw, print "Friendship is magic!^^" (without quotes) in the only line.
[ "3\n3 5\n2 1\n4 2\n", "2\n6 1\n1 6\n", "3\n1 5\n3 3\n2 2\n" ]
[ "Mishka", "Friendship is magic!^^", "Chris" ]
In the first sample case Mishka loses the first round, but wins second and third rounds and thus she is the winner of the game. In the second sample case Mishka wins the first round, Chris wins the second round, and the game ends with draw with score 1:1. In the third sample case Chris wins the first round, but there...
500
[ { "input": "3\n3 5\n2 1\n4 2", "output": "Mishka" }, { "input": "2\n6 1\n1 6", "output": "Friendship is magic!^^" }, { "input": "3\n1 5\n3 3\n2 2", "output": "Chris" }, { "input": "6\n4 1\n4 2\n5 3\n5 1\n5 3\n4 1", "output": "Mishka" }, { "input": "8\n2 4\n1 4\n1 ...
1,697,996,622
2,147,483,647
PyPy 3-64
OK
TESTS
69
62
0
def solve(): x = int(input()) m, c = 0, 0 for i in range(x): a, b = map(int, input().split()) m += a > b c += b > a print('Chris' if c > m else 'Mishka' if m > c else 'Friendship is magic!^^') # t = int(input()) t = 1 while t: solve() t -= 1
Title: Mishka and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mishka is a little polar bear. As known, little bears loves spending their free time playing dice for chocolates. Once in a wonderful sunny morning, walking around blocks of ice, Mishka met her friend Chris, and they st...
```python def solve(): x = int(input()) m, c = 0, 0 for i in range(x): a, b = map(int, input().split()) m += a > b c += b > a print('Chris' if c > m else 'Mishka' if m > c else 'Friendship is magic!^^') # t = int(input()) t = 1 while t: solve() t -= 1 ``...
3
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,670,011,267
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
input = list(input()) n = int(list.pop()) for i in range(n): if len(str(input[i])) > 10: print(str(input[i][0]) + str(len(str(input[i])) - 2) + str(input[i][-1])) else: print(input[i])
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python input = list(input()) n = int(list.pop()) for i in range(n): if len(str(input[i])) > 10: print(str(input[i][0]) + str(len(str(input[i])) - 2) + str(input[i][-1])) else: print(input[i]) ```
-1
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,542,003,369
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
16
140
102,400
a = list(input()) b = sorted(a) if a.count("a") == a.count("c") and "b" in a and a == b or a.count("b") == a.count("c") and a == b and "a" in a: 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 a = list(input()) b = sorted(a) if a.count("a") == a.count("c") and "b" in a and a == b or a.count("b") == a.count("c") and a == b and "a" in a: print("YES") else: print("NO") ```
0
721
A
One-dimensional Japanese Crossword
PROGRAMMING
800
[ "implementation" ]
null
null
Recently Adaltik discovered japanese crosswords. Japanese crossword is a picture, represented as a table sized *a*<=×<=*b* squares, and each square is colored white or black. There are integers to the left of the rows and to the top of the columns, encrypting the corresponding row or column. The number of integers repr...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the length of the row. The second line of the input contains a single string consisting of *n* characters 'B' or 'W', ('B' corresponds to black square, 'W' — to white square in the row that Adaltik drew).
The first line should contain a single integer *k* — the number of integers encrypting the row, e.g. the number of groups of black squares in the row. The second line should contain *k* integers, encrypting the row, e.g. corresponding to sizes of groups of consecutive black squares in the order from left to right.
[ "3\nBBW\n", "5\nBWBWB\n", "4\nWWWW\n", "4\nBBBB\n", "13\nWBBBBWWBWBBBW\n" ]
[ "1\n2 ", "3\n1 1 1 ", "0\n", "1\n4 ", "3\n4 1 3 " ]
The last sample case correspond to the picture in the statement.
500
[ { "input": "3\nBBW", "output": "1\n2 " }, { "input": "5\nBWBWB", "output": "3\n1 1 1 " }, { "input": "4\nWWWW", "output": "0" }, { "input": "4\nBBBB", "output": "1\n4 " }, { "input": "13\nWBBBBWWBWBBBW", "output": "3\n4 1 3 " }, { "input": "1\nB", ...
1,618,891,506
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
0
n = int(input()) s = str(input()) result = [] count = 0 for i in range(n): if s[i] == "B": count += 1 elif count > 0: result.append(count) count = 0 if count > 0: result.append(count) count = 0 x = () for i in range(len(result)): if i == 0: x = (result[i]) else: x = x + (result[i]) pr...
Title: One-dimensional Japanese Crossword Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently Adaltik discovered japanese crosswords. Japanese crossword is a picture, represented as a table sized *a*<=×<=*b* squares, and each square is colored white or black. There are integers to the...
```python n = int(input()) s = str(input()) result = [] count = 0 for i in range(n): if s[i] == "B": count += 1 elif count > 0: result.append(count) count = 0 if count > 0: result.append(count) count = 0 x = () for i in range(len(result)): if i == 0: x = (result[i]) else: x = x + (resu...
0
926
C
Is This a Zebra?
PROGRAMMING
1,700
[ "implementation" ]
null
null
A camera you have accidentally left in a desert has taken an interesting photo. The photo has a resolution of *n* pixels width, and each column of this photo is all white or all black. Thus, we can represent the photo as a sequence of *n* zeros and ones, where 0 means that the corresponding column is all white, and 1 m...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the width of the photo. The second line contains a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=1) — the description of the photo. If *a**i* is zero, the *i*-th column is all black. If *a**i* is one, then the *i*-th column is ...
If the photo can be a photo of zebra, print "YES" (without quotes). Otherwise, print "NO". You can print each letter in any case (upper or lower).
[ "9\n0 0 0 1 1 1 0 0 0\n", "7\n0 0 0 1 1 1 1\n", "5\n1 1 1 1 1\n", "8\n1 1 1 0 0 0 1 1\n", "9\n1 1 0 1 1 0 1 1 0\n" ]
[ "YES\n", "NO\n", "YES\n", "NO\n", "NO\n" ]
The first two examples are described in the statements. In the third example all pixels are white, so the photo can be a photo of zebra. In the fourth example the width of the first stripe is equal to three (white color), the width of the second stripe is equal to three (black), and the width of the third stripe is e...
0
[ { "input": "9\n0 0 0 1 1 1 0 0 0", "output": "YES" }, { "input": "7\n0 0 0 1 1 1 1", "output": "NO" }, { "input": "5\n1 1 1 1 1", "output": "YES" }, { "input": "8\n1 1 1 0 0 0 1 1", "output": "NO" }, { "input": "9\n1 1 0 1 1 0 1 1 0", "output": "NO" }, { ...
1,521,303,651
2,751
Python 3
OK
TESTS
64
202
8,704,000
# python3 n = input() a = list(map(int, input().split())) len=0 n=int(n) len=0 for i in range (1,n): sc = a[i]-a[i-1] if(sc>0): len=i break if(sc<0): len=i break fl=1; if(len==0): len=n r=n%len if(r==0): lol=1 else: print("NO") ...
Title: Is This a Zebra? Time Limit: None seconds Memory Limit: None megabytes Problem Description: A camera you have accidentally left in a desert has taken an interesting photo. The photo has a resolution of *n* pixels width, and each column of this photo is all white or all black. Thus, we can represent the photo ...
```python # python3 n = input() a = list(map(int, input().split())) len=0 n=int(n) len=0 for i in range (1,n): sc = a[i]-a[i-1] if(sc>0): len=i break if(sc<0): len=i break fl=1; if(len==0): len=n r=n%len if(r==0): lol=1 else: prin...
3
723
A
The New Year: Meeting Friends
PROGRAMMING
800
[ "implementation", "math", "sortings" ]
null
null
There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They plan to celebrate the New Year together, so they need to meet at one point. What is the minimum total distance they...
The first line of the input contains three distinct integers *x*1, *x*2 and *x*3 (1<=≤<=*x*1,<=*x*2,<=*x*3<=≤<=100) — the coordinates of the houses of the first, the second and the third friends respectively.
Print one integer — the minimum total distance the friends need to travel in order to meet together.
[ "7 1 4\n", "30 20 10\n" ]
[ "6\n", "20\n" ]
In the first sample, friends should meet at the point 4. Thus, the first friend has to travel the distance of 3 (from the point 7 to the point 4), the second friend also has to travel the distance of 3 (from the point 1 to the point 4), while the third friend should not go anywhere because he lives at the point 4.
500
[ { "input": "7 1 4", "output": "6" }, { "input": "30 20 10", "output": "20" }, { "input": "1 4 100", "output": "99" }, { "input": "100 1 91", "output": "99" }, { "input": "1 45 100", "output": "99" }, { "input": "1 2 3", "output": "2" }, { "...
1,700,199,238
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
tc = list(map(int,input().split())) print(sum(tc)//3)
Title: The New Year: Meeting Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They ...
```python tc = list(map(int,input().split())) print(sum(tc)//3) ```
0
18
C
Stripe
PROGRAMMING
1,200
[ "data structures", "implementation" ]
C. Stripe
2
64
Once Bob took a paper stripe of *n* squares (the height of the stripe is 1 square). In each square he wrote an integer number, possibly negative. He became interested in how many ways exist to cut this stripe into two pieces so that the sum of numbers from one piece is equal to the sum of numbers from the other piece, ...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=105) — amount of squares in the stripe. The second line contains *n* space-separated numbers — they are the numbers written in the squares of the stripe. These numbers are integer and do not exceed 10000 in absolute value.
Output the amount of ways to cut the stripe into two non-empty pieces so that the sum of numbers from one piece is equal to the sum of numbers from the other piece. Don't forget that it's allowed to cut the stripe along the squares' borders only.
[ "9\n1 5 -6 7 9 -16 0 -2 2\n", "3\n1 1 1\n", "2\n0 0\n" ]
[ "3\n", "0\n", "1\n" ]
none
0
[ { "input": "9\n1 5 -6 7 9 -16 0 -2 2", "output": "3" }, { "input": "3\n1 1 1", "output": "0" }, { "input": "2\n0 0", "output": "1" }, { "input": "4\n100 1 10 111", "output": "1" }, { "input": "10\n0 4 -3 0 -2 2 -3 -3 2 5", "output": "3" }, { "input": "...
1,627,078,812
2,147,483,647
Python 3
OK
TESTS
45
310
14,131,200
n = int(input()) a = [0] + [int(i) for i in input().split()] s = [0]*(n+1) for i in range(1,n+1): s[i] = s[i-1]+a[i] c = 0 for i in range(1,n): if s[i] == s[n]-s[i]: c += 1 print(c)
Title: Stripe Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Once Bob took a paper stripe of *n* squares (the height of the stripe is 1 square). In each square he wrote an integer number, possibly negative. He became interested in how many ways exist to cut this stripe into two pieces so that ...
```python n = int(input()) a = [0] + [int(i) for i in input().split()] s = [0]*(n+1) for i in range(1,n+1): s[i] = s[i-1]+a[i] c = 0 for i in range(1,n): if s[i] == s[n]-s[i]: c += 1 print(c) ```
3.817214
460
C
Present
PROGRAMMING
1,700
[ "binary search", "data structures", "greedy" ]
null
null
Little beaver is a beginner programmer, so informatics is his favorite subject. Soon his informatics teacher is going to have a birthday and the beaver has decided to prepare a present for her. He planted *n* flowers in a row on his windowsill and started waiting for them to grow. However, after some time the beaver no...
The first line contains space-separated integers *n*, *m* and *w* (1<=≤<=*w*<=≤<=*n*<=≤<=105; 1<=≤<=*m*<=≤<=105). The second line contains space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109).
Print a single integer — the maximum final height of the smallest flower.
[ "6 2 3\n2 2 2 2 1 1\n", "2 5 1\n5 8\n" ]
[ "2\n", "9\n" ]
In the first sample beaver can water the last 3 flowers at the first day. On the next day he may not to water flowers at all. In the end he will get the following heights: [2, 2, 2, 3, 2, 2]. The smallest flower has height equal to 2. It's impossible to get height 3 in this test.
1,500
[ { "input": "6 2 3\n2 2 2 2 1 1", "output": "2" }, { "input": "2 5 1\n5 8", "output": "9" }, { "input": "1 1 1\n1", "output": "2" }, { "input": "3 2 3\n999999998 999999998 999999998", "output": "1000000000" }, { "input": "10 8 3\n499 498 497 497 497 497 497 497 498...
1,686,281,177
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
11
2,000
14,745,600
a, t = [0] * 100010, [0] * 100010 def lowbit(x): return x&(-x) def add(x, k): while x <= n: t[x] += k x += lowbit(x) def ask(x): res=0 while x > 0: res += t[x] x -= lowbit(x) return res def check(x, cnt, k): for i in range(1, n + 1): now=ask(i) if a[i] + now < x: add(i, x-a...
Title: Present Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little beaver is a beginner programmer, so informatics is his favorite subject. Soon his informatics teacher is going to have a birthday and the beaver has decided to prepare a present for her. He planted *n* flowers in a row o...
```python a, t = [0] * 100010, [0] * 100010 def lowbit(x): return x&(-x) def add(x, k): while x <= n: t[x] += k x += lowbit(x) def ask(x): res=0 while x > 0: res += t[x] x -= lowbit(x) return res def check(x, cnt, k): for i in range(1, n + 1): now=ask(i) if a[i] + now < x: ...
0
653
A
Bear and Three Balls
PROGRAMMING
900
[ "brute force", "implementation", "sortings" ]
null
null
Limak is a little polar bear. He has *n* balls, the *i*-th ball has size *t**i*. Limak wants to give one ball to each of his three friends. Giving gifts isn't easy — there are two rules Limak must obey to make friends happy: - No two friends can get balls of the same size. - No two friends can get balls of sizes th...
The first line of the input contains one integer *n* (3<=≤<=*n*<=≤<=50) — the number of balls Limak has. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=1000) where *t**i* denotes the size of the *i*-th ball.
Print "YES" (without quotes) if Limak can choose three balls of distinct sizes, such that any two of them differ by no more than 2. Otherwise, print "NO" (without quotes).
[ "4\n18 55 16 17\n", "6\n40 41 43 44 44 44\n", "8\n5 972 3 4 1 4 970 971\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first sample, there are 4 balls and Limak is able to choose three of them to satisfy the rules. He must must choose balls with sizes 18, 16 and 17. In the second sample, there is no way to give gifts to three friends without breaking the rules. In the third sample, there is even more than one way to choose bal...
500
[ { "input": "4\n18 55 16 17", "output": "YES" }, { "input": "6\n40 41 43 44 44 44", "output": "NO" }, { "input": "8\n5 972 3 4 1 4 970 971", "output": "YES" }, { "input": "3\n959 747 656", "output": "NO" }, { "input": "4\n1 2 2 3", "output": "YES" }, { ...
1,623,244,383
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
93
0
Balls = int(input()) Sizes = list(map(int, input().split())) Sizes.sort() Flag = False for i in range(Balls - 2): if(Sizes[i+2] - Sizes[i+1] == 1 and Sizes[i+1] - Sizes[i] == 1): Flag = True break print("YES" if Flag else "NO")
Title: Bear and Three Balls Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is a little polar bear. He has *n* balls, the *i*-th ball has size *t**i*. Limak wants to give one ball to each of his three friends. Giving gifts isn't easy — there are two rules Limak must obey to make fri...
```python Balls = int(input()) Sizes = list(map(int, input().split())) Sizes.sort() Flag = False for i in range(Balls - 2): if(Sizes[i+2] - Sizes[i+1] == 1 and Sizes[i+1] - Sizes[i] == 1): Flag = True break print("YES" if Flag else "NO") ```
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,694,005,414
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
n = input() a=len(n)-2 b=len(n)-1 if len(n)>10: print(n[0]+"{}".format(a)+n[b]) else: print(n)
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python n = input() a=len(n)-2 b=len(n)-1 if len(n)>10: print(n[0]+"{}".format(a)+n[b]) else: print(n) ```
0
750
A
New Year and Hurry
PROGRAMMING
800
[ "binary search", "brute force", "implementation", "math" ]
null
null
Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem 1 is the easiest and problem *n* is the hardest. Limak knows it will take him 5·*i* minutes to solve th...
The only line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=10, 1<=≤<=*k*<=≤<=240) — the number of the problems in the contest and the number of minutes Limak needs to get to the party from his house.
Print one integer, denoting the maximum possible number of problems Limak can solve so that he could get to the party at midnight or earlier.
[ "3 222\n", "4 190\n", "7 1\n" ]
[ "2\n", "4\n", "7\n" ]
In the first sample, there are 3 problems and Limak needs 222 minutes to get to the party. The three problems require 5, 10 and 15 minutes respectively. Limak can spend 5 + 10 = 15 minutes to solve first two problems. Then, at 20:15 he can leave his house to get to the party at 23:57 (after 222 minutes). In this scenar...
500
[ { "input": "3 222", "output": "2" }, { "input": "4 190", "output": "4" }, { "input": "7 1", "output": "7" }, { "input": "10 135", "output": "6" }, { "input": "10 136", "output": "5" }, { "input": "1 1", "output": "1" }, { "input": "1 240", ...
1,700,328,195
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
n, k = map(int, input().split()) c = 0 p = 0 for i in range(1, n + 1): p = 5 * i if p + k < 240: c = i print(c)
Title: New Year and Hurry Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem...
```python n, k = map(int, input().split()) c = 0 p = 0 for i in range(1, n + 1): p = 5 * i if p + k < 240: c = i print(c) ```
0
4
B
Before an Exam
PROGRAMMING
1,200
[ "constructive algorithms", "greedy" ]
B. Before an Exam
0
64
Tomorrow Peter has a Biology exam. He does not like this subject much, but *d* days ago he learnt that he would have to take this exam. Peter's strict parents made him prepare for the exam immediately, for this purpose he has to study not less than *minTime**i* and not more than *maxTime**i* hours per each *i*-th day. ...
The first input line contains two integer numbers *d*,<=*sumTime* (1<=≤<=*d*<=≤<=30,<=0<=≤<=*sumTime*<=≤<=240) — the amount of days, during which Peter studied, and the total amount of hours, spent on preparation. Each of the following *d* lines contains two integer numbers *minTime**i*,<=*maxTime**i* (0<=≤<=*minTime**...
In the first line print YES, and in the second line print *d* numbers (separated by a space), each of the numbers — amount of hours, spent by Peter on preparation in the corresponding day, if he followed his parents' instructions; or print NO in the unique line. If there are many solutions, print any of them.
[ "1 48\n5 7\n", "2 5\n0 1\n3 5\n" ]
[ "NO\n", "YES\n1 4 " ]
none
0
[ { "input": "1 48\n5 7", "output": "NO" }, { "input": "2 5\n0 1\n3 5", "output": "YES\n1 4 " }, { "input": "1 1\n5 6", "output": "NO" }, { "input": "1 4\n2 4", "output": "YES\n4 " }, { "input": "2 5\n4 6\n0 0", "output": "YES\n5 0 " }, { "input": "27 97...
1,694,805,774
2,147,483,647
Python 3
OK
TESTS
15
46
0
d,sumtime=map(int,input().split()) minmax=[] for i in range(d): minmax.append(list(map(int,input().split()))) schedule=[] flag=True for i in range(d): if(minmax[i][0]<=sumtime): schedule.append(minmax[i][0]) sumtime -= minmax[i][0] else: flag=False break if(f...
Title: Before an Exam Time Limit: 0 seconds Memory Limit: 64 megabytes Problem Description: Tomorrow Peter has a Biology exam. He does not like this subject much, but *d* days ago he learnt that he would have to take this exam. Peter's strict parents made him prepare for the exam immediately, for this purpose he has...
```python d,sumtime=map(int,input().split()) minmax=[] for i in range(d): minmax.append(list(map(int,input().split()))) schedule=[] flag=True for i in range(d): if(minmax[i][0]<=sumtime): schedule.append(minmax[i][0]) sumtime -= minmax[i][0] else: flag=False bre...
3
190
D
Non-Secret Cypher
PROGRAMMING
1,900
[ "two pointers" ]
null
null
Berland starts to seize the initiative on the war with Flatland. To drive the enemy from their native land, the berlanders need to know exactly how many more flatland soldiers are left in the enemy's reserve. Fortunately, the scouts captured an enemy in the morning, who had a secret encrypted message with the informati...
The first line contains two space-separated integers *n*, *k* (1<=≤<=*k*<=≤<=*n*<=≤<=4·105), showing how many numbers an array has and how many equal numbers the subarrays are required to have, correspondingly. The second line contains *n* space-separated integers *a**i* (1<=≤<=*a**i*<=≤<=109) — elements of the array...
Print the single number — the number of such subarrays of array *a*, that they have at least *k* equal integers. Please do not use the %lld specifier to read or write 64-bit integers in С++. In is preferred to use the cin, cout streams or the %I64d specifier.
[ "4 2\n1 2 1 2\n", "5 3\n1 2 1 1 3\n", "3 1\n1 1 1\n" ]
[ "3", "2", "6" ]
In the first sample are three subarrays, containing at least two equal numbers: (1,2,1), (2,1,2) and (1,2,1,2). In the second sample are two subarrays, containing three equal numbers: (1,2,1,1,3) and (1,2,1,1). In the third sample any subarray contains at least one 1 number. Overall they are 6: (1), (1), (1), (1,1), ...
2,000
[ { "input": "4 2\n1 2 1 2", "output": "3" }, { "input": "5 3\n1 2 1 1 3", "output": "2" }, { "input": "3 1\n1 1 1", "output": "6" }, { "input": "20 2\n6 7 2 4 6 8 4 3 10 5 3 5 7 9 1 2 8 1 9 10", "output": "131" }, { "input": "63 2\n1 2 1 2 4 5 1 1 1 1 1 2 3 1 2 3 3...
1,665,595,232
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
62
102,400
from collections import defaultdict n, k = map(int, input().split()) arr = list(map(int, input().split())) dic = defaultdict(int) total = 0 l,r = 0,0 while r < n and l < n: num = arr[r] dic[num] += 1 if dic[num] == k: total += n-r while l < n and dic[num] == k: dic[arr[l]] -=...
Title: Non-Secret Cypher Time Limit: None seconds Memory Limit: None megabytes Problem Description: Berland starts to seize the initiative on the war with Flatland. To drive the enemy from their native land, the berlanders need to know exactly how many more flatland soldiers are left in the enemy's reserve. Fortunat...
```python from collections import defaultdict n, k = map(int, input().split()) arr = list(map(int, input().split())) dic = defaultdict(int) total = 0 l,r = 0,0 while r < n and l < n: num = arr[r] dic[num] += 1 if dic[num] == k: total += n-r while l < n and dic[num] == k: dic[...
0
236
A
Boy or Girl
PROGRAMMING
800
[ "brute force", "implementation", "strings" ]
null
null
Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he thought so). After that they talked very often and eventually they became a couple in the network. Bu...
The first line contains a non-empty string, that contains only lowercase English letters — the user name. This string contains at most 100 letters.
If it is a female by our hero's method, print "CHAT WITH HER!" (without the quotes), otherwise, print "IGNORE HIM!" (without the quotes).
[ "wjmzbmr\n", "xiaodao\n", "sevenkplus\n" ]
[ "CHAT WITH HER!\n", "IGNORE HIM!\n", "CHAT WITH HER!\n" ]
For the first example. There are 6 distinct characters in "wjmzbmr". These characters are: "w", "j", "m", "z", "b", "r". So wjmzbmr is a female and you should print "CHAT WITH HER!".
500
[ { "input": "wjmzbmr", "output": "CHAT WITH HER!" }, { "input": "xiaodao", "output": "IGNORE HIM!" }, { "input": "sevenkplus", "output": "CHAT WITH HER!" }, { "input": "pezu", "output": "CHAT WITH HER!" }, { "input": "wnemlgppy", "output": "CHAT WITH HER!" },...
1,696,441,843
2,147,483,647
Python 3
OK
TESTS
85
92
0
name=str(input()) L=[] for i in name : if i not in L: L.append(i) if len(L)%2==0: print("CHAT WITH HER!") else: print("IGNORE HIM!")
Title: Boy or Girl Time Limit: None seconds Memory Limit: None megabytes Problem Description: Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he though...
```python name=str(input()) L=[] for i in name : if i not in L: L.append(i) if len(L)%2==0: print("CHAT WITH HER!") else: print("IGNORE HIM!") ```
3