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
583
A
Asphalting Roads
PROGRAMMING
1,000
[ "implementation" ]
null
null
City X consists of *n* vertical and *n* horizontal infinite roads, forming *n*<=×<=*n* intersections. Roads (both vertical and horizontal) are numbered from 1 to *n*, and the intersections are indicated by the numbers of the roads that form them. Sand roads have long been recognized out of date, so the decision was ma...
The first line contains integer *n* (1<=≤<=*n*<=≤<=50) — the number of vertical and horizontal roads in the city. Next *n*2 lines contain the order of intersections in the schedule. The *i*-th of them contains two numbers *h**i*,<=*v**i* (1<=≤<=*h**i*,<=*v**i*<=≤<=*n*), separated by a space, and meaning that the inte...
In the single line print the numbers of the days when road works will be in progress in ascending order. The days are numbered starting from 1.
[ "2\n1 1\n1 2\n2 1\n2 2\n", "1\n1 1\n" ]
[ "1 4 \n", "1 \n" ]
In the sample the brigade acts like that: 1. On the first day the brigade comes to the intersection of the 1-st horizontal and the 1-st vertical road. As none of them has been asphalted, the workers asphalt the 1-st vertical and the 1-st horizontal road; 1. On the second day the brigade of the workers comes to the i...
500
[ { "input": "2\n1 1\n1 2\n2 1\n2 2", "output": "1 4 " }, { "input": "1\n1 1", "output": "1 " }, { "input": "2\n1 1\n2 2\n1 2\n2 1", "output": "1 2 " }, { "input": "2\n1 2\n2 2\n2 1\n1 1", "output": "1 3 " }, { "input": "3\n2 2\n1 2\n3 2\n3 3\n1 1\n2 3\n1 3\n3 1\n2 ...
1,523,093,671
2,147,483,647
PyPy 3
OK
TESTS
39
202
23,142,400
n = int(input()) r = [False]*n l = [False]*n c = '' for i in range(n*n): k, m= [int(i) for i in input().split()] if not r[k - 1] and not l[m - 1]: r[k - 1] = True l[m - 1] = True c += str(i + 1) + ' ' print(c)
Title: Asphalting Roads Time Limit: None seconds Memory Limit: None megabytes Problem Description: City X consists of *n* vertical and *n* horizontal infinite roads, forming *n*<=×<=*n* intersections. Roads (both vertical and horizontal) are numbered from 1 to *n*, and the intersections are indicated by the numbers ...
```python n = int(input()) r = [False]*n l = [False]*n c = '' for i in range(n*n): k, m= [int(i) for i in input().split()] if not r[k - 1] and not l[m - 1]: r[k - 1] = True l[m - 1] = True c += str(i + 1) + ' ' print(c) ```
3
958
E1
Guard Duty (easy)
PROGRAMMING
1,600
[ "brute force", "geometry", "greedy", "math" ]
null
null
The Rebel fleet is afraid that the Empire might want to strike back again. Princess Heidi needs to know if it is possible to assign *R* Rebel spaceships to guard *B* bases so that every base has exactly one guardian and each spaceship has exactly one assigned base (in other words, the assignment is a perfect matching)....
The first line contains two space-separated integers *R*,<=*B*(1<=≤<=*R*,<=*B*<=≤<=10). For 1<=≤<=*i*<=≤<=*R*, the *i*<=+<=1-th line contains two space-separated integers *x**i* and *y**i* (|*x**i*|,<=|*y**i*|<=≤<=10000) denoting the coordinates of the *i*-th Rebel spaceship. The following *B* lines have the same forma...
If it is possible to connect Rebel spaceships and bases so as satisfy the constraint, output Yes, otherwise output No (without quote).
[ "3 3\n0 0\n2 0\n3 1\n-2 1\n0 3\n2 2\n", "2 1\n1 0\n2 2\n3 1\n" ]
[ "Yes\n", "No\n" ]
For the first example, one possible way is to connect the Rebels and bases in order. For the second example, there is no perfect matching between Rebels and bases.
0
[ { "input": "3 3\n0 0\n2 0\n3 1\n-2 1\n0 3\n2 2", "output": "Yes" }, { "input": "2 1\n1 0\n2 2\n3 1", "output": "No" }, { "input": "1 1\n3686 4362\n-7485 5112", "output": "Yes" }, { "input": "1 2\n1152 -7324\n-5137 -35\n-6045 -5271", "output": "No" }, { "input": "1...
1,523,693,135
3,635
PyPy 3
OK
TESTS
51
233
26,009,600
def ccw(A, B, C): return (C[1] - A[1]) * (B[0] - A[0]) > (B[1] - A[1]) * (C[0] - A[0]) def intersect(A, B, C, D): return ccw(A, C, D) != ccw(B, C, D) and ccw(A, B, C) != ccw(A, B, D) R, B = map(int, input().split()) rs = [] bs = [] for r in range(R): rs.append(list(map(int, input().split()))) for r in ...
Title: Guard Duty (easy) Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Rebel fleet is afraid that the Empire might want to strike back again. Princess Heidi needs to know if it is possible to assign *R* Rebel spaceships to guard *B* bases so that every base has exactly one guardian a...
```python def ccw(A, B, C): return (C[1] - A[1]) * (B[0] - A[0]) > (B[1] - A[1]) * (C[0] - A[0]) def intersect(A, B, C, D): return ccw(A, C, D) != ccw(B, C, D) and ccw(A, B, C) != ccw(A, B, D) R, B = map(int, input().split()) rs = [] bs = [] for r in range(R): rs.append(list(map(int, input().split())))...
3
965
A
Paper Airplanes
PROGRAMMING
800
[ "math" ]
null
null
To make a paper airplane, one has to use a rectangular piece of paper. From a sheet of standard size you can make $s$ airplanes. A group of $k$ people decided to make $n$ airplanes each. They are going to buy several packs of paper, each of them containing $p$ sheets, and then distribute the sheets between the people....
The only line contains four integers $k$, $n$, $s$, $p$ ($1 \le k, n, s, p \le 10^4$) — the number of people, the number of airplanes each should make, the number of airplanes that can be made using one sheet and the number of sheets in one pack, respectively.
Print a single integer — the minimum number of packs they should buy.
[ "5 3 2 3\n", "5 3 100 1\n" ]
[ "4\n", "5\n" ]
In the first sample they have to buy $4$ packs of paper: there will be $12$ sheets in total, and giving $2$ sheets to each person is enough to suit everyone's needs. In the second sample they have to buy a pack for each person as they can't share sheets.
500
[ { "input": "5 3 2 3", "output": "4" }, { "input": "5 3 100 1", "output": "5" }, { "input": "10000 10000 1 1", "output": "100000000" }, { "input": "1 1 10000 10000", "output": "1" }, { "input": "300 300 21 23", "output": "196" }, { "input": "300 2 37 51...
1,548,683,957
2,147,483,647
Python 3
OK
TESTS
18
108
0
from math import ceil X = list(map(int, input().split())) Math = ceil(X[1] / X[2]) Math = ceil(Math * X[0]) print(ceil(Math / X[3]))
Title: Paper Airplanes Time Limit: None seconds Memory Limit: None megabytes Problem Description: To make a paper airplane, one has to use a rectangular piece of paper. From a sheet of standard size you can make $s$ airplanes. A group of $k$ people decided to make $n$ airplanes each. They are going to buy several p...
```python from math import ceil X = list(map(int, input().split())) Math = ceil(X[1] / X[2]) Math = ceil(Math * X[0]) print(ceil(Math / X[3])) ```
3
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,690,919,297
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
1
31
0
n,m,a=map(int, input().split()) if n/a > int(n/a) : x=int(n/a)+1 if m/a > int (m/a) : y=int (n/a)+1 print (x+y)
Title: Theatre Square Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each ...
```python n,m,a=map(int, input().split()) if n/a > int(n/a) : x=int(n/a)+1 if m/a > int (m/a) : y=int (n/a)+1 print (x+y) ```
-1
886
A
ACM ICPC
PROGRAMMING
1,000
[ "brute force" ]
null
null
In a small but very proud high school it was decided to win ACM ICPC. This goal requires to compose as many teams of three as possible, but since there were only 6 students who wished to participate, the decision was to build exactly two teams. After practice competition, participant number *i* got a score of *a**i*. ...
The single line contains six integers *a*1,<=...,<=*a*6 (0<=≤<=*a**i*<=≤<=1000) — scores of the participants
Print "YES" (quotes for clarity), if it is possible to build teams with equal score, and "NO" otherwise. You can print each character either upper- or lowercase ("YeS" and "yes" are valid when the answer is "YES").
[ "1 3 2 1 2 1\n", "1 1 1 1 1 99\n" ]
[ "YES\n", "NO\n" ]
In the first sample, first team can be composed of 1st, 2nd and 6th participant, second — of 3rd, 4th and 5th: team scores are 1 + 3 + 1 = 2 + 1 + 2 = 5. In the second sample, score of participant number 6 is too high: his team score will be definitely greater.
500
[ { "input": "1 3 2 1 2 1", "output": "YES" }, { "input": "1 1 1 1 1 99", "output": "NO" }, { "input": "1000 1000 1000 1000 1000 1000", "output": "YES" }, { "input": "0 0 0 0 0 0", "output": "YES" }, { "input": "633 609 369 704 573 416", "output": "NO" }, { ...
1,510,511,049
8,349
Python 3
RUNTIME_ERROR
PRETESTS
0
30
0
a = input().split() c = 0 for i in range(len(a)): a[i] = int(a[i]) c += a[i] c = c/2 t = 0 for i in range(6): if a[i] == c: t = 1 for i in range(6): for j in range(6): if a[i]+a[i1] == c: t = 1 for i in range(6): for j in range(6): for z in range(6...
Title: ACM ICPC Time Limit: None seconds Memory Limit: None megabytes Problem Description: In a small but very proud high school it was decided to win ACM ICPC. This goal requires to compose as many teams of three as possible, but since there were only 6 students who wished to participate, the decision was to build ...
```python a = input().split() c = 0 for i in range(len(a)): a[i] = int(a[i]) c += a[i] c = c/2 t = 0 for i in range(6): if a[i] == c: t = 1 for i in range(6): for j in range(6): if a[i]+a[i1] == c: t = 1 for i in range(6): for j in range(6): for z ...
-1
767
A
Snacktower
PROGRAMMING
1,100
[ "data structures", "implementation" ]
null
null
According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time *n* snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by placing snacks one on another. Of course, big snacks should b...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the total number of snacks. The second line contains *n* integers, the *i*-th of them equals the size of the snack which fell on the *i*-th day. Sizes are distinct integers from 1 to *n*.
Print *n* lines. On the *i*-th of them print the sizes of the snacks which the residents placed on the top of the Snacktower on the *i*-th day in the order they will do that. If no snack is placed on some day, leave the corresponding line empty.
[ "3\n3 1 2\n", "5\n4 5 1 2 3\n" ]
[ "3\n \n2 1", "5 4\n \n \n3 2 1\n" ]
In the example a snack of size 3 fell on the first day, and the residents immediately placed it. On the second day a snack of size 1 fell, and the residents weren't able to place it because they were missing the snack of size 2. On the third day a snack of size 2 fell, and the residents immediately placed it. Right aft...
500
[ { "input": "3\n3 1 2", "output": "3 \n\n2 1 " }, { "input": "5\n4 5 1 2 3", "output": "5 4 \n\n\n3 2 1 " }, { "input": "1\n1", "output": "1 " }, { "input": "2\n1 2", "output": "2 1 " }, { "input": "10\n5 1 6 2 8 3 4 10 9 7", "output": "10 \n9 8 \n7 6 5 4 3 2 1...
1,595,654,506
2,147,483,647
Python 3
OK
TESTS
25
389
17,817,600
import sys import heapq def main(arr): visited = [False] * len(arr) last = len(visited) - 1 for n in arr: visited[n - 1] = True doing = [] while last >= 0 and visited[last]: doing.append(last + 1) last -= 1 print(" ".join(str(d) for d in doing)) if...
Title: Snacktower Time Limit: None seconds Memory Limit: None megabytes Problem Description: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time *n* snacks of distinct sizes will fall on the city, and the residents sh...
```python import sys import heapq def main(arr): visited = [False] * len(arr) last = len(visited) - 1 for n in arr: visited[n - 1] = True doing = [] while last >= 0 and visited[last]: doing.append(last + 1) last -= 1 print(" ".join(str(d) for d in d...
3
466
A
Cheap Travel
PROGRAMMING
1,200
[ "implementation" ]
null
null
Ann has recently started commuting by subway. We know that a one ride subway ticket costs *a* rubles. Besides, Ann found out that she can buy a special ticket for *m* rides (she can buy it several times). It costs *b* rubles. Ann did the math; she will need to use subway *n* times. Help Ann, tell her what is the minimu...
The single line contains four space-separated integers *n*, *m*, *a*, *b* (1<=≤<=*n*,<=*m*,<=*a*,<=*b*<=≤<=1000) — the number of rides Ann has planned, the number of rides covered by the *m* ride ticket, the price of a one ride ticket and the price of an *m* ride ticket.
Print a single integer — the minimum sum in rubles that Ann will need to spend.
[ "6 2 1 2\n", "5 2 2 3\n" ]
[ "6\n", "8\n" ]
In the first sample one of the optimal solutions is: each time buy a one ride ticket. There are other optimal solutions. For example, buy three *m* ride tickets.
500
[ { "input": "6 2 1 2", "output": "6" }, { "input": "5 2 2 3", "output": "8" }, { "input": "10 3 5 1", "output": "4" }, { "input": "1000 1 1000 1000", "output": "1000000" }, { "input": "1000 3 1000 1000", "output": "334000" }, { "input": "1 1 1 1", "...
1,693,628,928
2,147,483,647
Python 3
OK
TESTS
19
46
0
import math numbers = input('') numbers = numbers.split(' ') numbers = [int(i) for i in numbers] n = numbers[0] m = numbers[1] a = numbers[2] b = numbers[3] without_special = n * a with_special = ((math.ceil(n / m) * m) / m) * b hybrid = (math.floor(n / m) * b) + ((n % m) * a) print(int(min(without_s...
Title: Cheap Travel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ann has recently started commuting by subway. We know that a one ride subway ticket costs *a* rubles. Besides, Ann found out that she can buy a special ticket for *m* rides (she can buy it several times). It costs *b* rubl...
```python import math numbers = input('') numbers = numbers.split(' ') numbers = [int(i) for i in numbers] n = numbers[0] m = numbers[1] a = numbers[2] b = numbers[3] without_special = n * a with_special = ((math.ceil(n / m) * m) / m) * b hybrid = (math.floor(n / m) * b) + ((n % m) * a) print(int(min...
3
985
B
Switches and Lamps
PROGRAMMING
1,200
[ "implementation" ]
null
null
You are given *n* switches and *m* lamps. The *i*-th switch turns on some subset of the lamps. This information is given as the matrix *a* consisting of *n* rows and *m* columns where *a**i*,<=*j*<==<=1 if the *i*-th switch turns on the *j*-th lamp and *a**i*,<=*j*<==<=0 if the *i*-th switch is not connected to the *j*...
The first line of the input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=2000) — the number of the switches and the number of the lamps. The following *n* lines contain *m* characters each. The character *a**i*,<=*j* is equal to '1' if the *i*-th switch turns on the *j*-th lamp and '0' otherwise. It is guar...
Print "YES" if there is a switch that if you will ignore it and press all the other *n*<=-<=1 switches then all *m* lamps will be turned on. Print "NO" if there is no such switch.
[ "4 5\n10101\n01000\n00111\n10000\n", "4 5\n10100\n01000\n00110\n00101\n" ]
[ "YES\n", "NO\n" ]
none
0
[ { "input": "4 5\n10101\n01000\n00111\n10000", "output": "YES" }, { "input": "4 5\n10100\n01000\n00110\n00101", "output": "NO" }, { "input": "1 5\n11111", "output": "NO" }, { "input": "10 1\n1\n0\n0\n0\n0\n0\n0\n0\n0\n1", "output": "YES" }, { "input": "1 1\n1", ...
1,526,985,800
2,147,483,647
Python 3
OK
TESTS
67
2,698
18,636,800
#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Mon May 21 22:31:07 2018 @author: thomas """ integers=input() [n,m]=[int(x) for x in integers.split()] a=[] for i in range(n): row_i=input() a_i=[] for j in range(m): a_i.append(int(row_i[j])) a.append(a_i) indicator=False #all_...
Title: Switches and Lamps Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given *n* switches and *m* lamps. The *i*-th switch turns on some subset of the lamps. This information is given as the matrix *a* consisting of *n* rows and *m* columns where *a**i*,<=*j*<==<=1 if the *i*-th...
```python #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Created on Mon May 21 22:31:07 2018 @author: thomas """ integers=input() [n,m]=[int(x) for x in integers.split()] a=[] for i in range(n): row_i=input() a_i=[] for j in range(m): a_i.append(int(row_i[j])) a.append(a_i) indicator=F...
3
432
A
Choosing Teams
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. According to the ACM ICPC rules, each person can participate in the world championship at most 5 times. Th...
The first line contains two integers, *n* and *k* (1<=≤<=*n*<=≤<=2000; 1<=≤<=*k*<=≤<=5). The next line contains *n* integers: *y*1,<=*y*2,<=...,<=*y**n* (0<=≤<=*y**i*<=≤<=5), where *y**i* shows the number of times the *i*-th person participated in the ACM ICPC world championship.
Print a single number — the answer to the problem.
[ "5 2\n0 4 5 1 0\n", "6 4\n0 1 2 3 4 5\n", "6 5\n0 0 0 0 0 0\n" ]
[ "1\n", "0\n", "2\n" ]
In the first sample only one team could be made: the first, the fourth and the fifth participants. In the second sample no teams could be created. In the third sample two teams could be created. Any partition into two teams fits.
500
[ { "input": "5 2\n0 4 5 1 0", "output": "1" }, { "input": "6 4\n0 1 2 3 4 5", "output": "0" }, { "input": "6 5\n0 0 0 0 0 0", "output": "2" }, { "input": "3 4\n0 1 0", "output": "1" }, { "input": "3 4\n0 2 0", "output": "0" }, { "input": "6 5\n0 0 0 0 0...
1,691,347,758
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
n, k = map(int, input().split()) participation = list(map(int, input().split())) max_teams = 0 for i in range(n): available_students = min(5, k - participation[i]) max_teams += available_students // 3 print(max_teams)
Title: Choosing Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. Accordi...
```python n, k = map(int, input().split()) participation = list(map(int, input().split())) max_teams = 0 for i in range(n): available_students = min(5, k - participation[i]) max_teams += available_students // 3 print(max_teams) ```
0
940
B
Our Tanya is Crying Out Loud
PROGRAMMING
1,400
[ "dp", "greedy" ]
null
null
Right now she actually isn't. But she will be, if you don't solve this problem. You are given integers *n*, *k*, *A* and *B*. There is a number *x*, which is initially equal to *n*. You are allowed to perform two types of operations: 1. Subtract 1 from *x*. This operation costs you *A* coins. 1. Divide *x* by *k*....
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=2·109). The second line contains a single integer *k* (1<=≤<=*k*<=≤<=2·109). The third line contains a single integer *A* (1<=≤<=*A*<=≤<=2·109). The fourth line contains a single integer *B* (1<=≤<=*B*<=≤<=2·109).
Output a single integer — the minimum amount of coins you have to pay to make *x* equal to 1.
[ "9\n2\n3\n1\n", "5\n5\n2\n20\n", "19\n3\n4\n2\n" ]
[ "6\n", "8\n", "12\n" ]
In the first testcase, the optimal strategy is as follows: - Subtract 1 from *x* (9 → 8) paying 3 coins. - Divide *x* by 2 (8 → 4) paying 1 coin. - Divide *x* by 2 (4 → 2) paying 1 coin. - Divide *x* by 2 (2 → 1) paying 1 coin. The total cost is 6 coins. In the second test case the optimal strategy is to subtra...
1,250
[ { "input": "9\n2\n3\n1", "output": "6" }, { "input": "5\n5\n2\n20", "output": "8" }, { "input": "19\n3\n4\n2", "output": "12" }, { "input": "1845999546\n999435865\n1234234\n2323423", "output": "1044857680578777" }, { "input": "1604353664\n1604353665\n9993432\n1", ...
1,618,682,481
2,147,483,647
PyPy 3
OK
TESTS
58
93
102,400
n=int(input()) k=int(input()) a=int(input()) b=int(input()) if(k==1): print ((n-1)*a) else: t=(b*k)/(a*(k-1)) ans=n c=0 while(ans>1): if(ans>=t and ans%k==0): c+=b ans=ans//k else: if(ans>=t and ans>k): h=ans%k ...
Title: Our Tanya is Crying Out Loud Time Limit: None seconds Memory Limit: None megabytes Problem Description: Right now she actually isn't. But she will be, if you don't solve this problem. You are given integers *n*, *k*, *A* and *B*. There is a number *x*, which is initially equal to *n*. You are allowed to perf...
```python n=int(input()) k=int(input()) a=int(input()) b=int(input()) if(k==1): print ((n-1)*a) else: t=(b*k)/(a*(k-1)) ans=n c=0 while(ans>1): if(ans>=t and ans%k==0): c+=b ans=ans//k else: if(ans>=t and ans>k): h=a...
3
26
A
Almost Prime
PROGRAMMING
900
[ "number theory" ]
A. Almost Prime
2
256
A number is called almost prime if it has exactly two distinct prime divisors. For example, numbers 6, 18, 24 are almost prime, while 4, 8, 9, 42 are not. Find the amount of almost prime numbers which are between 1 and *n*, inclusive.
Input contains one integer number *n* (1<=≤<=*n*<=≤<=3000).
Output the amount of almost prime numbers between 1 and *n*, inclusive.
[ "10\n", "21\n" ]
[ "2\n", "8\n" ]
none
500
[ { "input": "10", "output": "2" }, { "input": "21", "output": "8" }, { "input": "1", "output": "0" }, { "input": "2", "output": "0" }, { "input": "4", "output": "0" }, { "input": "3", "output": "0" }, { "input": "8", "output": "1" }, ...
1,521,676,691
2,147,483,647
PyPy 3
OK
TESTS
23
278
23,142,400
a,p = [],[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439...
Title: Almost Prime Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A number is called almost prime if it has exactly two distinct prime divisors. For example, numbers 6, 18, 24 are almost prime, while 4, 8, 9, 42 are not. Find the amount of almost prime numbers which are between 1 and *n*, in...
```python a,p = [],[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,4...
3.887394
614
A
Link/Cut Tree
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the *expose* procedure. Unfortunately, Rostislav is unable to understand the definition of this procedure, so he decided to ask programmer Serezha to help him. Serezha agre...
The first line of the input contains three space-separated integers *l*, *r* and *k* (1<=≤<=*l*<=≤<=*r*<=≤<=1018, 2<=≤<=*k*<=≤<=109).
Print all powers of number *k*, that lie within range from *l* to *r* in the increasing order. If there are no such numbers, print "-1" (without the quotes).
[ "1 10 2\n", "2 4 5\n" ]
[ "1 2 4 8 ", "-1" ]
Note to the first sample: numbers 2<sup class="upper-index">0</sup> = 1, 2<sup class="upper-index">1</sup> = 2, 2<sup class="upper-index">2</sup> = 4, 2<sup class="upper-index">3</sup> = 8 lie within the specified range. The number 2<sup class="upper-index">4</sup> = 16 is greater then 10, thus it shouldn't be printed.
500
[ { "input": "1 10 2", "output": "1 2 4 8 " }, { "input": "2 4 5", "output": "-1" }, { "input": "18102 43332383920 28554", "output": "28554 815330916 " }, { "input": "19562 31702689720 17701", "output": "313325401 " }, { "input": "11729 55221128400 313", "output...
1,453,543,279
2,147,483,647
PyPy 3
OK
TESTS
44
140
0
def x(): l, r, k = [int(s) for s in input().split()] res = k if l == 1: yield 1 while k<=r: if l <= k <= r: yield k k*=res if k>r: break d = [i for i in x()] if len(d): print(*d) else: print(-1)
Title: Link/Cut Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the *expose* procedure. Unfortunately, Rostislav is unable to understand ...
```python def x(): l, r, k = [int(s) for s in input().split()] res = k if l == 1: yield 1 while k<=r: if l <= k <= r: yield k k*=res if k>r: break d = [i for i in x()] if len(d): print(*d) else: print(-1) ```
3
914
B
Conan and Agasa play a Card Game
PROGRAMMING
1,200
[ "games", "greedy", "implementation" ]
null
null
Edogawa Conan got tired of solving cases, and invited his friend, Professor Agasa, over. They decided to play a game of cards. Conan has *n* cards, and the *i*-th card has a number *a**i* written on it. They take turns playing, starting with Conan. In each turn, the player chooses a card and removes it. Also, he remov...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=105) — the number of cards Conan has. The next line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=105), where *a**i* is the number on the *i*-th card.
If Conan wins, print "Conan" (without quotes), otherwise print "Agasa" (without quotes).
[ "3\n4 5 7\n", "2\n1 1\n" ]
[ "Conan\n", "Agasa\n" ]
In the first example, Conan can just choose the card having number 7 on it and hence remove all the cards. After that, there are no cards left on Agasa's turn. In the second example, no matter which card Conan chooses, there will be one one card left, which Agasa can choose. After that, there are no cards left when it...
1,000
[ { "input": "3\n4 5 7", "output": "Conan" }, { "input": "2\n1 1", "output": "Agasa" }, { "input": "10\n38282 53699 38282 38282 38282 38282 38282 38282 38282 38282", "output": "Conan" }, { "input": "10\n50165 50165 50165 50165 50165 50165 50165 50165 50165 50165", "output":...
1,619,258,765
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
93
7,168,000
n = int(input()) a = [int(i) for i in input().split()] max = a[0] for i in a: if max < i: max = i count = 0 for i in a: if max == i: count +=1 if count == 1: print("Conan") elif (n - count)%2 == 0 and n%2 !=0: print("Conan") elif (n - count)%2 !=0 and n%2 == 0: print("Agasa") else: print...
Title: Conan and Agasa play a Card Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Edogawa Conan got tired of solving cases, and invited his friend, Professor Agasa, over. They decided to play a game of cards. Conan has *n* cards, and the *i*-th card has a number *a**i* written on it....
```python n = int(input()) a = [int(i) for i in input().split()] max = a[0] for i in a: if max < i: max = i count = 0 for i in a: if max == i: count +=1 if count == 1: print("Conan") elif (n - count)%2 == 0 and n%2 !=0: print("Conan") elif (n - count)%2 !=0 and n%2 == 0: print("Agasa") else...
0
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,626,617,083
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
92
6,758,400
integers = (input().split(" ")) print(int(integers[0] * integers[1]) // 2)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python integers = (input().split(" ")) print(int(integers[0] * integers[1]) // 2) ```
-1
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,609,265,914
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
248
0
n=int(input()) a=list(map(int,input().split())) l=list(set(a)) if len(l) >=2: print(l[1]) else: print("NO")
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()) a=list(map(int,input().split())) l=list(set(a)) if len(l) >=2: print(l[1]) else: print("NO") ```
0
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,693,333,952
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
n = set((str(input())[1:-1]).split(', ')) print(len(n))
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 n = set((str(input())[1:-1]).split(', ')) print(len(n)) ```
0
747
A
Display Size
PROGRAMMING
800
[ "brute force", "math" ]
null
null
A big company decided to launch a new series of rectangular displays, and decided that the display must have exactly *n* pixels. Your task is to determine the size of the rectangular display — the number of lines (rows) of pixels *a* and the number of columns of pixels *b*, so that: - there are exactly *n* pixels o...
The first line contains the positive integer *n* (1<=≤<=*n*<=≤<=106) — the number of pixels display should have.
Print two integers — the number of rows and columns on the display.
[ "8\n", "64\n", "5\n", "999999\n" ]
[ "2 4\n", "8 8\n", "1 5\n", "999 1001\n" ]
In the first example the minimum possible difference equals 2, so on the display should be 2 rows of 4 pixels. In the second example the minimum possible difference equals 0, so on the display should be 8 rows of 8 pixels. In the third example the minimum possible difference equals 4, so on the display should be 1 ro...
500
[ { "input": "8", "output": "2 4" }, { "input": "64", "output": "8 8" }, { "input": "5", "output": "1 5" }, { "input": "999999", "output": "999 1001" }, { "input": "716539", "output": "97 7387" }, { "input": "1", "output": "1 1" }, { "input":...
1,482,300,745
2,147,483,647
Python 3
OK
TESTS
43
62
4,608,000
n = int(input()) i = 1 ans = 1 while i*i<=n: if n%i==0 : ans = i i+=1 print (ans, n//ans)
Title: Display Size Time Limit: None seconds Memory Limit: None megabytes Problem Description: A big company decided to launch a new series of rectangular displays, and decided that the display must have exactly *n* pixels. Your task is to determine the size of the rectangular display — the number of lines (rows) ...
```python n = int(input()) i = 1 ans = 1 while i*i<=n: if n%i==0 : ans = i i+=1 print (ans, n//ans) ```
3
429
A
Xor-tree
PROGRAMMING
1,300
[ "dfs and similar", "trees" ]
null
null
Iahub is very proud of his recent discovery, propagating trees. Right now, he invented a new tree, called xor-tree. After this new revolutionary discovery, he invented a game for kids which uses xor-trees. The game is played on a tree having *n* nodes, numbered from 1 to *n*. Each node *i* has an initial value *init**...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=105). Each of the next *n*<=-<=1 lines contains two integers *u**i* and *v**i* (1<=≤<=*u**i*,<=*v**i*<=≤<=*n*; *u**i*<=≠<=*v**i*) meaning there is an edge between nodes *u**i* and *v**i*. The next line contains *n* integer numbers, the *i*-th of them corresponds t...
In the first line output an integer number *cnt*, representing the minimal number of operations you perform. Each of the next *cnt* lines should contain an integer *x**i*, representing that you pick a node *x**i*.
[ "10\n2 1\n3 1\n4 2\n5 1\n6 2\n7 5\n8 6\n9 8\n10 5\n1 0 1 1 0 1 0 1 0 1\n1 0 1 0 0 1 1 1 0 1\n" ]
[ "2\n4\n7\n" ]
none
500
[ { "input": "10\n2 1\n3 1\n4 2\n5 1\n6 2\n7 5\n8 6\n9 8\n10 5\n1 0 1 1 0 1 0 1 0 1\n1 0 1 0 0 1 1 1 0 1", "output": "2\n4\n7" }, { "input": "15\n2 1\n3 2\n4 3\n5 4\n6 5\n7 6\n8 7\n9 8\n10 9\n11 10\n12 11\n13 12\n14 13\n15 14\n0 1 0 0 1 1 1 1 1 1 0 0 0 1 1\n1 1 1 1 0 0 1 1 0 1 0 0 1 1 0", "output"...
1,465,745,856
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
12
716
39,321,600
from collections import defaultdict, deque, Counter, OrderedDict from bisect import insort, bisect_right, bisect_left import threading, sys def main(): n = int(input()) adj = [[] for i in range(n + 1)] for i in range(n - 1): a, b = map(int, input().split()) a, b = a - 1, b - 1 ...
Title: Xor-tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub is very proud of his recent discovery, propagating trees. Right now, he invented a new tree, called xor-tree. After this new revolutionary discovery, he invented a game for kids which uses xor-trees. The game is played ...
```python from collections import defaultdict, deque, Counter, OrderedDict from bisect import insort, bisect_right, bisect_left import threading, sys def main(): n = int(input()) adj = [[] for i in range(n + 1)] for i in range(n - 1): a, b = map(int, input().split()) a, b = a - 1, ...
-1
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,673,424,413
2,147,483,647
PyPy 3-64
OK
TESTS
20
62
0
n, m, a = map(int, input().split()) row, col = (n//a) + 1 if n % a else (n//a), (m//a) + 1 if m % a else (m//a) print(row*col)
Title: Theatre Square Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each ...
```python n, m, a = map(int, input().split()) row, col = (n//a) + 1 if n % a else (n//a), (m//a) + 1 if m % a else (m//a) print(row*col) ```
3.969
779
C
Dishonest Sellers
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "sortings" ]
null
null
Igor found out discounts in a shop and decided to buy *n* items. Discounts at the store will last for a week and Igor knows about each item that its price now is *a**i*, and after a week of discounts its price will be *b**i*. Not all of sellers are honest, so now some products could be more expensive than after a week...
In the first line there are two positive integer numbers *n* and *k* (1<=≤<=*n*<=≤<=2·105, 0<=≤<=*k*<=≤<=*n*) — total number of items to buy and minimal number of items Igor wants to by right now. The second line contains sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=104) — prices of items during d...
Print the minimal amount of money Igor will spend to buy all *n* items. Remember, he should buy at least *k* items right now.
[ "3 1\n5 4 6\n3 1 5\n", "5 3\n3 4 7 10 3\n4 5 5 12 5\n" ]
[ "10\n", "25\n" ]
In the first example Igor should buy item 3 paying 6. But items 1 and 2 he should buy after a week. He will pay 3 and 1 for them. So in total he will pay 6 + 3 + 1 = 10. In the second example Igor should buy right now items 1, 2, 4 and 5, paying for them 3, 4, 10 and 3, respectively. Item 3 he should buy after a week ...
1,000
[ { "input": "3 1\n5 4 6\n3 1 5", "output": "10" }, { "input": "5 3\n3 4 7 10 3\n4 5 5 12 5", "output": "25" }, { "input": "1 0\n9\n8", "output": "8" }, { "input": "2 0\n4 10\n1 2", "output": "3" }, { "input": "4 2\n19 5 17 13\n3 18 8 10", "output": "29" }, ...
1,488,258,463
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
405
21,401,600
n, k = map(int, input().strip().split(" ")) a = list(map(int, input().strip().split(" "))) b = list(map(int, input().strip().split(" "))) lista = [] for i in range(n): aux = float(a[i] / b[i]) tupla = (aux, a[i], b[i]) lista.append(tupla) lista.sort(key = lambda tup: tup[0]) suma = ...
Title: Dishonest Sellers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Igor found out discounts in a shop and decided to buy *n* items. Discounts at the store will last for a week and Igor knows about each item that its price now is *a**i*, and after a week of discounts its price will be...
```python n, k = map(int, input().strip().split(" ")) a = list(map(int, input().strip().split(" "))) b = list(map(int, input().strip().split(" "))) lista = [] for i in range(n): aux = float(a[i] / b[i]) tupla = (aux, a[i], b[i]) lista.append(tupla) lista.sort(key = lambda tup: tup[0]) ...
0
887
B
Cubes for Masha
PROGRAMMING
1,300
[ "brute force", "implementation" ]
null
null
Absent-minded Masha got set of *n* cubes for her birthday. At each of 6 faces of each cube, there is exactly one digit from 0 to 9. Masha became interested what is the largest natural *x* such she can make using her new cubes all integers from 1 to *x*. To make a number Masha can rotate her cubes and put them in a ro...
In first line integer *n* is given (1<=≤<=*n*<=≤<=3) — the number of cubes, Masha got for her birthday. Each of next *n* lines contains 6 integers *a**i**j* (0<=≤<=*a**i**j*<=≤<=9) — number on *j*-th face of *i*-th cube.
Print single integer — maximum number *x* such Masha can make any integers from 1 to *x* using her cubes or 0 if Masha can't make even 1.
[ "3\n0 1 2 3 4 5\n6 7 8 9 0 1\n2 3 4 5 6 7\n", "3\n0 1 3 5 6 8\n1 2 4 5 7 8\n2 3 4 6 7 9\n" ]
[ "87", "98" ]
In the first test case, Masha can build all numbers from 1 to 87, but she can't make 88 because there are no two cubes with digit 8.
1,000
[ { "input": "3\n0 1 2 3 4 5\n6 7 8 9 0 1\n2 3 4 5 6 7", "output": "87" }, { "input": "3\n0 1 3 5 6 8\n1 2 4 5 7 8\n2 3 4 6 7 9", "output": "98" }, { "input": "3\n0 1 2 3 4 5\n0 1 2 3 4 5\n0 1 2 3 4 5", "output": "5" }, { "input": "3\n1 2 3 7 8 9\n9 8 7 1 2 3\n7 9 2 3 1 8", ...
1,559,871,883
2,147,483,647
Python 3
OK
TESTS
96
124
307,200
##a = list(map(int, input().split())) ##print(' '.join(map(str, res))) def list_input(): return list(map(int, input().split())) n = int(input()) c = list() for i in range(n): c.append(list_input()) s = set() for i in range(n): for x in c[i]: s.add(x) if n >= 2: for i in range(...
Title: Cubes for Masha Time Limit: None seconds Memory Limit: None megabytes Problem Description: Absent-minded Masha got set of *n* cubes for her birthday. At each of 6 faces of each cube, there is exactly one digit from 0 to 9. Masha became interested what is the largest natural *x* such she can make using her ne...
```python ##a = list(map(int, input().split())) ##print(' '.join(map(str, res))) def list_input(): return list(map(int, input().split())) n = int(input()) c = list() for i in range(n): c.append(list_input()) s = set() for i in range(n): for x in c[i]: s.add(x) if n >= 2: for i...
3
0
none
none
none
0
[ "none" ]
null
null
A new innovative ticketing systems for public transport is introduced in Bytesburg. Now there is a single travel card for all transport. To make a trip a passenger scan his card and then he is charged according to the fare. The fare is constructed in the following manner. There are three types of tickets: 1. a tick...
The first line of input contains integer number *n* (1<=≤<=*n*<=≤<=105) — the number of trips made by passenger. Each of the following *n* lines contains the time of trip *t**i* (0<=≤<=*t**i*<=≤<=109), measured in minutes from the time of starting the system. All *t**i* are different, given in ascending order, i. e. *...
Output *n* integers. For each trip, print the sum the passenger is charged after it.
[ "3\n10\n20\n30\n", "10\n13\n45\n46\n60\n103\n115\n126\n150\n256\n516\n" ]
[ "20\n20\n10\n", "20\n20\n10\n0\n20\n0\n0\n20\n20\n10\n" ]
In the first example, the system works as follows: for the first and second trips it is cheaper to pay for two one-trip tickets, so each time 20 rubles is charged, after the third trip the system understands that it would be cheaper to buy a ticket for 90 minutes. This ticket costs 50 rubles, and the passenger had alre...
0
[ { "input": "3\n10\n20\n30", "output": "20\n20\n10" }, { "input": "10\n13\n45\n46\n60\n103\n115\n126\n150\n256\n516", "output": "20\n20\n10\n0\n20\n0\n0\n20\n20\n10" }, { "input": "7\n100\n138\n279\n308\n396\n412\n821", "output": "20\n20\n20\n20\n20\n20\n0" }, { "input": "8\n0...
1,608,823,111
2,147,483,647
PyPy 3
OK
TESTS
31
358
14,950,400
from sys import stdin from bisect import * rint = lambda: int(stdin.readline()) rint_2d = lambda n: [rint() for _ in range(n)] n = int(input()) a, mem, out = rint_2d(n), [0] * (n + 1), [] for i in range(n): vals = [mem[i] + 20] ix1 = max(bisect_left(a, a[i] - 90 + 1), 0) vals.append(mem[ix1] + ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: A new innovative ticketing systems for public transport is introduced in Bytesburg. Now there is a single travel card for all transport. To make a trip a passenger scan his card and then he is charged according to the fare. The f...
```python from sys import stdin from bisect import * rint = lambda: int(stdin.readline()) rint_2d = lambda n: [rint() for _ in range(n)] n = int(input()) a, mem, out = rint_2d(n), [0] * (n + 1), [] for i in range(n): vals = [mem[i] + 20] ix1 = max(bisect_left(a, a[i] - 90 + 1), 0) vals.append(m...
3
92
A
Chips
PROGRAMMING
800
[ "implementation", "math" ]
A. Chips
2
256
There are *n* walruses sitting in a circle. All of them are numbered in the clockwise order: the walrus number 2 sits to the left of the walrus number 1, the walrus number 3 sits to the left of the walrus number 2, ..., the walrus number 1 sits to the left of the walrus number *n*. The presenter has *m* chips. The pre...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=50, 1<=≤<=*m*<=≤<=104) — the number of walruses and the number of chips correspondingly.
Print the number of chips the presenter ended up with.
[ "4 11\n", "17 107\n", "3 8\n" ]
[ "0\n", "2\n", "1\n" ]
In the first sample the presenter gives one chip to the walrus number 1, two chips to the walrus number 2, three chips to the walrus number 3, four chips to the walrus number 4, then again one chip to the walrus number 1. After that the presenter runs out of chips. He can't give anything to the walrus number 2 and the ...
500
[ { "input": "4 11", "output": "0" }, { "input": "17 107", "output": "2" }, { "input": "3 8", "output": "1" }, { "input": "46 7262", "output": "35" }, { "input": "32 6864", "output": "0" }, { "input": "36 6218", "output": "14" }, { "input": "...
1,439,355,268
2,147,483,647
Python 3
OK
TESTS
25
124
0
s = list(map(int, input().split())) ind = 0 while(s[1] > 0): if(s[1] < ind+1): break s[1] -= ind+1 ind = (ind+1)%s[0] print(s[1])
Title: Chips Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: There are *n* walruses sitting in a circle. All of them are numbered in the clockwise order: the walrus number 2 sits to the left of the walrus number 1, the walrus number 3 sits to the left of the walrus number 2, ..., the walrus nu...
```python s = list(map(int, input().split())) ind = 0 while(s[1] > 0): if(s[1] < ind+1): break s[1] -= ind+1 ind = (ind+1)%s[0] print(s[1]) ```
3.969
567
A
Lineland Mail
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
All cities of Lineland are located on the *Ox* coordinate axis. Thus, each city is associated with its position *x**i* — a coordinate on the *Ox* axis. No two cities are located at a single point. Lineland residents love to send letters to each other. A person may send a letter only if the recipient lives in another c...
The first line of the input contains integer *n* (2<=≤<=*n*<=≤<=105) — the number of cities in Lineland. The second line contains the sequence of *n* distinct integers *x*1,<=*x*2,<=...,<=*x**n* (<=-<=109<=≤<=*x**i*<=≤<=109), where *x**i* is the *x*-coordinate of the *i*-th city. All the *x**i*'s are distinct and follo...
Print *n* lines, the *i*-th line must contain two integers *min**i*,<=*max**i*, separated by a space, where *min**i* is the minimum cost of sending a letter from the *i*-th city, and *max**i* is the maximum cost of sending a letter from the *i*-th city.
[ "4\n-5 -2 2 7\n", "2\n-1 1\n" ]
[ "3 12\n3 9\n4 7\n5 12\n", "2 2\n2 2\n" ]
none
500
[ { "input": "4\n-5 -2 2 7", "output": "3 12\n3 9\n4 7\n5 12" }, { "input": "2\n-1 1", "output": "2 2\n2 2" }, { "input": "3\n-1 0 1", "output": "1 2\n1 1\n1 2" }, { "input": "4\n-1 0 1 3", "output": "1 4\n1 3\n1 2\n2 4" }, { "input": "3\n-1000000000 0 1000000000", ...
1,662,773,872
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
28
218
22,118,400
t=int(input()) c=list(map(int,input().split())) l=sorted(c) m=[] for j in range(t): if j==0: min1 = abs(l[1]-l[0]) max1=abs(l[t-1]-l[0]) m.append(min1) m.append(max1) if j!=t-1 and j!=0: if abs(l[j-1]-l[j])<abs(l[j+1]-l[j]): ...
Title: Lineland Mail Time Limit: None seconds Memory Limit: None megabytes Problem Description: All cities of Lineland are located on the *Ox* coordinate axis. Thus, each city is associated with its position *x**i* — a coordinate on the *Ox* axis. No two cities are located at a single point. Lineland residents love...
```python t=int(input()) c=list(map(int,input().split())) l=sorted(c) m=[] for j in range(t): if j==0: min1 = abs(l[1]-l[0]) max1=abs(l[t-1]-l[0]) m.append(min1) m.append(max1) if j!=t-1 and j!=0: if abs(l[j-1]-l[j])<abs(l[j+1]-l[j]): ...
0
137
B
Permutation
PROGRAMMING
1,000
[ "greedy" ]
null
null
"Hey, it's homework time" — thought Polycarpus and of course he started with his favourite subject, IT. Polycarpus managed to solve all tasks but for the last one in 20 minutes. However, as he failed to solve the last task after some considerable time, the boy asked you to help him. The sequence of *n* integers is cal...
The first line of the input data contains an integer *n* (1<=≤<=*n*<=≤<=5000) which represents how many numbers are in the sequence. The second line contains a sequence of integers *a**i* (1<=≤<=*a**i*<=≤<=5000,<=1<=≤<=*i*<=≤<=*n*).
Print the only number — the minimum number of changes needed to get the permutation.
[ "3\n3 1 2\n", "2\n2 2\n", "5\n5 3 3 3 1\n" ]
[ "0\n", "1\n", "2\n" ]
The first sample contains the permutation, which is why no replacements are required. In the second sample it is enough to replace the first element with the number 1 and that will make the sequence the needed permutation. In the third sample we can replace the second element with number 4 and the fourth element with...
1,000
[ { "input": "3\n3 1 2", "output": "0" }, { "input": "2\n2 2", "output": "1" }, { "input": "5\n5 3 3 3 1", "output": "2" }, { "input": "5\n6 6 6 6 6", "output": "5" }, { "input": "10\n1 1 2 2 8 8 7 7 9 9", "output": "5" }, { "input": "8\n9 8 7 6 5 4 3 2"...
1,566,211,385
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
218
0
n=int(input()) arr=list(map(int,(input().split()))) l=len(set(arr)) print(n-l)
Title: Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: "Hey, it's homework time" — thought Polycarpus and of course he started with his favourite subject, IT. Polycarpus managed to solve all tasks but for the last one in 20 minutes. However, as he failed to solve the last task ...
```python n=int(input()) arr=list(map(int,(input().split()))) l=len(set(arr)) print(n-l) ```
0
209
A
Multicolored Marbles
PROGRAMMING
1,600
[ "dp", "math" ]
null
null
Polycarpus plays with red and blue marbles. He put *n* marbles from the left to the right in a row. As it turned out, the marbles form a zebroid. A non-empty sequence of red and blue marbles is a zebroid, if the colors of the marbles in this sequence alternate. For example, sequences (red; blue; red) and (blue) are ze...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=106) — the number of marbles in Polycarpus's sequence.
Print a single number — the answer to the problem modulo 1000000007 (109<=+<=7).
[ "3\n", "4\n" ]
[ "6\n", "11\n" ]
Let's consider the first test sample. Let's assume that Polycarpus initially had sequence (red; blue; red), so there are six ways to pick a zebroid: - pick the first marble; - pick the second marble; - pick the third marble; - pick the first and second marbles; - pick the second and third marbles; - pick the fi...
500
[ { "input": "3", "output": "6" }, { "input": "4", "output": "11" }, { "input": "1", "output": "1" }, { "input": "2", "output": "3" }, { "input": "5", "output": "19" }, { "input": "6", "output": "32" }, { "input": "7", "output": "53" },...
1,687,893,962
2,147,483,647
PyPy 3-64
OK
TESTS
50
904
100,044,800
import sys input = lambda: sys.stdin.readline().rstrip() MOD = 10**9+7 N = int(input()) dp = [[0,0] for _ in range(N+1)] for i in range(N): dp[i+1][0]=dp[i][0] dp[i+1][1]=dp[i][1] if i%2: dp[i+1][1]+=dp[i][0]+1 else: dp[i+1][0]+=dp[i][1]+1 dp[i+1][0]%=MOD dp[i+1]...
Title: Multicolored Marbles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus plays with red and blue marbles. He put *n* marbles from the left to the right in a row. As it turned out, the marbles form a zebroid. A non-empty sequence of red and blue marbles is a zebroid, if the c...
```python import sys input = lambda: sys.stdin.readline().rstrip() MOD = 10**9+7 N = int(input()) dp = [[0,0] for _ in range(N+1)] for i in range(N): dp[i+1][0]=dp[i][0] dp[i+1][1]=dp[i][1] if i%2: dp[i+1][1]+=dp[i][0]+1 else: dp[i+1][0]+=dp[i][1]+1 dp[i+1][0]%=MOD ...
3
224
A
Parallelepiped
PROGRAMMING
1,100
[ "brute force", "geometry", "math" ]
null
null
You've got a rectangular parallelepiped with integer edge lengths. You know the areas of its three faces that have a common vertex. Your task is to find the sum of lengths of all 12 edges of this parallelepiped.
The first and the single line contains three space-separated integers — the areas of the parallelepiped's faces. The area's values are positive (<=&gt;<=0) and do not exceed 104. It is guaranteed that there exists at least one parallelepiped that satisfies the problem statement.
Print a single number — the sum of all edges of the parallelepiped.
[ "1 1 1\n", "4 6 6\n" ]
[ "12\n", "28\n" ]
In the first sample the parallelepiped has sizes 1 × 1 × 1, in the second one — 2 × 2 × 3.
500
[ { "input": "1 1 1", "output": "12" }, { "input": "4 6 6", "output": "28" }, { "input": "20 10 50", "output": "68" }, { "input": "9 4 36", "output": "56" }, { "input": "324 9 36", "output": "184" }, { "input": "1333 93 129", "output": "308" }, {...
1,605,953,178
2,147,483,647
PyPy 3
OK
TESTS
27
468
2,355,200
import sys,os,io,time,copy if os.path.exists('input.txt'): sys.stdin = open('input.txt', 'r') sys.stdout = open('output.txt', 'w') import math def is_int(n): if n//1==n/1: return True else: return False def main(): # start=time.time() a,b,c=map(int,input().split...
Title: Parallelepiped Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a rectangular parallelepiped with integer edge lengths. You know the areas of its three faces that have a common vertex. Your task is to find the sum of lengths of all 12 edges of this parallelepiped. Input S...
```python import sys,os,io,time,copy if os.path.exists('input.txt'): sys.stdin = open('input.txt', 'r') sys.stdout = open('output.txt', 'w') import math def is_int(n): if n//1==n/1: return True else: return False def main(): # start=time.time() a,b,c=map(int,inp...
3
772
B
Volatile Kite
PROGRAMMING
1,800
[ "geometry" ]
null
null
You are given a convex polygon *P* with *n* distinct vertices *p*1,<=*p*2,<=...,<=*p**n*. Vertex *p**i* has coordinates (*x**i*,<=*y**i*) in the 2D plane. These vertices are listed in clockwise order. You can choose a real number *D* and move each vertex of the polygon a distance of at most *D* from their original pos...
The first line has one integer *n* (4<=≤<=*n*<=≤<=1<=000) — the number of vertices. The next *n* lines contain the coordinates of the vertices. Line *i* contains two integers *x**i* and *y**i* (<=-<=109<=≤<=*x**i*,<=*y**i*<=≤<=109) — the coordinates of the *i*-th vertex. These points are guaranteed to be given in cloc...
Print one real number *D*, which is the maximum real number such that no matter how you move the vertices, the polygon stays convex. Your answer will be considered correct if its absolute or relative error does not exceed 10<=-<=6. Namely, let's assume that your answer is *a* and the answer of the jury is *b*. The ch...
[ "4\n0 0\n0 1\n1 1\n1 0\n", "6\n5 0\n10 0\n12 -4\n10 -8\n5 -8\n3 -4\n" ]
[ "0.3535533906\n", "1.0000000000\n" ]
Here is a picture of the first sample <img class="tex-graphics" src="https://espresso.codeforces.com/f83aa076d2f437f9bb785cae769c3ae310eff351.png" style="max-width: 100.0%;max-height: 100.0%;"/> Here is an example of making the polygon non-convex. <img class="tex-graphics" src="https://espresso.codeforces.com/fbadb8...
1,000
[ { "input": "4\n0 0\n0 1\n1 1\n1 0", "output": "0.3535533906" }, { "input": "6\n5 0\n10 0\n12 -4\n10 -8\n5 -8\n3 -4", "output": "1.0000000000" }, { "input": "19\n449447997 711296339\n530233434 692216537\n535464528 613140435\n535533467 100893188\n530498867 -265063956\n519107979 -271820709\...
1,492,381,510
2,147,483,647
Python 3
OK
TESTS
36
62
5,632,000
from math import inf def vect(x, y): return abs(sum([x[i]*(y[(i+1)%3]-y[(i+2)%3]) for i in range(3)])) def l(x, y): return ((x[0]-x[2])**2 + (y[0]-y[2])**2)**0.5 def h(x, y): return vect(x, y) / l(x, y) n = int(input()) x = [] y = [] for i in range(n): a, b = [int(x) for x in input().spli...
Title: Volatile Kite Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a convex polygon *P* with *n* distinct vertices *p*1,<=*p*2,<=...,<=*p**n*. Vertex *p**i* has coordinates (*x**i*,<=*y**i*) in the 2D plane. These vertices are listed in clockwise order. You can choose a re...
```python from math import inf def vect(x, y): return abs(sum([x[i]*(y[(i+1)%3]-y[(i+2)%3]) for i in range(3)])) def l(x, y): return ((x[0]-x[2])**2 + (y[0]-y[2])**2)**0.5 def h(x, y): return vect(x, y) / l(x, y) n = int(input()) x = [] y = [] for i in range(n): a, b = [int(x) for x in in...
3
0
none
none
none
0
[ "none" ]
null
null
Today Pari and Arya are playing a game called Remainders. Pari chooses two positive integer *x* and *k*, and tells Arya *k* but not *x*. Arya have to find the value . There are *n* ancient numbers *c*1,<=*c*2,<=...,<=*c**n* and Pari has to tell Arya if Arya wants. Given *k* and the ancient values, tell us if Arya has...
The first line of the input contains two integers *n* and *k* (1<=≤<=*n*,<= *k*<=≤<=1<=000<=000) — the number of ancient integers and value *k* that is chosen by Pari. The second line contains *n* integers *c*1,<=*c*2,<=...,<=*c**n* (1<=≤<=*c**i*<=≤<=1<=000<=000).
Print "Yes" (without quotes) if Arya has a winning strategy independent of value of *x*, or "No" (without quotes) otherwise.
[ "4 5\n2 3 5 12\n", "2 7\n2 3\n" ]
[ "Yes\n", "No\n" ]
In the first sample, Arya can understand <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/d170efffcde0907ee6bcf32de21051bce0677a2c.png" style="max-width: 100.0%;max-height: 100.0%;"/> because 5 is one of the ancient numbers. In the second sample, Arya can't be sure what <img align="middle" ...
0
[ { "input": "4 5\n2 3 5 12", "output": "Yes" }, { "input": "2 7\n2 3", "output": "No" }, { "input": "1 6\n8", "output": "No" }, { "input": "2 3\n9 4", "output": "Yes" }, { "input": "4 16\n19 16 13 9", "output": "Yes" }, { "input": "5 10\n5 16 19 9 17", ...
1,697,404,079
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
#include <iostream> using namespace std; int main() { int a = 12; int b = 34; int times = 1; // Find the appropriate multiplier for 'a' while (times <= b) times *= 10; // Merge 'a' and 'b' int merged = a * times + b; cout << "Merged number: " << merged << endl;...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today Pari and Arya are playing a game called Remainders. Pari chooses two positive integer *x* and *k*, and tells Arya *k* but not *x*. Arya have to find the value . There are *n* ancient numbers *c*1,<=*c*2,<=...,<=*c**n* and P...
```python #include <iostream> using namespace std; int main() { int a = 12; int b = 34; int times = 1; // Find the appropriate multiplier for 'a' while (times <= b) times *= 10; // Merge 'a' and 'b' int merged = a * times + b; cout << "Merged number: " << merge...
-1
369
A
Valera and Plates
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Valera is a lazy student. He has *m* clean bowls and *k* clean plates. Valera has made an eating plan for the next *n* days. As Valera is lazy, he will eat exactly one dish per day. At that, in order to eat a dish, he needs exactly one clean plate or bowl. We know that Valera can cook only two types of dishes. He can...
The first line of the input contains three integers *n*, *m*, *k* (1<=≤<=*n*,<=*m*,<=*k*<=≤<=1000) — the number of the planned days, the number of clean bowls and the number of clean plates. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=2). If *a**i* equals one, then on day *i* Val...
Print a single integer — the minimum number of times Valera will need to wash a plate/bowl.
[ "3 1 1\n1 2 1\n", "4 3 1\n1 1 1 1\n", "3 1 2\n2 2 2\n", "8 2 2\n1 2 1 2 1 2 1 2\n" ]
[ "1\n", "1\n", "0\n", "4\n" ]
In the first sample Valera will wash a bowl only on the third day, so the answer is one. In the second sample, Valera will have the first type of the dish during all four days, and since there are only three bowls, he will wash a bowl exactly once. In the third sample, Valera will have the second type of dish for all...
500
[ { "input": "3 1 1\n1 2 1", "output": "1" }, { "input": "4 3 1\n1 1 1 1", "output": "1" }, { "input": "3 1 2\n2 2 2", "output": "0" }, { "input": "8 2 2\n1 2 1 2 1 2 1 2", "output": "4" }, { "input": "2 100 100\n2 2", "output": "0" }, { "input": "1 1 1\...
1,642,666,918
2,147,483,647
Python 3
OK
TESTS
63
46
0
n, m, k = list(map(int, input().split())) a = list(map(int, input().split())) def solve(n, m, k, a): cnt = 0 for dish in a: if dish == 1: if m > 0: m -= 1 else: cnt += 1 else: if m == 0 and k == 0: cnt += 1 ...
Title: Valera and Plates Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera is a lazy student. He has *m* clean bowls and *k* clean plates. Valera has made an eating plan for the next *n* days. As Valera is lazy, he will eat exactly one dish per day. At that, in order to eat a dish, ...
```python n, m, k = list(map(int, input().split())) a = list(map(int, input().split())) def solve(n, m, k, a): cnt = 0 for dish in a: if dish == 1: if m > 0: m -= 1 else: cnt += 1 else: if m == 0 and k == 0: c...
3
650
A
Watchmen
PROGRAMMING
1,400
[ "data structures", "geometry", "math" ]
null
null
Watchmen are in a danger and Doctor Manhattan together with his friend Daniel Dreiberg should warn them as soon as possible. There are *n* watchmen on a plane, the *i*-th watchman is located at point (*x**i*,<=*y**i*). They need to arrange a plan, but there are some difficulties on their way. As you know, Doctor Manha...
The first line of the input contains the single integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of watchmen. Each of the following *n* lines contains two integers *x**i* and *y**i* (|*x**i*|,<=|*y**i*|<=≤<=109). Some positions may coincide.
Print the number of pairs of watchmen such that the distance between them calculated by Doctor Manhattan is equal to the distance calculated by Daniel.
[ "3\n1 1\n7 5\n1 5\n", "6\n0 0\n0 1\n0 2\n-1 1\n0 1\n1 1\n" ]
[ "2\n", "11\n" ]
In the first sample, the distance between watchman 1 and watchman 2 is equal to |1 - 7| + |1 - 5| = 10 for Doctor Manhattan and <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/bcb5b7064b5f02088da0fdcf677e6fda495dd0df.png" style="max-width: 100.0%;max-height: 100.0%;"/> for Daniel. For pairs...
500
[ { "input": "3\n1 1\n7 5\n1 5", "output": "2" }, { "input": "6\n0 0\n0 1\n0 2\n-1 1\n0 1\n1 1", "output": "11" }, { "input": "10\n46 -55\n46 45\n46 45\n83 -55\n46 45\n83 -55\n46 45\n83 45\n83 45\n46 -55", "output": "33" }, { "input": "1\n-5 -90", "output": "0" }, { ...
1,565,118,719
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
124
0
import sys input = sys.stdin.readline n = int(input()) N = 0 x, y = {}, {} pp = [] for i in range(n): xi, yi = map(int, input().split()) if xi not in x: x[xi] = [] x[xi].append(yi) if yi not in y: y[yi] = [] y[yi].append(xi) p = (xi, yi) if p not in pp: ...
Title: Watchmen Time Limit: None seconds Memory Limit: None megabytes Problem Description: Watchmen are in a danger and Doctor Manhattan together with his friend Daniel Dreiberg should warn them as soon as possible. There are *n* watchmen on a plane, the *i*-th watchman is located at point (*x**i*,<=*y**i*). They n...
```python import sys input = sys.stdin.readline n = int(input()) N = 0 x, y = {}, {} pp = [] for i in range(n): xi, yi = map(int, input().split()) if xi not in x: x[xi] = [] x[xi].append(yi) if yi not in y: y[yi] = [] y[yi].append(xi) p = (xi, yi) if p not i...
0
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,688,282,538
2,147,483,647
Python 3
OK
TESTS
44
92
0
s = input() dangerous = False if '0000000' in s or '1111111' in s: dangerous = True if dangerous: 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 s = input() dangerous = False if '0000000' in s or '1111111' in s: dangerous = True if dangerous: print("YES") else: print("NO") ```
3.977
4
A
Watermelon
PROGRAMMING
800
[ "brute force", "math" ]
A. Watermelon
1
64
One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem. Pete and ...
The first (and the only) input line contains integer number *w* (1<=≤<=*w*<=≤<=100) — the weight of the watermelon bought by the boys.
Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.
[ "8\n" ]
[ "YES\n" ]
For example, the boys can divide the watermelon into two parts of 2 and 6 kilos respectively (another variant — two parts of 4 and 4 kilos).
0
[ { "input": "8", "output": "YES" }, { "input": "5", "output": "NO" }, { "input": "4", "output": "YES" }, { "input": "3", "output": "NO" }, { "input": "2", "output": "NO" }, { "input": "1", "output": "NO" }, { "input": "7", "output": "NO"...
1,692,929,643
2,147,483,647
Python 3
OK
TESTS
20
92
0
def can_divide_watermelon(w): # If the weight is less than 4, it's not possible to divide it into even parts if w < 4: return "NO" # If the weight is even, it can be divided into two even parts if w % 2 == 0: return "YES" return "NO" # Read the input w = int(in...
Title: Watermelon Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dyin...
```python def can_divide_watermelon(w): # If the weight is less than 4, it's not possible to divide it into even parts if w < 4: return "NO" # If the weight is even, it can be divided into two even parts if w % 2 == 0: return "YES" return "NO" # Read the input ...
3.954
573
A
Bear and Poker
PROGRAMMING
1,300
[ "implementation", "math", "number theory" ]
null
null
Limak is an old brown bear. He often plays poker with his friends. Today they went to a casino. There are *n* players (including Limak himself) and right now all of them have bids on the table. *i*-th of them has bid with size *a**i* dollars. Each player can double his bid any number of times and triple his bid any nu...
First line of input contains an integer *n* (2<=≤<=*n*<=≤<=105), the number of players. The second line contains *n* integer numbers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the bids of players.
Print "Yes" (without the quotes) if players can make their bids become equal, or "No" otherwise.
[ "4\n75 150 75 50\n", "3\n100 150 250\n" ]
[ "Yes\n", "No\n" ]
In the first sample test first and third players should double their bids twice, second player should double his bid once and fourth player should both double and triple his bid. It can be shown that in the second sample test there is no way to make all bids equal.
500
[ { "input": "4\n75 150 75 50", "output": "Yes" }, { "input": "3\n100 150 250", "output": "No" }, { "input": "7\n34 34 68 34 34 68 34", "output": "Yes" }, { "input": "10\n72 96 12 18 81 20 6 2 54 1", "output": "No" }, { "input": "20\n958692492 954966768 77387000 724...
1,668,173,679
2,147,483,647
Python 3
OK
TESTS
70
639
8,806,400
n = int(input()) l = list(map(int, input().split())) for i in range(n): while(l[i]%2 == 0): l[i] //= 2 for i in range(n): while(l[i]%3 == 0): l[i] //= 3 c = l.count(l[0]) if(c == n): print("YES") else: print("NO")
Title: Bear and Poker Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is an old brown bear. He often plays poker with his friends. Today they went to a casino. There are *n* players (including Limak himself) and right now all of them have bids on the table. *i*-th of them has bid wit...
```python n = int(input()) l = list(map(int, input().split())) for i in range(n): while(l[i]%2 == 0): l[i] //= 2 for i in range(n): while(l[i]%3 == 0): l[i] //= 3 c = l.count(l[0]) if(c == n): print("YES") else: print("NO") ```
3
863
B
Kayaking
PROGRAMMING
1,500
[ "brute force", "greedy", "sortings" ]
null
null
Vadim is really keen on travelling. Recently he heard about kayaking activity near his town and became very excited about it, so he joined a party of kayakers. Now the party is ready to start its journey, but firstly they have to choose kayaks. There are 2·*n* people in the group (including Vadim), and they have exact...
The first line contains one number *n* (2<=≤<=*n*<=≤<=50). The second line contains 2·*n* integer numbers *w*1, *w*2, ..., *w*2*n*, where *w**i* is weight of person *i* (1<=≤<=*w**i*<=≤<=1000).
Print minimum possible total instability.
[ "2\n1 2 3 4\n", "4\n1 3 4 6 3 4 100 200\n" ]
[ "1\n", "5\n" ]
none
0
[ { "input": "2\n1 2 3 4", "output": "1" }, { "input": "4\n1 3 4 6 3 4 100 200", "output": "5" }, { "input": "3\n305 139 205 406 530 206", "output": "102" }, { "input": "3\n610 750 778 6 361 407", "output": "74" }, { "input": "5\n97 166 126 164 154 98 221 7 51 47", ...
1,671,909,382
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
30
0
n = int(input()) weights_string = input() weights_set = weights_string.split() weights = [] for i in range(len(weights_set)): weights.append(int(weights_set[i])) weights_sort = sorted(weights) runmax = 0 runtotal = 0 for i in range(0, 2*n, 2): if runmax <= weights_sort[i+1] - weights_sort[i]: runmax = ...
Title: Kayaking Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vadim is really keen on travelling. Recently he heard about kayaking activity near his town and became very excited about it, so he joined a party of kayakers. Now the party is ready to start its journey, but firstly they hav...
```python n = int(input()) weights_string = input() weights_set = weights_string.split() weights = [] for i in range(len(weights_set)): weights.append(int(weights_set[i])) weights_sort = sorted(weights) runmax = 0 runtotal = 0 for i in range(0, 2*n, 2): if runmax <= weights_sort[i+1] - weights_sort[i]: ...
0
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,662,417,972
2,147,483,647
Python 3
OK
TESTS
34
92
0
''' One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are n lines in that description each of which described one goal....
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python ''' One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are n lines in that description each of which described...
3.977
919
B
Perfect Number
PROGRAMMING
1,100
[ "binary search", "brute force", "dp", "implementation", "number theory" ]
null
null
We consider a positive integer perfect, if and only if the sum of its digits is exactly $10$. Given a positive integer $k$, your task is to find the $k$-th smallest perfect positive integer.
A single line with a positive integer $k$ ($1 \leq k \leq 10\,000$).
A single number, denoting the $k$-th smallest perfect integer.
[ "1\n", "2\n" ]
[ "19\n", "28\n" ]
The first perfect integer is $19$ and the second one is $28$.
750
[ { "input": "1", "output": "19" }, { "input": "2", "output": "28" }, { "input": "13", "output": "136" }, { "input": "101", "output": "1432" }, { "input": "1023", "output": "100270" }, { "input": "9999", "output": "10800010" }, { "input": "10...
1,687,935,628
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
5
2,000
8,806,400
n=int(input()) i=0 k=0 def s(x): x=list(str(x)) x=list(map(int,x)) return sum(x) while(s(i)!=10 or k!=n): i=i+1 if(s(i)==10): k=k+1 print(i)
Title: Perfect Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: We consider a positive integer perfect, if and only if the sum of its digits is exactly $10$. Given a positive integer $k$, your task is to find the $k$-th smallest perfect positive integer. Input Specification: A singl...
```python n=int(input()) i=0 k=0 def s(x): x=list(str(x)) x=list(map(int,x)) return sum(x) while(s(i)!=10 or k!=n): i=i+1 if(s(i)==10): k=k+1 print(i) ```
0
387
B
George and Round
PROGRAMMING
1,200
[ "brute force", "greedy", "two pointers" ]
null
null
George decided to prepare a Codesecrof round, so he has prepared *m* problems for the round. Let's number the problems with integers 1 through *m*. George estimates the *i*-th problem's complexity by integer *b**i*. To make the round good, he needs to put at least *n* problems there. Besides, he needs to have at least...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=3000) — the minimal number of problems in a good round and the number of problems George's prepared. The second line contains space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a*1<=&lt;<=*a*2<=&lt;<=...<=&lt;<=*a**n*<=≤<=106) — the requirem...
Print a single integer — the answer to the problem.
[ "3 5\n1 2 3\n1 2 2 3 3\n", "3 5\n1 2 3\n1 1 1 1 1\n", "3 1\n2 3 4\n1\n" ]
[ "0\n", "2\n", "3\n" ]
In the first sample the set of the prepared problems meets the requirements for a good round. In the second sample, it is enough to come up with and prepare two problems with complexities 2 and 3 to get a good round. In the third sample it is very easy to get a good round if come up with and prepare extra problems wi...
1,000
[ { "input": "3 5\n1 2 3\n1 2 2 3 3", "output": "0" }, { "input": "3 5\n1 2 3\n1 1 1 1 1", "output": "2" }, { "input": "3 1\n2 3 4\n1", "output": "3" }, { "input": "29 100\n20 32 41 67 72 155 331 382 399 412 465 470 484 511 515 529 616 637 679 715 733 763 826 843 862 903 925 97...
1,573,355,547
2,147,483,647
Python 3
OK
TESTS
41
124
819,200
def main(): nm=input().split(' ') s1=input().split(' ') s2=input().split(' ') n=int(nm[0]) m=int(nm[1]) j=0 for i in range(len(s1)): while j<m and int(s2[j])<int(s1[i]): j+=1 if j<m: n-=1 j+=1 else: break ...
Title: George and Round Time Limit: None seconds Memory Limit: None megabytes Problem Description: George decided to prepare a Codesecrof round, so he has prepared *m* problems for the round. Let's number the problems with integers 1 through *m*. George estimates the *i*-th problem's complexity by integer *b**i*. T...
```python def main(): nm=input().split(' ') s1=input().split(' ') s2=input().split(' ') n=int(nm[0]) m=int(nm[1]) j=0 for i in range(len(s1)): while j<m and int(s2[j])<int(s1[i]): j+=1 if j<m: n-=1 j+=1 else: ...
3
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,617,198,805
2,147,483,647
Python 3
OK
TESTS
30
154
0
#word codeforces # if lower > upper = use lower # if equal use lower n =input() up = 0 ; low = 0 for i in n: if i.isupper(): up+=1 else: low+=1 if up > low: print(n.upper()) elif up < low: print(n.lower()) else: print(n.lower())
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python #word codeforces # if lower > upper = use lower # if equal use lower n =input() up = 0 ; low = 0 for i in n: if i.isupper(): up+=1 else: low+=1 if up > low: print(n.upper()) elif up < low: print(n.lower()) else: print(n.lower()) ```
3.9615
317
A
Perfect Pair
PROGRAMMING
1,600
[ "brute force" ]
null
null
Let us call a pair of integer numbers *m*-perfect, if at least one number in the pair is greater than or equal to *m*. Thus, the pairs (3, 3) and (0, 2) are 2-perfect while the pair (-1, 1) is not. Two integers *x*, *y* are written on the blackboard. It is allowed to erase one of them and replace it with the sum of th...
Single line of the input contains three integers *x*, *y* and *m* (<=-<=1018<=≤<=*x*, *y*, *m*<=≤<=1018). Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preffered to use the cin, cout streams or the %I64d specifier.
Print the minimum number of operations or "-1" (without quotes), if it is impossible to transform the given pair to the *m*-perfect one.
[ "1 2 5\n", "-1 4 15\n", "0 -1 5\n" ]
[ "2\n", "4\n", "-1\n" ]
In the first sample the following sequence of operations is suitable: (1, 2) <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> (3, 2) <img align="middle" class="tex-formula" src="https://espresso.cod...
500
[ { "input": "1 2 5", "output": "2" }, { "input": "-1 4 15", "output": "4" }, { "input": "0 -1 5", "output": "-1" }, { "input": "0 1 8", "output": "5" }, { "input": "-134 -345 -134", "output": "0" }, { "input": "-134 -345 -133", "output": "-1" }, ...
1,489,573,620
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
122
4,608,000
x,y,m = input().strip().split(' ') x = int(x) y = int(y) m = int(m) val = (m-x)/y if(val<0): print (-1) elif((m-x)%y!=0): print (-1) else: print(int(val))
Title: Perfect Pair Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let us call a pair of integer numbers *m*-perfect, if at least one number in the pair is greater than or equal to *m*. Thus, the pairs (3, 3) and (0, 2) are 2-perfect while the pair (-1, 1) is not. Two integers *x*, *y* a...
```python x,y,m = input().strip().split(' ') x = int(x) y = int(y) m = int(m) val = (m-x)/y if(val<0): print (-1) elif((m-x)%y!=0): print (-1) else: print(int(val)) ```
0
404
A
Valera and X
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a test on alphabet today. At the test Valera got a square piece of squared paper. The length of the...
The first line contains integer *n* (3<=≤<=*n*<=&lt;<=300; *n* is odd). Each of the next *n* lines contains *n* small English letters — the description of Valera's paper.
Print string "YES", if the letters on the paper form letter "X". Otherwise, print string "NO". Print the strings without quotes.
[ "5\nxooox\noxoxo\nsoxoo\noxoxo\nxooox\n", "3\nwsw\nsws\nwsw\n", "3\nxpx\npxp\nxpe\n" ]
[ "NO\n", "YES\n", "NO\n" ]
none
500
[ { "input": "5\nxooox\noxoxo\nsoxoo\noxoxo\nxooox", "output": "NO" }, { "input": "3\nwsw\nsws\nwsw", "output": "YES" }, { "input": "3\nxpx\npxp\nxpe", "output": "NO" }, { "input": "5\nliiil\nilili\niilii\nilili\nliiil", "output": "YES" }, { "input": "7\nbwccccb\nck...
1,599,312,524
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
93
0
n,arr1,arr2=int(input()),[],[] for i in range(n): s=input() for j in range(len(s)): if i==j or j==n-1-i:arr1.append(s[j]) else:arr2.append(s[j]) if len(set(arr1))==1==len(set(arr2)):print('YES') else:print('NO')
Title: Valera and X Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a...
```python n,arr1,arr2=int(input()),[],[] for i in range(n): s=input() for j in range(len(s)): if i==j or j==n-1-i:arr1.append(s[j]) else:arr2.append(s[j]) if len(set(arr1))==1==len(set(arr2)):print('YES') else:print('NO') ```
0
887
A
Div. 64
PROGRAMMING
1,000
[ "implementation" ]
null
null
Top-model Izabella participates in the competition. She wants to impress judges and show her mathematical skills. Her problem is following: for given string, consisting of only 0 and 1, tell if it's possible to remove some digits in such a way, that remaining number is a representation of some positive integer, divisi...
In the only line given a non-empty binary string *s* with length up to 100.
Print «yes» (without quotes) if it's possible to remove digits required way and «no» otherwise.
[ "100010001\n", "100\n" ]
[ "yes", "no" ]
In the first test case, you can get string 1 000 000 after removing two ones which is a representation of number 64 in the binary numerical system. You can read more about binary numeral system representation here: [https://en.wikipedia.org/wiki/Binary_system](https://en.wikipedia.org/wiki/Binary_system)
500
[ { "input": "100010001", "output": "yes" }, { "input": "100", "output": "no" }, { "input": "0000001000000", "output": "yes" }, { "input": "1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "output": "no" }, { "in...
1,509,810,005
905
Python 3
WRONG_ANSWER
TESTS
0
31
0
__author__ = 'Matias' def onkoBinaari(inp): valid = True count = 0 for a in inp: if a == '0' or a == '1': count += 1 else: valid = False break return [valid, count] def onko1ja6nollaa(inp): onefound = 0 countToSix = 0 ...
Title: Div. 64 Time Limit: None seconds Memory Limit: None megabytes Problem Description: Top-model Izabella participates in the competition. She wants to impress judges and show her mathematical skills. Her problem is following: for given string, consisting of only 0 and 1, tell if it's possible to remove some dig...
```python __author__ = 'Matias' def onkoBinaari(inp): valid = True count = 0 for a in inp: if a == '0' or a == '1': count += 1 else: valid = False break return [valid, count] def onko1ja6nollaa(inp): onefound = 0 countToSix...
0
231
A
Team
PROGRAMMING
800
[ "brute force", "greedy" ]
null
null
One day three best friends Petya, Vasya and Tonya decided to form a team and take part in programming contests. Participants are usually offered several problems during programming contests. Long before the start the friends decided that they will implement a problem if at least two of them are sure about the solution....
The first input line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of problems in the contest. Then *n* lines contain three integers each, each integer is either 0 or 1. If the first number in the line equals 1, then Petya is sure about the problem's solution, otherwise he isn't sure. The second numbe...
Print a single integer — the number of problems the friends will implement on the contest.
[ "3\n1 1 0\n1 1 1\n1 0 0\n", "2\n1 0 0\n0 1 1\n" ]
[ "2\n", "1\n" ]
In the first sample Petya and Vasya are sure that they know how to solve the first problem and all three of them know how to solve the second problem. That means that they will write solutions for these problems. Only Petya is sure about the solution for the third problem, but that isn't enough, so the friends won't ta...
500
[ { "input": "3\n1 1 0\n1 1 1\n1 0 0", "output": "2" }, { "input": "2\n1 0 0\n0 1 1", "output": "1" }, { "input": "1\n1 0 0", "output": "0" }, { "input": "2\n1 0 0\n1 1 1", "output": "1" }, { "input": "5\n1 0 0\n0 1 0\n1 1 1\n0 0 1\n0 0 0", "output": "1" }, ...
1,696,587,043
2,147,483,647
Python 3
OK
TESTS
21
92
102,400
n=int(input()) L=[] for i in range(n): ss=input() W=ss.split() L.append(W) maincount=0 for i in L: count=0 for j in i: if int(j)==1: count+=1 if count>=2: maincount+=1 print(maincount)
Title: Team Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day three best friends Petya, Vasya and Tonya decided to form a team and take part in programming contests. Participants are usually offered several problems during programming contests. Long before the start the friends decid...
```python n=int(input()) L=[] for i in range(n): ss=input() W=ss.split() L.append(W) maincount=0 for i in L: count=0 for j in i: if int(j)==1: count+=1 if count>=2: maincount+=1 print(maincount) ```
3
964
A
Splits
PROGRAMMING
800
[ "math" ]
null
null
Let's define a split of $n$ as a nonincreasing sequence of positive integers, the sum of which is $n$. For example, the following sequences are splits of $8$: $[4, 4]$, $[3, 3, 2]$, $[2, 2, 1, 1, 1, 1]$, $[5, 2, 1]$. The following sequences aren't splits of $8$: $[1, 7]$, $[5, 4]$, $[11, -3]$, $[1, 1, 4, 1, 1]$. Th...
The first line contains one integer $n$ ($1 \leq n \leq 10^9$).
Output one integer — the answer to the problem.
[ "7\n", "8\n", "9\n" ]
[ "4\n", "5\n", "5\n" ]
In the first sample, there are following possible weights of splits of $7$: Weight 1: [$\textbf 7$] Weight 2: [$\textbf 3$, $\textbf 3$, 1] Weight 3: [$\textbf 2$, $\textbf 2$, $\textbf 2$, 1] Weight 7: [$\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$]
500
[ { "input": "7", "output": "4" }, { "input": "8", "output": "5" }, { "input": "9", "output": "5" }, { "input": "1", "output": "1" }, { "input": "286", "output": "144" }, { "input": "48", "output": "25" }, { "input": "941", "output": "471...
1,524,242,036
2,147,483,647
Python 3
OK
TESTS
63
93
7,065,600
# from dust i have come, dust i will be n=int(input()) print(n//2+1)
Title: Splits Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's define a split of $n$ as a nonincreasing sequence of positive integers, the sum of which is $n$. For example, the following sequences are splits of $8$: $[4, 4]$, $[3, 3, 2]$, $[2, 2, 1, 1, 1, 1]$, $[5, 2, 1]$. The foll...
```python # from dust i have come, dust i will be n=int(input()) print(n//2+1) ```
3
0
none
none
none
0
[ "none" ]
null
null
Squirrel Liss lived in a forest peacefully, but unexpected trouble happens. Stones fall from a mountain. Initially Squirrel Liss occupies an interval [0,<=1]. Next, *n* stones will fall and Liss will escape from the stones. The stones are numbered from 1 to *n* in order. The stones always fall to the center of Liss's ...
The input consists of only one line. The only line contains the string *s* (1<=≤<=|*s*|<=≤<=106). Each character in *s* will be either "l" or "r".
Output *n* lines — on the *i*-th line you should print the *i*-th stone's number from the left.
[ "llrlr\n", "rrlll\n", "lrlrr\n" ]
[ "3\n5\n4\n2\n1\n", "1\n2\n5\n4\n3\n", "2\n4\n5\n3\n1\n" ]
In the first example, the positions of stones 1, 2, 3, 4, 5 will be <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/58fdb5684df807bfcb705a9da9ce175613362b7d.png" style="max-width: 100.0%;max-height: 100.0%;"/>, respectively. So you should print the sequence: 3, 5, 4, 2, 1.
0
[ { "input": "llrlr", "output": "3\n5\n4\n2\n1" }, { "input": "rrlll", "output": "1\n2\n5\n4\n3" }, { "input": "lrlrr", "output": "2\n4\n5\n3\n1" }, { "input": "lllrlrllrl", "output": "4\n6\n9\n10\n8\n7\n5\n3\n2\n1" }, { "input": "llrlrrrlrr", "output": "3\n5\n6...
1,642,745,741
2,147,483,647
PyPy 3-64
OK
TESTS
57
1,107
29,388,800
s=str(input()) n=len(s) lstl=[] lstr=[] for i in range(0,n): if(s[i]=='l'): lstl.append(i+1) else: lstr.append(i+1) lstl.reverse() for i in lstr: print(i) for i in lstl: print(i)
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Squirrel Liss lived in a forest peacefully, but unexpected trouble happens. Stones fall from a mountain. Initially Squirrel Liss occupies an interval [0,<=1]. Next, *n* stones will fall and Liss will escape from the stones. The st...
```python s=str(input()) n=len(s) lstl=[] lstr=[] for i in range(0,n): if(s[i]=='l'): lstl.append(i+1) else: lstr.append(i+1) lstl.reverse() for i in lstr: print(i) for i in lstl: print(i) ```
3
567
A
Lineland Mail
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
All cities of Lineland are located on the *Ox* coordinate axis. Thus, each city is associated with its position *x**i* — a coordinate on the *Ox* axis. No two cities are located at a single point. Lineland residents love to send letters to each other. A person may send a letter only if the recipient lives in another c...
The first line of the input contains integer *n* (2<=≤<=*n*<=≤<=105) — the number of cities in Lineland. The second line contains the sequence of *n* distinct integers *x*1,<=*x*2,<=...,<=*x**n* (<=-<=109<=≤<=*x**i*<=≤<=109), where *x**i* is the *x*-coordinate of the *i*-th city. All the *x**i*'s are distinct and follo...
Print *n* lines, the *i*-th line must contain two integers *min**i*,<=*max**i*, separated by a space, where *min**i* is the minimum cost of sending a letter from the *i*-th city, and *max**i* is the maximum cost of sending a letter from the *i*-th city.
[ "4\n-5 -2 2 7\n", "2\n-1 1\n" ]
[ "3 12\n3 9\n4 7\n5 12\n", "2 2\n2 2\n" ]
none
500
[ { "input": "4\n-5 -2 2 7", "output": "3 12\n3 9\n4 7\n5 12" }, { "input": "2\n-1 1", "output": "2 2\n2 2" }, { "input": "3\n-1 0 1", "output": "1 2\n1 1\n1 2" }, { "input": "4\n-1 0 1 3", "output": "1 4\n1 3\n1 2\n2 4" }, { "input": "3\n-1000000000 0 1000000000", ...
1,605,716,903
2,147,483,647
Python 3
OK
TESTS
54
639
9,523,200
n = int(input()) cities = list(map(int, input().split())) mins = [] maxs = [] for i in range(n): comm = 0 if i == 0: var = abs(cities[i] - cities[i+1]) mins.append(var) comm = abs(cities[i]-cities[n-1]) maxs.append(comm) elif i == n-1: comm = abs(cities[0]...
Title: Lineland Mail Time Limit: None seconds Memory Limit: None megabytes Problem Description: All cities of Lineland are located on the *Ox* coordinate axis. Thus, each city is associated with its position *x**i* — a coordinate on the *Ox* axis. No two cities are located at a single point. Lineland residents love...
```python n = int(input()) cities = list(map(int, input().split())) mins = [] maxs = [] for i in range(n): comm = 0 if i == 0: var = abs(cities[i] - cities[i+1]) mins.append(var) comm = abs(cities[i]-cities[n-1]) maxs.append(comm) elif i == n-1: comm = abs...
3
811
A
Vladik and Courtesy
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
At regular competition Vladik and Valera won *a* and *b* candies respectively. Vladik offered 1 his candy to Valera. After that Valera gave Vladik 2 his candies, so that no one thought that he was less generous. Vladik for same reason gave 3 candies to Valera in next turn. More formally, the guys take turns giving eac...
Single line of input data contains two space-separated integers *a*, *b* (1<=≤<=*a*,<=*b*<=≤<=109) — number of Vladik and Valera candies respectively.
Pring a single line "Vladik’’ in case, if Vladik first who can’t give right amount of candy, or "Valera’’ otherwise.
[ "1 1\n", "7 6\n" ]
[ "Valera\n", "Vladik\n" ]
Illustration for first test case: <img class="tex-graphics" src="https://espresso.codeforces.com/ad9b7d0e481208de8e3a585aa1d96b9e1dda4fd7.png" style="max-width: 100.0%;max-height: 100.0%;"/> Illustration for second test case: <img class="tex-graphics" src="https://espresso.codeforces.com/9f4836d2ccdffaee5a63898e5d4e...
500
[ { "input": "1 1", "output": "Valera" }, { "input": "7 6", "output": "Vladik" }, { "input": "25 38", "output": "Vladik" }, { "input": "8311 2468", "output": "Valera" }, { "input": "250708 857756", "output": "Vladik" }, { "input": "957985574 24997558", ...
1,657,724,458
2,147,483,647
PyPy 3-64
OK
TESTS
42
62
1,536,000
def main(): a , b = map(int,input().split()) i = 1 while 1: if(i&1): if(a >= i): a -= i else : print("Vladik") break else : if( b >= i): b -= i else : print("Valera") break i +=1 if __name__ == '__main__': main()
Title: Vladik and Courtesy Time Limit: None seconds Memory Limit: None megabytes Problem Description: At regular competition Vladik and Valera won *a* and *b* candies respectively. Vladik offered 1 his candy to Valera. After that Valera gave Vladik 2 his candies, so that no one thought that he was less generous. Vla...
```python def main(): a , b = map(int,input().split()) i = 1 while 1: if(i&1): if(a >= i): a -= i else : print("Vladik") break else : if( b >= i): b -= i else : print("Valera") break i +=1 if __name__ == '__main__': main() ```
3
892
A
Greed
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Jafar has *n* cans of cola. Each can is described by two integers: remaining volume of cola *a**i* and can's capacity *b**i* (*a**i* <=≤<= *b**i*). Jafar has decided to pour all remaining cola into just 2 cans, determine if he can do this or not!
The first line of the input contains one integer *n* (2<=≤<=*n*<=≤<=100<=000) — number of cola cans. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109) — volume of remaining cola in cans. The third line contains *n* space-separated integers that *b*1,<=*b*2,<=...,<...
Print "YES" (without quotes) if it is possible to pour all remaining cola in 2 cans. Otherwise print "NO" (without quotes). You can print each letter in any case (upper or lower).
[ "2\n3 5\n3 6\n", "3\n6 8 9\n6 10 12\n", "5\n0 0 5 0 0\n1 1 8 10 5\n", "4\n4 1 0 3\n5 2 2 3\n" ]
[ "YES\n", "NO\n", "YES\n", "YES\n" ]
In the first sample, there are already 2 cans, so the answer is "YES".
500
[ { "input": "2\n3 5\n3 6", "output": "YES" }, { "input": "3\n6 8 9\n6 10 12", "output": "NO" }, { "input": "5\n0 0 5 0 0\n1 1 8 10 5", "output": "YES" }, { "input": "4\n4 1 0 3\n5 2 2 3", "output": "YES" }, { "input": "10\n9 10 24 11 1 7 8 3 28 14\n86 20 34 11 22 9...
1,644,507,796
2,147,483,647
PyPy 3-64
OK
TESTS
39
249
17,305,600
n=int(input()) left=[int(x) for x in input().split()] cap=[int(x) for x in input().split()] m1=max(cap) l=cap;l.remove(m1); m2=max(l) if m1+m2>=sum(left): print("YES") else: print('NO')
Title: Greed Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jafar has *n* cans of cola. Each can is described by two integers: remaining volume of cola *a**i* and can's capacity *b**i* (*a**i* <=≤<= *b**i*). Jafar has decided to pour all remaining cola into just 2 cans, determine if he c...
```python n=int(input()) left=[int(x) for x in input().split()] cap=[int(x) for x in input().split()] m1=max(cap) l=cap;l.remove(m1); m2=max(l) if m1+m2>=sum(left): print("YES") else: print('NO') ```
3
375
B
Maximum Submatrix 2
PROGRAMMING
1,600
[ "data structures", "dp", "implementation", "sortings" ]
null
null
You are given a matrix consisting of digits zero and one, its size is *n*<=×<=*m*. You are allowed to rearrange its rows. What is the maximum area of the submatrix that only consists of ones and can be obtained in the given problem by the described operations? Let's assume that the rows of matrix *a* are numbered from...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=5000). Next *n* lines contain *m* characters each — matrix *a*. Matrix *a* only contains characters: "0" and "1". Note that the elements of the matrix follow without any spaces in the lines.
Print a single integer — the area of the maximum obtained submatrix. If we cannot obtain a matrix of numbers one, print 0.
[ "1 1\n1\n", "2 2\n10\n11\n", "4 3\n100\n011\n000\n101\n" ]
[ "1\n", "2\n", "2\n" ]
none
1,000
[ { "input": "1 1\n1", "output": "1" }, { "input": "2 2\n10\n11", "output": "2" }, { "input": "4 3\n100\n011\n000\n101", "output": "2" }, { "input": "11 16\n0111110101100011\n1000101100010000\n0010110110010101\n0110110010110010\n0011101101110000\n1001100011010111\n0010011111111...
1,560,456,430
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
17
2,000
268,185,600
'''input 1 1 1 ''' from sys import stdin import math from collections import defaultdict, deque def pre_calculation(matrix, n, m): dp = [[0 for x in range(m)] for y in range(n)] for i in range(n): for j in range(m - 1, -1, -1): if j + 1 < m: if matrix[i][j] == '1': dp[i][j] = 1 + dp[i][j + 1] else...
Title: Maximum Submatrix 2 Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a matrix consisting of digits zero and one, its size is *n*<=×<=*m*. You are allowed to rearrange its rows. What is the maximum area of the submatrix that only consists of ones and can be obtained in t...
```python '''input 1 1 1 ''' from sys import stdin import math from collections import defaultdict, deque def pre_calculation(matrix, n, m): dp = [[0 for x in range(m)] for y in range(n)] for i in range(n): for j in range(m - 1, -1, -1): if j + 1 < m: if matrix[i][j] == '1': dp[i][j] = 1 + dp[i][j + 1...
0
991
B
Getting an A
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
Translator's note: in Russia's most widespread grading system, there are four grades: 5, 4, 3, 2, the higher the better, roughly corresponding to A, B, C and F respectively in American grading system. The term is coming to an end and students start thinking about their grades. Today, a professor told his students that...
The first line contains a single integer $n$ — the number of Vasya's grades ($1 \leq n \leq 100$). The second line contains $n$ integers from $2$ to $5$ — Vasya's grades for his lab works.
Output a single integer — the minimum amount of lab works that Vasya has to redo. It can be shown that Vasya can always redo enough lab works to get a $5$.
[ "3\n4 4 4\n", "4\n5 4 5 5\n", "4\n5 3 3 5\n" ]
[ "2\n", "0\n", "1\n" ]
In the first sample, it is enough to redo two lab works to make two $4$s into $5$s. In the second sample, Vasya's average is already $4.75$ so he doesn't have to redo anything to get a $5$. In the second sample Vasya has to redo one lab work to get rid of one of the $3$s, that will make the average exactly $4.5$ so t...
1,000
[ { "input": "3\n4 4 4", "output": "2" }, { "input": "4\n5 4 5 5", "output": "0" }, { "input": "4\n5 3 3 5", "output": "1" }, { "input": "1\n5", "output": "0" }, { "input": "4\n3 2 5 4", "output": "2" }, { "input": "5\n5 4 3 2 5", "output": "2" }, ...
1,601,285,028
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
109
0
import math n=int(input()) li=list(map(int,input().split())) k=sum(li) count=0 while True: if round(k/n)==5: break else: k+=1 count+=1 print(count)
Title: Getting an A Time Limit: None seconds Memory Limit: None megabytes Problem Description: Translator's note: in Russia's most widespread grading system, there are four grades: 5, 4, 3, 2, the higher the better, roughly corresponding to A, B, C and F respectively in American grading system. The term is coming t...
```python import math n=int(input()) li=list(map(int,input().split())) k=sum(li) count=0 while True: if round(k/n)==5: break else: k+=1 count+=1 print(count) ```
0
701
C
They Are Everywhere
PROGRAMMING
1,500
[ "binary search", "strings", "two pointers" ]
null
null
Sergei B., the young coach of Pokemons, has found the big house which consists of *n* flats ordered in a row from left to right. It is possible to enter each flat from the street. It is possible to go out from each flat. Also, each flat is connected with the flat to the left and the flat to the right. Flat number 1 is ...
The first line contains the integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of flats in the house. The second line contains the row *s* with the length *n*, it consists of uppercase and lowercase letters of English alphabet, the *i*-th letter equals the type of Pokemon, which is in the flat number *i*.
Print the minimum number of flats which Sergei B. should visit in order to catch Pokemons of all types which there are in the house.
[ "3\nAaA\n", "7\nbcAAcbc\n", "6\naaBCCe\n" ]
[ "2\n", "3\n", "5\n" ]
In the first test Sergei B. can begin, for example, from the flat number 1 and end in the flat number 2. In the second test Sergei B. can begin, for example, from the flat number 4 and end in the flat number 6. In the third test Sergei B. must begin from the flat number 2 and end in the flat number 6.
1,000
[ { "input": "3\nAaA", "output": "2" }, { "input": "7\nbcAAcbc", "output": "3" }, { "input": "6\naaBCCe", "output": "5" }, { "input": "1\nA", "output": "1" }, { "input": "1\ng", "output": "1" }, { "input": "52\nabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQ...
1,698,091,810
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
10
2,000
13,107,200
# love thy neighbour from sys import stdin,stdout def ArrayIn():return list(map(int,input().split())) #def print(x):stdout.write(f'{x}\n') n=int(input()) flats=input() def Valid(row,k): target=set(row) for i in range(len(row)-k+1): if set(row[i:i+k])==target: return True return False l...
Title: They Are Everywhere Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sergei B., the young coach of Pokemons, has found the big house which consists of *n* flats ordered in a row from left to right. It is possible to enter each flat from the street. It is possible to go out from each ...
```python # love thy neighbour from sys import stdin,stdout def ArrayIn():return list(map(int,input().split())) #def print(x):stdout.write(f'{x}\n') n=int(input()) flats=input() def Valid(row,k): target=set(row) for i in range(len(row)-k+1): if set(row[i:i+k])==target: return True return ...
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,686,159,136
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
def wtl(): string1 = input("Enter") if len(string1) > 10: string2 = "" string2+=string1[0] string2+=str(len(string1)-2) string2+=string1[-1] print(string2) else: print(string1) test = int(input()) for i in range(test): wtl()
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 def wtl(): string1 = input("Enter") if len(string1) > 10: string2 = "" string2+=string1[0] string2+=str(len(string1)-2) string2+=string1[-1] print(string2) else: print(string1) test = int(input()) for i in range(test): wtl() ```
0
820
A
Mister B and Book Reading
PROGRAMMING
900
[ "implementation" ]
null
null
Mister B once received a gift: it was a book about aliens, which he started read immediately. This book had *c* pages. At first day Mister B read *v*0 pages, but after that he started to speed up. Every day, starting from the second, he read *a* pages more than on the previous day (at first day he read *v*0 pages, at ...
First and only line contains five space-separated integers: *c*, *v*0, *v*1, *a* and *l* (1<=≤<=*c*<=≤<=1000, 0<=≤<=*l*<=&lt;<=*v*0<=≤<=*v*1<=≤<=1000, 0<=≤<=*a*<=≤<=1000) — the length of the book in pages, the initial reading speed, the maximum reading speed, the acceleration in reading speed and the number of pages fo...
Print one integer — the number of days Mister B needed to finish the book.
[ "5 5 10 5 4\n", "12 4 12 4 1\n", "15 1 100 0 0\n" ]
[ "1\n", "3\n", "15\n" ]
In the first sample test the book contains 5 pages, so Mister B read it right at the first day. In the second sample test at first day Mister B read pages number 1 - 4, at second day — 4 - 11, at third day — 11 - 12 and finished the book. In third sample test every day Mister B read 1 page of the book, so he finished...
500
[ { "input": "5 5 10 5 4", "output": "1" }, { "input": "12 4 12 4 1", "output": "3" }, { "input": "15 1 100 0 0", "output": "15" }, { "input": "1 1 1 0 0", "output": "1" }, { "input": "1000 999 1000 1000 998", "output": "2" }, { "input": "1000 2 2 5 1", ...
1,498,575,686
1,586
Python 3
WRONG_ANSWER
PRETESTS
5
46
5,529,600
import math s = input() arr = s.split() totalPages = int(arr[0]) firstDayPages = int(arr[1]) maxPages = int(arr[2]) acceleration = int(arr[3]) reRead = int(arr[4]) def getPagesOnDay(day): global firstDayPages, maxPages, acceleration pages = firstDayPages + (day - 1) * acceleration if day > 1: ...
Title: Mister B and Book Reading Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mister B once received a gift: it was a book about aliens, which he started read immediately. This book had *c* pages. At first day Mister B read *v*0 pages, but after that he started to speed up. Every day, ...
```python import math s = input() arr = s.split() totalPages = int(arr[0]) firstDayPages = int(arr[1]) maxPages = int(arr[2]) acceleration = int(arr[3]) reRead = int(arr[4]) def getPagesOnDay(day): global firstDayPages, maxPages, acceleration pages = firstDayPages + (day - 1) * acceleration if day ...
0
375
B
Maximum Submatrix 2
PROGRAMMING
1,600
[ "data structures", "dp", "implementation", "sortings" ]
null
null
You are given a matrix consisting of digits zero and one, its size is *n*<=×<=*m*. You are allowed to rearrange its rows. What is the maximum area of the submatrix that only consists of ones and can be obtained in the given problem by the described operations? Let's assume that the rows of matrix *a* are numbered from...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=5000). Next *n* lines contain *m* characters each — matrix *a*. Matrix *a* only contains characters: "0" and "1". Note that the elements of the matrix follow without any spaces in the lines.
Print a single integer — the area of the maximum obtained submatrix. If we cannot obtain a matrix of numbers one, print 0.
[ "1 1\n1\n", "2 2\n10\n11\n", "4 3\n100\n011\n000\n101\n" ]
[ "1\n", "2\n", "2\n" ]
none
1,000
[ { "input": "1 1\n1", "output": "1" }, { "input": "2 2\n10\n11", "output": "2" }, { "input": "4 3\n100\n011\n000\n101", "output": "2" }, { "input": "11 16\n0111110101100011\n1000101100010000\n0010110110010101\n0110110010110010\n0011101101110000\n1001100011010111\n0010011111111...
1,579,145,946
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
249
5,632,000
# -*- coding:utf-8 -*- """ created by shuangquan.huang at 1/15/20 """ import collections import time import os import sys import bisect import heapq from typing import List def solve(N, M, A): # for each index i of each row, we count how many consecutive '1' right at i, # this is the max width if we inclu...
Title: Maximum Submatrix 2 Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a matrix consisting of digits zero and one, its size is *n*<=×<=*m*. You are allowed to rearrange its rows. What is the maximum area of the submatrix that only consists of ones and can be obtained in t...
```python # -*- coding:utf-8 -*- """ created by shuangquan.huang at 1/15/20 """ import collections import time import os import sys import bisect import heapq from typing import List def solve(N, M, A): # for each index i of each row, we count how many consecutive '1' right at i, # this is the max width i...
0
875
A
Classroom Watch
PROGRAMMING
1,200
[ "brute force", "math" ]
null
null
Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answered Vova that *n* is the answer to the arithmetic task for first-graders. In the textbook, a certain ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=109).
In the first line print one integer *k* — number of different values of *x* satisfying the condition. In next *k* lines print these values in ascending order.
[ "21\n", "20\n" ]
[ "1\n15\n", "0\n" ]
In the first test case *x* = 15 there is only one variant: 15 + 1 + 5 = 21. In the second test case there are no such *x*.
500
[ { "input": "21", "output": "1\n15" }, { "input": "20", "output": "0" }, { "input": "1", "output": "0" }, { "input": "2", "output": "1\n1" }, { "input": "3", "output": "0" }, { "input": "100000001", "output": "2\n99999937\n100000000" }, { "i...
1,643,959,123
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
0
n = input() total = 0; numPossiveis = []; for num in range(int(n), -1, -1): totalDigitos = sum(int(i) for i in str(num)); if((num + totalDigitos) == int(n)): numPossiveis.append(num); print(len(numPossiveis)) if(len(numPossiveis) > 0): sorted(numPossiveis); for key in numPossiveis: prin...
Title: Classroom Watch Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answe...
```python n = input() total = 0; numPossiveis = []; for num in range(int(n), -1, -1): totalDigitos = sum(int(i) for i in str(num)); if((num + totalDigitos) == int(n)): numPossiveis.append(num); print(len(numPossiveis)) if(len(numPossiveis) > 0): sorted(numPossiveis); for key in numPossiveis:...
0
522
B
Photo to Remember
PROGRAMMING
1,100
[ "*special", "data structures", "dp", "implementation" ]
null
null
One day *n* friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed friend occupies a rectangle of pixels: the *i*-th of them occupies the rectangl...
The first line contains integer *n* (2<=≤<=*n*<=≤<=200<=000) — the number of friends. Then *n* lines follow: the *i*-th line contains information about the *i*-th friend. The line contains a pair of integers *w**i*,<=*h**i* (1<=≤<=*w**i*<=≤<=10,<=1<=≤<=*h**i*<=≤<=1000) — the width and height in pixels of the correspo...
Print *n* space-separated numbers *b*1,<=*b*2,<=...,<=*b**n*, where *b**i* — the total number of pixels on the minimum photo containing all friends expect for the *i*-th one.
[ "3\n1 10\n5 5\n10 1\n", "3\n2 1\n1 2\n2 1\n" ]
[ "75 110 60 ", "6 4 6 " ]
none
1,000
[ { "input": "3\n1 10\n5 5\n10 1", "output": "75 110 60 " }, { "input": "3\n2 1\n1 2\n2 1", "output": "6 4 6 " }, { "input": "2\n1 5\n2 3", "output": "6 5 " }, { "input": "2\n2 3\n1 1", "output": "1 6 " }, { "input": "3\n1 10\n2 10\n3 10", "output": "50 40 30 " ...
1,645,944,680
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
14
2,000
38,707,200
n = int(input()) wd = {} hd = {} for i in range(1,n+1): wd[i] = 0 hd[i] = 0 for i in range(1,n+1): w,h = map(int,input().split(" ")) for j in range(1,n+1): if j != i: wd[j] += w hd[j] = max(hd[j], h) for i in range(1,n+1): print(wd[i]*hd[i], end=" "...
Title: Photo to Remember Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day *n* friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the p...
```python n = int(input()) wd = {} hd = {} for i in range(1,n+1): wd[i] = 0 hd[i] = 0 for i in range(1,n+1): w,h = map(int,input().split(" ")) for j in range(1,n+1): if j != i: wd[j] += w hd[j] = max(hd[j], h) for i in range(1,n+1): print(wd[i]*hd[i...
0
615
A
Bulbs
PROGRAMMING
800
[ "implementation" ]
null
null
Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is pressed, it turns on all the bulbs it's connected to. Can Vasya light up all the bulbs? I...
The first line of the input contains integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of buttons and the number of bulbs respectively. Each of the next *n* lines contains *x**i* (0<=≤<=*x**i*<=≤<=*m*) — the number of bulbs that are turned on by the *i*-th button, and then *x**i* numbers *y**ij* (1<=≤<=*y**...
If it's possible to turn on all *m* bulbs print "YES", otherwise print "NO".
[ "3 4\n2 1 4\n3 1 3 1\n1 2\n", "3 3\n1 1\n1 2\n1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample you can press each button once and turn on all the bulbs. In the 2 sample it is impossible to turn on the 3-rd lamp.
500
[ { "input": "3 4\n2 1 4\n3 1 3 1\n1 2", "output": "YES" }, { "input": "3 3\n1 1\n1 2\n1 1", "output": "NO" }, { "input": "3 4\n1 1\n1 2\n1 3", "output": "NO" }, { "input": "1 5\n5 1 2 3 4 5", "output": "YES" }, { "input": "1 5\n5 4 4 1 2 3", "output": "NO" },...
1,665,845,310
2,147,483,647
Python 3
OK
TESTS
45
46
0
n,m=map(int,input().split()) p=[] po=[] for i in range(m): p.append('0') po.append('1') for i in range(1,n+1): q=input().split() um=q[0] for ui in range(1,int(um)+1): p[int(q[ui])-1]='1' if p==po: print('YES') else:print('NO')
Title: Bulbs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is...
```python n,m=map(int,input().split()) p=[] po=[] for i in range(m): p.append('0') po.append('1') for i in range(1,n+1): q=input().split() um=q[0] for ui in range(1,int(um)+1): p[int(q[ui])-1]='1' if p==po: print('YES') else:print('NO') ```
3
1,003
A
Polycarp's Pockets
PROGRAMMING
800
[ "implementation" ]
null
null
Polycarp has $n$ coins, the value of the $i$-th coin is $a_i$. Polycarp wants to distribute all the coins between his pockets, but he cannot put two coins with the same value into the same pocket. For example, if Polycarp has got six coins represented as an array $a = [1, 2, 4, 3, 3, 2]$, he can distribute the coins i...
The first line of the input contains one integer $n$ ($1 \le n \le 100$) — the number of coins. The second line of the input contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 100$) — values of coins.
Print only one integer — the minimum number of pockets Polycarp needs to distribute all the coins so no two coins with the same value are put into the same pocket.
[ "6\n1 2 4 3 3 2\n", "1\n100\n" ]
[ "2\n", "1\n" ]
none
0
[ { "input": "6\n1 2 4 3 3 2", "output": "2" }, { "input": "1\n100", "output": "1" }, { "input": "100\n100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100...
1,621,411,997
2,147,483,647
Python 3
OK
TESTS
37
77
102,400
import collections n = int(input()) c = collections.Counter(int(x) for x in input().split()) print(max(c.values()))
Title: Polycarp's Pockets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp has $n$ coins, the value of the $i$-th coin is $a_i$. Polycarp wants to distribute all the coins between his pockets, but he cannot put two coins with the same value into the same pocket. For example, if Po...
```python import collections n = int(input()) c = collections.Counter(int(x) for x in input().split()) print(max(c.values())) ```
3
432
A
Choosing Teams
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. According to the ACM ICPC rules, each person can participate in the world championship at most 5 times. Th...
The first line contains two integers, *n* and *k* (1<=≤<=*n*<=≤<=2000; 1<=≤<=*k*<=≤<=5). The next line contains *n* integers: *y*1,<=*y*2,<=...,<=*y**n* (0<=≤<=*y**i*<=≤<=5), where *y**i* shows the number of times the *i*-th person participated in the ACM ICPC world championship.
Print a single number — the answer to the problem.
[ "5 2\n0 4 5 1 0\n", "6 4\n0 1 2 3 4 5\n", "6 5\n0 0 0 0 0 0\n" ]
[ "1\n", "0\n", "2\n" ]
In the first sample only one team could be made: the first, the fourth and the fifth participants. In the second sample no teams could be created. In the third sample two teams could be created. Any partition into two teams fits.
500
[ { "input": "5 2\n0 4 5 1 0", "output": "1" }, { "input": "6 4\n0 1 2 3 4 5", "output": "0" }, { "input": "6 5\n0 0 0 0 0 0", "output": "2" }, { "input": "3 4\n0 1 0", "output": "1" }, { "input": "3 4\n0 2 0", "output": "0" }, { "input": "6 5\n0 0 0 0 0...
1,684,596,500
2,147,483,647
Python 3
OK
TESTS
35
46
0
n,k=map(int,input().split()) l=list(map(int,input().split())) re=5-k c=0 for i in l: if(i <= re): c+=1 print(c//3)
Title: Choosing Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. Accordi...
```python n,k=map(int,input().split()) l=list(map(int,input().split())) re=5-k c=0 for i in l: if(i <= re): c+=1 print(c//3) ```
3
982
A
Row
PROGRAMMING
1,200
[ "brute force", "constructive algorithms" ]
null
null
You're given a row with $n$ chairs. We call a seating of people "maximal" if the two following conditions hold: 1. There are no neighbors adjacent to anyone seated. 1. It's impossible to seat one more person without violating the first rule. The seating is given as a string consisting of zeros and ones ($0$ means t...
The first line contains a single integer $n$ ($1 \leq n \leq 1000$) — the number of chairs. The next line contains a string of $n$ characters, each of them is either zero or one, describing the seating.
Output "Yes" (without quotation marks) if the seating is "maximal". Otherwise print "No". You are allowed to print letters in whatever case you'd like (uppercase or lowercase).
[ "3\n101\n", "4\n1011\n", "5\n10001\n" ]
[ "Yes\n", "No\n", "No\n" ]
In sample case one the given seating is maximal. In sample case two the person at chair three has a neighbour to the right. In sample case three it is possible to seat yet another person into chair three.
500
[ { "input": "3\n101", "output": "Yes" }, { "input": "4\n1011", "output": "No" }, { "input": "5\n10001", "output": "No" }, { "input": "1\n0", "output": "No" }, { "input": "1\n1", "output": "Yes" }, { "input": "100\n010100101010100101001001010100101010010...
1,609,840,364
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include<bits/stdc++.h> using namespace std; int n; string s; int main() { scanf ("%d", &n); cin>>s; for (int i=0;i<n-1;i++) if (s[i]==s[i+1]) { printf("NO\n"); return 0; } printf("Yes\n"); return 0; }
Title: Row Time Limit: None seconds Memory Limit: None megabytes Problem Description: You're given a row with $n$ chairs. We call a seating of people "maximal" if the two following conditions hold: 1. There are no neighbors adjacent to anyone seated. 1. It's impossible to seat one more person without violating th...
```python #include<bits/stdc++.h> using namespace std; int n; string s; int main() { scanf ("%d", &n); cin>>s; for (int i=0;i<n-1;i++) if (s[i]==s[i+1]) { printf("NO\n"); return 0; } printf("Yes\n"); return 0; } ```
-1
615
A
Bulbs
PROGRAMMING
800
[ "implementation" ]
null
null
Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is pressed, it turns on all the bulbs it's connected to. Can Vasya light up all the bulbs? I...
The first line of the input contains integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of buttons and the number of bulbs respectively. Each of the next *n* lines contains *x**i* (0<=≤<=*x**i*<=≤<=*m*) — the number of bulbs that are turned on by the *i*-th button, and then *x**i* numbers *y**ij* (1<=≤<=*y**...
If it's possible to turn on all *m* bulbs print "YES", otherwise print "NO".
[ "3 4\n2 1 4\n3 1 3 1\n1 2\n", "3 3\n1 1\n1 2\n1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample you can press each button once and turn on all the bulbs. In the 2 sample it is impossible to turn on the 3-rd lamp.
500
[ { "input": "3 4\n2 1 4\n3 1 3 1\n1 2", "output": "YES" }, { "input": "3 3\n1 1\n1 2\n1 1", "output": "NO" }, { "input": "3 4\n1 1\n1 2\n1 3", "output": "NO" }, { "input": "1 5\n5 1 2 3 4 5", "output": "YES" }, { "input": "1 5\n5 4 4 1 2 3", "output": "NO" },...
1,678,458,110
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
Error = 1 while Error: Number_Switches_And_Bulbs =input() Str = Number_Switches_And_Bulbs.split(' ') Number_Switches , Number_Bulbs = int(Str[0]) , int(Str[1]) Bulbs_to_work = [(i+1) for i in range(Number_Bulbs)] bulbs_to_corss = set() for i in range(Number_Switches): Working_logic =inpu...
Title: Bulbs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is...
```python Error = 1 while Error: Number_Switches_And_Bulbs =input() Str = Number_Switches_And_Bulbs.split(' ') Number_Switches , Number_Bulbs = int(Str[0]) , int(Str[1]) Bulbs_to_work = [(i+1) for i in range(Number_Bulbs)] bulbs_to_corss = set() for i in range(Number_Switches): Working_l...
0
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,618,557,570
2,147,483,647
Python 3
OK
TESTS
31
154
0
n=int(input()) a=[int(x) for x in input().split()] a=list(set(a)) a.sort() if(len(a)==1): print("NO") else: print(a[1])
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()) a=[int(x) for x in input().split()] a=list(set(a)) a.sort() if(len(a)==1): print("NO") else: print(a[1]) ```
3.9615
471
A
MUH and Sticks
PROGRAMMING
1,100
[ "implementation" ]
null
null
Two polar bears Menshykov and Uslada from the St.Petersburg zoo and elephant Horace from the Kiev zoo got six sticks to play with and assess the animals' creativity. Menshykov, Uslada and Horace decided to make either an elephant or a bear from those sticks. They can make an animal from sticks in the following way: -...
The single line contains six space-separated integers *l**i* (1<=≤<=*l**i*<=≤<=9) — the lengths of the six sticks. It is guaranteed that the input is such that you cannot make both animals from the sticks.
If you can make a bear from the given set, print string "Bear" (without the quotes). If you can make an elephant, print string "Elephant" (wıthout the quotes). If you can make neither a bear nor an elephant, print string "Alien" (without the quotes).
[ "4 2 5 4 4 4\n", "4 4 5 4 4 5\n", "1 2 3 4 5 6\n" ]
[ "Bear", "Elephant", "Alien" ]
If you're out of creative ideas, see instructions below which show how to make a bear and an elephant in the first two samples. The stick of length 2 is in red, the sticks of length 4 are in green, the sticks of length 5 are in blue.
500
[ { "input": "4 2 5 4 4 4", "output": "Bear" }, { "input": "4 4 5 4 4 5", "output": "Elephant" }, { "input": "1 2 3 4 5 6", "output": "Alien" }, { "input": "5 5 5 5 5 5", "output": "Elephant" }, { "input": "1 1 1 2 3 5", "output": "Alien" }, { "input": "...
1,584,956,751
2,147,483,647
Python 3
OK
TESTS
29
109
204,800
a = list(map(int, input().split())) h = {} for n in a: if n not in h: h[n] = 1 else: h[n] += 1 k = 4 if len(h)==1: print('Elephant') elif k+1 in h.values(): print('Bear') elif k in h.values(): if len(h)==2: print('Elephant') elif len(h)==3: p...
Title: MUH and Sticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two polar bears Menshykov and Uslada from the St.Petersburg zoo and elephant Horace from the Kiev zoo got six sticks to play with and assess the animals' creativity. Menshykov, Uslada and Horace decided to make either an...
```python a = list(map(int, input().split())) h = {} for n in a: if n not in h: h[n] = 1 else: h[n] += 1 k = 4 if len(h)==1: print('Elephant') elif k+1 in h.values(): print('Bear') elif k in h.values(): if len(h)==2: print('Elephant') elif len(h)==3: ...
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,694,264,193
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
60
0
str_list = input().split() m = int(str_list[0]) n = int(str_list[1]) if m % 2 == 0 or n % 2 == 0: result = m * n / 2 else: result = (m * n - 1)/2 res = int(result) print(result)
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 str_list = input().split() m = int(str_list[0]) n = int(str_list[1]) if m % 2 == 0 or n % 2 == 0: result = m * n / 2 else: result = (m * n - 1)/2 res = int(result) print(result) ```
0
78
B
Easter Eggs
PROGRAMMING
1,200
[ "constructive algorithms", "implementation" ]
B. Easter Eggs
2
256
The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: - Each of the seven colors should be used to paint at least one egg. - Any four eggs lying s...
The only line contains an integer *n* — the amount of eggs (7<=≤<=*n*<=≤<=100).
Print one line consisting of *n* characters. The *i*-th character should describe the color of the *i*-th egg in the order they lie in the circle. The colors should be represented as follows: "R" stands for red, "O" stands for orange, "Y" stands for yellow, "G" stands for green, "B" stands for blue, "I" stands for indi...
[ "8\n", "13\n" ]
[ "ROYGRBIV\n", "ROYGBIVGBIVYG\n" ]
The way the eggs will be painted in the first sample is shown on the picture:
1,000
[ { "input": "8", "output": "ROYGBIVG" }, { "input": "13", "output": "ROYGBIVOYGBIV" }, { "input": "7", "output": "ROYGBIV" }, { "input": "10", "output": "ROYGBIVYGB" }, { "input": "14", "output": "ROYGBIVROYGBIV" }, { "input": "50", "output": "ROYGB...
1,667,849,509
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
n = int(input("")) repeat = "ROYRBIV" if n < len(repeat): print(repeat[:n]) exit() elif n == len(repeat): print(repeat) exit() else: rep = n // len(repeat) #print(len(repeat)%n) repeat = (repeat * rep) + repeat[len(repeat) - (n % len(repeat)):] print(repeat) exit() ...
Title: Easter Eggs Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: -...
```python n = int(input("")) repeat = "ROYRBIV" if n < len(repeat): print(repeat[:n]) exit() elif n == len(repeat): print(repeat) exit() else: rep = n // len(repeat) #print(len(repeat)%n) repeat = (repeat * rep) + repeat[len(repeat) - (n % len(repeat)):] print(repeat) ...
0
651
A
Joysticks
PROGRAMMING
1,100
[ "dp", "greedy", "implementation", "math" ]
null
null
Friends are going to play console. They have two joysticks and only one charger for them. Initially first joystick is charged at *a*1 percent and second one is charged at *a*2 percent. You can connect charger to a joystick only at the beginning of each minute. In one minute joystick either discharges by 2 percent (if n...
The first line of the input contains two positive integers *a*1 and *a*2 (1<=≤<=*a*1,<=*a*2<=≤<=100), the initial charge level of first and second joystick respectively.
Output the only integer, the maximum number of minutes that the game can last. Game continues until some joystick is discharged.
[ "3 5\n", "4 4\n" ]
[ "6\n", "5\n" ]
In the first sample game lasts for 6 minute by using the following algorithm: - at the beginning of the first minute connect first joystick to the charger, by the end of this minute first joystick is at 4%, second is at 3%; - continue the game without changing charger, by the end of the second minute the first joyst...
500
[ { "input": "3 5", "output": "6" }, { "input": "4 4", "output": "5" }, { "input": "100 100", "output": "197" }, { "input": "1 100", "output": "98" }, { "input": "100 1", "output": "98" }, { "input": "1 4", "output": "2" }, { "input": "1 1", ...
1,690,455,363
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
46
0
a1,a2=list( map( int, input().split(" "))) i=0 while a1 and a2: if a1 >= a2: a1=a1-2 a2=a2+1 else: a2=a2-2 a1=a1+1 i = i + 1 print(i)
Title: Joysticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Friends are going to play console. They have two joysticks and only one charger for them. Initially first joystick is charged at *a*1 percent and second one is charged at *a*2 percent. You can connect charger to a joystick on...
```python a1,a2=list( map( int, input().split(" "))) i=0 while a1 and a2: if a1 >= a2: a1=a1-2 a2=a2+1 else: a2=a2-2 a1=a1+1 i = i + 1 print(i) ```
0
1,006
E
Military Problem
PROGRAMMING
1,600
[ "dfs and similar", "graphs", "trees" ]
null
null
In this problem you will have to help Berland army with organizing their command delivery system. There are $n$ officers in Berland army. The first officer is the commander of the army, and he does not have any superiors. Every other officer has exactly one direct superior. If officer $a$ is the direct superior of off...
The first line of the input contains two integers $n$ and $q$ ($2 \le n \le 2 \cdot 10^5, 1 \le q \le 2 \cdot 10^5$) — the number of officers in Berland army and the number of queries. The second line of the input contains $n - 1$ integers $p_2, p_3, \dots, p_n$ ($1 \le p_i &lt; i$), where $p_i$ is the index of the di...
Print $q$ numbers, where the $i$-th number is the officer at the position $k_i$ in the list which describes the order in which officers will receive the command if it starts spreading from officer $u_i$. Print "-1" if the number of officers which receive the command is less than $k_i$. You should process queries indep...
[ "9 6\n1 1 1 3 5 3 5 7\n3 1\n1 5\n3 4\n7 3\n1 8\n1 9\n" ]
[ "3\n6\n8\n-1\n9\n4\n" ]
none
0
[ { "input": "9 6\n1 1 1 3 5 3 5 7\n3 1\n1 5\n3 4\n7 3\n1 8\n1 9", "output": "3\n6\n8\n-1\n9\n4" }, { "input": "2 1\n1\n1 1", "output": "1" }, { "input": "13 12\n1 1 1 1 1 1 1 1 1 1 1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1", "output": "1\n1\n1\n1\n1\n1\n1\n1\n1\n...
1,602,676,616
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
1
342
26,316,800
from collections import defaultdict dfs=[] class Graph: def __init__(self): self.graph = defaultdict(list) def addEdge(self, u, v): # self.graph[u].append(v) self.graph[v].append(u) def DFSUtil(self, v): visited[v] = True dfs.append(v) for i in se...
Title: Military Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: In this problem you will have to help Berland army with organizing their command delivery system. There are $n$ officers in Berland army. The first officer is the commander of the army, and he does not have any superi...
```python from collections import defaultdict dfs=[] class Graph: def __init__(self): self.graph = defaultdict(list) def addEdge(self, u, v): # self.graph[u].append(v) self.graph[v].append(u) def DFSUtil(self, v): visited[v] = True dfs.append(v) f...
-1
285
C
Building Permutation
PROGRAMMING
1,200
[ "greedy", "implementation", "sortings" ]
null
null
Permutation *p* is an ordered set of integers *p*1,<=<=*p*2,<=<=...,<=<=*p**n*, consisting of *n* distinct positive integers, each of them doesn't exceed *n*. We'll denote the *i*-th element of permutation *p* as *p**i*. We'll call number *n* the size or the length of permutation *p*1,<=<=*p*2,<=<=...,<=<=*p**n*. You ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=3·105) — the size of the sought permutation. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=109<=≤<=*a**i*<=≤<=109).
Print a single number — the minimum number of moves. Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.
[ "2\n3 0\n", "3\n-1 -1 2\n" ]
[ "2\n", "6\n" ]
In the first sample you should decrease the first number by one and then increase the second number by one. The resulting permutation is (2, 1). In the second sample you need 6 moves to build permutation (1, 3, 2).
1,500
[ { "input": "2\n3 0", "output": "2" }, { "input": "3\n-1 -1 2", "output": "6" }, { "input": "5\n-3 5 -3 3 3", "output": "10" }, { "input": "10\n9 6 -2 4 1 1 1 9 6 2", "output": "18" }, { "input": "9\n2 0 0 6 5 4 1 9 3", "output": "15" }, { "input": "100...
1,621,090,760
2,147,483,647
PyPy 3
OK
TESTS
33
436
25,907,200
n = int(input()) lista = [int(item) for item in input().split()] lista.sort() count = 0 for i in range(n): count += abs(lista[i]-(i+1)) print(count)
Title: Building Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Permutation *p* is an ordered set of integers *p*1,<=<=*p*2,<=<=...,<=<=*p**n*, consisting of *n* distinct positive integers, each of them doesn't exceed *n*. We'll denote the *i*-th element of permutation *p* as *...
```python n = int(input()) lista = [int(item) for item in input().split()] lista.sort() count = 0 for i in range(n): count += abs(lista[i]-(i+1)) print(count) ```
3
25
B
Phone numbers
PROGRAMMING
1,100
[ "implementation" ]
B. Phone numbers
2
256
Phone number in Berland is a sequence of *n* digits. Often, to make it easier to memorize the number, it is divided into groups of two or three digits. For example, the phone number 1198733 is easier to remember as 11-987-33. Your task is to find for a given phone number any of its divisions into groups of two or three...
The first line contains integer *n* (2<=≤<=*n*<=≤<=100) — amount of digits in the phone number. The second line contains *n* digits — the phone number to divide into groups.
Output any of divisions of the given phone number into groups of two or three digits. Separate groups by single character -. If the answer is not unique, output any.
[ "6\n549871\n", "7\n1198733\n" ]
[ "54-98-71", "11-987-33\n" ]
none
0
[ { "input": "6\n549871", "output": "54-98-71" }, { "input": "7\n1198733", "output": "119-87-33" }, { "input": "2\n74", "output": "74" }, { "input": "2\n33", "output": "33" }, { "input": "3\n074", "output": "074" }, { "input": "3\n081", "output": "08...
1,550,318,510
2,147,483,647
Python 3
OK
TESTS
20
342
0
n = int(input()) s = input() l = [] if n > 3: if n % 2 == 0: for i in range(0, n, 2): l.append(s[i:i + 2]) else: l.append(s[:3]) for i in range(3, n, 2): l.append(s[i:i + 2]) print(*l, sep='-') else: print(s)
Title: Phone numbers Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Phone number in Berland is a sequence of *n* digits. Often, to make it easier to memorize the number, it is divided into groups of two or three digits. For example, the phone number 1198733 is easier to remember as 11-987-33....
```python n = int(input()) s = input() l = [] if n > 3: if n % 2 == 0: for i in range(0, n, 2): l.append(s[i:i + 2]) else: l.append(s[:3]) for i in range(3, n, 2): l.append(s[i:i + 2]) print(*l, sep='-') else: print(s) ```
3.9145
747
A
Display Size
PROGRAMMING
800
[ "brute force", "math" ]
null
null
A big company decided to launch a new series of rectangular displays, and decided that the display must have exactly *n* pixels. Your task is to determine the size of the rectangular display — the number of lines (rows) of pixels *a* and the number of columns of pixels *b*, so that: - there are exactly *n* pixels o...
The first line contains the positive integer *n* (1<=≤<=*n*<=≤<=106) — the number of pixels display should have.
Print two integers — the number of rows and columns on the display.
[ "8\n", "64\n", "5\n", "999999\n" ]
[ "2 4\n", "8 8\n", "1 5\n", "999 1001\n" ]
In the first example the minimum possible difference equals 2, so on the display should be 2 rows of 4 pixels. In the second example the minimum possible difference equals 0, so on the display should be 8 rows of 8 pixels. In the third example the minimum possible difference equals 4, so on the display should be 1 ro...
500
[ { "input": "8", "output": "2 4" }, { "input": "64", "output": "8 8" }, { "input": "5", "output": "1 5" }, { "input": "999999", "output": "999 1001" }, { "input": "716539", "output": "97 7387" }, { "input": "1", "output": "1 1" }, { "input":...
1,516,528,274
2,147,483,647
Python 3
OK
TESTS
43
62
5,632,000
from math import sqrt n = int(input().strip()) sq = int(sqrt(n)) for i in range(sq, 0, -1): if not n%i: print(i, n//i) break
Title: Display Size Time Limit: None seconds Memory Limit: None megabytes Problem Description: A big company decided to launch a new series of rectangular displays, and decided that the display must have exactly *n* pixels. Your task is to determine the size of the rectangular display — the number of lines (rows) ...
```python from math import sqrt n = int(input().strip()) sq = int(sqrt(n)) for i in range(sq, 0, -1): if not n%i: print(i, n//i) break ```
3
876
A
Trip For Meal
PROGRAMMING
900
[ "math" ]
null
null
Winnie-the-Pooh likes honey very much! That is why he decided to visit his friends. Winnie has got three best friends: Rabbit, Owl and Eeyore, each of them lives in his own house. There are winding paths between each pair of houses. The length of a path between Rabbit's and Owl's houses is *a* meters, between Rabbit's ...
First line contains an integer *n* (1<=≤<=*n*<=≤<=100) — number of visits. Second line contains an integer *a* (1<=≤<=*a*<=≤<=100) — distance between Rabbit's and Owl's houses. Third line contains an integer *b* (1<=≤<=*b*<=≤<=100) — distance between Rabbit's and Eeyore's houses. Fourth line contains an integer *c* ...
Output one number — minimum distance in meters Winnie must go through to have a meal *n* times.
[ "3\n2\n3\n1\n", "1\n2\n3\n5\n" ]
[ "3\n", "0\n" ]
In the first test case the optimal path for Winnie is the following: first have a meal in Rabbit's house, then in Owl's house, then in Eeyore's house. Thus he will pass the distance 2 + 1 = 3. In the second test case Winnie has a meal in Rabbit's house and that is for him. So he doesn't have to walk anywhere at all.
500
[ { "input": "3\n2\n3\n1", "output": "3" }, { "input": "1\n2\n3\n5", "output": "0" }, { "input": "10\n1\n8\n3", "output": "9" }, { "input": "7\n10\n5\n6", "output": "30" }, { "input": "9\n9\n7\n5", "output": "42" }, { "input": "9\n37\n85\n76", "outpu...
1,508,242,338
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
5,529,600
n = int(input()) a = int(input()) b = int(input()) c = int(input()) lista = [] lista.append(a) lista.append(b) lista.append(c) minimalni = 101 nekaj = 0 for i in lista: if i < minimalni: minimalni = i if minimalni < n: nekaj += minimalni else: break p...
Title: Trip For Meal Time Limit: None seconds Memory Limit: None megabytes Problem Description: Winnie-the-Pooh likes honey very much! That is why he decided to visit his friends. Winnie has got three best friends: Rabbit, Owl and Eeyore, each of them lives in his own house. There are winding paths between each pair...
```python n = int(input()) a = int(input()) b = int(input()) c = int(input()) lista = [] lista.append(a) lista.append(b) lista.append(c) minimalni = 101 nekaj = 0 for i in lista: if i < minimalni: minimalni = i if minimalni < n: nekaj += minimalni else: ...
0
298
A
Snow Footprints
PROGRAMMING
1,300
[ "greedy", "implementation" ]
null
null
There is a straight snowy road, divided into *n* blocks. The blocks are numbered from 1 to *n* from left to right. If one moves from the *i*-th block to the (*i*<=+<=1)-th block, he will leave a right footprint on the *i*-th block. Similarly, if one moves from the *i*-th block to the (*i*<=-<=1)-th block, he will leave...
The first line of the input contains integer *n* (3<=≤<=*n*<=≤<=1000). The second line contains the description of the road — the string that consists of *n* characters. Each character will be either "." (a block without footprint), or "L" (a block with a left footprint), "R" (a block with a right footprint). It's gu...
Print two space-separated integers — the values of *s* and *t*. If there are several possible solutions you can print any of them.
[ "9\n..RRLL...\n", "11\n.RRRLLLLL..\n" ]
[ "3 4\n", "7 5\n" ]
The first test sample is the one in the picture.
500
[ { "input": "11\n.RRRLLLLL..", "output": "7 5" }, { "input": "4\n.RL.", "output": "3 2" }, { "input": "3\n.L.", "output": "2 1" }, { "input": "3\n.R.", "output": "2 3" } ]
1,545,207,909
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
186
0
n = int(input()) a = list(input()) start = ends = counter = 0 for i in range(n-1): if a[i] == '.': continue elif a[i] == 'R': start = i + 1 if a[i+1] == 'R': continue elif a[i+1] == 'L' or a[i+1] == '.': ends = i + 2 break else...
Title: Snow Footprints Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is a straight snowy road, divided into *n* blocks. The blocks are numbered from 1 to *n* from left to right. If one moves from the *i*-th block to the (*i*<=+<=1)-th block, he will leave a right footprint on the *...
```python n = int(input()) a = list(input()) start = ends = counter = 0 for i in range(n-1): if a[i] == '.': continue elif a[i] == 'R': start = i + 1 if a[i+1] == 'R': continue elif a[i+1] == 'L' or a[i+1] == '.': ends = i + 2 break...
0
592
B
The Monster and the Squirrel
PROGRAMMING
1,100
[ "math" ]
null
null
Ari the monster always wakes up very early with the first ray of the sun and the first thing she does is feeding her squirrel. Ari draws a regular convex polygon on the floor and numbers it's vertices 1,<=2,<=...,<=*n* in clockwise order. Then starting from the vertex 1 she draws a ray in the direction of each other v...
The first and only line of the input contains a single integer *n* (3<=≤<=*n*<=≤<=54321) - the number of vertices of the regular polygon drawn by Ari.
Print the minimum number of jumps Ada should make to collect all the walnuts. Note, that she doesn't need to leave the polygon after.
[ "5\n", "3\n" ]
[ "9\n", "1\n" ]
One of the possible solutions for the first sample is shown on the picture above.
1,000
[ { "input": "5", "output": "9" }, { "input": "3", "output": "1" }, { "input": "54321", "output": "2950553761" }, { "input": "4", "output": "4" }, { "input": "6", "output": "16" }, { "input": "7", "output": "25" }, { "input": "8", "output...
1,446,310,365
1,365
Python 3
OK
TESTS
24
61
0
#!/usr/bin/env python3 from sys import stdin n = int(stdin.readline().strip()) out = (n - 2) ** 2 print(out)
Title: The Monster and the Squirrel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ari the monster always wakes up very early with the first ray of the sun and the first thing she does is feeding her squirrel. Ari draws a regular convex polygon on the floor and numbers it's vertices 1,<=...
```python #!/usr/bin/env python3 from sys import stdin n = int(stdin.readline().strip()) out = (n - 2) ** 2 print(out) ```
3
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,539,862,468
2,147,483,647
Python 3
OK
TESTS
32
218
0
x=int(input()) y=list(map(int,input().split())) z=[] q=[] for i in range(x): if y[i]%2==0: z.append(y[i]) else: q.append(y[i]) if len(z)==1: print(y.index(z[0])+1) else: print(y.index(q[0])+1)
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python x=int(input()) y=list(map(int,input().split())) z=[] q=[] for i in range(x): if y[i]%2==0: z.append(y[i]) else: q.append(y[i]) if len(z)==1: print(y.index(z[0])+1) else: print(y.index(q[0])+1) ```
3.9455
119
A
Epic Game
PROGRAMMING
800
[ "implementation" ]
null
null
Simon and Antisimon play a game. Initially each player receives one fixed positive integer that doesn't change throughout the game. Simon receives number *a* and Antisimon receives number *b*. They also have a heap of *n* stones. The players take turns to make a move and Simon starts. During a move a player should take...
The only string contains space-separated integers *a*, *b* and *n* (1<=≤<=*a*,<=*b*,<=*n*<=≤<=100) — the fixed numbers Simon and Antisimon have received correspondingly and the initial number of stones in the pile.
If Simon wins, print "0" (without the quotes), otherwise print "1" (without the quotes).
[ "3 5 9\n", "1 1 100\n" ]
[ "0", "1" ]
The greatest common divisor of two non-negative integers *a* and *b* is such maximum positive integer *k*, that *a* is divisible by *k* without remainder and similarly, *b* is divisible by *k* without remainder. Let *gcd*(*a*, *b*) represent the operation of calculating the greatest common divisor of numbers *a* and *b...
500
[ { "input": "3 5 9", "output": "0" }, { "input": "1 1 100", "output": "1" }, { "input": "23 12 16", "output": "1" }, { "input": "95 26 29", "output": "1" }, { "input": "73 32 99", "output": "1" }, { "input": "1 1 1", "output": "0" }, { "inpu...
1,632,822,572
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n = int(input()) a = 0 a_1 = 1 b = 0 fipo = [0] while a <= n : b = a_1 +a a = a_1 a_1 = b fipo . append(a) l = fipo.index(n) if n == 3 : print('1','1','1') elif n == 2 : print('0','1','1') elif n == 1 : print('0','0','1') elif n == 0 : print('0','0','0') elif n in f...
Title: Epic Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Simon and Antisimon play a game. Initially each player receives one fixed positive integer that doesn't change throughout the game. Simon receives number *a* and Antisimon receives number *b*. They also have a heap of *n* sto...
```python n = int(input()) a = 0 a_1 = 1 b = 0 fipo = [0] while a <= n : b = a_1 +a a = a_1 a_1 = b fipo . append(a) l = fipo.index(n) if n == 3 : print('1','1','1') elif n == 2 : print('0','1','1') elif n == 1 : print('0','0','1') elif n == 0 : print('0','0','0') e...
-1
770
A
New Password
PROGRAMMING
800
[ "*special", "implementation" ]
null
null
Innokentiy decides to change the password in the social net "Contact!", but he is too lazy to invent a new password by himself. That is why he needs your help. Innokentiy decides that new password should satisfy the following conditions: - the length of the password must be equal to *n*, - the password should cons...
The first line contains two positive integers *n* and *k* (2<=≤<=*n*<=≤<=100, 2<=≤<=*k*<=≤<=*min*(*n*,<=26)) — the length of the password and the number of distinct symbols in it. Pay attention that a desired new password always exists.
Print any password which satisfies all conditions given by Innokentiy.
[ "4 3\n", "6 6\n", "5 2\n" ]
[ "java\n", "python\n", "phphp\n" ]
In the first test there is one of the appropriate new passwords — java, because its length is equal to 4 and 3 distinct lowercase letters a, j and v are used in it. In the second test there is one of the appropriate new passwords — python, because its length is equal to 6 and it consists of 6 distinct lowercase letter...
500
[ { "input": "4 3", "output": "abca" }, { "input": "6 6", "output": "abcdef" }, { "input": "5 2", "output": "ababa" }, { "input": "3 2", "output": "aba" }, { "input": "10 2", "output": "ababababab" }, { "input": "26 13", "output": "abcdefghijklmabcde...
1,652,099,605
2,147,483,647
Python 3
OK
TESTS
47
62
409,600
from string import ascii_lowercase as alph n, k = map(int, input().split()) print(''.join(alph[i % k] for i in range(n)))
Title: New Password Time Limit: None seconds Memory Limit: None megabytes Problem Description: Innokentiy decides to change the password in the social net "Contact!", but he is too lazy to invent a new password by himself. That is why he needs your help. Innokentiy decides that new password should satisfy the foll...
```python from string import ascii_lowercase as alph n, k = map(int, input().split()) print(''.join(alph[i % k] for i in range(n))) ```
3
217
A
Ice Skating
PROGRAMMING
1,200
[ "brute force", "dfs and similar", "dsu", "graphs" ]
null
null
Bajtek is learning to skate on ice. He's a beginner, so his only mode of transportation is pushing off from a snow drift to the north, east, south or west and sliding until he lands in another snow drift. He has noticed that in this way it's impossible to get from some snow drifts to some other by any sequence of moves...
The first line of input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of snow drifts. Each of the following *n* lines contains two integers *x**i* and *y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<=1000) — the coordinates of the *i*-th snow drift. Note that the north direction coinсides with the direction of *Oy* ...
Output the minimal number of snow drifts that need to be created in order for Bajtek to be able to reach any snow drift from any other one.
[ "2\n2 1\n1 2\n", "2\n2 1\n4 1\n" ]
[ "1\n", "0\n" ]
none
500
[ { "input": "2\n2 1\n1 2", "output": "1" }, { "input": "2\n2 1\n4 1", "output": "0" }, { "input": "24\n171 35\n261 20\n4 206\n501 446\n961 912\n581 748\n946 978\n463 514\n841 889\n341 466\n842 967\n54 102\n235 261\n925 889\n682 672\n623 636\n268 94\n635 710\n474 510\n697 794\n586 663\n182...
1,538,729,906
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
35
248
0
def findSet(u): if parents[u] != u: parents[u] = findSet(parents[u]) return parents[u] def unionSet(u, v): up = findSet(u) vp = findSet(v) if u[0] == v[0] and u[1] == v[1]: return global count count -= 1 if ranks[up] > ranks[vp]: parents[vp] = up elif ranks[up] < ranks[u...
Title: Ice Skating Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bajtek is learning to skate on ice. He's a beginner, so his only mode of transportation is pushing off from a snow drift to the north, east, south or west and sliding until he lands in another snow drift. He has noticed tha...
```python def findSet(u): if parents[u] != u: parents[u] = findSet(parents[u]) return parents[u] def unionSet(u, v): up = findSet(u) vp = findSet(v) if u[0] == v[0] and u[1] == v[1]: return global count count -= 1 if ranks[up] > ranks[vp]: parents[vp] = up elif ranks[up]...
0
767
A
Snacktower
PROGRAMMING
1,100
[ "data structures", "implementation" ]
null
null
According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time *n* snacks of distinct sizes will fall on the city, and the residents should build a Snacktower of them by placing snacks one on another. Of course, big snacks should b...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the total number of snacks. The second line contains *n* integers, the *i*-th of them equals the size of the snack which fell on the *i*-th day. Sizes are distinct integers from 1 to *n*.
Print *n* lines. On the *i*-th of them print the sizes of the snacks which the residents placed on the top of the Snacktower on the *i*-th day in the order they will do that. If no snack is placed on some day, leave the corresponding line empty.
[ "3\n3 1 2\n", "5\n4 5 1 2 3\n" ]
[ "3\n \n2 1", "5 4\n \n \n3 2 1\n" ]
In the example a snack of size 3 fell on the first day, and the residents immediately placed it. On the second day a snack of size 1 fell, and the residents weren't able to place it because they were missing the snack of size 2. On the third day a snack of size 2 fell, and the residents immediately placed it. Right aft...
500
[ { "input": "3\n3 1 2", "output": "3 \n\n2 1 " }, { "input": "5\n4 5 1 2 3", "output": "5 4 \n\n\n3 2 1 " }, { "input": "1\n1", "output": "1 " }, { "input": "2\n1 2", "output": "2 1 " }, { "input": "10\n5 1 6 2 8 3 4 10 9 7", "output": "10 \n9 8 \n7 6 5 4 3 2 1...
1,696,585,822
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
31
0
n_of_snakes = int(input()) sizes = input().split(" ") days = [None for int in sizes] def generate_descending_numbers_string(start, end): start, end = max(start, end), min(start, end) # Generate a list of numbers in descending order numbers = [str(x) for x in range(start, end - 1, -1)] ...
Title: Snacktower Time Limit: None seconds Memory Limit: None megabytes Problem Description: According to an old legeng, a long time ago Ankh-Morpork residents did something wrong to miss Fortune, and she cursed them. She said that at some time *n* snacks of distinct sizes will fall on the city, and the residents sh...
```python n_of_snakes = int(input()) sizes = input().split(" ") days = [None for int in sizes] def generate_descending_numbers_string(start, end): start, end = max(start, end), min(start, end) # Generate a list of numbers in descending order numbers = [str(x) for x in range(start, end - 1,...
0
0
none
none
none
0
[ "none" ]
null
null
You are given an array *a* with *n* distinct integers. Construct an array *b* by permuting *a* such that for every non-empty subset of indices *S*<==<={*x*1,<=*x*2,<=...,<=*x**k*} (1<=≤<=*x**i*<=≤<=*n*, 0<=&lt;<=*k*<=&lt;<=*n*) the sums of elements on that positions in *a* and *b* are different, i. e.
The first line contains one integer *n* (1<=≤<=*n*<=≤<=22) — the size of the array. The second line contains *n* space-separated distinct integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109) — the elements of the array.
If there is no such array *b*, print -1. Otherwise in the only line print *n* space-separated integers *b*1,<=*b*2,<=...,<=*b**n*. Note that *b* must be a permutation of *a*. If there are multiple answers, print any of them.
[ "2\n1 2\n", "4\n1000 100 10 1\n" ]
[ "2 1 \n", "100 1 1000 10\n" ]
An array *x* is a permutation of *y*, if we can shuffle elements of *y* such that it will coincide with *x*. Note that the empty subset and the subset containing all indices are not counted.
0
[ { "input": "2\n1 2", "output": "2 1 " }, { "input": "4\n1000 100 10 1", "output": "100 1 1000 10" }, { "input": "5\n1 3 4 5 2", "output": "5 2 3 4 1 " }, { "input": "1\n10000000", "output": "10000000 " }, { "input": "4\n1 5 8 4", "output": "8 4 5 1 " }, { ...
1,510,970,244
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
3
62
0
n = int(input()) a = [int(i) for i in input().split()] if n == 1: print(a) else: a_with_index = [[a[i], i] for i in range(n)] a_with_index.sort() ans = [0 for i in range(n)] for i in range(n): ans[a_with_index[i][1]] = str(a_with_index[(i + 1) % n][0]) print(" ".join(ans))
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array *a* with *n* distinct integers. Construct an array *b* by permuting *a* such that for every non-empty subset of indices *S*<==<={*x*1,<=*x*2,<=...,<=*x**k*} (1<=≤<=*x**i*<=≤<=*n*, 0<=&lt;<=*k*<=&lt;<=*n*) th...
```python n = int(input()) a = [int(i) for i in input().split()] if n == 1: print(a) else: a_with_index = [[a[i], i] for i in range(n)] a_with_index.sort() ans = [0 for i in range(n)] for i in range(n): ans[a_with_index[i][1]] = str(a_with_index[(i + 1) % n][0]) print(" ".join(ans)...
-1
12
B
Correct Solution?
PROGRAMMING
1,100
[ "implementation", "sortings" ]
B. Correct Solution?
2
256
One cold winter evening Alice and her older brother Bob was sitting at home near the fireplace and giving each other interesting problems to solve. When it was Alice's turn, she told the number *n* to Bob and said: —Shuffle the digits in this number in order to obtain the smallest possible number without leading zeroe...
The first line contains one integer *n* (0<=≤<=*n*<=≤<=109) without leading zeroes. The second lines contains one integer *m* (0<=≤<=*m*<=≤<=109) — Bob's answer, possibly with leading zeroes.
Print OK if Bob's answer is correct and WRONG_ANSWER otherwise.
[ "3310\n1033\n", "4\n5\n" ]
[ "OK\n", "WRONG_ANSWER\n" ]
none
0
[ { "input": "3310\n1033", "output": "OK" }, { "input": "4\n5", "output": "WRONG_ANSWER" }, { "input": "40\n04", "output": "WRONG_ANSWER" }, { "input": "12\n12", "output": "OK" }, { "input": "432\n234", "output": "OK" }, { "input": "17109\n01179", "o...
1,642,896,240
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include<cstdio> #include<algorithm> using namespace std; const int MAXN=30; int a[MAXN],b[MAXN],tot1,tot2,pos=1; char ch; inline int read(int* a,int& tot) { ch=getchar(); while(ch>='0'&&ch<='9') a[++tot]=(ch-'0'),ch=getchar(); } int main() { read(a,tot1),read(b,tot2); if(tot1==1&&tot2==tot1) { ...
Title: Correct Solution? Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One cold winter evening Alice and her older brother Bob was sitting at home near the fireplace and giving each other interesting problems to solve. When it was Alice's turn, she told the number *n* to Bob and said: —Shuf...
```python #include<cstdio> #include<algorithm> using namespace std; const int MAXN=30; int a[MAXN],b[MAXN],tot1,tot2,pos=1; char ch; inline int read(int* a,int& tot) { ch=getchar(); while(ch>='0'&&ch<='9') a[++tot]=(ch-'0'),ch=getchar(); } int main() { read(a,tot1),read(b,tot2); if(tot1==1&&tot2==tot...
-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,665,559,685
2,147,483,647
PyPy 3
OK
TESTS
3
124
0
# -*- coding: utf-8 -*- """ Created on Wed Oct 12 15:20:42 2022 @author: lenovo """ t=int(input()) for i in range(t): a=int(input()) print('YES' if 360%(180-a)==0 else'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 # -*- coding: utf-8 -*- """ Created on Wed Oct 12 15:20:42 2022 @author: lenovo """ t=int(input()) for i in range(t): a=int(input()) print('YES' if 360%(180-a)==0 else'NO') ```
3
26
A
Almost Prime
PROGRAMMING
900
[ "number theory" ]
A. Almost Prime
2
256
A number is called almost prime if it has exactly two distinct prime divisors. For example, numbers 6, 18, 24 are almost prime, while 4, 8, 9, 42 are not. Find the amount of almost prime numbers which are between 1 and *n*, inclusive.
Input contains one integer number *n* (1<=≤<=*n*<=≤<=3000).
Output the amount of almost prime numbers between 1 and *n*, inclusive.
[ "10\n", "21\n" ]
[ "2\n", "8\n" ]
none
500
[ { "input": "10", "output": "2" }, { "input": "21", "output": "8" }, { "input": "1", "output": "0" }, { "input": "2", "output": "0" }, { "input": "4", "output": "0" }, { "input": "3", "output": "0" }, { "input": "8", "output": "1" }, ...
1,616,219,180
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
8
186
0
def isp(n) : if (n <= 1) : return False if (n <= 3) : return True if (n % 2 == 0 or n % 3 == 0) : return False i = 5 while(i * i <= n) : if (n % i == 0 or n % (i + 2) == 0) : return False i = i + 6 return True n=int(input()) s=int(n**(1/2)) lp=[] ln=[] for i in range(1,n+1): ...
Title: Almost Prime Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A number is called almost prime if it has exactly two distinct prime divisors. For example, numbers 6, 18, 24 are almost prime, while 4, 8, 9, 42 are not. Find the amount of almost prime numbers which are between 1 and *n*, in...
```python def isp(n) : if (n <= 1) : return False if (n <= 3) : return True if (n % 2 == 0 or n % 3 == 0) : return False i = 5 while(i * i <= n) : if (n % i == 0 or n % (i + 2) == 0) : return False i = i + 6 return True n=int(input()) s=int(n**(1/2)) lp=[] ln=[] for i in rang...
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,339,875
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
0
S = str(input()) #gets an input as a string value if S.find('heidi') == -1: #if there is no subset 'heidi', print("YES") #print YES else: #if there is 'heidi', print("NO") #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 S = str(input()) #gets an input as a string value if S.find('heidi') == -1: #if there is no subset 'heidi', print("YES") #print YES else: #if there is 'heidi', print("NO") #print NO ```
0
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,630,481,928
2,147,483,647
Python 3
OK
TESTS
40
124
6,758,400
word_1 = input() word_2 = input() word_2 = word_2[-1:0:-1] + word_2[0] if word_1 == word_2: print("YES") else: print("NO")
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python word_1 = input() word_2 = input() word_2 = word_2[-1:0:-1] + word_2[0] if word_1 == word_2: print("YES") else: print("NO") ```
3.956411
7
D
Palindrome Degree
PROGRAMMING
2,200
[ "hashing", "strings" ]
D. Palindrome Degree
1
256
String *s* of length *n* is called *k*-palindrome, if it is a palindrome itself, and its prefix and suffix of length are (*k*<=-<=1)-palindromes. By definition, any string (even empty) is 0-palindrome. Let's call the palindrome degree of string *s* such a maximum number *k*, for which *s* is *k*-palindrome. For examp...
The first line of the input data contains a non-empty string, consisting of Latin letters and digits. The length of the string does not exceed 5·106. The string is case-sensitive.
Output the only number — the sum of the polindrome degrees of all the string's prefixes.
[ "a2A\n", "abacaba\n" ]
[ "1", "6" ]
none
0
[ { "input": "a2A", "output": "1" }, { "input": "abacaba", "output": "6" }, { "input": "CCeCeCCCee", "output": "4" }, { "input": "opooppppopppopoppopoooppopopooopopppooopppoppoppoppppoooppooooooopppoopoopooooppooooppppppppooopooop", "output": "3" }, { "input": "odri...
1,501,244,971
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
4,608,000
exp=input() def getv(exp): l=len(exp) if l==1: return 1 for i in range(l//2): if exp[i]!=exp[l-1-i]: return 0 return l//2 ans=0 l=len(exp) while l>0: tmp=getv(exp) if tmp==0: print(1) exit(0) ans+=tmp l=l//2 exp=exp[:l] print(ans+1)
Title: Palindrome Degree Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: String *s* of length *n* is called *k*-palindrome, if it is a palindrome itself, and its prefix and suffix of length are (*k*<=-<=1)-palindromes. By definition, any string (even empty) is 0-palindrome. Let's call the pa...
```python exp=input() def getv(exp): l=len(exp) if l==1: return 1 for i in range(l//2): if exp[i]!=exp[l-1-i]: return 0 return l//2 ans=0 l=len(exp) while l>0: tmp=getv(exp) if tmp==0: print(1) exit(0) ans+=tmp l=l//2 exp=exp[:l] print(ans...
0
934
A
A Compatible Pair
PROGRAMMING
1,400
[ "brute force", "games" ]
null
null
Nian is a monster which lives deep in the oceans. Once a year, it shows up on the land, devouring livestock and even people. In order to keep the monster away, people fill their villages with red colour, light, and cracking noise, all of which frighten the monster out of coming. Little Tommy has *n* lanterns and Big B...
The first line contains two space-separated integers *n* and *m* (2<=≤<=*n*,<=*m*<=≤<=50). The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n*. The third line contains *m* space-separated integers *b*1,<=*b*2,<=...,<=*b**m*. All the integers range from <=-<=109 to 109.
Print a single integer — the brightness of the chosen pair.
[ "2 2\n20 18\n2 14\n", "5 3\n-1 0 1 2 3\n-1 0 1\n" ]
[ "252\n", "2\n" ]
In the first example, Tommy will hide 20 and Banban will choose 18 from Tommy and 14 from himself. In the second example, Tommy will hide 3 and Banban will choose 2 from Tommy and 1 from himself.
500
[ { "input": "2 2\n20 18\n2 14", "output": "252" }, { "input": "5 3\n-1 0 1 2 3\n-1 0 1", "output": "2" }, { "input": "10 2\n1 6 2 10 2 3 2 10 6 4\n5 7", "output": "70" }, { "input": "50 50\n1 6 2 10 2 3 2 10 6 4 5 0 3 1 7 3 2 4 4 2 1 5 0 6 10 1 8 0 10 9 0 4 10 5 5 7 4 9 9 5 5 ...
1,518,660,421
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
61
19,968,000
from operator import itemgetter a = input() b = input().split(" ") b = [int(i) for i in b] c = input().split(" ") c = [int(i) for i in c] ans = [] for j in range(len(b)): for k in range(len(c)): ans.append([j,b[j]*c[k]]) ans = sorted(ans, key=itemgetter(1)) tmp = ans[-1][0] ans = [] for j in ra...
Title: A Compatible Pair Time Limit: None seconds Memory Limit: None megabytes Problem Description: Nian is a monster which lives deep in the oceans. Once a year, it shows up on the land, devouring livestock and even people. In order to keep the monster away, people fill their villages with red colour, light, and cr...
```python from operator import itemgetter a = input() b = input().split(" ") b = [int(i) for i in b] c = input().split(" ") c = [int(i) for i in c] ans = [] for j in range(len(b)): for k in range(len(c)): ans.append([j,b[j]*c[k]]) ans = sorted(ans, key=itemgetter(1)) tmp = ans[-1][0] ans = [] f...
0
731
A
Night at the Museum
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devise that allows to "print" the text of a plastic tape. Text is printed sequentially, character by character...
The only line of input contains the name of some exhibit — the non-empty string consisting of no more than 100 characters. It's guaranteed that the string consists of only lowercase English letters.
Print one integer — the minimum number of rotations of the wheel, required to print the name given in the input.
[ "zeus\n", "map\n", "ares\n" ]
[ "18\n", "35\n", "34\n" ]
To print the string from the first sample it would be optimal to perform the following sequence of rotations: 1. from 'a' to 'z' (1 rotation counterclockwise), 1. from 'z' to 'e' (5 clockwise rotations), 1. from 'e' to 'u' (10 rotations counterclockwise), 1. from 'u' to 's' (2 counterclockwise rotations).
500
[ { "input": "zeus", "output": "18" }, { "input": "map", "output": "35" }, { "input": "ares", "output": "34" }, { "input": "l", "output": "11" }, { "input": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuv", "...
1,655,084,839
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
61
409,600
import string name = str(input()) alphabet = string.ascii_lowercase initialRotate = 14 currentChar = 'a' count = 0 for n in name: rotate = alphabet[initialRotate:] + alphabet[:initialRotate] idxCurrentChar = rotate.index(currentChar) idxTargetChart = rotate.index(n) if idxTargetChar...
Title: Night at the Museum Time Limit: None seconds Memory Limit: None megabytes Problem Description: Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devis...
```python import string name = str(input()) alphabet = string.ascii_lowercase initialRotate = 14 currentChar = 'a' count = 0 for n in name: rotate = alphabet[initialRotate:] + alphabet[:initialRotate] idxCurrentChar = rotate.index(currentChar) idxTargetChart = rotate.index(n) if idx...
0
776
A
A Serial Killer
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
Our beloved detective, Sherlock is currently trying to catch a serial killer who kills a person each day. Using his powers of deduction, he came to know that the killer has a strategy for selecting his next victim. The killer starts with two potential victims on his first day, selects one of these two, kills selected ...
First line of input contains two names (length of each of them doesn't exceed 10), the two initials potential victims. Next line contains integer *n* (1<=≤<=*n*<=≤<=1000), the number of days. Next *n* lines contains two names (length of each of them doesn't exceed 10), first being the person murdered on this day and t...
Output *n*<=+<=1 lines, the *i*-th line should contain the two persons from which the killer selects for the *i*-th murder. The (*n*<=+<=1)-th line should contain the two persons from which the next victim is selected. In each line, the two names can be printed in any order.
[ "ross rachel\n4\nross joey\nrachel phoebe\nphoebe monica\nmonica chandler\n", "icm codeforces\n1\ncodeforces technex\n" ]
[ "ross rachel\njoey rachel\njoey phoebe\njoey monica\njoey chandler\n", "icm codeforces\nicm technex\n" ]
In first example, the killer starts with ross and rachel. - After day 1, ross is killed and joey appears. - After day 2, rachel is killed and phoebe appears. - After day 3, phoebe is killed and monica appears. - After day 4, monica is killed and chandler appears.
500
[ { "input": "ross rachel\n4\nross joey\nrachel phoebe\nphoebe monica\nmonica chandler", "output": "ross rachel\njoey rachel\njoey phoebe\njoey monica\njoey chandler" }, { "input": "icm codeforces\n1\ncodeforces technex", "output": "icm codeforces\nicm technex" }, { "input": "a b\n3\na c\n...
1,628,630,589
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
6,758,400
a, b=input().split() n=input() n=int(n) print(a+" "+b) for i in range(n): c, d=input().split() if(c==a): print(b+" "+d) if(c==b): print(a+" "+d) a=c b=d
Title: A Serial Killer Time Limit: None seconds Memory Limit: None megabytes Problem Description: Our beloved detective, Sherlock is currently trying to catch a serial killer who kills a person each day. Using his powers of deduction, he came to know that the killer has a strategy for selecting his next victim. The...
```python a, b=input().split() n=input() n=int(n) print(a+" "+b) for i in range(n): c, d=input().split() if(c==a): print(b+" "+d) if(c==b): print(a+" "+d) a=c b=d ```
0
835
A
Key races
PROGRAMMING
800
[ "math" ]
null
null
Two boys decided to compete in text typing on the site "Key races". During the competition, they have to type a text consisting of *s* characters. The first participant types one character in *v*1 milliseconds and has ping *t*1 milliseconds. The second participant types one character in *v*2 milliseconds and has ping *...
The first line contains five integers *s*, *v*1, *v*2, *t*1, *t*2 (1<=≤<=*s*,<=*v*1,<=*v*2,<=*t*1,<=*t*2<=≤<=1000) — the number of characters in the text, the time of typing one character for the first participant, the time of typing one character for the the second participant, the ping of the first participant and th...
If the first participant wins, print "First". If the second participant wins, print "Second". In case of a draw print "Friendship".
[ "5 1 2 1 2\n", "3 3 1 1 1\n", "4 5 3 1 5\n" ]
[ "First\n", "Second\n", "Friendship\n" ]
In the first example, information on the success of the first participant comes in 7 milliseconds, of the second participant — in 14 milliseconds. So, the first wins. In the second example, information on the success of the first participant comes in 11 milliseconds, of the second participant — in 5 milliseconds. So, ...
500
[ { "input": "5 1 2 1 2", "output": "First" }, { "input": "3 3 1 1 1", "output": "Second" }, { "input": "4 5 3 1 5", "output": "Friendship" }, { "input": "1000 1000 1000 1000 1000", "output": "Friendship" }, { "input": "1 1 1 1 1", "output": "Friendship" }, ...
1,562,564,175
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
202
1,638,400
import math,string,itertools,fractions,heapq,collections,re,array,bisect,sys,random,time,queue,copy,numpy sys.setrecursionlimit(10**7) inf=10**20 mod=10**9+7 dd=[(-1,0),(0,1),(1,0),(0,-1)] ddn=[(-1,0),(-1,1),(0,1),(1,1),(1,0),(1,-1),(0,-1),(-1,-1)] def LI(): return [int(x) for x in sys.stdin.readline().split()] def L...
Title: Key races Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two boys decided to compete in text typing on the site "Key races". During the competition, they have to type a text consisting of *s* characters. The first participant types one character in *v*1 milliseconds and has ping *t...
```python import math,string,itertools,fractions,heapq,collections,re,array,bisect,sys,random,time,queue,copy,numpy sys.setrecursionlimit(10**7) inf=10**20 mod=10**9+7 dd=[(-1,0),(0,1),(1,0),(0,-1)] ddn=[(-1,0),(-1,1),(0,1),(1,1),(1,0),(1,-1),(0,-1),(-1,-1)] def LI(): return [int(x) for x in sys.stdin.readline().spli...
-1
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,591,045,045
2,147,483,647
Python 3
OK
TESTS
81
218
0
no = int(input()) final_sum = 0 vectors = [] for i in range(no): vector = list(map(int, input().split())) vectors.append(vector) x_count = y_count = z_count = 0 for vector in vectors: x_count += vector[0] y_count += vector[1] z_count += vector[2] if(x_count == y_count == z_count == 0): print...
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 no = int(input()) final_sum = 0 vectors = [] for i in range(no): vector = list(map(int, input().split())) vectors.append(vector) x_count = y_count = z_count = 0 for vector in vectors: x_count += vector[0] y_count += vector[1] z_count += vector[2] if(x_count == y_count == z_count == 0):...
3.9455
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,689,268,958
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
n = int(input()) arr = [] for i in range(n): arr.append(int(input())) min_val = min(arr) first = -1 last = -1 for i in range(n): if first == -1 and arr[i] == min_val: first = i last = i elif last != -1 and arr[i] == min_val: last = i ans = 0 for i in range(n): ...
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 n = int(input()) arr = [] for i in range(n): arr.append(int(input())) min_val = min(arr) first = -1 last = -1 for i in range(n): if first == -1 and arr[i] == min_val: first = i last = i elif last != -1 and arr[i] == min_val: last = i ans = 0 for i in r...
-1
80
A
Panoramix's Prediction
PROGRAMMING
800
[ "brute force" ]
A. Panoramix's Prediction
2
256
A prime number is a number which has exactly two distinct divisors: one and itself. For example, numbers 2, 7, 3 are prime, and 1, 6, 4 are not. The next prime number after *x* is the smallest prime number greater than *x*. For example, the next prime number after 2 is 3, and the next prime number after 3 is 5. Note t...
The first and only input line contains two positive integers — *n* and *m* (2<=≤<=*n*<=&lt;<=*m*<=≤<=50). It is guaranteed that *n* is prime. Pretests contain all the cases with restrictions 2<=≤<=*n*<=&lt;<=*m*<=≤<=4.
Print YES, if *m* is the next prime number after *n*, or NO otherwise.
[ "3 5\n", "7 11\n", "7 9\n" ]
[ "YES", "YES", "NO" ]
none
500
[ { "input": "3 5", "output": "YES" }, { "input": "7 11", "output": "YES" }, { "input": "7 9", "output": "NO" }, { "input": "2 3", "output": "YES" }, { "input": "2 4", "output": "NO" }, { "input": "3 4", "output": "NO" }, { "input": "3 5", ...
1,690,273,542
2,147,483,647
Python 3
OK
TESTS
45
92
0
s, k = list(map(int, input().split())) count, prime = 0, 0 for i in range(2, (k // 2) + 1): if k % i == 0: count += 1 if count > 0: print("NO") exit() count, prime = 0, 0 for j in range(s, k + 1): count = 0 for i in range(2, (j // 2) + 1): if j % i == 0: ...
Title: Panoramix's Prediction Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A prime number is a number which has exactly two distinct divisors: one and itself. For example, numbers 2, 7, 3 are prime, and 1, 6, 4 are not. The next prime number after *x* is the smallest prime number greater t...
```python s, k = list(map(int, input().split())) count, prime = 0, 0 for i in range(2, (k // 2) + 1): if k % i == 0: count += 1 if count > 0: print("NO") exit() count, prime = 0, 0 for j in range(s, k + 1): count = 0 for i in range(2, (j // 2) + 1): if j % i == 0:...
3.977
855
B
Marvolo Gaunt's Ring
PROGRAMMING
1,500
[ "brute force", "data structures", "dp" ]
null
null
Professor Dumbledore is helping Harry destroy the Horcruxes. He went to Gaunt Shack as he suspected a Horcrux to be present there. He saw Marvolo Gaunt's Ring and identified it as a Horcrux. Although he destroyed it, he is still affected by its curse. Professor Snape is helping Dumbledore remove the curse. For this, he...
First line of input contains 4 integers *n*,<=*p*,<=*q*,<=*r* (<=-<=109<=≤<=*p*,<=*q*,<=*r*<=≤<=109,<=1<=≤<=*n*<=≤<=105). Next line of input contains *n* space separated integers *a*1,<=*a*2,<=... *a**n* (<=-<=109<=≤<=*a**i*<=≤<=109).
Output a single integer the maximum value of *p*·*a**i*<=+<=*q*·*a**j*<=+<=*r*·*a**k* that can be obtained provided 1<=≤<=*i*<=≤<=*j*<=≤<=*k*<=≤<=*n*.
[ "5 1 2 3\n1 2 3 4 5\n", "5 1 2 -3\n-1 -2 -3 -4 -5\n" ]
[ "30\n", "12\n" ]
In the first sample case, we can take *i* = *j* = *k* = 5, thus making the answer as 1·5 + 2·5 + 3·5 = 30. In second sample case, selecting *i* = *j* = 1 and *k* = 5 gives the answer 12.
1,000
[ { "input": "5 1 2 3\n1 2 3 4 5", "output": "30" }, { "input": "5 1 2 -3\n-1 -2 -3 -4 -5", "output": "12" }, { "input": "5 886327859 82309257 -68295239\n-731225382 354766539 -48222231 -474691998 360965777", "output": "376059240645059046" }, { "input": "4 -96405765 -495906217 6...
1,653,416,375
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
max_integer, map1 = max, map n, p, q, r = map1(int, input().strip().split()) list1 = [int(x) for x in input().strip().split()] prefix_max, suffix_max = [0]*n, [0]*n, float('-inf') prefix_max[0] = p*list1[0] for i in range(1, n): prefix_max[i] = max_integer(prefix_max[i-1], p*list1[i]) suffix_max[n-1]...
Title: Marvolo Gaunt's Ring Time Limit: None seconds Memory Limit: None megabytes Problem Description: Professor Dumbledore is helping Harry destroy the Horcruxes. He went to Gaunt Shack as he suspected a Horcrux to be present there. He saw Marvolo Gaunt's Ring and identified it as a Horcrux. Although he destroyed i...
```python max_integer, map1 = max, map n, p, q, r = map1(int, input().strip().split()) list1 = [int(x) for x in input().strip().split()] prefix_max, suffix_max = [0]*n, [0]*n, float('-inf') prefix_max[0] = p*list1[0] for i in range(1, n): prefix_max[i] = max_integer(prefix_max[i-1], p*list1[i]) suffi...
-1
976
E
Well played!
PROGRAMMING
2,100
[ "greedy", "sortings" ]
null
null
Recently Max has got himself into popular CCG "BrainStone". As "BrainStone" is a pretty intellectual game, Max has to solve numerous hard problems during the gameplay. Here is one of them: Max owns *n* creatures, *i*-th of them can be described with two numbers — its health *hp**i* and its damage *dmg**i*. Max also ha...
The first line contains three integers *n*, *a*, *b* (1<=≤<=*n*<=≤<=2·105, 0<=≤<=*a*<=≤<=20, 0<=≤<=*b*<=≤<=2·105) — the number of creatures, spells of the first type and spells of the second type, respectively. The *i*-th of the next *n* lines contain two number *hp**i* and *dmg**i* (1<=≤<=*hp**i*,<=*dmg**i*<=≤<=109) ...
Print single integer — maximum total damage creatures can deal.
[ "2 1 1\n10 15\n6 1\n", "3 0 3\n10 8\n7 11\n5 2\n" ]
[ "27\n", "26\n" ]
In the first example Max should use the spell of the first type on the second creature, then the spell of the second type on the same creature. Then total damage will be equal to 15 + 6·2 = 27. In the second example Max should use the spell of the second type on the first creature, then the spell of the second type on...
0
[ { "input": "2 1 1\n10 15\n6 1", "output": "27" }, { "input": "3 0 3\n10 8\n7 11\n5 2", "output": "26" }, { "input": "1 0 0\n2 1", "output": "1" }, { "input": "1 0 200000\n1 2", "output": "2" }, { "input": "7 5 7\n29 25\n84 28\n34 34\n14 76\n85 9\n40 57\n99 88", ...
1,525,152,943
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
93
7,065,600
import sys if locals()['__file__'][-2:] == 'py': sys.stdin = open('in.txt', 'r') # rd = lambda: map(int, input().split()) # n, a, b = rd() # p = [] # b = min(b, n) # s = 0 # ans = 0 # for i in range(n): # hp, dmg = rd() # p.append([max(hp - dmg, 0), hp, dmg]) # s += dmg # if b: # p.sort(reverse=True...
Title: Well played! Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently Max has got himself into popular CCG "BrainStone". As "BrainStone" is a pretty intellectual game, Max has to solve numerous hard problems during the gameplay. Here is one of them: Max owns *n* creatures, *i*-th o...
```python import sys if locals()['__file__'][-2:] == 'py': sys.stdin = open('in.txt', 'r') # rd = lambda: map(int, input().split()) # n, a, b = rd() # p = [] # b = min(b, n) # s = 0 # ans = 0 # for i in range(n): # hp, dmg = rd() # p.append([max(hp - dmg, 0), hp, dmg]) # s += dmg # if b: # p.sort(re...
-1
614
A
Link/Cut Tree
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the *expose* procedure. Unfortunately, Rostislav is unable to understand the definition of this procedure, so he decided to ask programmer Serezha to help him. Serezha agre...
The first line of the input contains three space-separated integers *l*, *r* and *k* (1<=≤<=*l*<=≤<=*r*<=≤<=1018, 2<=≤<=*k*<=≤<=109).
Print all powers of number *k*, that lie within range from *l* to *r* in the increasing order. If there are no such numbers, print "-1" (without the quotes).
[ "1 10 2\n", "2 4 5\n" ]
[ "1 2 4 8 ", "-1" ]
Note to the first sample: numbers 2<sup class="upper-index">0</sup> = 1, 2<sup class="upper-index">1</sup> = 2, 2<sup class="upper-index">2</sup> = 4, 2<sup class="upper-index">3</sup> = 8 lie within the specified range. The number 2<sup class="upper-index">4</sup> = 16 is greater then 10, thus it shouldn't be printed.
500
[ { "input": "1 10 2", "output": "1 2 4 8 " }, { "input": "2 4 5", "output": "-1" }, { "input": "18102 43332383920 28554", "output": "28554 815330916 " }, { "input": "19562 31702689720 17701", "output": "313325401 " }, { "input": "11729 55221128400 313", "output...
1,489,423,409
2,147,483,647
Python 3
OK
TESTS
44
62
4,608,000
l,r,k=map(int,input().split()) f=0 t=1 while (t<=r): if(t>=l): f=1 print(t) t*=k; if (not(f)): print(-1)
Title: Link/Cut Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the *expose* procedure. Unfortunately, Rostislav is unable to understand ...
```python l,r,k=map(int,input().split()) f=0 t=1 while (t<=r): if(t>=l): f=1 print(t) t*=k; if (not(f)): print(-1) ```
3
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,699,518,117
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
92
0
n=int(input()) a,b=map(int,input().split()) m=0;cur=b for i in range(n-1): x,y=map(int,input().split()) if cur+y-x>m: m=cur+y-x cur=cur+y-x print(m)
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 n=int(input()) a,b=map(int,input().split()) m=0;cur=b for i in range(n-1): x,y=map(int,input().split()) if cur+y-x>m: m=cur+y-x cur=cur+y-x print(m) ```
0
0
none
none
none
0
[ "none" ]
null
null
Beroffice text editor has a wide range of features that help working with text. One of the features is an automatic search for typos and suggestions of how to fix them. Beroffice works only with small English letters (i.e. with 26 letters from a to z). Beroffice thinks that a word is typed with a typo if there are thr...
The only line contains a non-empty word consisting of small English letters. The length of the word is between 1 and 3000 letters.
Print the given word without any changes if there are no typos. If there is at least one typo in the word, insert the minimum number of spaces into the word so that each of the resulting words doesn't have any typos. If there are multiple solutions, print any of them.
[ "hellno\n", "abacaba\n", "asdfasdf\n" ]
[ "hell no \n", "abacaba \n", "asd fasd f \n" ]
none
0
[ { "input": "hellno", "output": "hell no " }, { "input": "abacaba", "output": "abacaba " }, { "input": "asdfasdf", "output": "asd fasd f " }, { "input": "ooo", "output": "ooo " }, { "input": "moyaoborona", "output": "moyaoborona " }, { "input": "jxegxxx...
1,689,956,231
2,147,483,647
PyPy 3-64
OK
TESTS
108
77
2,150,400
word = input() n = len(word) breaks = [False] * n vowels = set({'a', 'e', 'i', 'o', 'u'}) streak = 1 if word[0] not in vowels else 0 numdiff = streak for i in range(1, n): if word[i] not in vowels: streak += 1 if word[i] != word[i - 1]: numdiff += 1 else: streak =...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Beroffice text editor has a wide range of features that help working with text. One of the features is an automatic search for typos and suggestions of how to fix them. Beroffice works only with small English letters (i.e. with 2...
```python word = input() n = len(word) breaks = [False] * n vowels = set({'a', 'e', 'i', 'o', 'u'}) streak = 1 if word[0] not in vowels else 0 numdiff = streak for i in range(1, n): if word[i] not in vowels: streak += 1 if word[i] != word[i - 1]: numdiff += 1 else: ...
3
690
C1
Brain Network (easy)
PROGRAMMING
1,300
[]
null
null
One particularly well-known fact about zombies is that they move and think terribly slowly. While we still don't know why their movements are so sluggish, the problem of laggy thinking has been recently resolved. It turns out that the reason is not (as previously suspected) any kind of brain defect – it's the opposite!...
The first line of the input contains two space-separated integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000) denoting the number of brains (which are conveniently numbered from 1 to *n*) and the number of brain connectors in the nervous system, respectively. In the next *m* lines, descriptions of brain connectors follow. E...
The output consists of one line, containing either yes or no depending on whether the nervous system is valid.
[ "4 4\n1 2\n2 3\n3 1\n4 1\n", "6 5\n1 2\n2 3\n3 4\n4 5\n3 6\n" ]
[ "no\n", "yes\n" ]
none
0
[ { "input": "4 4\n1 2\n2 3\n3 1\n4 1", "output": "no" }, { "input": "6 5\n1 2\n2 3\n3 4\n4 5\n3 6", "output": "yes" }, { "input": "2 1\n1 2", "output": "yes" }, { "input": "3 3\n2 1\n1 3\n3 2", "output": "no" }, { "input": "3 2\n1 2\n2 3", "output": "yes" }, ...
1,670,242,652
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
6
46
0
def dfs(cell): global vis,d if cell in vis: return vis.add(cell) for eachCell in d[cell]: dfs(eachCell) m,n = map(int,input().split()) if (n + 1) != m: print('no') else: d = {} for __ in range(m-1): x, y = map(int,input().split()) if x not in d: d[x] = [] if y not in d: d[y] = [] d[x].append...
Title: Brain Network (easy) Time Limit: None seconds Memory Limit: None megabytes Problem Description: One particularly well-known fact about zombies is that they move and think terribly slowly. While we still don't know why their movements are so sluggish, the problem of laggy thinking has been recently resolved. I...
```python def dfs(cell): global vis,d if cell in vis: return vis.add(cell) for eachCell in d[cell]: dfs(eachCell) m,n = map(int,input().split()) if (n + 1) != m: print('no') else: d = {} for __ in range(m-1): x, y = map(int,input().split()) if x not in d: d[x] = [] if y not in d: d[y] = [] d...
0
680
B
Bear and Finding Criminals
PROGRAMMING
1,000
[ "constructive algorithms", "implementation" ]
null
null
There are *n* cities in Bearland, numbered 1 through *n*. Cities are arranged in one long row. The distance between cities *i* and *j* is equal to |*i*<=-<=*j*|. Limak is a police officer. He lives in a city *a*. His job is to catch criminals. It's hard because he doesn't know in which cities criminals are. Though, he...
The first line of the input contains two integers *n* and *a* (1<=≤<=*a*<=≤<=*n*<=≤<=100) — the number of cities and the index of city where Limak lives. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (0<=≤<=*t**i*<=≤<=1). There are *t**i* criminals in the *i*-th city.
Print the number of criminals Limak will catch.
[ "6 3\n1 1 1 0 1 0\n", "5 2\n0 0 0 1 0\n" ]
[ "3\n", "1\n" ]
In the first sample, there are six cities and Limak lives in the third one (blue arrow below). Criminals are in cities marked red. Using the BCD gives Limak the following information: - There is one criminal at distance 0 from the third city — Limak is sure that this criminal is exactly in the third city. - There i...
1,000
[ { "input": "6 3\n1 1 1 0 1 0", "output": "3" }, { "input": "5 2\n0 0 0 1 0", "output": "1" }, { "input": "1 1\n1", "output": "1" }, { "input": "1 1\n0", "output": "0" }, { "input": "9 3\n1 1 1 1 1 1 1 1 0", "output": "8" }, { "input": "9 5\n1 0 1 0 1 0...
1,619,381,594
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
61
0
n, a = map(int, input().split()) arr = list(map(int, input().split())) count = 0 a -= 1 if arr[a] == 1: count += 1 arr1 = arr[:a] arr2 = arr[a+1:] if len(arr1) == len(arr2): for i in range(len(arr1)): if arr1[i] & arr2[i] == 1: count += 2 elif len(arr1) < len(arr2): for i in range(len(arr1)): ...
Title: Bear and Finding Criminals Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* cities in Bearland, numbered 1 through *n*. Cities are arranged in one long row. The distance between cities *i* and *j* is equal to |*i*<=-<=*j*|. Limak is a police officer. He lives in a city...
```python n, a = map(int, input().split()) arr = list(map(int, input().split())) count = 0 a -= 1 if arr[a] == 1: count += 1 arr1 = arr[:a] arr2 = arr[a+1:] if len(arr1) == len(arr2): for i in range(len(arr1)): if arr1[i] & arr2[i] == 1: count += 2 elif len(arr1) < len(arr2): for i in range(len(...
0
709
A
Juicer
PROGRAMMING
900
[ "implementation" ]
null
null
Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To be put in the juicer the orange must have size not exceeding *b*, so if Kolya sees an orange ...
The first line of the input contains three integers *n*, *b* and *d* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*b*<=≤<=*d*<=≤<=1<=000<=000) — the number of oranges, the maximum size of the orange that fits in the juicer and the value *d*, which determines the condition when the waste section should be emptied. The second line co...
Print one integer — the number of times Kolya will have to empty the waste section.
[ "2 7 10\n5 6\n", "1 5 10\n7\n", "3 10 10\n5 7 7\n", "1 1 1\n1\n" ]
[ "1\n", "0\n", "1\n", "0\n" ]
In the first sample, Kolya will squeeze the juice from two oranges and empty the waste section afterwards. In the second sample, the orange won't fit in the juicer so Kolya will have no juice at all.
500
[ { "input": "2 7 10\n5 6", "output": "1" }, { "input": "1 5 10\n7", "output": "0" }, { "input": "3 10 10\n5 7 7", "output": "1" }, { "input": "1 1 1\n1", "output": "0" }, { "input": "2 951637 951638\n44069 951637", "output": "1" }, { "input": "50 100 12...
1,647,940,353
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
77
7,372,800
n, max_orange_size, max_total_size = tuple(map(int, input().split())) orange_sizes = list(map(int, input().split())) total_size = 0 for orange in orange_sizes: if orange > max_orange_size: continue else: total_size += orange # we checked if total_size < max_total_size because if we don't...
Title: Juicer Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To b...
```python n, max_orange_size, max_total_size = tuple(map(int, input().split())) orange_sizes = list(map(int, input().split())) total_size = 0 for orange in orange_sizes: if orange > max_orange_size: continue else: total_size += orange # we checked if total_size < max_total_size because i...
0