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
791
A
Bear and Big Brother
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or equal to his brother's weight. Limak eats a lot and his weight is tripled after every year, while Bob's we...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10) — the weight of Limak and the weight of Bob respectively.
Print one integer, denoting the integer number of years after which Limak will become strictly larger than Bob.
[ "4 7\n", "4 9\n", "1 1\n" ]
[ "2\n", "3\n", "1\n" ]
In the first sample, Limak weighs 4 and Bob weighs 7 initially. After one year their weights are 4·3 = 12 and 7·2 = 14 respectively (one weight is tripled while the other one is doubled). Limak isn't larger than Bob yet. After the second year weights are 36 and 28, so the first weight is greater than the second one. Li...
500
[ { "input": "4 7", "output": "2" }, { "input": "4 9", "output": "3" }, { "input": "1 1", "output": "1" }, { "input": "4 6", "output": "2" }, { "input": "1 10", "output": "6" }, { "input": "1 1", "output": "1" }, { "input": "1 2", "output...
1,696,240,221
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
a = int(input()) b = int(input()) def weight(a,b,years=0): if a>b: return years else: return weight(3*a,2*b,years+1) result = weight(a,b) print(result)
Title: Bear and Big Brother Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or e...
```python a = int(input()) b = int(input()) def weight(a,b,years=0): if a>b: return years else: return weight(3*a,2*b,years+1) result = weight(a,b) print(result) ```
-1
32
B
Borze
PROGRAMMING
800
[ "expression parsing", "implementation" ]
B. Borze
2
256
Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary number given its representation in Borze alphabet.
The first line contains a number in Borze code. The length of the string is between 1 and 200 characters. It's guaranteed that the given string is a valid Borze code of some ternary number (this number can have leading zeroes).
Output the decoded ternary number. It can have leading zeroes.
[ ".-.--\n", "--.\n", "-..-.--\n" ]
[ "012", "20", "1012" ]
none
1,000
[ { "input": ".-.--", "output": "012" }, { "input": "--.", "output": "20" }, { "input": "-..-.--", "output": "1012" }, { "input": "---..", "output": "210" }, { "input": "..--.---..", "output": "0020210" }, { "input": "-.....----.", "output": "1000022...
1,622,578,695
2,147,483,647
PyPy 3
OK
TESTS
30
310
0
l=input() a=len(l) f="" i=0 while i<a: if l[i]=="-": if l[i+1]==".": f+="1" i+=2 elif l[i+1]=="-": f+="2" i+=2 elif l[i]==".": f+="0" i+=1 print(f)
Title: Borze Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary ...
```python l=input() a=len(l) f="" i=0 while i<a: if l[i]=="-": if l[i+1]==".": f+="1" i+=2 elif l[i+1]=="-": f+="2" i+=2 elif l[i]==".": f+="0" i+=1 print(f) ```
3.9225
456
A
Laptops
PROGRAMMING
1,100
[ "sortings" ]
null
null
One day Dima and Alex had an argument about the price and quality of laptops. Dima thinks that the more expensive a laptop is, the better it is. Alex disagrees. Alex thinks that there are two laptops, such that the price of the first laptop is less (strictly smaller) than the price of the second laptop but the quality ...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=105) — the number of laptops. Next *n* lines contain two integers each, *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*), where *a**i* is the price of the *i*-th laptop, and *b**i* is the number that represents the quality of the *i*-th laptop (the larger the numb...
If Alex is correct, print "Happy Alex", otherwise print "Poor Alex" (without the quotes).
[ "2\n1 2\n2 1\n" ]
[ "Happy Alex\n" ]
none
500
[ { "input": "2\n1 2\n2 1", "output": "Happy Alex" }, { "input": "2\n1 1\n2 2", "output": "Poor Alex" }, { "input": "3\n2 2\n3 3\n1 1", "output": "Poor Alex" }, { "input": "3\n3 3\n1 2\n2 1", "output": "Happy Alex" }, { "input": "1\n1 1", "output": "Poor Alex" ...
1,696,869,631
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
30
0
n_laptops = int(input()) laptops = {} for n in range(n_laptops): price, quality = map(int, input().split()) laptops[n] = { 'price': price, 'quality': quality } best_laptop = min(laptops.items(), key=lambda item: item[1]['price']) laptop_max_price = max(laptops.items(), key=lambda item:...
Title: Laptops Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Dima and Alex had an argument about the price and quality of laptops. Dima thinks that the more expensive a laptop is, the better it is. Alex disagrees. Alex thinks that there are two laptops, such that the price of the...
```python n_laptops = int(input()) laptops = {} for n in range(n_laptops): price, quality = map(int, input().split()) laptops[n] = { 'price': price, 'quality': quality } best_laptop = min(laptops.items(), key=lambda item: item[1]['price']) laptop_max_price = max(laptops.items(), key=la...
0
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,629,949,956
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
6,963,200
length = int(input())-1 thislist= [int(x) for x in input().split()] # for i in range(len(thislist)): # mini=0 # maxi=0 # for j in range(len(thislist)): # if i!=j: # distance=abs(thislist[i]-thislist[j]) # if distance<mini or mini==0: # mini=distance # ...
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 length = int(input())-1 thislist= [int(x) for x in input().split()] # for i in range(len(thislist)): # mini=0 # maxi=0 # for j in range(len(thislist)): # if i!=j: # distance=abs(thislist[i]-thislist[j]) # if distance<mini or mini==0: # mini=distanc...
0
612
B
HDD is Outdated Technology
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
HDD hard drives group data by sectors. All files are split to fragments and each of them are written in some sector of hard drive. Note the fragments can be written in sectors in arbitrary order. One of the problems of HDD hard drives is the following: the magnetic head should move from one sector to another to read s...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=2·105) — the number of fragments. The second line contains *n* different integers *f**i* (1<=≤<=*f**i*<=≤<=*n*) — the number of the fragment written in the *i*-th sector.
Print the only integer — the number of time units needed to read the file.
[ "3\n3 1 2\n", "5\n1 3 5 4 2\n" ]
[ "3\n", "10\n" ]
In the second example the head moves in the following way: - 1-&gt;2 means movement from the sector 1 to the sector 5, i.e. it takes 4 time units - 2-&gt;3 means movement from the sector 5 to the sector 2, i.e. it takes 3 time units - 3-&gt;4 means movement from the sector 2 to the sector 4, i.e. it takes 2 time un...
0
[ { "input": "3\n3 1 2", "output": "3" }, { "input": "5\n1 3 5 4 2", "output": "10" }, { "input": "1\n1", "output": "0" }, { "input": "1\n1", "output": "0" }, { "input": "1\n1", "output": "0" }, { "input": "10\n8 2 10 3 4 6 1 7 9 5", "output": "40" ...
1,525,171,069
2,147,483,647
Python 3
OK
TESTS
24
358
21,606,400
n = int(input()) a = [0] * n i = 1 c = 0 for item in input().split(): a[int(item) - 1] = i i += 1 for i in range(n - 1): c += abs(a[i] - a[i + 1]) print(c)
Title: HDD is Outdated Technology Time Limit: None seconds Memory Limit: None megabytes Problem Description: HDD hard drives group data by sectors. All files are split to fragments and each of them are written in some sector of hard drive. Note the fragments can be written in sectors in arbitrary order. One of the ...
```python n = int(input()) a = [0] * n i = 1 c = 0 for item in input().split(): a[int(item) - 1] = i i += 1 for i in range(n - 1): c += abs(a[i] - a[i + 1]) print(c) ```
3
115
B
Lawnmower
PROGRAMMING
1,500
[ "greedy", "sortings" ]
null
null
You have a garden consisting entirely of grass and weeds. Your garden is described by an *n*<=×<=*m* grid, with rows numbered 1 to *n* from top to bottom, and columns 1 to *m* from left to right. Each cell is identified by a pair (*r*,<=*c*) which means that the cell is located at row *r* and column *c*. Each cell may ...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=150) — the number of rows and columns respectively. Then follow *n* lines containing *m* characters each — the content of the grid. "G" means that this cell contains grass. "W" means that this cell contains weeds. It is guaranteed that the top-left...
Print a single number — the minimum number of moves required to mow all the weeds.
[ "4 5\nGWGGW\nGGWGG\nGWGGG\nWGGGG\n", "3 3\nGWW\nWWW\nWWG\n", "1 1\nG\n" ]
[ "11\n", "7\n", "0\n" ]
For the first example, this is the picture of the initial state of the grid: A possible solution is by mowing the weeds as illustrated below:
1,000
[ { "input": "4 5\nGWGGW\nGGWGG\nGWGGG\nWGGGG", "output": "11" }, { "input": "3 3\nGWW\nWWW\nWWG", "output": "7" }, { "input": "1 1\nG", "output": "0" }, { "input": "4 3\nGWW\nWWW\nWWW\nWWG", "output": "11" }, { "input": "6 5\nGWWWW\nWWWWW\nWWWWW\nWWWWW\nWWWWW\nWWWW...
1,665,652,138
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
import sys input = sys.stdin.readline n, m = map(int, input().split()) t = [(p.find('W'), p.rfind('W')) for p in [input()[:-1] for i in range(n)]] print(t) c, s, k = 0, n - 1, True while s > 0 and t[s][0] == -1: s -= 1 for a, b in t[: s + 1]: if a != -1: if k: s += abs(a - c) ...
Title: Lawnmower Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have a garden consisting entirely of grass and weeds. Your garden is described by an *n*<=×<=*m* grid, with rows numbered 1 to *n* from top to bottom, and columns 1 to *m* from left to right. Each cell is identified by a ...
```python import sys input = sys.stdin.readline n, m = map(int, input().split()) t = [(p.find('W'), p.rfind('W')) for p in [input()[:-1] for i in range(n)]] print(t) c, s, k = 0, n - 1, True while s > 0 and t[s][0] == -1: s -= 1 for a, b in t[: s + 1]: if a != -1: if k: s += a...
0
120
F
Spiders
PROGRAMMING
1,400
[ "dp", "greedy", "trees" ]
null
null
One day mum asked Petya to sort his toys and get rid of some of them. Petya found a whole box of toy spiders. They were quite dear to him and the boy didn't want to throw them away. Petya conjured a cunning plan: he will glue all the spiders together and attach them to the ceiling. Besides, Petya knows that the lower t...
The first input file line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the number of spiders. Next *n* lines contain the descriptions of each spider: integer *n**i* (2<=≤<=*n**i*<=≤<=100) — the number of beads, then *n**i*<=-<=1 pairs of numbers denoting the numbers of the beads connected by threads. The beads that m...
Print a single number — the length of the required construction.
[ "1\n3 1 2 2 3\n", "2\n3 1 2 1 3\n4 1 2 2 3 2 4\n", "2\n5 1 2 2 3 3 4 3 5\n7 3 4 1 2 2 4 4 6 2 7 6 5\n" ]
[ "2\n", "4\n", "7\n" ]
none
0
[ { "input": "1\n3 1 2 2 3", "output": "2" }, { "input": "2\n3 1 2 1 3\n4 1 2 2 3 2 4", "output": "4" }, { "input": "2\n5 1 2 2 3 3 4 3 5\n7 3 4 1 2 2 4 4 6 2 7 6 5", "output": "7" }, { "input": "3\n3 1 2 2 3\n5 2 5 5 3 3 4 5 1\n9 6 5 5 9 4 8 4 7 2 1 2 6 2 4 6 3", "output":...
1,543,219,917
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
372
1,024,000
R = lambda: map(int, input().split()) def dfs(tree, curr, parent): fn, fd = curr, 0 for ch in tree[curr]: if ch != parent: nn, dd = dfs(tree, ch, curr) if dd + 1 > fd: fn, fd = nn, dd + 1 return fn, fd res = 0 f = open('input.txt', 'r') for t in ran...
Title: Spiders Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day mum asked Petya to sort his toys and get rid of some of them. Petya found a whole box of toy spiders. They were quite dear to him and the boy didn't want to throw them away. Petya conjured a cunning plan: he will glue a...
```python R = lambda: map(int, input().split()) def dfs(tree, curr, parent): fn, fd = curr, 0 for ch in tree[curr]: if ch != parent: nn, dd = dfs(tree, ch, curr) if dd + 1 > fd: fn, fd = nn, dd + 1 return fn, fd res = 0 f = open('input.txt', 'r') fo...
-1
682
A
Alyona and Numbers
PROGRAMMING
1,100
[ "constructive algorithms", "math", "number theory" ]
null
null
After finishing eating her bun, Alyona came up with two integers *n* and *m*. She decided to write down two columns of integers — the first column containing integers from 1 to *n* and the second containing integers from 1 to *m*. Now the girl wants to count how many pairs of integers she can choose, one from the first...
The only line of the input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1<=000<=000).
Print the only integer — the number of pairs of integers (*x*,<=*y*) such that 1<=≤<=*x*<=≤<=*n*, 1<=≤<=*y*<=≤<=*m* and (*x*<=+<=*y*) is divisible by 5.
[ "6 12\n", "11 14\n", "1 5\n", "3 8\n", "5 7\n", "21 21\n" ]
[ "14\n", "31\n", "1\n", "5\n", "7\n", "88\n" ]
Following pairs are suitable in the first sample case: - for *x* = 1 fits *y* equal to 4 or 9; - for *x* = 2 fits *y* equal to 3 or 8; - for *x* = 3 fits *y* equal to 2, 7 or 12; - for *x* = 4 fits *y* equal to 1, 6 or 11; - for *x* = 5 fits *y* equal to 5 or 10; - for *x* = 6 fits *y* equal to 4 or 9. Only th...
500
[ { "input": "6 12", "output": "14" }, { "input": "11 14", "output": "31" }, { "input": "1 5", "output": "1" }, { "input": "3 8", "output": "5" }, { "input": "5 7", "output": "7" }, { "input": "21 21", "output": "88" }, { "input": "10 15", ...
1,684,662,477
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
10
1,000
1,228,800
n, m = map(int, input().split()) res = 0 for i in range(1, n+1): remain = 5 - (i % 5) cur = 0 while remain < m+1: cur += 1 remain += 5 res += cur print(res) # 1 2 3 # 1 2 3 4 5 6 7 8 # (2, 3) # (2, 8) # (2, 13)
Title: Alyona and Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: After finishing eating her bun, Alyona came up with two integers *n* and *m*. She decided to write down two columns of integers — the first column containing integers from 1 to *n* and the second containing integers ...
```python n, m = map(int, input().split()) res = 0 for i in range(1, n+1): remain = 5 - (i % 5) cur = 0 while remain < m+1: cur += 1 remain += 5 res += cur print(res) # 1 2 3 # 1 2 3 4 5 6 7 8 # (2, 3) # (2, 8) # (2, 13) ```
0
82
A
Double Cola
PROGRAMMING
1,100
[ "implementation", "math" ]
A. Double Cola
1
256
Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resulting two Sheldons go to the end of the queue. Then the next in the queue (Leonard) buys a can, d...
The input data consist of a single integer *n* (1<=≤<=*n*<=≤<=109). It is guaranteed that the pretests check the spelling of all the five names, that is, that they contain all the five possible answers.
Print the single line — the name of the person who drinks the *n*-th can of cola. The cans are numbered starting from 1. Please note that you should spell the names like this: "Sheldon", "Leonard", "Penny", "Rajesh", "Howard" (without the quotes). In that order precisely the friends are in the queue initially.
[ "1\n", "6\n", "1802\n" ]
[ "Sheldon\n", "Sheldon\n", "Penny\n" ]
none
500
[ { "input": "1", "output": "Sheldon" }, { "input": "6", "output": "Sheldon" }, { "input": "1802", "output": "Penny" }, { "input": "1", "output": "Sheldon" }, { "input": "2", "output": "Leonard" }, { "input": "3", "output": "Penny" }, { "inpu...
1,593,974,719
2,147,483,647
Python 3
OK
TESTS
41
109
6,758,400
import math n = int(input()) name = {1 : 'Sheldon', 2 : 'Leonard', 3 : 'Penny', 4 : 'Rajesh', 5 : 'Howard'} sum, i, l = 0, 0, [0] while sum < n: sum += 5 * 2 ** i l.append(sum) i += 1 p = math.ceil((n - l[i - 1]) / 2 ** (i - 1)) print(name[p])
Title: Double Cola Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resultin...
```python import math n = int(input()) name = {1 : 'Sheldon', 2 : 'Leonard', 3 : 'Penny', 4 : 'Rajesh', 5 : 'Howard'} sum, i, l = 0, 0, [0] while sum < n: sum += 5 * 2 ** i l.append(sum) i += 1 p = math.ceil((n - l[i - 1]) / 2 ** (i - 1)) print(name[p]) ```
3.932911
157
B
Trace
PROGRAMMING
1,000
[ "geometry", "sortings" ]
null
null
One day, as Sherlock Holmes was tracking down one very important criminal, he found a wonderful painting on the wall. This wall could be represented as a plane. The painting had several concentric circles that divided the wall into several parts. Some parts were painted red and all the other were painted blue. Besides,...
The first line contains the single integer *n* (1<=≤<=*n*<=≤<=100). The second line contains *n* space-separated integers *r**i* (1<=≤<=*r**i*<=≤<=1000) — the circles' radii. It is guaranteed that all circles are different.
Print the single real number — total area of the part of the wall that is painted red. The answer is accepted if absolute or relative error doesn't exceed 10<=-<=4.
[ "1\n1\n", "3\n1 4 2\n" ]
[ "3.1415926536\n", "40.8407044967\n" ]
In the first sample the picture is just one circle of radius 1. Inner part of the circle is painted red. The area of the red part equals π × 1<sup class="upper-index">2</sup> = π. In the second sample there are three circles of radii 1, 4 and 2. Outside part of the second circle is painted blue. Part between the secon...
1,000
[ { "input": "1\n1", "output": "3.1415926536" }, { "input": "3\n1 4 2", "output": "40.8407044967" }, { "input": "4\n4 1 3 2", "output": "31.4159265359" }, { "input": "4\n100 10 2 1", "output": "31111.1920484997" }, { "input": "10\n10 9 8 7 6 5 4 3 2 1", "output"...
1,646,518,822
2,147,483,647
Python 3
OK
TESTS
44
92
0
import math n = int(input()) r = map(int, input().split()) r = sorted(list(map(lambda x: x*x, r))) print(math.pi * (sum(r[::-2]) - sum(r[-2::-2])))
Title: Trace Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day, as Sherlock Holmes was tracking down one very important criminal, he found a wonderful painting on the wall. This wall could be represented as a plane. The painting had several concentric circles that divided the wall in...
```python import math n = int(input()) r = map(int, input().split()) r = sorted(list(map(lambda x: x*x, r))) print(math.pi * (sum(r[::-2]) - sum(r[-2::-2]))) ```
3
263
A
Beautiful Matrix
PROGRAMMING
800
[ "implementation" ]
null
null
You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to right. In one move, you are allowed to apply one of the two following transformations to the matrix: 1....
The input consists of five lines, each line contains five integers: the *j*-th integer in the *i*-th line of the input represents the element of the matrix that is located on the intersection of the *i*-th row and the *j*-th column. It is guaranteed that the matrix consists of 24 zeroes and a single number one.
Print a single integer — the minimum number of moves needed to make the matrix beautiful.
[ "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n", "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n" ]
[ "3\n", "1\n" ]
none
500
[ { "input": "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "3" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "1" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 0 1 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "0" }, { "input": "0 0 0 0 0...
1,697,632,102
2,147,483,647
PyPy 3-64
OK
TESTS
25
124
0
matrix = [] for i in range(5): matrix.append(list(map(int, input().split()))) a = 0 b = 0 oper = 0 for i in range(5): for j in range(5): if matrix[i][j] == 1: a = i b = j if a < 2: while a < 2: a += 1 oper += 1 elif a > 2: while a > 2: a -= 1 oper += 1 if b < 2: while b < ...
Title: Beautiful Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to ri...
```python matrix = [] for i in range(5): matrix.append(list(map(int, input().split()))) a = 0 b = 0 oper = 0 for i in range(5): for j in range(5): if matrix[i][j] == 1: a = i b = j if a < 2: while a < 2: a += 1 oper += 1 elif a > 2: while a > 2: a -= 1 oper += 1 if b < 2: ...
3
998
A
Balloons
PROGRAMMING
1,000
[ "constructive algorithms", "implementation" ]
null
null
There are quite a lot of ways to have fun with inflatable balloons. For example, you can fill them with water and see what happens. Grigory and Andrew have the same opinion. So, once upon a time, they went to the shop and bought $n$ packets with inflatable balloons, where $i$-th of them has exactly $a_i$ balloons insi...
The first line of input contains a single integer $n$ ($1 \le n \le 10$) — the number of packets with balloons. The second line contains $n$ integers: $a_1$, $a_2$, $\ldots$, $a_n$ ($1 \le a_i \le 1000$) — the number of balloons inside the corresponding packet.
If it's impossible to divide the balloons satisfying the conditions above, print $-1$. Otherwise, print an integer $k$ — the number of packets to give to Grigory followed by $k$ distinct integers from $1$ to $n$ — the indices of those. The order of packets doesn't matter. If there are multiple ways to divide balloons...
[ "3\n1 2 1\n", "2\n5 5\n", "1\n10\n" ]
[ "2\n1 2\n", "-1\n", "-1\n" ]
In the first test Grigory gets $3$ balloons in total while Andrey gets $1$. In the second test there's only one way to divide the packets which leads to equal numbers of balloons. In the third test one of the boys won't get a packet at all.
500
[ { "input": "3\n1 2 1", "output": "1\n1" }, { "input": "2\n5 5", "output": "-1" }, { "input": "1\n10", "output": "-1" }, { "input": "1\n1", "output": "-1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 1", "output": "1\n1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 9",...
1,531,842,049
649
Python 3
WRONG_ANSWER
TESTS
6
124
0
n = int(input()) bal = [int(x) for x in input().split()] m = min(bal) s = sum(bal) if m < s-m: print(bal.index(m)+1) print(m) else: print(-1)
Title: Balloons Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are quite a lot of ways to have fun with inflatable balloons. For example, you can fill them with water and see what happens. Grigory and Andrew have the same opinion. So, once upon a time, they went to the shop and bou...
```python n = int(input()) bal = [int(x) for x in input().split()] m = min(bal) s = sum(bal) if m < s-m: print(bal.index(m)+1) print(m) else: print(-1) ```
0
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,634,692,883
2,147,483,647
Python 3
OK
TESTS
30
124
4,505,600
s = str(input()) up, low = [], [] for char in s: if char.isupper(): up.append(char) if char.islower(): low.append(char) if len(up) > len(low): print(s.upper()) elif len(up) < len(low): print(s.lower()) else: print(s.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 s = str(input()) up, low = [], [] for char in s: if char.isupper(): up.append(char) if char.islower(): low.append(char) if len(up) > len(low): print(s.upper()) elif len(up) < len(low): print(s.lower()) else: print(s.lower()) ```
3.960608
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,670,292,144
2,147,483,647
PyPy 3-64
OK
TESTS
20
78
0
for i in range(int(input())): s=input() l=len(s) if(l<11): print(s) else: print(s[0]+str(l-2)+s[l-1])
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 for i in range(int(input())): s=input() l=len(s) if(l<11): print(s) else: print(s[0]+str(l-2)+s[l-1]) ```
3.961
0
none
none
none
0
[ "none" ]
null
null
Tree is a connected acyclic graph. Suppose you are given a tree consisting of *n* vertices. The vertex of this tree is called centroid if the size of each connected component that appears if this vertex is removed from the tree doesn't exceed . You are given a tree of size *n* and can perform no more than one edge rep...
The first line of the input contains an integer *n* (2<=≤<=*n*<=≤<=400<=000) — the number of vertices in the tree. Each of the next *n*<=-<=1 lines contains a pair of vertex indices *u**i* and *v**i* (1<=≤<=*u**i*,<=*v**i*<=≤<=*n*) — endpoints of the corresponding edge.
Print *n* integers. The *i*-th of them should be equal to 1 if the *i*-th vertex can be made centroid by replacing no more than one edge, and should be equal to 0 otherwise.
[ "3\n1 2\n2 3\n", "5\n1 2\n1 3\n1 4\n1 5\n" ]
[ "1 1 1 \n", "1 0 0 0 0 \n" ]
In the first sample each vertex can be made a centroid. For example, in order to turn vertex 1 to centroid one have to replace the edge (2, 3) with the edge (1, 3).
0
[]
1,689,169,896
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
30
0
print("_RANDOM_GUESS_1689169896.0397599")# 1689169896.039774
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Tree is a connected acyclic graph. Suppose you are given a tree consisting of *n* vertices. The vertex of this tree is called centroid if the size of each connected component that appears if this vertex is removed from the tree do...
```python print("_RANDOM_GUESS_1689169896.0397599")# 1689169896.039774 ```
0
463
C
Gargari and Bishops
PROGRAMMING
1,900
[ "greedy", "hashing", "implementation" ]
null
null
Gargari is jealous that his friend Caisa won the game from the previous problem. He wants to prove that he is a genius. He has a *n*<=×<=*n* chessboard. Each cell of the chessboard has a number written on it. Gargari wants to place two bishops on the chessboard in such a way that there is no cell that is attacked by b...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=2000). Each of the next *n* lines contains *n* integers *a**ij* (0<=≤<=*a**ij*<=≤<=109) — description of the chessboard.
On the first line print the maximal number of dollars Gargari will get. On the next line print four integers: *x*1,<=*y*1,<=*x*2,<=*y*2 (1<=≤<=*x*1,<=*y*1,<=*x*2,<=*y*2<=≤<=*n*), where *x**i* is the number of the row where the *i*-th bishop should be placed, *y**i* is the number of the column where the *i*-th bishop sh...
[ "4\n1 1 1 1\n2 1 1 0\n1 1 1 0\n1 0 0 1\n" ]
[ "12\n2 2 3 2\n" ]
none
1,500
[ { "input": "4\n1 1 1 1\n2 1 1 0\n1 1 1 0\n1 0 0 1", "output": "12\n2 2 3 2" }, { "input": "10\n48 43 75 80 32 30 65 31 18 91\n99 5 12 43 26 90 54 91 4 88\n8 87 68 95 73 37 53 46 53 90\n50 1 85 24 32 16 5 48 98 74\n38 49 78 2 91 3 43 96 93 46\n35 100 84 2 94 56 90 98 54 43\n88 3 95 72 78 78 87 82 25 ...
1,569,487,098
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
7
1,621
29,491,200
# n = int(input()) x, y = [0] * (2 * n), [0] * (2 * n) a = [[] for row in range(n)] for i in range(n): a[i] = list(map(int, input().split())) for i in range(n): for j in range(n): x[n - 1 - i + j] += a[i][j] y[i + j] += a[i][j] ans1, ans2 = 0, 0 x1, x2, y1, y2 = -1, -1, -1, -1 for ...
Title: Gargari and Bishops Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gargari is jealous that his friend Caisa won the game from the previous problem. He wants to prove that he is a genius. He has a *n*<=×<=*n* chessboard. Each cell of the chessboard has a number written on it. Garga...
```python # n = int(input()) x, y = [0] * (2 * n), [0] * (2 * n) a = [[] for row in range(n)] for i in range(n): a[i] = list(map(int, input().split())) for i in range(n): for j in range(n): x[n - 1 - i + j] += a[i][j] y[i + j] += a[i][j] ans1, ans2 = 0, 0 x1, x2, y1, y2 = -1, -1, -1...
0
363
B
Fence
PROGRAMMING
1,100
[ "brute force", "dp" ]
null
null
There is a fence in front of Polycarpus's home. The fence consists of *n* planks of the same width which go one after another from left to right. The height of the *i*-th plank is *h**i* meters, distinct planks can have distinct heights. Polycarpus has bought a posh piano and is thinking about how to get it into the h...
The first line of the input contains integers *n* and *k* (1<=≤<=*n*<=≤<=1.5·105,<=1<=≤<=*k*<=≤<=*n*) — the number of planks in the fence and the width of the hole for the piano. The second line contains the sequence of integers *h*1,<=*h*2,<=...,<=*h**n* (1<=≤<=*h**i*<=≤<=100), where *h**i* is the height of the *i*-th...
Print such integer *j* that the sum of the heights of planks *j*, *j*<=+<=1, ..., *j*<=+<=*k*<=-<=1 is the minimum possible. If there are multiple such *j*'s, print any of them.
[ "7 3\n1 2 6 1 1 7 1\n" ]
[ "3\n" ]
In the sample, your task is to find three consecutive planks with the minimum sum of heights. In the given case three planks with indexes 3, 4 and 5 have the required attribute, their total height is 8.
1,000
[ { "input": "7 3\n1 2 6 1 1 7 1", "output": "3" }, { "input": "1 1\n100", "output": "1" }, { "input": "2 1\n10 20", "output": "1" }, { "input": "10 5\n1 2 3 1 2 2 3 1 4 5", "output": "1" }, { "input": "10 2\n3 1 4 1 4 6 2 1 4 6", "output": "7" }, { "inp...
1,680,723,067
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
1
30
0
# -*- coding: utf-8 -*- """ Created on Thu Apr 6 00:43:44 2023 @author: Srusty Sahoo """ n,k=map(int,input().split()) h=list(map(int,input().split())) h1=sorted(h,reverse=True) m=h1[0]+h1[1]+h1[2] for i in range(n-k+1): if (h[i]+h[i+1]+h[i+2])<m: m=h[i]+h[i+1]+h[i+2] pos=i+1 prin...
Title: Fence Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is a fence in front of Polycarpus's home. The fence consists of *n* planks of the same width which go one after another from left to right. The height of the *i*-th plank is *h**i* meters, distinct planks can have distinct ...
```python # -*- coding: utf-8 -*- """ Created on Thu Apr 6 00:43:44 2023 @author: Srusty Sahoo """ n,k=map(int,input().split()) h=list(map(int,input().split())) h1=sorted(h,reverse=True) m=h1[0]+h1[1]+h1[2] for i in range(n-k+1): if (h[i]+h[i+1]+h[i+2])<m: m=h[i]+h[i+1]+h[i+2] pos=i...
-1
791
A
Bear and Big Brother
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or equal to his brother's weight. Limak eats a lot and his weight is tripled after every year, while Bob's we...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10) — the weight of Limak and the weight of Bob respectively.
Print one integer, denoting the integer number of years after which Limak will become strictly larger than Bob.
[ "4 7\n", "4 9\n", "1 1\n" ]
[ "2\n", "3\n", "1\n" ]
In the first sample, Limak weighs 4 and Bob weighs 7 initially. After one year their weights are 4·3 = 12 and 7·2 = 14 respectively (one weight is tripled while the other one is doubled). Limak isn't larger than Bob yet. After the second year weights are 36 and 28, so the first weight is greater than the second one. Li...
500
[ { "input": "4 7", "output": "2" }, { "input": "4 9", "output": "3" }, { "input": "1 1", "output": "1" }, { "input": "4 6", "output": "2" }, { "input": "1 10", "output": "6" }, { "input": "1 1", "output": "1" }, { "input": "1 2", "output...
1,695,315,379
2,147,483,647
Python 3
OK
TESTS
62
46
0
u,v=[int(x) for x in input().split()] t=0 while(u<=v): u*=3 v*=2 t+=1 print(t)
Title: Bear and Big Brother Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or e...
```python u,v=[int(x) for x in input().split()] t=0 while(u<=v): u*=3 v*=2 t+=1 print(t) ```
3
2
A
Winner
PROGRAMMING
1,500
[ "hashing", "implementation" ]
A. Winner
1
64
The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes more difficult if the number of such players is more than one. During each round a pla...
The first line contains an integer number *n* (1<=<=≤<=<=*n*<=<=≤<=<=1000), *n* is the number of rounds played. Then follow *n* lines, containing the information about the rounds in "name score" format in chronological order, where name is a string of lower-case Latin letters with the length from 1 to 32, and score is ...
Print the name of the winner.
[ "3\nmike 3\nandrew 5\nmike 2\n", "3\nandrew 3\nandrew 2\nmike 5\n" ]
[ "andrew\n", "andrew\n" ]
none
0
[ { "input": "3\nmike 3\nandrew 5\nmike 2", "output": "andrew" }, { "input": "3\nandrew 3\nandrew 2\nmike 5", "output": "andrew" }, { "input": "5\nkaxqybeultn -352\nmgochgrmeyieyskhuourfg -910\nkaxqybeultn 691\nmgochgrmeyieyskhuourfg -76\nkaxqybeultn -303", "output": "kaxqybeultn" },...
1,597,613,024
2,147,483,647
PyPy 3
OK
TESTS
20
310
1,740,800
n = int(input()) scoresPerPlayer = {} rounds = {} for i in range(n): line = input().split(" ") scoresPerPlayer[line[0]] = scoresPerPlayer[line[0]] + int(line[1]) if line[0] in scoresPerPlayer else int(line[1]) rounds[i] = (line[0], scoresPerPlayer[line[0]]) maxScore = 0 maxPlayers = [] for n in s...
Title: Winner Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes...
```python n = int(input()) scoresPerPlayer = {} rounds = {} for i in range(n): line = input().split(" ") scoresPerPlayer[line[0]] = scoresPerPlayer[line[0]] + int(line[1]) if line[0] in scoresPerPlayer else int(line[1]) rounds[i] = (line[0], scoresPerPlayer[line[0]]) maxScore = 0 maxPlayers = [] ...
3.83203
331
C1
The Great Julya Calendar
PROGRAMMING
1,100
[ "dp" ]
null
null
Yet another Armageddon is coming! This time the culprit is the Julya tribe calendar. The beavers in this tribe knew math very well. Smart Beaver, an archaeologist, got a sacred plate with a magic integer on it. The translation from Old Beaverish is as follows: "May the Great Beaver bless you! May your chacres open ...
The single line contains the magic integer *n*, 0<=≤<=*n*. - to get 20 points, you need to solve the problem with constraints: *n*<=≤<=106 (subproblem C1); - to get 40 points, you need to solve the problem with constraints: *n*<=≤<=1012 (subproblems C1+C2); - to get 100 points, you need to solve the problem with co...
Print a single integer — the minimum number of subtractions that turns the magic number to a zero.
[ "24\n" ]
[ "5" ]
In the first test sample the minimum number of operations can be reached by the following sequence of subtractions:
20
[ { "input": "24", "output": "5" }, { "input": "0", "output": "0" }, { "input": "3", "output": "1" }, { "input": "8", "output": "1" }, { "input": "9", "output": "1" }, { "input": "10", "output": "2" }, { "input": "31", "output": "6" }, ...
1,641,807,065
2,147,483,647
PyPy 3
OK
TESTS1
24
154
1,536,000
n = int(input()) summ = 0 while n != 0: a = str(n) b = list(a) k = max(b) n -= int(k) summ += 1 print(summ)
Title: The Great Julya Calendar Time Limit: None seconds Memory Limit: None megabytes Problem Description: Yet another Armageddon is coming! This time the culprit is the Julya tribe calendar. The beavers in this tribe knew math very well. Smart Beaver, an archaeologist, got a sacred plate with a magic integer on i...
```python n = int(input()) summ = 0 while n != 0: a = str(n) b = list(a) k = max(b) n -= int(k) summ += 1 print(summ) ```
3
547
D
Mike and Fish
PROGRAMMING
2,600
[ "constructive algorithms", "dfs and similar", "graphs" ]
null
null
As everyone knows, bears love fish. But Mike is a strange bear; He hates fish! The even more strange thing about him is he has an infinite number of blue and red fish. He has marked *n* distinct points in the plane. *i*-th point is point (*x**i*,<=*y**i*). He wants to put exactly one fish in each of these points such...
The first line of input contains integer *n* (1<=≤<=*n*<=≤<=2<=×<=105). The next *n* lines contain the information about the points, *i*-th line contains two integers *x**i* and *y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<=2<=×<=105), the *i*-th point coordinates. It is guaranteed that there is at least one valid answer.
Print the answer as a sequence of *n* characters 'r' (for red) or 'b' (for blue) where *i*-th character denotes the color of the fish in the *i*-th point.
[ "4\n1 1\n1 2\n2 1\n2 2\n", "3\n1 1\n1 2\n2 1\n" ]
[ "brrb\n", "brr\n" ]
none
1,750
[ { "input": "4\n1 1\n1 2\n2 1\n2 2", "output": "brrb" }, { "input": "3\n1 1\n1 2\n2 1", "output": "brr" }, { "input": "3\n157210 22861\n175396 39466\n40933 17093", "output": "rrr" }, { "input": "5\n55599 84144\n169207 98421\n1909 186625\n31525 147710\n7781 82078", "output"...
1,696,776,113
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
# Read input n = int(input()) points = [] for _ in range(n): x, y = map(int, input().split()) points.append((x, y)) # Sort points based on x-coordinates and y-coordinates sorted_x = sorted(points, key=lambda p: p[0]) sorted_y = sorted(points, key=lambda p: p[1]) # Initialize colors and result colo...
Title: Mike and Fish Time Limit: None seconds Memory Limit: None megabytes Problem Description: As everyone knows, bears love fish. But Mike is a strange bear; He hates fish! The even more strange thing about him is he has an infinite number of blue and red fish. He has marked *n* distinct points in the plane. *i*...
```python # Read input n = int(input()) points = [] for _ in range(n): x, y = map(int, input().split()) points.append((x, y)) # Sort points based on x-coordinates and y-coordinates sorted_x = sorted(points, key=lambda p: p[0]) sorted_y = sorted(points, key=lambda p: p[1]) # Initialize colors and re...
-1
611
A
New Year and Days
PROGRAMMING
900
[ "implementation" ]
null
null
Today is Wednesday, the third day of the week. What's more interesting is that tomorrow is the last day of the year 2015. Limak is a little polar bear. He enjoyed this year a lot. Now, he is so eager to the coming year 2016. Limak wants to prove how responsible a bear he is. He is going to regularly save candies for ...
The only line of the input is in one of the following two formats: - "*x* of week" where *x* (1<=≤<=*x*<=≤<=7) denotes the day of the week. The 1-st day is Monday and the 7-th one is Sunday. - "*x* of month" where *x* (1<=≤<=*x*<=≤<=31) denotes the day of the month.
Print one integer — the number of candies Limak will save in the year 2016.
[ "4 of week\n", "30 of month\n" ]
[ "52\n", "11\n" ]
Polar bears use the Gregorian calendar. It is the most common calendar and you likely use it too. You can read about it on Wikipedia if you want to – [https://en.wikipedia.org/wiki/Gregorian_calendar](https://en.wikipedia.org/wiki/Gregorian_calendar). The week starts with Monday. In the first sample Limak wants to sav...
500
[ { "input": "4 of week", "output": "52" }, { "input": "30 of month", "output": "11" }, { "input": "17 of month", "output": "12" }, { "input": "31 of month", "output": "7" }, { "input": "6 of week", "output": "53" }, { "input": "1 of week", "output":...
1,451,819,405
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
46
0
l = input().split() if l[2] == 'month': n = int(l[0]) if n == 31: print(7) elif n == 30: print(11) else: print(12) else: n = int(l[0]) if n == 7: print(53) else: print(52)
Title: New Year and Days Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today is Wednesday, the third day of the week. What's more interesting is that tomorrow is the last day of the year 2015. Limak is a little polar bear. He enjoyed this year a lot. Now, he is so eager to the coming ye...
```python l = input().split() if l[2] == 'month': n = int(l[0]) if n == 31: print(7) elif n == 30: print(11) else: print(12) else: n = int(l[0]) if n == 7: print(53) else: print(52) ```
0
365
A
Good Number
PROGRAMMING
1,100
[ "implementation" ]
null
null
Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number every time it occurs in array *a*).
The first line contains integers *n* and *k* (1<=≤<=*n*<=≤<=100, 0<=≤<=*k*<=≤<=9). The *i*-th of the following *n* lines contains integer *a**i* without leading zeroes (1<=≤<=*a**i*<=≤<=109).
Print a single integer — the number of *k*-good numbers in *a*.
[ "10 6\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n", "2 1\n1\n10\n" ]
[ "10\n", "1\n" ]
none
500
[ { "input": "10 6\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560", "output": "10" }, { "input": "2 1\n1\n10", "output": "1" }, { "input": "1 0\n1000000000", "output": "1" }, { "input": "1 1\n1000000000", "output": "1" }, { ...
1,648,484,380
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
31
0
n=input() l=list(map(int,n.split())) m=l[0] k=l[1] l2=[] l3=[] sum=0 for i in range(k+1): l3.append(str(i)) for i in range(m): j=int(input()) k=str(j) if(j==10**9): l2.append(j) else: for a in k: if (a in l3): sum = sum + 1 if (...
Title: Good Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number eve...
```python n=input() l=list(map(int,n.split())) m=l[0] k=l[1] l2=[] l3=[] sum=0 for i in range(k+1): l3.append(str(i)) for i in range(m): j=int(input()) k=str(j) if(j==10**9): l2.append(j) else: for a in k: if (a in l3): sum = sum + 1 ...
0
559
B
Equivalent Strings
PROGRAMMING
1,700
[ "divide and conquer", "hashing", "sortings", "strings" ]
null
null
Today on a lecture about strings Gerald learned a new definition of string equivalency. Two strings *a* and *b* of equal length are called equivalent in one of the two cases: 1. They are equal. 1. If we split string *a* into two halves of the same size *a*1 and *a*2, and string *b* into two halves of the same size ...
The first two lines of the input contain two strings given by the teacher. Each of them has the length from 1 to 200<=000 and consists of lowercase English letters. The strings have the same length.
Print "YES" (without the quotes), if these two strings are equivalent, and "NO" (without the quotes) otherwise.
[ "aaba\nabaa\n", "aabb\nabab\n" ]
[ "YES\n", "NO\n" ]
In the first sample you should split the first string into strings "aa" and "ba", the second one — into strings "ab" and "aa". "aa" is equivalent to "aa"; "ab" is equivalent to "ba" as "ab" = "a" + "b", "ba" = "b" + "a". In the second sample the first string can be splitted into strings "aa" and "bb", that are equival...
1,000
[ { "input": "aaba\nabaa", "output": "YES" }, { "input": "aabb\nabab", "output": "NO" }, { "input": "a\na", "output": "YES" }, { "input": "a\nb", "output": "NO" }, { "input": "ab\nab", "output": "YES" }, { "input": "ab\nba", "output": "YES" }, { ...
1,586,548,874
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
124
1,024,000
from collections import defaultdict s1 = input() s2 = input() def equivalent(a,b): if a == b: return True a1 = a[:len(a)//2] a2 = a[len(a)//2:] b1 = b[:len(b)//2] b2 = b[len(b)//2:] return (equivalent(a1,b1) and equivalent(a2,b2)) or (equivalent(a1,b2) and equivalent(a2,b1)) if equiv...
Title: Equivalent Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today on a lecture about strings Gerald learned a new definition of string equivalency. Two strings *a* and *b* of equal length are called equivalent in one of the two cases: 1. They are equal. 1. If we split str...
```python from collections import defaultdict s1 = input() s2 = input() def equivalent(a,b): if a == b: return True a1 = a[:len(a)//2] a2 = a[len(a)//2:] b1 = b[:len(b)//2] b2 = b[len(b)//2:] return (equivalent(a1,b1) and equivalent(a2,b2)) or (equivalent(a1,b2) and equivalent(a2,b1))...
-1
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,680,339,886
2,147,483,647
PyPy 3-64
OK
TESTS
36
124
0
y, w = map(int, input().split()) n = 6 - max(y, w) + 1 for i in range(n, 0, -1): if (n % i) == 0 == (6 % i): n = str(n // i) + '/' + str(6 // i) break print(n)
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python y, w = map(int, input().split()) n = 6 - max(y, w) + 1 for i in range(n, 0, -1): if (n % i) == 0 == (6 % i): n = str(n // i) + '/' + str(6 // i) break print(n) ```
3.938
682
A
Alyona and Numbers
PROGRAMMING
1,100
[ "constructive algorithms", "math", "number theory" ]
null
null
After finishing eating her bun, Alyona came up with two integers *n* and *m*. She decided to write down two columns of integers — the first column containing integers from 1 to *n* and the second containing integers from 1 to *m*. Now the girl wants to count how many pairs of integers she can choose, one from the first...
The only line of the input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1<=000<=000).
Print the only integer — the number of pairs of integers (*x*,<=*y*) such that 1<=≤<=*x*<=≤<=*n*, 1<=≤<=*y*<=≤<=*m* and (*x*<=+<=*y*) is divisible by 5.
[ "6 12\n", "11 14\n", "1 5\n", "3 8\n", "5 7\n", "21 21\n" ]
[ "14\n", "31\n", "1\n", "5\n", "7\n", "88\n" ]
Following pairs are suitable in the first sample case: - for *x* = 1 fits *y* equal to 4 or 9; - for *x* = 2 fits *y* equal to 3 or 8; - for *x* = 3 fits *y* equal to 2, 7 or 12; - for *x* = 4 fits *y* equal to 1, 6 or 11; - for *x* = 5 fits *y* equal to 5 or 10; - for *x* = 6 fits *y* equal to 4 or 9. Only th...
500
[ { "input": "6 12", "output": "14" }, { "input": "11 14", "output": "31" }, { "input": "1 5", "output": "1" }, { "input": "3 8", "output": "5" }, { "input": "5 7", "output": "7" }, { "input": "21 21", "output": "88" }, { "input": "10 15", ...
1,693,327,655
2,147,483,647
Python 3
OK
TESTS
128
139
0
import math def yzd_solution(n, m): answer = 0 for i in range(1,m+1): answer += (n + (i%5))//5 print(answer) n, m = map(int, input().split()) yzd_solution(n, m)
Title: Alyona and Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: After finishing eating her bun, Alyona came up with two integers *n* and *m*. She decided to write down two columns of integers — the first column containing integers from 1 to *n* and the second containing integers ...
```python import math def yzd_solution(n, m): answer = 0 for i in range(1,m+1): answer += (n + (i%5))//5 print(answer) n, m = map(int, input().split()) yzd_solution(n, m) ```
3
625
A
Guest From the Past
PROGRAMMING
1,700
[ "implementation", "math" ]
null
null
Kolya Gerasimov loves kefir very much. He lives in year 1984 and knows all the details of buying this delicious drink. One day, as you probably know, he found himself in year 2084, and buying kefir there is much more complicated. Kolya is hungry, so he went to the nearest milk shop. In 2084 you may buy kefir in a plas...
First line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=1018) — the number of rubles Kolya has at the beginning. Then follow three lines containing integers *a*, *b* and *c* (1<=≤<=*a*<=≤<=1018, 1<=≤<=*c*<=&lt;<=*b*<=≤<=1018) — the cost of one plastic liter bottle, the cost of one glass liter bottle and t...
Print the only integer — maximum number of liters of kefir, that Kolya can drink.
[ "10\n11\n9\n8\n", "10\n5\n6\n1\n" ]
[ "2\n", "2\n" ]
In the first sample, Kolya can buy one glass bottle, then return it and buy one more glass bottle. Thus he will drink 2 liters of kefir. In the second sample, Kolya can buy two plastic bottle and get two liters of kefir, or he can buy one liter glass bottle, then return it and buy one plastic bottle. In both cases he ...
750
[ { "input": "10\n11\n9\n8", "output": "2" }, { "input": "10\n5\n6\n1", "output": "2" }, { "input": "2\n2\n2\n1", "output": "1" }, { "input": "10\n3\n3\n1", "output": "4" }, { "input": "10\n1\n2\n1", "output": "10" }, { "input": "10\n2\n3\n1", "outpu...
1,457,188,899
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
46
0
read = lambda: map(int, input().split()) n, k = read() a = list(read())
Title: Guest From the Past Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kolya Gerasimov loves kefir very much. He lives in year 1984 and knows all the details of buying this delicious drink. One day, as you probably know, he found himself in year 2084, and buying kefir there is much mor...
```python read = lambda: map(int, input().split()) n, k = read() a = list(read()) ```
-1
109
A
Lucky Sum of Digits
PROGRAMMING
1,000
[ "brute force", "implementation" ]
A. Lucky Sum of Digits
2
256
Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya wonders eagerly what minimum lucky number has the sum of digits equal to *n*. Help him cope wi...
The single line contains an integer *n* (1<=≤<=*n*<=≤<=106) — the sum of digits of the required lucky number.
Print on the single line the result — the minimum lucky number, whose sum of digits equals *n*. If such number does not exist, print -1.
[ "11\n", "10\n" ]
[ "47\n", "-1\n" ]
none
500
[ { "input": "11", "output": "47" }, { "input": "10", "output": "-1" }, { "input": "64", "output": "4477777777" }, { "input": "1", "output": "-1" }, { "input": "4", "output": "4" }, { "input": "7", "output": "7" }, { "input": "12", "outpu...
1,585,427,811
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
184
0
somaDesejada = int(input()) numero = [] # se o numero for multiplo de 4 if somaDesejada % 4 == 0: aux = somaDesejada // 4 print("4" * aux) # se o numero for multiplo de 7 elif somaDesejada % 7 == 0: aux = somaDesejada // 7 print("7" * aux) # caso contrario else: numSetes = 0 achei = False ...
Title: Lucky Sum of Digits Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python somaDesejada = int(input()) numero = [] # se o numero for multiplo de 4 if somaDesejada % 4 == 0: aux = somaDesejada // 4 print("4" * aux) # se o numero for multiplo de 7 elif somaDesejada % 7 == 0: aux = somaDesejada // 7 print("7" * aux) # caso contrario else: numSetes = 0 achei...
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,673,446,162
2,147,483,647
PyPy 3
OK
TESTS
35
186
0
import math n,m=map(int,input().split()) print(math.floor((n*m)/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 import math n,m=map(int,input().split()) print(math.floor((n*m)/2)) ```
3.9535
525
A
Vitaliy and Pie
PROGRAMMING
1,100
[ "greedy", "hashing", "strings" ]
null
null
After a hard day Vitaly got very hungry and he wants to eat his favorite potato pie. But it's not that simple. Vitaly is in the first room of the house with *n* room located in a line and numbered starting from one from left to right. You can go from the first room to the second room, from the second room to the third ...
The first line of the input contains a positive integer *n* (2<=≤<=*n*<=≤<=105) — the number of rooms in the house. The second line of the input contains string *s* of length 2·*n*<=-<=2. Let's number the elements of the string from left to right, starting from one. The odd positions in the given string *s* contain ...
Print the only integer — the minimum number of keys that Vitaly needs to buy to surely get from room one to room *n*.
[ "3\naAbB\n", "4\naBaCaB\n", "5\nxYyXzZaZ\n" ]
[ "0\n", "3\n", "2\n" ]
none
250
[ { "input": "3\naAbB", "output": "0" }, { "input": "4\naBaCaB", "output": "3" }, { "input": "5\nxYyXzZaZ", "output": "2" }, { "input": "26\naAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyY", "output": "0" }, { "input": "26\nzAyBxCwDvEuFtGsHrIqJpKoLnMmNlOkPjQiRhSg...
1,664,027,171
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
20
2,000
1,536,000
rooms = int(input()) path = list(input()) keys = [] buy = 0 for i in range(len(path)): if (i + 1) % 2 == 1: keys.append(path[i].upper()) else: done = False if path[i] not in keys: buy += 1 else: keys.remove(path[i]) print(buy) ...
Title: Vitaliy and Pie Time Limit: None seconds Memory Limit: None megabytes Problem Description: After a hard day Vitaly got very hungry and he wants to eat his favorite potato pie. But it's not that simple. Vitaly is in the first room of the house with *n* room located in a line and numbered starting from one from...
```python rooms = int(input()) path = list(input()) keys = [] buy = 0 for i in range(len(path)): if (i + 1) % 2 == 1: keys.append(path[i].upper()) else: done = False if path[i] not in keys: buy += 1 else: keys.remove(path[i]) print(buy) ...
0
237
A
Free Cash
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera runs a 24/7 fast food cafe. He magically learned that next day *n* people will visit his cafe. For each person we know the arrival time: the *i*-th person comes exactly at *h**i* hours *m**i* minutes. The cafe spends less than a minute to serve each client, but if a client comes in and sees that there is no free...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105), that is the number of cafe visitors. Each of the following *n* lines has two space-separated integers *h**i* and *m**i* (0<=≤<=*h**i*<=≤<=23; 0<=≤<=*m**i*<=≤<=59), representing the time when the *i*-th person comes into the cafe. Note that the time is...
Print a single integer — the minimum number of cashes, needed to serve all clients next day.
[ "4\n8 0\n8 10\n8 10\n8 45\n", "3\n0 12\n10 11\n22 22\n" ]
[ "2\n", "1\n" ]
In the first sample it is not enough one cash to serve all clients, because two visitors will come into cafe in 8:10. Therefore, if there will be one cash in cafe, then one customer will be served by it, and another one will not wait and will go away. In the second sample all visitors will come in different times, so ...
500
[ { "input": "4\n8 0\n8 10\n8 10\n8 45", "output": "2" }, { "input": "3\n0 12\n10 11\n22 22", "output": "1" }, { "input": "5\n12 8\n15 27\n15 27\n16 2\n19 52", "output": "2" }, { "input": "7\n5 6\n7 34\n7 34\n7 34\n12 29\n15 19\n20 23", "output": "3" }, { "input": "...
1,649,249,827
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
6
124
0
n = int(input()) counter = 1 l = [] for _ in range(n): h,m = list(map(int,input().split())) l.append([h,m]) for i in range(1,len(l)): if l[i-1] == l[i]: counter+=1 print(counter)
Title: Free Cash Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera runs a 24/7 fast food cafe. He magically learned that next day *n* people will visit his cafe. For each person we know the arrival time: the *i*-th person comes exactly at *h**i* hours *m**i* minutes. The cafe spends l...
```python n = int(input()) counter = 1 l = [] for _ in range(n): h,m = list(map(int,input().split())) l.append([h,m]) for i in range(1,len(l)): if l[i-1] == l[i]: counter+=1 print(counter) ```
0
60
A
Where Are My Flakes?
PROGRAMMING
1,300
[ "implementation", "two pointers" ]
A. Where Are My Flakes?
2
256
One morning the Cereal Guy found out that all his cereal flakes were gone. He found a note instead of them. It turned out that his smart roommate hid the flakes in one of *n* boxes. The boxes stand in one row, they are numbered from 1 to *n* from the left to the right. The roommate left hints like "Hidden to the left o...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=1000,<=0<=≤<=*m*<=≤<=1000) which represent the number of boxes and the number of hints correspondingly. Next *m* lines contain hints like "To the left of *i*" and "To the right of *i*", where *i* is integer (1<=≤<=*i*<=≤<=*n*). The hints may coincide.
The answer should contain exactly one integer — the number of boxes that should necessarily be checked or "-1" if the hints are contradictory.
[ "2 1\nTo the left of 2\n", "3 2\nTo the right of 1\nTo the right of 2\n", "3 1\nTo the left of 3\n", "3 2\nTo the left of 2\nTo the right of 1\n" ]
[ "1\n", "1\n", "2\n", "-1\n" ]
none
500
[ { "input": "2 1\nTo the left of 2", "output": "1" }, { "input": "3 2\nTo the right of 1\nTo the right of 2", "output": "1" }, { "input": "3 1\nTo the left of 3", "output": "2" }, { "input": "3 2\nTo the left of 2\nTo the right of 1", "output": "-1" }, { "input": "...
1,644,563,628
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
62
0
I = input().split() n = int(I[0]) m = int(I[1]) data = [] for i in range(m): I = input().split() data.append((int(I[-1]), I[2] == "right")) l = [] for i in range(m): num = int(data[i][0]) right = bool(data[i][1]) left = not right if right: for j in range(1, n+1): ...
Title: Where Are My Flakes? Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One morning the Cereal Guy found out that all his cereal flakes were gone. He found a note instead of them. It turned out that his smart roommate hid the flakes in one of *n* boxes. The boxes stand in one row, they are...
```python I = input().split() n = int(I[0]) m = int(I[1]) data = [] for i in range(m): I = input().split() data.append((int(I[-1]), I[2] == "right")) l = [] for i in range(m): num = int(data[i][0]) right = bool(data[i][1]) left = not right if right: for j in range(1, n+1): ...
0
34
D
Road Map
PROGRAMMING
1,600
[ "dfs and similar", "graphs" ]
D. Road Map
2
256
There are *n* cities in Berland. Each city has its index — an integer number from 1 to *n*. The capital has index *r*1. All the roads in Berland are two-way. The road system is such that there is exactly one path from the capital to each city, i.e. the road map looks like a tree. In Berland's chronicles the road map is...
The first line contains three space-separated integers *n*, *r*1, *r*2 (2<=≤<=*n*<=≤<=5·104,<=1<=≤<=*r*1<=≠<=*r*2<=≤<=*n*) — amount of cities in Berland, index of the old capital and index of the new one, correspondingly. The following line contains *n*<=-<=1 space-separated integers — the old representation of the ro...
Output *n*<=-<=1 numbers — new representation of the road map in the same format.
[ "3 2 3\n2 2\n", "6 2 4\n6 1 2 4 2\n" ]
[ "2 3 ", "6 4 1 4 2 " ]
none
2,000
[ { "input": "3 2 3\n2 2", "output": "2 3 " }, { "input": "6 2 4\n6 1 2 4 2", "output": "6 4 1 4 2 " }, { "input": "7 7 6\n7 7 5 5 7 7", "output": "7 7 5 5 7 6 " }, { "input": "4 2 3\n2 1 3", "output": "3 1 3 " }, { "input": "5 5 4\n5 4 1 5", "output": "5 4 1 4 ...
1,613,482,856
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
18
249
27,955,200
from sys import stdin,stdout from collections import defaultdict nmbr = lambda: int(stdin.readline()) lst = lambda: list(map(int,stdin.readline().split())) def dfs(src,par): if par!=-1:parent[src]=par for neigh in g[src]: if par==neigh:continue dfs(neigh,src) for _ in range(1):#nmbr()...
Title: Road Map Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: There are *n* cities in Berland. Each city has its index — an integer number from 1 to *n*. The capital has index *r*1. All the roads in Berland are two-way. The road system is such that there is exactly one path from the capital ...
```python from sys import stdin,stdout from collections import defaultdict nmbr = lambda: int(stdin.readline()) lst = lambda: list(map(int,stdin.readline().split())) def dfs(src,par): if par!=-1:parent[src]=par for neigh in g[src]: if par==neigh:continue dfs(neigh,src) for _ in range(...
-1
157
B
Trace
PROGRAMMING
1,000
[ "geometry", "sortings" ]
null
null
One day, as Sherlock Holmes was tracking down one very important criminal, he found a wonderful painting on the wall. This wall could be represented as a plane. The painting had several concentric circles that divided the wall into several parts. Some parts were painted red and all the other were painted blue. Besides,...
The first line contains the single integer *n* (1<=≤<=*n*<=≤<=100). The second line contains *n* space-separated integers *r**i* (1<=≤<=*r**i*<=≤<=1000) — the circles' radii. It is guaranteed that all circles are different.
Print the single real number — total area of the part of the wall that is painted red. The answer is accepted if absolute or relative error doesn't exceed 10<=-<=4.
[ "1\n1\n", "3\n1 4 2\n" ]
[ "3.1415926536\n", "40.8407044967\n" ]
In the first sample the picture is just one circle of radius 1. Inner part of the circle is painted red. The area of the red part equals π × 1<sup class="upper-index">2</sup> = π. In the second sample there are three circles of radii 1, 4 and 2. Outside part of the second circle is painted blue. Part between the secon...
1,000
[ { "input": "1\n1", "output": "3.1415926536" }, { "input": "3\n1 4 2", "output": "40.8407044967" }, { "input": "4\n4 1 3 2", "output": "31.4159265359" }, { "input": "4\n100 10 2 1", "output": "31111.1920484997" }, { "input": "10\n10 9 8 7 6 5 4 3 2 1", "output"...
1,623,469,628
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
124
0
import sys from math import pi input = lambda:sys.stdin.readline() int_arr = lambda: list(map(int,input().split())) str_arr = lambda: list(map(str,input().split())) get_str = lambda: map(str,input().split()) get_int = lambda: map(int,input().split()) get_flo = lambda: map(float,input().split()) def solve(n,...
Title: Trace Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day, as Sherlock Holmes was tracking down one very important criminal, he found a wonderful painting on the wall. This wall could be represented as a plane. The painting had several concentric circles that divided the wall in...
```python import sys from math import pi input = lambda:sys.stdin.readline() int_arr = lambda: list(map(int,input().split())) str_arr = lambda: list(map(str,input().split())) get_str = lambda: map(str,input().split()) get_int = lambda: map(int,input().split()) get_flo = lambda: map(float,input().split()) de...
0
791
A
Bear and Big Brother
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or equal to his brother's weight. Limak eats a lot and his weight is tripled after every year, while Bob's we...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10) — the weight of Limak and the weight of Bob respectively.
Print one integer, denoting the integer number of years after which Limak will become strictly larger than Bob.
[ "4 7\n", "4 9\n", "1 1\n" ]
[ "2\n", "3\n", "1\n" ]
In the first sample, Limak weighs 4 and Bob weighs 7 initially. After one year their weights are 4·3 = 12 and 7·2 = 14 respectively (one weight is tripled while the other one is doubled). Limak isn't larger than Bob yet. After the second year weights are 36 and 28, so the first weight is greater than the second one. Li...
500
[ { "input": "4 7", "output": "2" }, { "input": "4 9", "output": "3" }, { "input": "1 1", "output": "1" }, { "input": "4 6", "output": "2" }, { "input": "1 10", "output": "6" }, { "input": "1 1", "output": "1" }, { "input": "1 2", "output...
1,695,813,289
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
a,b = map(int inpat(), split()) year = int(inpat()) while 1<=b a = a*3 b = b*2 year+=1 print(year)
Title: Bear and Big Brother Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or e...
```python a,b = map(int inpat(), split()) year = int(inpat()) while 1<=b a = a*3 b = b*2 year+=1 print(year) ```
-1
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,693,895,194
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
s=intput() s1=[] count=0 for i in s: if i=='h' and count==0: s1.append(i) count+=1 elif i=='e' and count==1: s1.append(i) count+=1 elif i=='l' and (count==2 or count==3): s1.append(i) count+=1 elif i=='o' and count==4: s1.append(i) x...
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s=intput() s1=[] count=0 for i in s: if i=='h' and count==0: s1.append(i) count+=1 elif i=='e' and count==1: s1.append(i) count+=1 elif i=='l' and (count==2 or count==3): s1.append(i) count+=1 elif i=='o' and count==4: s1.ap...
-1
131
A
cAPS lOCK
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in the first passage. Let's consider that a word has been typed with the Caps lock key accidentall...
The first line of the input data contains a word consisting of uppercase and lowercase Latin letters. The word's length is from 1 to 100 characters, inclusive.
Print the result of the given word's processing.
[ "cAPS\n", "Lock\n" ]
[ "Caps", "Lock\n" ]
none
500
[ { "input": "cAPS", "output": "Caps" }, { "input": "Lock", "output": "Lock" }, { "input": "cAPSlOCK", "output": "cAPSlOCK" }, { "input": "CAPs", "output": "CAPs" }, { "input": "LoCK", "output": "LoCK" }, { "input": "OOPS", "output": "oops" }, { ...
1,696,488,829
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
31
0
word = input() if word[0].islower() and word[1:].isupper(): result = word[0].upper() + word[1:].lower() elif word.isupper() or word.islower(): result = word.swapcase() else: result = word print(result)
Title: cAPS lOCK Time Limit: None seconds Memory Limit: None megabytes Problem Description: wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in th...
```python word = input() if word[0].islower() and word[1:].isupper(): result = word[0].upper() + word[1:].lower() elif word.isupper() or word.islower(): result = word.swapcase() else: result = word print(result) ```
0
409
H
A + B Strikes Back
PROGRAMMING
1,500
[ "*special", "brute force", "constructive algorithms", "dsu", "implementation" ]
null
null
A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try?
The input contains two integers *a* and *b* (0<=≤<=*a*,<=*b*<=≤<=103), separated by a single space.
Output the sum of the given integers.
[ "5 14\n", "381 492\n" ]
[ "19\n", "873\n" ]
none
0
[ { "input": "5 14", "output": "19" }, { "input": "381 492", "output": "873" }, { "input": "536 298", "output": "834" }, { "input": "143 522", "output": "665" }, { "input": "433 126", "output": "559" }, { "input": "723 350", "output": "1073" }, {...
1,655,929,955
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
0
0
import sys input = sys.stdin.readline print=sys.stdout.write print(str(sum(list(map(int,input().split()))))))
Title: A + B Strikes Back Time Limit: None seconds Memory Limit: None megabytes Problem Description: A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try? Input ...
```python import sys input = sys.stdin.readline print=sys.stdout.write print(str(sum(list(map(int,input().split())))))) ```
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,648,075,159
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
n = int(input()) string = input().strip() lista = list() for c in string: # creamos lista de string lista.append(c) print(lista) # contar tipos distintos de pokemon lista_unicos = list() # lista con los pokemones sin repetir for poke in lista: if poke not in lista_unicos: lista_unicos.app...
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 n = int(input()) string = input().strip() lista = list() for c in string: # creamos lista de string lista.append(c) print(lista) # contar tipos distintos de pokemon lista_unicos = list() # lista con los pokemones sin repetir for poke in lista: if poke not in lista_unicos: lista_...
0
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,590,648,511
2,147,483,647
Python 3
OK
TESTS
81
218
0
n = int(input()) ans1 = 0 ans2 = 0 ans3 = 0 for i in range(n): x, y, z = map(int, input().split()) ans1 += x ans2 += y ans3 += z if (ans1 == 0 and ans2 == 0 and ans3 == 0): print("YES") else: print("NO")
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python n = int(input()) ans1 = 0 ans2 = 0 ans3 = 0 for i in range(n): x, y, z = map(int, input().split()) ans1 += x ans2 += y ans3 += z if (ans1 == 0 and ans2 == 0 and ans3 == 0): print("YES") else: print("NO") ```
3.9455
652
B
z-sort
PROGRAMMING
1,000
[ "sortings" ]
null
null
A student of *z*-school found a kind of sorting called *z*-sort. The array *a* with *n* elements are *z*-sorted if two conditions hold: 1. *a**i*<=≥<=*a**i*<=-<=1 for all even *i*, 1. *a**i*<=≤<=*a**i*<=-<=1 for all odd *i*<=&gt;<=1. For example the arrays [1,2,1,2] and [1,1,1,1] are *z*-sorted while the array [1,2...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of elements in the array *a*. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=109) — the elements of the array *a*.
If it's possible to make the array *a* *z*-sorted print *n* space separated integers *a**i* — the elements after *z*-sort. Otherwise print the only word "Impossible".
[ "4\n1 2 2 1\n", "5\n1 3 2 2 5\n" ]
[ "1 2 1 2\n", "1 5 2 3 2\n" ]
none
0
[ { "input": "4\n1 2 2 1", "output": "1 2 1 2" }, { "input": "5\n1 3 2 2 5", "output": "1 5 2 3 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 1", "output": "1 1 1 1 1 1 1 1 1 1" }, { "input": "10\n1 9 7 6 2 4 7 8 1 3", "output": "1 ...
1,688,540,721
2,147,483,647
Python 3
OK
TESTS
16
61
0
import sys n = int(input()) d = list(map(int, input().split())) d.sort() while d: u = d.pop(0) print(u, end=' ') if d: u = d.pop() print(u, end=' ')
Title: z-sort Time Limit: None seconds Memory Limit: None megabytes Problem Description: A student of *z*-school found a kind of sorting called *z*-sort. The array *a* with *n* elements are *z*-sorted if two conditions hold: 1. *a**i*<=≥<=*a**i*<=-<=1 for all even *i*, 1. *a**i*<=≤<=*a**i*<=-<=1 for all odd *i*<=...
```python import sys n = int(input()) d = list(map(int, input().split())) d.sort() while d: u = d.pop(0) print(u, end=' ') if d: u = d.pop() print(u, end=' ') ```
3
678
B
The Same Calendar
PROGRAMMING
1,600
[ "implementation" ]
null
null
The girl Taylor has a beautiful calendar for the year *y*. In the calendar all days are given with their days of week: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday and Sunday. The calendar is so beautiful that she wants to know what is the next year after *y* when the calendar will be exactly the same. Help ...
The only line contains integer *y* (1000<=≤<=*y*<=&lt;<=100'000) — the year of the calendar.
Print the only integer *y*' — the next year after *y* when the calendar will be the same. Note that you should find the first year after *y* with the same calendar.
[ "2016\n", "2000\n", "50501\n" ]
[ "2044\n", "2028\n", "50507\n" ]
Today is Monday, the 13th of June, 2016.
0
[ { "input": "2016", "output": "2044" }, { "input": "2000", "output": "2028" }, { "input": "50501", "output": "50507" }, { "input": "1000", "output": "1006" }, { "input": "1900", "output": "1906" }, { "input": "1899", "output": "1905" }, { "i...
1,622,907,621
2,147,483,647
Python 3
OK
TESTS
40
109
0
def leapyear(y): return y%400==0 or (y%4==0 and y%100!=0) a = int(input()) t = int(leapyear(a)) s = int(leapyear(a+1)) d = s+1 y=a+1 while(d%7!=0 or s!=t): y+=1 s = int(leapyear(y)) d+=s+1 print(y)
Title: The Same Calendar Time Limit: None seconds Memory Limit: None megabytes Problem Description: The girl Taylor has a beautiful calendar for the year *y*. In the calendar all days are given with their days of week: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday and Sunday. The calendar is so beautiful t...
```python def leapyear(y): return y%400==0 or (y%4==0 and y%100!=0) a = int(input()) t = int(leapyear(a)) s = int(leapyear(a+1)) d = s+1 y=a+1 while(d%7!=0 or s!=t): y+=1 s = int(leapyear(y)) d+=s+1 print(y) ```
3
32
B
Borze
PROGRAMMING
800
[ "expression parsing", "implementation" ]
B. Borze
2
256
Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary number given its representation in Borze alphabet.
The first line contains a number in Borze code. The length of the string is between 1 and 200 characters. It's guaranteed that the given string is a valid Borze code of some ternary number (this number can have leading zeroes).
Output the decoded ternary number. It can have leading zeroes.
[ ".-.--\n", "--.\n", "-..-.--\n" ]
[ "012", "20", "1012" ]
none
1,000
[ { "input": ".-.--", "output": "012" }, { "input": "--.", "output": "20" }, { "input": "-..-.--", "output": "1012" }, { "input": "---..", "output": "210" }, { "input": "..--.---..", "output": "0020210" }, { "input": "-.....----.", "output": "1000022...
1,612,936,312
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
code = input() numbercode = code.replace("--", "2") numbercode = numbercode.replace("-.", "1") numbercode = numbercode.replace(".", "0") print(numbercode
Title: Borze Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary ...
```python code = input() numbercode = code.replace("--", "2") numbercode = numbercode.replace("-.", "1") numbercode = numbercode.replace(".", "0") print(numbercode ```
-1
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,690,728,415
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
62
0
# t=int(input()) # for i in range(t): def f(): n=input() i=0 while i<len(n): count=0 while i<len(n) and n[i]=='1': count+=1 i+=1 if count==7: return "YES" if count>0: i-=1 i+=1 return "NO" if __name...
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 # t=int(input()) # for i in range(t): def f(): n=input() i=0 while i<len(n): count=0 while i<len(n) and n[i]=='1': count+=1 i+=1 if count==7: return "YES" if count>0: i-=1 i+=1 return "NO" ...
0
318
A
Even Odds
PROGRAMMING
900
[ "math" ]
null
null
Being a nonconformist, Volodya is displeased with the current state of things, particularly with the order of natural numbers (natural number is positive integer number). He is determined to rearrange them. But there are too many natural numbers, so Volodya decided to start with the first *n*. He writes down the follow...
The only line of input contains integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=1012). 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.
Print the number that will stand at the position number *k* after Volodya's manipulations.
[ "10 3\n", "7 7\n" ]
[ "5", "6" ]
In the first sample Volodya's sequence will look like this: {1, 3, 5, 7, 9, 2, 4, 6, 8, 10}. The third place in the sequence is therefore occupied by the number 5.
500
[ { "input": "10 3", "output": "5" }, { "input": "7 7", "output": "6" }, { "input": "7 1", "output": "1" }, { "input": "7 2", "output": "3" }, { "input": "8 5", "output": "2" }, { "input": "8 3", "output": "5" }, { "input": "8 4", "output...
1,694,399,310
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
1,000
179,507,200
def volodya(n, k): odd_numbers = [] even_numbers = [] for i in range(1, n + 1): if i % 2 == 1: odd_numbers.append(i) else: even_numbers.append(i) merged_numbers = odd_numbers + even_numbers return merged_numbers[k - 1] if __name__ == "__main__": n, k = map(int, input().spl...
Title: Even Odds Time Limit: None seconds Memory Limit: None megabytes Problem Description: Being a nonconformist, Volodya is displeased with the current state of things, particularly with the order of natural numbers (natural number is positive integer number). He is determined to rearrange them. But there are too ...
```python def volodya(n, k): odd_numbers = [] even_numbers = [] for i in range(1, n + 1): if i % 2 == 1: odd_numbers.append(i) else: even_numbers.append(i) merged_numbers = odd_numbers + even_numbers return merged_numbers[k - 1] if __name__ == "__main__": n, k = map(int, i...
0
160
A
Twins
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very well know what it's like. Now let's imagine a typical morning in your family. You haven't w...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of coins. The second line contains a sequence of *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=100) — the coins' values. All numbers are separated with spaces.
In the single line print the single number — the minimum needed number of coins.
[ "2\n3 3\n", "3\n2 1 2\n" ]
[ "2\n", "2\n" ]
In the first sample you will have to take 2 coins (you and your twin have sums equal to 6, 0 correspondingly). If you take 1 coin, you get sums 3, 3. If you take 0 coins, you get sums 0, 6. Those variants do not satisfy you as your sum should be strictly more that your twins' sum. In the second sample one coin isn't e...
500
[ { "input": "2\n3 3", "output": "2" }, { "input": "3\n2 1 2", "output": "2" }, { "input": "1\n5", "output": "1" }, { "input": "5\n4 2 2 2 2", "output": "3" }, { "input": "7\n1 10 1 2 1 1 1", "output": "1" }, { "input": "5\n3 2 3 3 1", "output": "3" ...
1,696,873,679
2,147,483,647
Python 3
OK
TESTS
29
92
0
# Read input n = int(input()) coins = list(map(int, input().split())) # Sort the coins in descending order coins.sort(reverse=True) # Initialize variables your_sum = 0 twin_sum = sum(coins) # Iterate through the coins num_coins_taken = 0 for coin in coins: your_sum += coin twin_sum -= coin ...
Title: Twins Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very w...
```python # Read input n = int(input()) coins = list(map(int, input().split())) # Sort the coins in descending order coins.sort(reverse=True) # Initialize variables your_sum = 0 twin_sum = sum(coins) # Iterate through the coins num_coins_taken = 0 for coin in coins: your_sum += coin twin_sum -...
3
102
B
Sum of Digits
PROGRAMMING
1,000
[ "implementation" ]
B. Sum of Digits
2
265
Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came across a number *n*. How many times can Gerald put a spell on it until the number becomes one-...
The first line contains the only integer *n* (0<=≤<=*n*<=≤<=10100000). It is guaranteed that *n* doesn't contain any leading zeroes.
Print the number of times a number can be replaced by the sum of its digits until it only contains one digit.
[ "0\n", "10\n", "991\n" ]
[ "0\n", "1\n", "3\n" ]
In the first sample the number already is one-digit — Herald can't cast a spell. The second test contains number 10. After one casting of a spell it becomes 1, and here the process is completed. Thus, Gerald can only cast the spell once. The third test contains number 991. As one casts a spell the following transform...
1,000
[ { "input": "0", "output": "0" }, { "input": "10", "output": "1" }, { "input": "991", "output": "3" }, { "input": "99", "output": "2" }, { "input": "100", "output": "1" }, { "input": "123456789", "output": "2" }, { "input": "32", "output...
1,640,478,437
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
def f(A): s = sum(A) return [int(x) for x in str(s)] def process(n): if n < 10: return 0 A = [int(x) for x in str(n)] I = 0 while len(A) > 1: I+=1 A = f(A) return n = int(input()) print(process(n))
Title: Sum of Digits Time Limit: 2 seconds Memory Limit: 265 megabytes Problem Description: Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came...
```python def f(A): s = sum(A) return [int(x) for x in str(s)] def process(n): if n < 10: return 0 A = [int(x) for x in str(n)] I = 0 while len(A) > 1: I+=1 A = f(A) return n = int(input()) print(process(n)) ```
-1
111
D
Petya and Coloring
PROGRAMMING
2,300
[ "combinatorics", "dp" ]
D. Petya and Coloring
5
256
Little Petya loves counting. He wants to count the number of ways to paint a rectangular checkered board of size *n*<=×<=*m* (*n* rows, *m* columns) in *k* colors. Besides, the coloring should have the following property: for any vertical line that passes along the grid lines and divides the board in two non-empty part...
The first line contains space-separated integers *n*, *m* and *k* (1<=≤<=*n*,<=*m*<=≤<=1000,<=1<=≤<=*k*<=≤<=106) — the board's vertical and horizontal sizes and the number of colors respectively.
Print the answer to the problem. As the answer can be quite a large number, you should print it modulo 109<=+<=7 (1000000007).
[ "2 2 1\n", "2 2 2\n", "3 2 2\n" ]
[ "1\n", "8\n", "40\n" ]
none
2,000
[ { "input": "2 2 1", "output": "1" }, { "input": "2 2 2", "output": "8" }, { "input": "3 2 2", "output": "40" }, { "input": "7 8 15", "output": "422409918" }, { "input": "5 3 1", "output": "1" }, { "input": "5 100 1", "output": "1" }, { "inp...
1,688,822,405
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
10
5,000
62,668,800
M = int(1e9) + 7 def fast_pow(n, p): ans = 1 base = n while p: if p & 1: ans = (ans * base) % M base = (base * base) % M p >>= 1 return ans def inv(x): return fast_pow(x, M - 2) def nCr(x, y, f): return (f[x] * inv((f[y] * f[x - y]) % M)) % ...
Title: Petya and Coloring Time Limit: 5 seconds Memory Limit: 256 megabytes Problem Description: Little Petya loves counting. He wants to count the number of ways to paint a rectangular checkered board of size *n*<=×<=*m* (*n* rows, *m* columns) in *k* colors. Besides, the coloring should have the following property...
```python M = int(1e9) + 7 def fast_pow(n, p): ans = 1 base = n while p: if p & 1: ans = (ans * base) % M base = (base * base) % M p >>= 1 return ans def inv(x): return fast_pow(x, M - 2) def nCr(x, y, f): return (f[x] * inv((f[y] * f[x - y]...
0
61
A
Ultra-Fast Mathematician
PROGRAMMING
800
[ "implementation" ]
A. Ultra-Fast Mathematician
2
256
Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 1018 numbers in a single second. One day in 230 AD Shapur was trying to find out if any one can possibly do...
There are two lines in each input. Each of them contains a single number. It is guaranteed that the numbers are made from 0 and 1 only and that their length is same. The numbers may start with 0. The length of each number doesn't exceed 100.
Write one line — the corresponding answer. Do not omit the leading 0s.
[ "1010100\n0100101\n", "000\n111\n", "1110\n1010\n", "01110\n01100\n" ]
[ "1110001\n", "111\n", "0100\n", "00010\n" ]
none
500
[ { "input": "1010100\n0100101", "output": "1110001" }, { "input": "000\n111", "output": "111" }, { "input": "1110\n1010", "output": "0100" }, { "input": "01110\n01100", "output": "00010" }, { "input": "011101\n000001", "output": "011100" }, { "input": "...
1,691,247,991
2,147,483,647
Python 3
OK
TESTS
102
62
0
a = list(map(int, input())) b = list(map(int, input())) c = [] for i in range(len(a)): c.append(a[i]^b[i]) print(c[i], end="")
Title: Ultra-Fast Mathematician Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 10...
```python a = list(map(int, input())) b = list(map(int, input())) c = [] for i in range(len(a)): c.append(a[i]^b[i]) print(c[i], end="") ```
3.9845
272
A
Dima and Friends
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Dima and his friends have been playing hide and seek at Dima's place all night. As a result, Dima's place got messy. In the morning they decided that they need to clean the place. To decide who exactly would clean the apartment, the friends want to play a counting-out game. First, all the guys stand in a circle, and t...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of Dima's friends. Dima himself isn't considered to be his own friend. The second line contains *n* positive integers, not exceeding 5, representing, how many fingers the Dima's friends will show. The numbers in the lines are separated by a single s...
In a single line print the answer to the problem.
[ "1\n1\n", "1\n2\n", "2\n3 5\n" ]
[ "3\n", "2\n", "3\n" ]
In the first sample Dima can show 1, 3 or 5 fingers. If Dima shows 3 fingers, then the counting-out will go like that: Dima, his friend, Dima, his friend. In the second sample Dima can show 2 or 4 fingers.
500
[ { "input": "1\n1", "output": "3" }, { "input": "1\n2", "output": "2" }, { "input": "2\n3 5", "output": "3" }, { "input": "2\n3 5", "output": "3" }, { "input": "1\n5", "output": "3" }, { "input": "5\n4 4 3 5 1", "output": "4" }, { "input": "...
1,655,882,086
2,147,483,647
PyPy 3
OK
TESTS
30
186
0
from sys import stdin input = stdin.readline n = int(input()) a = list(map(int,input().split())) n+=1 sums = sum(a) cnt = 5 for i in range(sums+1 , sums+6): if i % n == 1: cnt -= 1 print(cnt)
Title: Dima and Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dima and his friends have been playing hide and seek at Dima's place all night. As a result, Dima's place got messy. In the morning they decided that they need to clean the place. To decide who exactly would clean the...
```python from sys import stdin input = stdin.readline n = int(input()) a = list(map(int,input().split())) n+=1 sums = sum(a) cnt = 5 for i in range(sums+1 , sums+6): if i % n == 1: cnt -= 1 print(cnt) ```
3
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,673,561,442
2,147,483,647
Python 3
OK
TESTS
20
46
0
# https://codeforces.com/problemset/problem/71/A print(*map( lambda w: w[0] + str(len(w[1:-1])) + w[-1] if len(w) > 10 else w, [input() for i in range(int(input()))] ), sep='\n')
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python # https://codeforces.com/problemset/problem/71/A print(*map( lambda w: w[0] + str(len(w[1:-1])) + w[-1] if len(w) > 10 else w, [input() for i in range(int(input()))] ), sep='\n') ```
3.977
877
A
Alex and broken contest
PROGRAMMING
1,100
[ "implementation", "strings" ]
null
null
One day Alex was creating a contest about his friends, but accidentally deleted it. Fortunately, all the problems were saved, but now he needs to find them among other problems. But there are too many problems, to do it manually. Alex asks you to write a program, which will determine if a problem is from this contest ...
The only line contains string from lowercase and uppercase letters and "_" symbols of length, not more than 100 — the name of the problem.
Print "YES", if problem is from this contest, and "NO" otherwise.
[ "Alex_and_broken_contest\n", "NikitaAndString\n", "Danil_and_Olya\n" ]
[ "NO", "YES", "NO" ]
none
500
[ { "input": "Alex_and_broken_contest", "output": "NO" }, { "input": "NikitaAndString", "output": "YES" }, { "input": "Danil_and_Olya", "output": "NO" }, { "input": "Slava____and_the_game", "output": "YES" }, { "input": "Olya_and_energy_drinks", "output": "YES" ...
1,509,310,989
2,147,483,647
Python 3
OK
TESTS
55
62
0
f, s = ['Danil', 'Olya', 'Slava', 'Ann', 'Nikita'], input() v = [s.count(fi) for fi in f] print('YES' if max(v) == 1 and sum(v) == 1 else 'NO')
Title: Alex and broken contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Alex was creating a contest about his friends, but accidentally deleted it. Fortunately, all the problems were saved, but now he needs to find them among other problems. But there are too many problems,...
```python f, s = ['Danil', 'Olya', 'Slava', 'Ann', 'Nikita'], input() v = [s.count(fi) for fi in f] print('YES' if max(v) == 1 and sum(v) == 1 else 'NO') ```
3
229
B
Planets
PROGRAMMING
1,700
[ "binary search", "data structures", "graphs", "shortest paths" ]
null
null
Goa'uld Apophis captured Jack O'Neill's team again! Jack himself was able to escape, but by that time Apophis's ship had already jumped to hyperspace. But Jack knows on what planet will Apophis land. In order to save his friends, Jack must repeatedly go through stargates to get to this planet. Overall the galaxy has *...
The first line contains two space-separated integers: *n* (2<=≤<=*n*<=≤<=105), the number of planets in the galaxy, and *m* (0<=≤<=*m*<=≤<=105) — the number of pairs of planets between which Jack can travel using stargates. Then *m* lines follow, containing three integers each: the *i*-th line contains numbers of plane...
Print a single number — the least amount of time Jack needs to get from planet 1 to planet *n*. If Jack can't get to planet *n* in any amount of time, print number -1.
[ "4 6\n1 2 2\n1 3 3\n1 4 8\n2 3 4\n2 4 5\n3 4 3\n0\n1 3\n2 3 4\n0\n", "3 1\n1 2 3\n0\n1 3\n0\n" ]
[ "7\n", "-1\n" ]
In the first sample Jack has three ways to go from planet 1. If he moves to planet 4 at once, he spends 8 seconds. If he transfers to planet 3, he spends 3 seconds, but as other travellers arrive to planet 3 at time 3 and 4, he can travel to planet 4 only at time 5, thus spending 8 seconds in total. But if Jack moves t...
500
[ { "input": "4 6\n1 2 2\n1 3 3\n1 4 8\n2 3 4\n2 4 5\n3 4 3\n0\n1 3\n2 3 4\n0", "output": "7" }, { "input": "3 1\n1 2 3\n0\n1 3\n0", "output": "-1" }, { "input": "2 1\n1 2 3\n0\n1 3", "output": "3" }, { "input": "2 1\n1 2 3\n1 0\n0", "output": "4" }, { "input": "3 3...
1,673,357,678
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
from collections import Counter n = int(input()) for _ in range(n): data = list(map(int, input().split())) planets = dict(Counter(input().split(" "))) for key, value in planets.items(): count = planets[key] result = min(count, data[1]) planets[key] = result print(sum(pla...
Title: Planets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Goa'uld Apophis captured Jack O'Neill's team again! Jack himself was able to escape, but by that time Apophis's ship had already jumped to hyperspace. But Jack knows on what planet will Apophis land. In order to save his friend...
```python from collections import Counter n = int(input()) for _ in range(n): data = list(map(int, input().split())) planets = dict(Counter(input().split(" "))) for key, value in planets.items(): count = planets[key] result = min(count, data[1]) planets[key] = result pri...
-1
508
B
Anton and currency you all know
PROGRAMMING
1,300
[ "greedy", "math", "strings" ]
null
null
Berland, 2016. The exchange rate of currency you all know against the burle has increased so much that to simplify the calculations, its fractional part was neglected and the exchange rate is now assumed to be an integer. Reliable sources have informed the financier Anton of some information about the exchange rate of...
The first line contains an odd positive integer *n* — the exchange rate of currency you all know for today. The length of number *n*'s representation is within range from 2 to 105, inclusive. The representation of *n* doesn't contain any leading zeroes.
If the information about tomorrow's exchange rate is inconsistent, that is, there is no integer that meets the condition, print <=-<=1. Otherwise, print the exchange rate of currency you all know against the burle for tomorrow. This should be the maximum possible number of those that are even and that are obtained fro...
[ "527\n", "4573\n", "1357997531\n" ]
[ "572\n", "3574\n", "-1\n" ]
none
1,000
[ { "input": "527", "output": "572" }, { "input": "4573", "output": "3574" }, { "input": "1357997531", "output": "-1" }, { "input": "444443", "output": "444434" }, { "input": "22227", "output": "72222" }, { "input": "24683", "output": "34682" }, ...
1,687,676,124
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
46
0
x = input() j = -1 found = -1 for xx in x: j += 1 if int(xx) < int(xx[-1:]) and not int(xx)%2: found = j if found != -1: print(x[0:found]+x[-1:]+x[found+1:-1]+x[found]) else: for _ in range(len(x)-2, -1, -1): if int(x[_])%2==0: print(x[0:_], end='') p...
Title: Anton and currency you all know Time Limit: None seconds Memory Limit: None megabytes Problem Description: Berland, 2016. The exchange rate of currency you all know against the burle has increased so much that to simplify the calculations, its fractional part was neglected and the exchange rate is now assumed...
```python x = input() j = -1 found = -1 for xx in x: j += 1 if int(xx) < int(xx[-1:]) and not int(xx)%2: found = j if found != -1: print(x[0:found]+x[-1:]+x[found+1:-1]+x[found]) else: for _ in range(len(x)-2, -1, -1): if int(x[_])%2==0: print(x[0:_], end='') ...
0
698
A
Vacations
PROGRAMMING
1,400
[ "dp" ]
null
null
Vasya has *n* days of vacations! So he decided to improve his IT skills and do sport. Vasya knows the following information about each of this *n* days: whether that gym opened and whether a contest was carried out in the Internet on that day. For the *i*-th day there are four options: 1. on this day the gym is close...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of days of Vasya's vacations. The second line contains the sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=3) separated by space, where: - *a**i* equals 0, if on the *i*-th day of vacations the gym is closed and the co...
Print the minimum possible number of days on which Vasya will have a rest. Remember that Vasya refuses: - to do sport on any two consecutive days, - to write the contest on any two consecutive days.
[ "4\n1 3 2 0\n", "7\n1 3 3 2 1 2 3\n", "2\n2 2\n" ]
[ "2\n", "0\n", "1\n" ]
In the first test Vasya can write the contest on the day number 1 and do sport on the day number 3. Thus, he will have a rest for only 2 days. In the second test Vasya should write contests on days number 1, 3, 5 and 7, in other days do sport. Thus, he will not have a rest for a single day. In the third test Vasya ca...
500
[ { "input": "4\n1 3 2 0", "output": "2" }, { "input": "7\n1 3 3 2 1 2 3", "output": "0" }, { "input": "2\n2 2", "output": "1" }, { "input": "1\n0", "output": "1" }, { "input": "10\n0 0 1 1 0 0 0 0 1 0", "output": "8" }, { "input": "100\n3 2 3 3 3 2 3 1 ...
1,530,427,407
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
108
0
n = int(input()) l = list(map(int,input().split())) counter = 0 counter += l.count(0) for i in range(len(l)): try: if l[i+1] == l[i] and l[i]!=3 and l[i]!=0: counter += 1 elif l[i] == 1 and l[i+1] == 3 and l[i+2] == 2: counter += 1 elif l[i] == 2 and l[...
Title: Vacations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has *n* days of vacations! So he decided to improve his IT skills and do sport. Vasya knows the following information about each of this *n* days: whether that gym opened and whether a contest was carried out in the Int...
```python n = int(input()) l = list(map(int,input().split())) counter = 0 counter += l.count(0) for i in range(len(l)): try: if l[i+1] == l[i] and l[i]!=3 and l[i]!=0: counter += 1 elif l[i] == 1 and l[i+1] == 3 and l[i+2] == 2: counter += 1 elif l[i] =...
0
913
B
Christmas Spruce
PROGRAMMING
1,200
[ "implementation", "trees" ]
null
null
Consider a rooted tree. A rooted tree has one special vertex called the root. All edges are directed from the root. Vertex *u* is called a child of vertex *v* and vertex *v* is called a parent of vertex *u* if there exists a directed edge from *v* to *u*. A vertex is called a leaf if it doesn't have children and has a ...
The first line contains one integer *n* — the number of vertices in the tree (3<=≤<=*n*<=≤<=1<=000). Each of the next *n*<=-<=1 lines contains one integer *p**i* (1<=≤<=*i*<=≤<=*n*<=-<=1) — the index of the parent of the *i*<=+<=1-th vertex (1<=≤<=*p**i*<=≤<=*i*). Vertex 1 is the root. It's guaranteed that the root ha...
Print "Yes" if the tree is a spruce and "No" otherwise.
[ "4\n1\n1\n1\n", "7\n1\n1\n1\n2\n2\n2\n", "8\n1\n1\n1\n1\n3\n3\n3\n" ]
[ "Yes\n", "No\n", "Yes\n" ]
The first example: <img class="tex-graphics" src="https://espresso.codeforces.com/8dd976913226df83d535dfa66193f5525f8471bc.png" style="max-width: 100.0%;max-height: 100.0%;"/> The second example: <img class="tex-graphics" src="https://espresso.codeforces.com/44dad5804f5290a2e026c9c41a15151562df8682.png" style="max-w...
750
[ { "input": "4\n1\n1\n1", "output": "Yes" }, { "input": "7\n1\n1\n1\n2\n2\n2", "output": "No" }, { "input": "8\n1\n1\n1\n1\n3\n3\n3", "output": "Yes" }, { "input": "3\n1\n1", "output": "No" }, { "input": "13\n1\n2\n2\n2\n1\n6\n6\n6\n1\n10\n10\n10", "output": "N...
1,659,372,923
2,147,483,647
PyPy 3-64
OK
TESTS
31
77
614,400
import sys import collections input = sys.stdin.readline def in_int(): ''' Read input string as int ''' return (int(input())) def in_int_space(): ''' Read space separated numbers as list of int ''' return (list(map(int,input().split()))) def in_int_line(n): ''' ...
Title: Christmas Spruce Time Limit: None seconds Memory Limit: None megabytes Problem Description: Consider a rooted tree. A rooted tree has one special vertex called the root. All edges are directed from the root. Vertex *u* is called a child of vertex *v* and vertex *v* is called a parent of vertex *u* if there ex...
```python import sys import collections input = sys.stdin.readline def in_int(): ''' Read input string as int ''' return (int(input())) def in_int_space(): ''' Read space separated numbers as list of int ''' return (list(map(int,input().split()))) def in_int_line(n): ...
3
219
A
k-String
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
A string is called a *k*-string if it can be represented as *k* concatenated copies of some string. For example, the string "aabaabaabaab" is at the same time a 1-string, a 2-string and a 4-string, but it is not a 3-string, a 5-string, or a 6-string and so on. Obviously any string is a 1-string. You are given a string...
The first input line contains integer *k* (1<=≤<=*k*<=≤<=1000). The second line contains *s*, all characters in *s* are lowercase English letters. The string length *s* satisfies the inequality 1<=≤<=|*s*|<=≤<=1000, where |*s*| is the length of string *s*.
Rearrange the letters in string *s* in such a way that the result is a *k*-string. Print the result on a single output line. If there are multiple solutions, print any of them. If the solution doesn't exist, print "-1" (without quotes).
[ "2\naazz\n", "3\nabcabcabz\n" ]
[ "azaz\n", "-1\n" ]
none
500
[ { "input": "2\naazz", "output": "azaz" }, { "input": "3\nabcabcabz", "output": "-1" }, { "input": "1\na", "output": "a" }, { "input": "2\nabba", "output": "abab" }, { "input": "2\naaab", "output": "-1" }, { "input": "7\nabacaba", "output": "-1" }...
1,681,632,897
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
124
102,400
from collections import Counter k = int(input()) s = input() lt_dict = Counter(list(s)) lt = list(lt_dict.values()) output = '' flag = 1 for i in range(len(lt)): if(lt[i]%k != 0): flag = 0 print(-1) break if(flag == 1): for key in lt_dict: output += key*(int(lt_dict...
Title: k-String Time Limit: None seconds Memory Limit: None megabytes Problem Description: A string is called a *k*-string if it can be represented as *k* concatenated copies of some string. For example, the string "aabaabaabaab" is at the same time a 1-string, a 2-string and a 4-string, but it is not a 3-string, a ...
```python from collections import Counter k = int(input()) s = input() lt_dict = Counter(list(s)) lt = list(lt_dict.values()) output = '' flag = 1 for i in range(len(lt)): if(lt[i]%k != 0): flag = 0 print(-1) break if(flag == 1): for key in lt_dict: output += key*(i...
0
225
A
Dice Tower
PROGRAMMING
1,100
[ "constructive algorithms", "greedy" ]
null
null
A dice is a cube, its faces contain distinct integers from 1 to 6 as black points. The sum of numbers at the opposite dice faces always equals 7. Please note that there are only two dice (these dices are mirror of each other) that satisfy the given constraints (both of them are shown on the picture on the left). Alice...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of dice in the tower. The second line contains an integer *x* (1<=≤<=*x*<=≤<=6) — the number Bob sees at the top of the tower. Next *n* lines contain two space-separated integers each: the *i*-th line contains numbers *a**i*,<=*b**i* (1<=≤<=...
Print "YES" (without the quotes), if it is possible to to uniquely identify the numbers on the faces of all the dice in the tower. If it is impossible, print "NO" (without the quotes).
[ "3\n6\n3 2\n5 4\n2 4\n", "3\n3\n2 6\n4 1\n5 3\n" ]
[ "YES", "NO" ]
none
500
[ { "input": "3\n6\n3 2\n5 4\n2 4", "output": "YES" }, { "input": "3\n3\n2 6\n4 1\n5 3", "output": "NO" }, { "input": "1\n3\n2 1", "output": "YES" }, { "input": "2\n2\n3 1\n1 5", "output": "NO" }, { "input": "3\n2\n1 4\n5 3\n6 4", "output": "NO" }, { "in...
1,548,052,500
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
186
0
n = int(input()) side = { (1, 2): (4, 3), (1, 3): (5, 2), (1, 4): (5, 2), (1, 5): (4, 3), (2, 3): (1, 6), (2, 4): (1, 6), (2, 6): (4, 3), (3, 5): (1, 6), (3, 6): (5, 2), (4, 5): (1, 6), (4, 6): (1, 6), (5, 6): (4, 2) } top = int(input()) input() face1...
Title: Dice Tower Time Limit: None seconds Memory Limit: None megabytes Problem Description: A dice is a cube, its faces contain distinct integers from 1 to 6 as black points. The sum of numbers at the opposite dice faces always equals 7. Please note that there are only two dice (these dices are mirror of each other...
```python n = int(input()) side = { (1, 2): (4, 3), (1, 3): (5, 2), (1, 4): (5, 2), (1, 5): (4, 3), (2, 3): (1, 6), (2, 4): (1, 6), (2, 6): (4, 3), (3, 5): (1, 6), (3, 6): (5, 2), (4, 5): (1, 6), (4, 6): (1, 6), (5, 6): (4, 2) } top = int(input()) inpu...
-1
0
none
none
none
0
[ "none" ]
null
null
In Arcady's garden there grows a peculiar apple-tree that fruits one time per year. Its peculiarity can be explained in following way: there are *n* inflorescences, numbered from 1 to *n*. Inflorescence number 1 is situated near base of tree and any other inflorescence with number *i* (*i*<=&gt;<=1) is situated at the ...
First line of input contains single integer number *n* (2<=≤<=*n*<=≤<=100<=000)  — number of inflorescences. Second line of input contains sequence of *n*<=-<=1 integer numbers *p*2,<=*p*3,<=...,<=*p**n* (1<=≤<=*p**i*<=&lt;<=*i*), where *p**i* is number of inflorescence into which the apple from *i*-th inflorescence r...
Single line of output should contain one integer number: amount of apples that Arcady will be able to collect from first inflorescence during one harvest.
[ "3\n1 1\n", "5\n1 2 2 2\n", "18\n1 1 1 4 4 3 2 2 2 10 8 9 9 9 10 10 4\n" ]
[ "1\n", "3\n", "4\n" ]
In first example Arcady will be able to collect only one apple, initially situated in 1st inflorescence. In next second apples from 2nd and 3rd inflorescences will roll down and annihilate, and Arcady won't be able to collect them. In the second example Arcady will be able to collect 3 apples. First one is one initial...
0
[ { "input": "3\n1 1", "output": "1" }, { "input": "5\n1 2 2 2", "output": "3" }, { "input": "18\n1 1 1 4 4 3 2 2 2 10 8 9 9 9 10 10 4", "output": "4" }, { "input": "2\n1", "output": "2" }, { "input": "3\n1 2", "output": "3" }, { "input": "20\n1 1 1 1 1 ...
1,689,436,468
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
61
0
print("_RANDOM_GUESS_1689436468.3895636")# 1689436468.389583
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: In Arcady's garden there grows a peculiar apple-tree that fruits one time per year. Its peculiarity can be explained in following way: there are *n* inflorescences, numbered from 1 to *n*. Inflorescence number 1 is situated near b...
```python print("_RANDOM_GUESS_1689436468.3895636")# 1689436468.389583 ```
0
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,686,820,060
2,147,483,647
Python 3
OK
TESTS
20
46
0
n1, m1, a1 = map(int, input().split()) # Calculate the number of flagstones needed flagst = ((n1 + a1 - 1) // a1) * ((m1 + a1 - 1) // a1) print(flagst)
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 n1, m1, a1 = map(int, input().split()) # Calculate the number of flagstones needed flagst = ((n1 + a1 - 1) // a1) * ((m1 + a1 - 1) // a1) print(flagst) ```
3.977
135
B
Rectangle and Square
PROGRAMMING
1,600
[ "brute force", "geometry", "math" ]
null
null
Little Petya very much likes rectangles and especially squares. Recently he has received 8 points on the plane as a gift from his mother. The points are pairwise distinct. Petya decided to split them into two sets each containing 4 points so that the points from the first set lay at the vertexes of some square and the ...
You are given 8 pairs of integers, a pair per line — the coordinates of the points Petya has. The absolute value of all coordinates does not exceed 104. It is guaranteed that no two points coincide.
Print in the first output line "YES" (without the quotes), if the desired partition exists. In the second line output 4 space-separated numbers — point indexes from the input, which lie at the vertexes of the square. The points are numbered starting from 1. The numbers can be printed in any order. In the third line pri...
[ "0 0\n10 11\n10 0\n0 11\n1 1\n2 2\n2 1\n1 2\n", "0 0\n1 1\n2 2\n3 3\n4 4\n5 5\n6 6\n7 7\n", "0 0\n4 4\n4 0\n0 4\n1 2\n2 3\n3 2\n2 1\n" ]
[ "YES\n5 6 7 8\n1 2 3 4\n", "NO\n", "YES\n1 2 3 4\n5 6 7 8\n" ]
Pay attention to the third example: the figures do not necessarily have to be parallel to the coordinate axes.
1,000
[ { "input": "0 0\n10 11\n10 0\n0 11\n1 1\n2 2\n2 1\n1 2", "output": "YES\n5 6 7 8\n1 2 3 4" }, { "input": "0 0\n1 1\n2 2\n3 3\n4 4\n5 5\n6 6\n7 7", "output": "NO" }, { "input": "0 0\n4 4\n4 0\n0 4\n1 2\n2 3\n3 2\n2 1", "output": "YES\n1 2 3 4\n5 6 7 8" }, { "input": "-160 336\...
1,689,595,531
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
92
0
print("_RANDOM_GUESS_1689595531.6029031")# 1689595531.6029236
Title: Rectangle and Square Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya very much likes rectangles and especially squares. Recently he has received 8 points on the plane as a gift from his mother. The points are pairwise distinct. Petya decided to split them into two sets ...
```python print("_RANDOM_GUESS_1689595531.6029031")# 1689595531.6029236 ```
0
171
G
Mysterious numbers - 2
PROGRAMMING
1,600
[ "*special" ]
null
null
The only line of input contains three integers *a*1,<=*a*2,<=*a*3 (1<=≤<=*a*1,<=*a*2,<=*a*3<=≤<=20), separated by spaces. Output a single integer.
The only line of input contains three integers *a*1,<=*a*2,<=*a*3 (1<=≤<=*a*1,<=*a*2,<=*a*3<=≤<=20), separated by spaces.
Output a single integer.
[ "2 3 2\n", "13 14 1\n", "14 5 9\n", "17 18 3\n" ]
[ "5\n", "14\n", "464\n", "53\n" ]
none
0
[ { "input": "2 3 2", "output": "5" }, { "input": "13 14 1", "output": "14" }, { "input": "14 5 9", "output": "464" }, { "input": "17 18 3", "output": "53" }, { "input": "1 1 1", "output": "1" }, { "input": "4 6 7", "output": "110" }, { "inpu...
1,689,651,073
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
92
0
print("_RANDOM_GUESS_1689651072.8843405")# 1689651072.8843617
Title: Mysterious numbers - 2 Time Limit: None seconds Memory Limit: None megabytes Problem Description: The only line of input contains three integers *a*1,<=*a*2,<=*a*3 (1<=≤<=*a*1,<=*a*2,<=*a*3<=≤<=20), separated by spaces. Output a single integer. Input Specification: The only line of input contains three inte...
```python print("_RANDOM_GUESS_1689651072.8843405")# 1689651072.8843617 ```
0
128
D
Numbers
PROGRAMMING
2,000
[ "constructive algorithms", "implementation" ]
null
null
One day Anna got the following task at school: to arrange several numbers in a circle so that any two neighboring numbers differs exactly by 1. Anna was given several numbers and arranged them in a circle to fulfill the task. Then she wanted to check if she had arranged the numbers correctly, but at this point her youn...
The first line contains an integer *n* — how many numbers Anna had (3<=≤<=*n*<=≤<=105). The next line contains those numbers, separated by a space. All numbers are integers and belong to the range from 1 to 109.
Print the single line "YES" (without the quotes), if Anna could have completed the task correctly using all those numbers (using all of them is necessary). If Anna couldn't have fulfilled the task, no matter how hard she would try, print "NO" (without the quotes).
[ "4\n1 2 3 2\n", "6\n1 1 2 2 2 3\n", "6\n2 4 1 1 2 2\n" ]
[ "YES\n", "YES\n", "NO\n" ]
none
2,000
[ { "input": "4\n1 2 3 2", "output": "YES" }, { "input": "6\n1 1 2 2 2 3", "output": "YES" }, { "input": "6\n2 4 1 1 2 2", "output": "NO" }, { "input": "4\n999999998 1000000000 999999999 999999999", "output": "YES" }, { "input": "5\n6 7 6 7 6", "output": "NO" ...
1,632,072,178
2,147,483,647
Python 3
OK
TESTS
70
248
15,564,800
def no(): print("NO") exit(0) n, a = int(input()), list(map(int, input().split())) x, y = min(a), max(a) d = y-x if 2*d > n: print("NO") exit(0) c = [0] * (d+1) for i in range(n): c[a[i]-x] += 1 for i in range(1, d): c[i] -= c[i-1] if c[i] <= 0: no() if c[d] == c[d-1]: ...
Title: Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Anna got the following task at school: to arrange several numbers in a circle so that any two neighboring numbers differs exactly by 1. Anna was given several numbers and arranged them in a circle to fulfill the task. T...
```python def no(): print("NO") exit(0) n, a = int(input()), list(map(int, input().split())) x, y = min(a), max(a) d = y-x if 2*d > n: print("NO") exit(0) c = [0] * (d+1) for i in range(n): c[a[i]-x] += 1 for i in range(1, d): c[i] -= c[i-1] if c[i] <= 0: no() if c[d] == c[...
3
0
none
none
none
0
[ "none" ]
null
null
A new bus route is opened in the city . The route is a closed polygon line in the place, with all segments parallel to one of the axes. *m* buses will operate on the route. All buses move in a loop along the route in the same direction with equal constant velocities (stopping times are negligible in this problem). Bus...
The first line contains two integers *n* and *m* (2<=≤<=*n*,<=*m*<=≤<=105) — the number of vertices of the polygonal line, and the number of buses respectively. Next *n* lines describe the vertices of the route in the traversing order. Each of these lines contains two integers *x**i*, *y**i* (<=-<=1000<=≤<=*x**i*,<=*y...
Print one real number — the answer to the problem. Your answer will be accepted if the relative or the absolute error doesn't exceed 10<=-<=6.
[ "4 2\n0 0\n0 1\n1 1\n1 0\n", "2 2\n0 0\n1 0\n" ]
[ "1.000000000\n", "0.000000000" ]
Suppose that each bus travel 1 distance unit per second. In the first sample case, in 0.5 seconds buses will be at distance 1, hence we can choose *D* = 1. In the second sample case, in 0.5 seconds both buses will be at (0.5, 0), hence we can choose *D* = 0.
0
[]
1,689,426,769
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
print("_RANDOM_GUESS_1689426768.8916383")# 1689426768.8916566
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: A new bus route is opened in the city . The route is a closed polygon line in the place, with all segments parallel to one of the axes. *m* buses will operate on the route. All buses move in a loop along the route in the same dire...
```python print("_RANDOM_GUESS_1689426768.8916383")# 1689426768.8916566 ```
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,629,173,264
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
4
77
6,758,400
s= input() alphas = 'abcdefghijklmnopqrsruvwxyz' r = p = 0 l = 26 for i in range(len(s)): temp = alphas.index(s[i]) d = abs(temp-p) r+= min(d, 26-d) p = temp print(r)
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 s= input() alphas = 'abcdefghijklmnopqrsruvwxyz' r = p = 0 l = 26 for i in range(len(s)): temp = alphas.index(s[i]) d = abs(temp-p) r+= min(d, 26-d) p = temp print(r) ```
-1
313
B
Ilya and Queries
PROGRAMMING
1,100
[ "dp", "implementation" ]
null
null
Ilya the Lion wants to help all his friends with passing exams. They need to solve the following problem to pass the IT exam. You've got string *s*<==<=*s*1*s*2... *s**n* (*n* is the length of the string), consisting only of characters "." and "#" and *m* queries. Each query is described by a pair of integers *l**i*,<...
The first line contains string *s* of length *n* (2<=≤<=*n*<=≤<=105). It is guaranteed that the given string only consists of characters "." and "#". The next line contains integer *m* (1<=≤<=*m*<=≤<=105) — the number of queries. Each of the next *m* lines contains the description of the corresponding query. The *i*-t...
Print *m* integers — the answers to the queries in the order in which they are given in the input.
[ "......\n4\n3 4\n2 3\n1 6\n2 6\n", "#..###\n5\n1 3\n5 6\n1 5\n3 6\n3 4\n" ]
[ "1\n1\n5\n4\n", "1\n1\n2\n2\n0\n" ]
none
1,000
[ { "input": "......\n4\n3 4\n2 3\n1 6\n2 6", "output": "1\n1\n5\n4" }, { "input": "#..###\n5\n1 3\n5 6\n1 5\n3 6\n3 4", "output": "1\n1\n2\n2\n0" }, { "input": ".#...#..\n6\n1 5\n2 3\n6 7\n2 4\n2 5\n1 3", "output": "2\n0\n0\n1\n2\n0" }, { "input": "#.#.#..\n5\n3 4\n4 5\n5 7\n5...
1,699,341,190
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
2,000
102,400
# -*- coding: utf-8 -*- """ Created on Tue Nov 7 14:57:38 2023 @author: ghp """ s=input() m=int(input()) for i in range(m): l,r=map(int,input().split()) k=0 for j in range(l-1,r-1): if s[j]==s[j+1]: k+=1 print(k)
Title: Ilya and Queries Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ilya the Lion wants to help all his friends with passing exams. They need to solve the following problem to pass the IT exam. You've got string *s*<==<=*s*1*s*2... *s**n* (*n* is the length of the string), consisting ...
```python # -*- coding: utf-8 -*- """ Created on Tue Nov 7 14:57:38 2023 @author: ghp """ s=input() m=int(input()) for i in range(m): l,r=map(int,input().split()) k=0 for j in range(l-1,r-1): if s[j]==s[j+1]: k+=1 print(k) ```
0
846
A
Curriculum Vitae
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
Hideo Kojima has just quit his job at Konami. Now he is going to find a new place to work. Despite being such a well-known person, he still needs a CV to apply for a job. During all his career Hideo has produced *n* games. Some of them were successful, some were not. Hideo wants to remove several of them (possibly zer...
The first line contains one integer number *n* (1<=≤<=*n*<=≤<=100). The second line contains *n* space-separated integer numbers *s*1,<=*s*2,<=...,<=*s**n* (0<=≤<=*s**i*<=≤<=1). 0 corresponds to an unsuccessful game, 1 — to a successful one.
Print one integer — the maximum number of games Hideo can leave in his CV so that no unsuccessful game comes after a successful one.
[ "4\n1 1 0 1\n", "6\n0 1 0 0 1 0\n", "1\n0\n" ]
[ "3\n", "4\n", "1\n" ]
none
0
[ { "input": "4\n1 1 0 1", "output": "3" }, { "input": "6\n0 1 0 0 1 0", "output": "4" }, { "input": "1\n0", "output": "1" }, { "input": "100\n0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
1,504,624,258
358
Python 3
WRONG_ANSWER
TESTS
4
46
0
def read_ints(): return [int(i) for i in input().split()] n = int(input()) s = read_ints() to_rem = n if sum(s) else 0 for i in range(n): if s[i]: to_rem = min(to_rem, s[:i].count(1) + s[i:].count(0)) print(n - to_rem)
Title: Curriculum Vitae Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hideo Kojima has just quit his job at Konami. Now he is going to find a new place to work. Despite being such a well-known person, he still needs a CV to apply for a job. During all his career Hideo has produced *n* g...
```python def read_ints(): return [int(i) for i in input().split()] n = int(input()) s = read_ints() to_rem = n if sum(s) else 0 for i in range(n): if s[i]: to_rem = min(to_rem, s[:i].count(1) + s[i:].count(0)) print(n - to_rem) ```
0
200
B
Drinks
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Little Vasya loves orange juice very much. That's why any food and drink in his kitchen necessarily contains orange juice. There are *n* drinks in his fridge, the volume fraction of orange juice in the *i*-th drink equals *p**i* percent. One day Vasya decided to make himself an orange cocktail. He took equal proportio...
The first input line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of orange-containing drinks in Vasya's fridge. The second line contains *n* integers *p**i* (0<=≤<=*p**i*<=≤<=100) — the volume fraction of orange juice in the *i*-th drink, in percent. The numbers are separated by a space.
Print the volume fraction in percent of orange juice in Vasya's cocktail. The answer will be considered correct if the absolute or relative error does not exceed 10<=<=-<=4.
[ "3\n50 50 100\n", "4\n0 25 50 75\n" ]
[ "66.666666666667\n", "37.500000000000\n" ]
Note to the first sample: let's assume that Vasya takes *x* milliliters of each drink from the fridge. Then the volume of pure juice in the cocktail will equal <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/c1fac6e64d3a8ee6a5ac138cbe51e60039b22473.png" style="max-width: 100.0%;max-height: ...
500
[ { "input": "3\n50 50 100", "output": "66.666666666667" }, { "input": "4\n0 25 50 75", "output": "37.500000000000" }, { "input": "3\n0 1 8", "output": "3.000000000000" }, { "input": "5\n96 89 93 95 70", "output": "88.600000000000" }, { "input": "7\n62 41 78 4 38 39...
1,692,353,983
2,147,483,647
PyPy 3
OK
TESTS
31
154
0
n = int(input()) l = list(map(int,input().split())) sum = 0 for i in range(n): sum = sum + l[i] print(sum/n)
Title: Drinks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Vasya loves orange juice very much. That's why any food and drink in his kitchen necessarily contains orange juice. There are *n* drinks in his fridge, the volume fraction of orange juice in the *i*-th drink equals *p**i*...
```python n = int(input()) l = list(map(int,input().split())) sum = 0 for i in range(n): sum = sum + l[i] print(sum/n) ```
3
368
B
Sereja and Suffixes
PROGRAMMING
1,100
[ "data structures", "dp" ]
null
null
Sereja has an array *a*, consisting of *n* integers *a*1, *a*2, ..., *a**n*. The boy cannot sit and do nothing, he decided to study an array. Sereja took a piece of paper and wrote out *m* integers *l*1,<=*l*2,<=...,<=*l**m* (1<=≤<=*l**i*<=≤<=*n*). For each number *l**i* he wants to know how many distinct numbers are s...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=105). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105) — the array elements. Next *m* lines contain integers *l*1,<=*l*2,<=...,<=*l**m*. The *i*-th line contains integer *l**i* (1<=≤<=*l**i*<=≤<=*n*).
Print *m* lines — on the *i*-th line print the answer to the number *l**i*.
[ "10 10\n1 2 3 4 1 2 3 4 100000 99999\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" ]
[ "6\n6\n6\n6\n6\n5\n4\n3\n2\n1\n" ]
none
1,000
[ { "input": "10 10\n1 2 3 4 1 2 3 4 100000 99999\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10", "output": "6\n6\n6\n6\n6\n5\n4\n3\n2\n1" }, { "input": "8 3\n8 6 4 3 4 2 4 8\n6\n4\n2", "output": "3\n4\n5" }, { "input": "7 10\n1 3 8 6 2 2 7\n4\n2\n6\n3\n4\n4\n6\n2\n7\n4", "output": "3\n5\n2\n4\n3\n3\...
1,693,685,767
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
31
0
nm = input().split() n,m = int(nm[0]), int(nm[1]) st = set() def co(idx,f,a): res = 0 for i in range(idx,f): if a[i] not in st: res+=1 st.add(a[i]) return res sa = input().split() a=[] l=[] for ak in sa: a.append(int(ak)) for i in range(m): l.append(int(input()))...
Title: Sereja and Suffixes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja has an array *a*, consisting of *n* integers *a*1, *a*2, ..., *a**n*. The boy cannot sit and do nothing, he decided to study an array. Sereja took a piece of paper and wrote out *m* integers *l*1,<=*l*2,<=......
```python nm = input().split() n,m = int(nm[0]), int(nm[1]) st = set() def co(idx,f,a): res = 0 for i in range(idx,f): if a[i] not in st: res+=1 st.add(a[i]) return res sa = input().split() a=[] l=[] for ak in sa: a.append(int(ak)) for i in range(m): l.append(int...
0
769
A
Year of University Entrance
PROGRAMMING
800
[ "*special", "implementation", "sortings" ]
null
null
There is the faculty of Computer Science in Berland. In the social net "TheContact!" for each course of this faculty there is the special group whose name equals the year of university entrance of corresponding course of students at the university. Each of students joins the group of his course and joins all groups f...
The first line contains the positive odd integer *n* (1<=≤<=*n*<=≤<=5) — the number of groups which Igor joined. The next line contains *n* distinct integers *a*1,<=*a*2,<=...,<=*a**n* (2010<=≤<=*a**i*<=≤<=2100) — years of student's university entrance for each group in which Igor is the member. It is guaranteed tha...
Print the year of Igor's university entrance.
[ "3\n2014 2016 2015\n", "1\n2050\n" ]
[ "2015\n", "2050\n" ]
In the first test the value *x* = 1. Igor entered the university in 2015. So he joined groups members of which are students who entered the university in 2014, 2015 and 2016. In the second test the value *x* = 0. Igor entered only the group which corresponds to the year of his university entrance.
500
[ { "input": "3\n2014 2016 2015", "output": "2015" }, { "input": "1\n2050", "output": "2050" }, { "input": "1\n2010", "output": "2010" }, { "input": "1\n2011", "output": "2011" }, { "input": "3\n2010 2011 2012", "output": "2011" }, { "input": "3\n2049 20...
1,488,709,457
80,657
Python 3
OK
TESTS
45
62
4,608,000
n = int(input()) a = list(map(int,input().split())) s = a[0] if n>1: for i in range(1,n): s+=a[i] year = s//n print(year)
Title: Year of University Entrance Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is the faculty of Computer Science in Berland. In the social net "TheContact!" for each course of this faculty there is the special group whose name equals the year of university entrance of correspond...
```python n = int(input()) a = list(map(int,input().split())) s = a[0] if n>1: for i in range(1,n): s+=a[i] year = s//n print(year) ```
3
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,659,702,791
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
31
0
n = int(input()) arr = list(map(int,input().split(' '))) ## max_n = max(arr) tem = [] for size in arr: if(size==max_n): tem = [size] + tem tem.sort() print(*tem[::-1]) max_n = min (tem)-1 tem = [] else: tem.append(si...
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 = int(input()) arr = list(map(int,input().split(' '))) ## max_n = max(arr) tem = [] for size in arr: if(size==max_n): tem = [size] + tem tem.sort() print(*tem[::-1]) max_n = min (tem)-1 tem = [] else: tem...
0
843
E
Maximum Flow
PROGRAMMING
3,000
[ "flows", "graphs" ]
null
null
You are given a directed graph, consisting of *n* vertices and *m* edges. The vertices *s* and *t* are marked as source and sink correspondingly. Additionally, there are no edges ending at *s* and there are no edges beginning in *t*. The graph was constructed in a following way: initially each edge had capacity *c**i*...
The first line of input data contains four positive integers *n*,<=*m*,<=*s*,<=*t* (2<=≤<=*n*<=≤<=100, 1<=≤<=*m*<=≤<=1000, 1<=≤<=*s*,<=*t*<=≤<=*n*, *s*<=≠<=*t*) — the number of vertices, the number of edges, index of source vertex and index of sink vertex correspondingly. Each of next *m* lines of input data contain n...
In the first line print single non-negative integer *k* — minimum number of edges, which should be saturated in maximum flow. In each of next *m* lines print two integers *f**i*,<=*c**i* (1<=≤<=*c**i*<=≤<=109, 0<=≤<=*f**i*<=≤<=*c**i*) — the flow value passing through edge *i* and capacity of edge *i*. This data shou...
[ "5 6 1 5\n1 2 1\n2 3 1\n3 5 1\n1 4 1\n4 3 0\n4 5 1\n" ]
[ "2\n3 3\n3 8\n3 4\n4 4\n0 5\n4 9\n" ]
The illustration for second sample case. The saturated edges are marked dark, while edges with *g*<sub class="lower-index">*i*</sub> = 0 are marked with dotted line. The integer on edge is the index of this edge in input list. <img class="tex-graphics" src="https://espresso.codeforces.com/a80cb6067d5d58458863f416f6ac95...
2,250
[]
1,678,187,574
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
77
2,867,200
from collections import deque n, m, s, t = map(int, input().split()) adj = [[] for _ in range(n)] flow = [[0] * n for _ in range(n)] capacity = [[0] * n for _ in range(n)] edges = [] for i in range(m): u, v, gi = map(int, input().split()) if gi == 1: edges.append((u-1, v-1)) capacity[u-1][v-1]...
Title: Maximum Flow Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a directed graph, consisting of *n* vertices and *m* edges. The vertices *s* and *t* are marked as source and sink correspondingly. Additionally, there are no edges ending at *s* and there are no edges beginn...
```python from collections import deque n, m, s, t = map(int, input().split()) adj = [[] for _ in range(n)] flow = [[0] * n for _ in range(n)] capacity = [[0] * n for _ in range(n)] edges = [] for i in range(m): u, v, gi = map(int, input().split()) if gi == 1: edges.append((u-1, v-1)) capacity...
-1
166
E
Tetrahedron
PROGRAMMING
1,500
[ "dp", "math", "matrices" ]
null
null
You are given a tetrahedron. Let's mark its vertices with letters *A*, *B*, *C* and *D* correspondingly. An ant is standing in the vertex *D* of the tetrahedron. The ant is quite active and he wouldn't stay idle. At each moment of time he makes a step from one vertex to another one along some edge of the tetrahedron. ...
The first line contains the only integer *n* (1<=≤<=*n*<=≤<=107) — the required length of the cyclic path.
Print the only integer — the required number of ways modulo 1000000007 (109<=+<=7).
[ "2\n", "4\n" ]
[ "3\n", "21\n" ]
The required paths in the first sample are: - *D* - *A* - *D* - *D* - *B* - *D* - *D* - *C* - *D*
1,000
[ { "input": "2", "output": "3" }, { "input": "4", "output": "21" }, { "input": "1", "output": "0" }, { "input": "3", "output": "6" }, { "input": "5", "output": "60" }, { "input": "6", "output": "183" }, { "input": "7", "output": "546" ...
1,648,613,889
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
12
2,000
819,200
n = int(input()) v1 = 1 v2 = 2 for _ in range(n-2): v1, v2 = v2, v1 * 3 + 2 * v2 if n == 1: print(0) else: print(v1 * 3 % 1000000007)
Title: Tetrahedron Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a tetrahedron. Let's mark its vertices with letters *A*, *B*, *C* and *D* correspondingly. An ant is standing in the vertex *D* of the tetrahedron. The ant is quite active and he wouldn't stay idle. At each m...
```python n = int(input()) v1 = 1 v2 = 2 for _ in range(n-2): v1, v2 = v2, v1 * 3 + 2 * v2 if n == 1: print(0) else: print(v1 * 3 % 1000000007) ```
0
79
A
Bus Game
PROGRAMMING
1,200
[ "greedy" ]
A. Bus Game
2
256
After Fox Ciel won an onsite round of a programming contest, she took a bus to return to her castle. The fee of the bus was 220 yen. She met Rabbit Hanako in the bus. They decided to play the following game because they got bored in the bus. - Initially, there is a pile that contains *x* 100-yen coins and *y* 10-yen ...
The first line contains two integers *x* (0<=≤<=*x*<=≤<=106) and *y* (0<=≤<=*y*<=≤<=106), separated by a single space.
If Ciel wins, print "Ciel". Otherwise, print "Hanako".
[ "2 2\n", "3 22\n" ]
[ "Ciel\n", "Hanako\n" ]
In the first turn (Ciel's turn), she will choose 2 100-yen coins and 2 10-yen coins. In the second turn (Hanako's turn), she will choose 1 100-yen coin and 12 10-yen coins. In the third turn (Ciel's turn), she can't pay exactly 220 yen, so Ciel will lose.
500
[ { "input": "2 2", "output": "Ciel" }, { "input": "3 22", "output": "Hanako" }, { "input": "0 22", "output": "Ciel" }, { "input": "1000 1000", "output": "Ciel" }, { "input": "0 0", "output": "Hanako" }, { "input": "0 21", "output": "Hanako" }, {...
1,368,830,686
2,147,483,647
Python 3
OK
TESTS
99
125
102,400
import re import itertools from collections import Counter class Task: x, y = 0, 0 answer = "" def getData(self): self.x, self.y = [int(x) for x in input().split(' ')] #inFile = open('input.txt', 'r') #inFile.readline().rstrip() #self.childs = inFile.readline().rstrip() ...
Title: Bus Game Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: After Fox Ciel won an onsite round of a programming contest, she took a bus to return to her castle. The fee of the bus was 220 yen. She met Rabbit Hanako in the bus. They decided to play the following game because they got bored ...
```python import re import itertools from collections import Counter class Task: x, y = 0, 0 answer = "" def getData(self): self.x, self.y = [int(x) for x in input().split(' ')] #inFile = open('input.txt', 'r') #inFile.readline().rstrip() #self.childs = inFile.readline()....
3.968559
722
B
Verse Pattern
PROGRAMMING
1,200
[ "implementation", "strings" ]
null
null
You are given a text consisting of *n* lines. Each line contains some space-separated words, consisting of lowercase English letters. We define a syllable as a string that contains exactly one vowel and any arbitrary number (possibly none) of consonants. In English alphabet following letters are considered to be vowel...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the text. The second line contains integers *p*1,<=...,<=*p**n* (0<=≤<=*p**i*<=≤<=100) — the verse pattern. Next *n* lines contain the text itself. Text consists of lowercase English letters and spaces. It's guarant...
If the given text matches the given verse pattern, then print "YES" (without quotes) in the only line of the output. Otherwise, print "NO" (without quotes).
[ "3\n2 2 3\nintel\ncode\nch allenge\n", "4\n1 2 3 1\na\nbcdefghi\njklmnopqrstu\nvwxyz\n", "4\n13 11 15 15\nto be or not to be that is the question\nwhether tis nobler in the mind to suffer\nthe slings and arrows of outrageous fortune\nor to take arms against a sea of troubles\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first sample, one can split words into syllables in the following way: Since the word "ch" in the third line doesn't contain vowels, we can ignore it. As the result we get 2 syllabels in first two lines and 3 syllables in the third one.
500
[ { "input": "3\n2 2 3\nintel\ncode\nch allenge", "output": "YES" }, { "input": "4\n1 2 3 1\na\nbcdefghi\njklmnopqrstu\nvwxyz", "output": "NO" }, { "input": "4\n13 11 15 15\nto be or not to be that is the question\nwhether tis nobler in the mind to suffer\nthe slings and arrows of outrageo...
1,475,332,378
1,678
Python 3
WRONG_ANSWER
PRETESTS
0
46
0
n = int(input()) A = list(map(int,input().split())) B = [input() for i in range(n)] k = 0 for i in range(len(B)): for j in range(len(B[i])): if B[i][j]=='a' or B[i][j]=='e' or B[i][j]=='i' or B[i][j]=='o' or B[i][j]=='u' or B[i][j]=='y': k+=1 print(k) if k==A[i]: ...
Title: Verse Pattern Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a text consisting of *n* lines. Each line contains some space-separated words, consisting of lowercase English letters. We define a syllable as a string that contains exactly one vowel and any arbitrary num...
```python n = int(input()) A = list(map(int,input().split())) B = [input() for i in range(n)] k = 0 for i in range(len(B)): for j in range(len(B[i])): if B[i][j]=='a' or B[i][j]=='e' or B[i][j]=='i' or B[i][j]=='o' or B[i][j]=='u' or B[i][j]=='y': k+=1 print(k) if k==A[i...
0
339
A
Helpful Maths
PROGRAMMING
800
[ "greedy", "implementation", "sortings", "strings" ]
null
null
Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To make the calculation easier, the sum only contains numbers 1, 2 and 3. Still, that isn't enough for Xe...
The first line contains a non-empty string *s* — the sum Xenia needs to count. String *s* contains no spaces. It only contains digits and characters "+". Besides, string *s* is a correct sum of numbers 1, 2 and 3. String *s* is at most 100 characters long.
Print the new sum that Xenia can count.
[ "3+2+1\n", "1+1+3+1+3\n", "2\n" ]
[ "1+2+3\n", "1+1+1+3+3\n", "2\n" ]
none
500
[ { "input": "3+2+1", "output": "1+2+3" }, { "input": "1+1+3+1+3", "output": "1+1+1+3+3" }, { "input": "2", "output": "2" }, { "input": "2+2+1+1+3", "output": "1+1+2+2+3" }, { "input": "2+1+2+2+2+3+1+3+1+2", "output": "1+1+1+2+2+2+2+2+3+3" }, { "input": ...
1,697,361,134
2,147,483,647
Python 3
OK
TESTS
21
92
0
s=input() li=[] for i in range(0,len(s),2): li.append(int(s[i])) li.sort() string="" for i in li: string+=str(i) string+="+" print(string[0:len(string)-1])
Title: Helpful Maths Time Limit: None seconds Memory Limit: None megabytes Problem Description: Xenia the beginner mathematician is a third year student at elementary school. She is now learning the addition operation. The teacher has written down the sum of multiple numbers. Pupils should calculate the sum. To mak...
```python s=input() li=[] for i in range(0,len(s),2): li.append(int(s[i])) li.sort() string="" for i in li: string+=str(i) string+="+" print(string[0:len(string)-1]) ```
3
723
A
The New Year: Meeting Friends
PROGRAMMING
800
[ "implementation", "math", "sortings" ]
null
null
There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They plan to celebrate the New Year together, so they need to meet at one point. What is the minimum total distance they...
The first line of the input contains three distinct integers *x*1, *x*2 and *x*3 (1<=≤<=*x*1,<=*x*2,<=*x*3<=≤<=100) — the coordinates of the houses of the first, the second and the third friends respectively.
Print one integer — the minimum total distance the friends need to travel in order to meet together.
[ "7 1 4\n", "30 20 10\n" ]
[ "6\n", "20\n" ]
In the first sample, friends should meet at the point 4. Thus, the first friend has to travel the distance of 3 (from the point 7 to the point 4), the second friend also has to travel the distance of 3 (from the point 1 to the point 4), while the third friend should not go anywhere because he lives at the point 4.
500
[ { "input": "7 1 4", "output": "6" }, { "input": "30 20 10", "output": "20" }, { "input": "1 4 100", "output": "99" }, { "input": "100 1 91", "output": "99" }, { "input": "1 45 100", "output": "99" }, { "input": "1 2 3", "output": "2" }, { "...
1,689,787,486
2,147,483,647
Python 3
OK
TESTS
48
46
0
s=list(map(int,input().split())) s.sort() print(s[2]-s[0])
Title: The New Year: Meeting Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They ...
```python s=list(map(int,input().split())) s.sort() print(s[2]-s[0]) ```
3
588
A
Duff and Meat
PROGRAMMING
900
[ "greedy" ]
null
null
Duff is addicted to meat! Malek wants to keep her happy for *n* days. In order to be happy in *i*-th day, she needs to eat exactly *a**i* kilograms of meat. There is a big shop uptown and Malek wants to buy meat for her from there. In *i*-th day, they sell meat for *p**i* dollars per kilogram. Malek knows all numbers ...
The first line of input contains integer *n* (1<=≤<=*n*<=≤<=105), the number of days. In the next *n* lines, *i*-th line contains two integers *a**i* and *p**i* (1<=≤<=*a**i*,<=*p**i*<=≤<=100), the amount of meat Duff needs and the cost of meat in that day.
Print the minimum money needed to keep Duff happy for *n* days, in one line.
[ "3\n1 3\n2 2\n3 1\n", "3\n1 3\n2 1\n3 2\n" ]
[ "10\n", "8\n" ]
In the first sample case: An optimal way would be to buy 1 kg on the first day, 2 kg on the second day and 3 kg on the third day. In the second sample case: An optimal way would be to buy 1 kg on the first day and 5 kg (needed meat for the second and third day) on the second day.
750
[ { "input": "3\n1 3\n2 2\n3 1", "output": "10" }, { "input": "3\n1 3\n2 1\n3 2", "output": "8" }, { "input": "1\n39 52", "output": "2028" }, { "input": "2\n25 56\n94 17", "output": "2998" }, { "input": "5\n39 21\n95 89\n73 90\n9 55\n85 32", "output": "6321" }...
1,677,176,796
2,147,483,647
PyPy 3-64
OK
TESTS
30
77
3,072,000
# my name is Abduaziz import sys input = sys.stdin.readline n = int(input()) ans = 0 m = 10000000000000000000000000000000000000000000000000000000000 for i in range(n): a, p = map(int, input().split()) m = min(m, p) ans += m * a print(ans)
Title: Duff and Meat Time Limit: None seconds Memory Limit: None megabytes Problem Description: Duff is addicted to meat! Malek wants to keep her happy for *n* days. In order to be happy in *i*-th day, she needs to eat exactly *a**i* kilograms of meat. There is a big shop uptown and Malek wants to buy meat for her ...
```python # my name is Abduaziz import sys input = sys.stdin.readline n = int(input()) ans = 0 m = 10000000000000000000000000000000000000000000000000000000000 for i in range(n): a, p = map(int, input().split()) m = min(m, p) ans += m * a print(ans) ```
3
32
B
Borze
PROGRAMMING
800
[ "expression parsing", "implementation" ]
B. Borze
2
256
Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary number given its representation in Borze alphabet.
The first line contains a number in Borze code. The length of the string is between 1 and 200 characters. It's guaranteed that the given string is a valid Borze code of some ternary number (this number can have leading zeroes).
Output the decoded ternary number. It can have leading zeroes.
[ ".-.--\n", "--.\n", "-..-.--\n" ]
[ "012", "20", "1012" ]
none
1,000
[ { "input": ".-.--", "output": "012" }, { "input": "--.", "output": "20" }, { "input": "-..-.--", "output": "1012" }, { "input": "---..", "output": "210" }, { "input": "..--.---..", "output": "0020210" }, { "input": "-.....----.", "output": "1000022...
1,658,179,066
2,147,483,647
PyPy 3-64
OK
TESTS
30
124
0
borze = input() borze = borze.replace('--', '2') borze=borze.replace('-.', '1') borze=borze.replace('.', '0') print(borze)
Title: Borze Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary ...
```python borze = input() borze = borze.replace('--', '2') borze=borze.replace('-.', '1') borze=borze.replace('.', '0') print(borze) ```
3.969
180
C
Letter
PROGRAMMING
1,400
[ "dp" ]
null
null
Patrick has just finished writing a message to his sweetheart Stacey when he noticed that the message didn't look fancy. Patrick was nervous while writing the message, so some of the letters there were lowercase and some of them were uppercase. Patrick believes that a message is fancy if any uppercase letter stands to...
The only line of the input contains a non-empty string consisting of uppercase and lowercase letters. The string's length does not exceed 105.
Print a single number — the least number of actions needed to make the message fancy.
[ "PRuvetSTAaYA\n", "OYPROSTIYAOPECHATALSYAPRIVETSTASYA\n", "helloworld\n" ]
[ "5\n", "0\n", "0\n" ]
none
0
[ { "input": "PRuvetSTAaYA", "output": "5" }, { "input": "OYPROSTIYAOPECHATALSYAPRIVETSTASYA", "output": "0" }, { "input": "helloworld", "output": "0" }, { "input": "P", "output": "0" }, { "input": "t", "output": "0" }, { "input": "XdJ", "output": "1...
1,686,068,709
2,147,483,647
PyPy 3-64
OK
TESTS
40
154
2,969,600
s = input() a = [0] * len(s) big = 0 small = 0 for x in s: if 'A' <= x and x <= 'Z': big += 1 ans = big for x in s: if 'A' <= x and x <= 'Z': big -= 1 else: small += 1 ans = min(ans, big + small) print(ans)
Title: Letter Time Limit: None seconds Memory Limit: None megabytes Problem Description: Patrick has just finished writing a message to his sweetheart Stacey when he noticed that the message didn't look fancy. Patrick was nervous while writing the message, so some of the letters there were lowercase and some of them...
```python s = input() a = [0] * len(s) big = 0 small = 0 for x in s: if 'A' <= x and x <= 'Z': big += 1 ans = big for x in s: if 'A' <= x and x <= 'Z': big -= 1 else: small += 1 ans = min(ans, big + small) print(ans) ```
3
218
A
Mountain Scenery
PROGRAMMING
1,100
[ "brute force", "constructive algorithms", "implementation" ]
null
null
Little Bolek has found a picture with *n* mountain peaks painted on it. The *n* painted peaks are represented by a non-closed polyline, consisting of 2*n* segments. The segments go through 2*n*<=+<=1 points with coordinates (1,<=*y*1), (2,<=*y*2), ..., (2*n*<=+<=1,<=*y*2*n*<=+<=1), with the *i*-th segment connecting th...
The first line contains two space-separated integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=100). The next line contains 2*n*<=+<=1 space-separated integers *r*1,<=*r*2,<=...,<=*r*2*n*<=+<=1 (0<=≤<=*r**i*<=≤<=100) — the *y* coordinates of the polyline vertices on Bolek's picture. It is guaranteed that we can obtain the gi...
Print 2*n*<=+<=1 integers *y*1,<=*y*2,<=...,<=*y*2*n*<=+<=1 — the *y* coordinates of the vertices of the polyline on the initial picture. If there are multiple answers, output any one of them.
[ "3 2\n0 5 3 5 1 5 2\n", "1 1\n0 2 0\n" ]
[ "0 5 3 4 1 4 2 \n", "0 1 0 \n" ]
none
500
[ { "input": "3 2\n0 5 3 5 1 5 2", "output": "0 5 3 4 1 4 2 " }, { "input": "1 1\n0 2 0", "output": "0 1 0 " }, { "input": "1 1\n1 100 0", "output": "1 99 0 " }, { "input": "3 1\n0 1 0 1 0 2 0", "output": "0 1 0 1 0 1 0 " }, { "input": "3 1\n0 1 0 2 0 1 0", "out...
1,609,161,071
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n, k = map(int, input().split()) r = list(map(int, input().split())) c=1 lst = [] for i in range(2, 2*n+1, 2): if i %2 == 0: r[i-1] -=1 if c ==k: break c += 1 for i in r: print(int (i)
Title: Mountain Scenery Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Bolek has found a picture with *n* mountain peaks painted on it. The *n* painted peaks are represented by a non-closed polyline, consisting of 2*n* segments. The segments go through 2*n*<=+<=1 points with coordi...
```python n, k = map(int, input().split()) r = list(map(int, input().split())) c=1 lst = [] for i in range(2, 2*n+1, 2): if i %2 == 0: r[i-1] -=1 if c ==k: break c += 1 for i in r: print(int (i) ```
-1
263
A
Beautiful Matrix
PROGRAMMING
800
[ "implementation" ]
null
null
You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to right. In one move, you are allowed to apply one of the two following transformations to the matrix: 1....
The input consists of five lines, each line contains five integers: the *j*-th integer in the *i*-th line of the input represents the element of the matrix that is located on the intersection of the *i*-th row and the *j*-th column. It is guaranteed that the matrix consists of 24 zeroes and a single number one.
Print a single integer — the minimum number of moves needed to make the matrix beautiful.
[ "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n", "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n" ]
[ "3\n", "1\n" ]
none
500
[ { "input": "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "3" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "1" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 0 1 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "0" }, { "input": "0 0 0 0 0...
1,696,422,892
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
3
122
0
for i in range(4): l=[int(x) for x in input().split()] if 1 in l: res=abs(l.index(1)+1-3)+abs(i+1-3) print(res)
Title: Beautiful Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to ri...
```python for i in range(4): l=[int(x) for x in input().split()] if 1 in l: res=abs(l.index(1)+1-3)+abs(i+1-3) print(res) ```
-1
818
A
Diplomas and Certificates
PROGRAMMING
800
[ "implementation", "math" ]
null
null
There are *n* students who have taken part in an olympiad. Now it's time to award the students. Some of them will receive diplomas, some wiil get certificates, and others won't receive anything. Students with diplomas and certificates are called winners. But there are some rules of counting the number of diplomas and ...
The first (and the only) line of input contains two integers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=1012), where *n* is the number of students and *k* is the ratio between the number of certificates and the number of diplomas.
Output three numbers: the number of students with diplomas, the number of students with certificates and the number of students who are not winners in case when the number of winners is maximum possible. It's possible that there are no winners.
[ "18 2\n", "9 10\n", "1000000000000 5\n", "1000000000000 499999999999\n" ]
[ "3 6 9\n", "0 0 9\n", "83333333333 416666666665 500000000002\n", "1 499999999999 500000000000\n" ]
none
0
[ { "input": "18 2", "output": "3 6 9" }, { "input": "9 10", "output": "0 0 9" }, { "input": "1000000000000 5", "output": "83333333333 416666666665 500000000002" }, { "input": "1000000000000 499999999999", "output": "1 499999999999 500000000000" }, { "input": "1 1",...
1,642,050,210
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
n, k = map(int, input().split()) dip = 0 cer = 0 win = n // 2 for i in range(1, win): dip = i cer = win - i if cer % dip == 0: break losers = n - dip - cer print(dip, cer, losers)
Title: Diplomas and Certificates Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* students who have taken part in an olympiad. Now it's time to award the students. Some of them will receive diplomas, some wiil get certificates, and others won't receive anything. Students with...
```python n, k = map(int, input().split()) dip = 0 cer = 0 win = n // 2 for i in range(1, win): dip = i cer = win - i if cer % dip == 0: break losers = n - dip - cer print(dip, cer, losers) ```
0
515
A
Drazil and Date
PROGRAMMING
1,000
[ "math" ]
null
null
Someday, Drazil wanted to go on date with Varda. Drazil and Varda live on Cartesian plane. Drazil's home is located in point (0,<=0) and Varda's home is located in point (*a*,<=*b*). In each step, he can move in a unit distance in horizontal or vertical direction. In other words, from position (*x*,<=*y*) he can go to ...
You are given three integers *a*, *b*, and *s* (<=-<=109<=≤<=*a*,<=*b*<=≤<=109, 1<=≤<=*s*<=≤<=2·109) in a single line.
If you think Drazil made a mistake and it is impossible to take exactly *s* steps and get from his home to Varda's home, print "No" (without quotes). Otherwise, print "Yes".
[ "5 5 11\n", "10 15 25\n", "0 5 1\n", "0 0 2\n" ]
[ "No\n", "Yes\n", "No\n", "Yes\n" ]
In fourth sample case one possible route is: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/0d30660ddf6eb6c64ffd071055a4e8ddd016cde5.png" style="max-width: 100.0%;max-height: 100.0%;"/>.
500
[ { "input": "5 5 11", "output": "No" }, { "input": "10 15 25", "output": "Yes" }, { "input": "0 5 1", "output": "No" }, { "input": "0 0 2", "output": "Yes" }, { "input": "999999999 999999999 2000000000", "output": "Yes" }, { "input": "-606037695 9983201...
1,623,426,906
2,147,483,647
Python 3
OK
TESTS
40
77
0
a=input().split() b=abs(int(a[1])) s=abs(int(a[2])) a=abs(int(a[0])) if((a+b)==s): print("YES") elif (a+b)<s: s-=a+b if(s%2==0): print("YES") else: print("NO") else: print("NO")
Title: Drazil and Date Time Limit: None seconds Memory Limit: None megabytes Problem Description: Someday, Drazil wanted to go on date with Varda. Drazil and Varda live on Cartesian plane. Drazil's home is located in point (0,<=0) and Varda's home is located in point (*a*,<=*b*). In each step, he can move in a unit ...
```python a=input().split() b=abs(int(a[1])) s=abs(int(a[2])) a=abs(int(a[0])) if((a+b)==s): print("YES") elif (a+b)<s: s-=a+b if(s%2==0): print("YES") else: print("NO") else: print("NO") ```
3
483
B
Friends and Presents
PROGRAMMING
1,800
[ "binary search", "math" ]
null
null
You have two friends. You want to present each of them several positive integers. You want to present *cnt*1 numbers to the first friend and *cnt*2 numbers to the second friend. Moreover, you want all presented numbers to be distinct, that also means that no number should be presented to both friends. In addition, the...
The only line contains four positive integers *cnt*1, *cnt*2, *x*, *y* (1<=≤<=*cnt*1,<=*cnt*2<=&lt;<=109; *cnt*1<=+<=*cnt*2<=≤<=109; 2<=≤<=*x*<=&lt;<=*y*<=≤<=3·104) — the numbers that are described in the statement. It is guaranteed that numbers *x*, *y* are prime.
Print a single integer — the answer to the problem.
[ "3 1 2 3\n", "1 3 2 3\n" ]
[ "5\n", "4\n" ]
In the first sample you give the set of numbers {1, 3, 5} to the first friend and the set of numbers {2} to the second friend. Note that if you give set {1, 3, 5} to the first friend, then we cannot give any of the numbers 1, 3, 5 to the second friend. In the second sample you give the set of numbers {3} to the first...
1,000
[ { "input": "3 1 2 3", "output": "5" }, { "input": "1 3 2 3", "output": "4" }, { "input": "916200 69682 2 3", "output": "1832399" }, { "input": "808351 17767 433 509", "output": "826121" }, { "input": "8851 901 20897 26183", "output": "9752" }, { "input...
1,689,494,738
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
8
1,000
0
import sys #sys.setrecursionlimit(10**7) input = sys.stdin.readline ############ ---- Input Functions ---- ############ def inp(): return(int(input())) def inlt(): return(list(map(int,input().split()))) def insr(): s = input() return(list(s[:len(s) - 1])) def invr(): return(map(int,inp...
Title: Friends and Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have two friends. You want to present each of them several positive integers. You want to present *cnt*1 numbers to the first friend and *cnt*2 numbers to the second friend. Moreover, you want all presented num...
```python import sys #sys.setrecursionlimit(10**7) input = sys.stdin.readline ############ ---- Input Functions ---- ############ def inp(): return(int(input())) def inlt(): return(list(map(int,input().split()))) def insr(): s = input() return(list(s[:len(s) - 1])) def invr(): return(m...
0
808
A
Lucky Year
PROGRAMMING
900
[ "implementation" ]
null
null
Apart from having lots of holidays throughout the year, residents of Berland also have whole lucky years. Year is considered lucky if it has no more than 1 non-zero digit in its number. So years 100, 40000, 5 are lucky and 12, 3001 and 12345 are not. You are given current year in Berland. Your task is to find how long...
The first line contains integer number *n* (1<=≤<=*n*<=≤<=109) — current year in Berland.
Output amount of years from the current year to the next lucky one.
[ "4\n", "201\n", "4000\n" ]
[ "1\n", "99\n", "1000\n" ]
In the first example next lucky year is 5. In the second one — 300. In the third — 5000.
0
[ { "input": "4", "output": "1" }, { "input": "201", "output": "99" }, { "input": "4000", "output": "1000" }, { "input": "9", "output": "1" }, { "input": "10", "output": "10" }, { "input": "1", "output": "1" }, { "input": "100000000", "ou...
1,670,766,274
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
#yahia ali othman #id:120210302 #section:14 def is_lucky(num): condition=[] str_num=str(num) for number in str_num: if int(number)!=0: condition.append(number) if len(condition)>1: return(False) elif len(condition)==1: return(True) next_year=int(input...
Title: Lucky Year Time Limit: None seconds Memory Limit: None megabytes Problem Description: Apart from having lots of holidays throughout the year, residents of Berland also have whole lucky years. Year is considered lucky if it has no more than 1 non-zero digit in its number. So years 100, 40000, 5 are lucky and 1...
```python #yahia ali othman #id:120210302 #section:14 def is_lucky(num): condition=[] str_num=str(num) for number in str_num: if int(number)!=0: condition.append(number) if len(condition)>1: return(False) elif len(condition)==1: return(True) next_year...
-1
274
A
k-Multiple Free Set
PROGRAMMING
1,500
[ "binary search", "greedy", "sortings" ]
null
null
A *k*-multiple free set is a set of integers where there is no pair of integers where one is equal to another integer multiplied by *k*. That is, there are no two integers *x* and *y* (*x*<=&lt;<=*y*) from the set, such that *y*<==<=*x*·*k*. You're given a set of *n* distinct positive integers. Your task is to find th...
The first line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=105,<=1<=≤<=*k*<=≤<=109). The next line contains a list of *n* distinct positive integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109). All the numbers in the lines are separated by single spaces.
On the only line of the output print the size of the largest *k*-multiple free subset of {*a*1,<=*a*2,<=...,<=*a**n*}.
[ "6 2\n2 3 6 5 4 10\n" ]
[ "3\n" ]
In the sample input one of the possible maximum 2-multiple free subsets is {4, 5, 6}.
500
[ { "input": "6 2\n2 3 6 5 4 10", "output": "3" }, { "input": "10 2\n1 2 3 4 5 6 7 8 9 10", "output": "6" }, { "input": "1 1\n1", "output": "1" }, { "input": "100 2\n191 17 61 40 77 95 128 88 26 69 79 10 131 106 142 152 68 39 182 53 83 81 6 89 65 148 33 22 5 47 107 121 52 163 1...
1,445,327,216
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
2,000
8,089,600
# coding=utf-8 def main(): n, k = list(map(int, input().split(' '))) a = list(map(int, input().split(' '))) a.sort() s = [] for i in a: if i / k not in s or i % k != 0: s.append(i) print(len(s)) if __name__ == '__main__': main()
Title: k-Multiple Free Set Time Limit: None seconds Memory Limit: None megabytes Problem Description: A *k*-multiple free set is a set of integers where there is no pair of integers where one is equal to another integer multiplied by *k*. That is, there are no two integers *x* and *y* (*x*<=&lt;<=*y*) from the set, ...
```python # coding=utf-8 def main(): n, k = list(map(int, input().split(' '))) a = list(map(int, input().split(' '))) a.sort() s = [] for i in a: if i / k not in s or i % k != 0: s.append(i) print(len(s)) if __name__ == '__main__': main() ```
0
1,006
A
Adjacent Replacements
PROGRAMMING
800
[ "implementation" ]
null
null
Mishka got an integer array $a$ of length $n$ as a birthday present (what a surprise!). Mishka doesn't like this present and wants to change it somehow. He has invented an algorithm and called it "Mishka's Adjacent Replacements Algorithm". This algorithm can be represented as a sequence of steps: - Replace each occu...
The first line of the input contains one integer number $n$ ($1 \le n \le 1000$) — the number of elements in Mishka's birthday present (surprisingly, an array). The second line of the input contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 10^9$) — the elements of the array.
Print $n$ integers — $b_1, b_2, \dots, b_n$, where $b_i$ is the final value of the $i$-th element of the array after applying "Mishka's Adjacent Replacements Algorithm" to the array $a$. Note that you cannot change the order of elements in the array.
[ "5\n1 2 4 5 10\n", "10\n10000 10 50605065 1 5 89 5 999999999 60506056 1000000000\n" ]
[ "1 1 3 5 9\n", "9999 9 50605065 1 5 89 5 999999999 60506055 999999999\n" ]
The first example is described in the problem statement.
0
[ { "input": "5\n1 2 4 5 10", "output": "1 1 3 5 9" }, { "input": "10\n10000 10 50605065 1 5 89 5 999999999 60506056 1000000000", "output": "9999 9 50605065 1 5 89 5 999999999 60506055 999999999" }, { "input": "1\n999999999", "output": "999999999" }, { "input": "1\n1000000000",...
1,668,475,759
2,147,483,647
PyPy 3
OK
TESTS
18
93
1,638,400
n = int(input()) a = input().split() for i in a: i = int(i) if i % 2 == 0: i -= 1 print(i, end=" ")
Title: Adjacent Replacements Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mishka got an integer array $a$ of length $n$ as a birthday present (what a surprise!). Mishka doesn't like this present and wants to change it somehow. He has invented an algorithm and called it "Mishka's Adjace...
```python n = int(input()) a = input().split() for i in a: i = int(i) if i % 2 == 0: i -= 1 print(i, end=" ") ```
3
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,589,518
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
def watermelon(weight): return weight % 2;
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 watermelon(weight): return weight % 2; ```
0
166
E
Tetrahedron
PROGRAMMING
1,500
[ "dp", "math", "matrices" ]
null
null
You are given a tetrahedron. Let's mark its vertices with letters *A*, *B*, *C* and *D* correspondingly. An ant is standing in the vertex *D* of the tetrahedron. The ant is quite active and he wouldn't stay idle. At each moment of time he makes a step from one vertex to another one along some edge of the tetrahedron. ...
The first line contains the only integer *n* (1<=≤<=*n*<=≤<=107) — the required length of the cyclic path.
Print the only integer — the required number of ways modulo 1000000007 (109<=+<=7).
[ "2\n", "4\n" ]
[ "3\n", "21\n" ]
The required paths in the first sample are: - *D* - *A* - *D* - *D* - *B* - *D* - *D* - *C* - *D*
1,000
[ { "input": "2", "output": "3" }, { "input": "4", "output": "21" }, { "input": "1", "output": "0" }, { "input": "3", "output": "6" }, { "input": "5", "output": "60" }, { "input": "6", "output": "183" }, { "input": "7", "output": "546" ...
1,696,667,553
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
92
0
gens = int(input()) ds = 1 if gens == 1 else 0 if gens == 2 else 6 ds = ds if gens <= 2 else (ds//(gens%2+1))*9**((gens-3)//2) + 6*(9**((gens-3)//2)-1)//8*(1 if gens%2 == 0 else -1) print(ds%1000000007)
Title: Tetrahedron Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a tetrahedron. Let's mark its vertices with letters *A*, *B*, *C* and *D* correspondingly. An ant is standing in the vertex *D* of the tetrahedron. The ant is quite active and he wouldn't stay idle. At each m...
```python gens = int(input()) ds = 1 if gens == 1 else 0 if gens == 2 else 6 ds = ds if gens <= 2 else (ds//(gens%2+1))*9**((gens-3)//2) + 6*(9**((gens-3)//2)-1)//8*(1 if gens%2 == 0 else -1) print(ds%1000000007) ```
0
265
B
Roadside Trees (Simplified Edition)
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
Squirrel Liss loves nuts. There are *n* trees (numbered 1 to *n* from west to east) along a street and there is a delicious nut on the top of each tree. The height of the tree *i* is *h**i*. Liss wants to eat all nuts. Now Liss is on the root of the tree with the number 1. In one second Liss can perform one of the fol...
The first line contains an integer *n* (1<=<=≤<=<=*n*<=≤<=105) — the number of trees. Next *n* lines contains the height of trees: *i*-th line contains an integer *h**i* (1<=≤<=*h**i*<=≤<=104) — the height of the tree with the number *i*.
Print a single integer — the minimal time required to eat all nuts in seconds.
[ "2\n1\n2\n", "5\n2\n1\n2\n1\n1\n" ]
[ "5\n", "14\n" ]
none
1,000
[ { "input": "2\n1\n2", "output": "5" }, { "input": "5\n2\n1\n2\n1\n1", "output": "14" }, { "input": "1\n1", "output": "2" } ]
1,596,184,668
2,147,483,647
Python 3
OK
TESTS
15
498
8,908,800
n = int(input()) a = [0] * n for i in range(n): a[i] = int(input()) ans = 0 prev = 0 for i in range(n): if prev >= a[i]: ans += 2 + prev - a[i] else: ans += 2 + a[i] - prev prev = a[i] print(ans - 1)
Title: Roadside Trees (Simplified Edition) Time Limit: None seconds Memory Limit: None megabytes Problem Description: Squirrel Liss loves nuts. There are *n* trees (numbered 1 to *n* from west to east) along a street and there is a delicious nut on the top of each tree. The height of the tree *i* is *h**i*. Liss wan...
```python n = int(input()) a = [0] * n for i in range(n): a[i] = int(input()) ans = 0 prev = 0 for i in range(n): if prev >= a[i]: ans += 2 + prev - a[i] else: ans += 2 + a[i] - prev prev = a[i] print(ans - 1) ```
3
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,609,236,526
2,147,483,647
PyPy 3
OK
TESTS
36
312
0
import math def nik(rud,pig): maxi=max(rud,pig) t=6-maxi+1 gcddd=math.gcd(t,6) print(str(t//gcddd)+'/'+str(6//gcddd)) rud,pig=map(int,input().split()) nik(rud,pig)
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python import math def nik(rud,pig): maxi=max(rud,pig) t=6-maxi+1 gcddd=math.gcd(t,6) print(str(t//gcddd)+'/'+str(6//gcddd)) rud,pig=map(int,input().split()) nik(rud,pig) ```
3.844
318
A
Even Odds
PROGRAMMING
900
[ "math" ]
null
null
Being a nonconformist, Volodya is displeased with the current state of things, particularly with the order of natural numbers (natural number is positive integer number). He is determined to rearrange them. But there are too many natural numbers, so Volodya decided to start with the first *n*. He writes down the follow...
The only line of input contains integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=1012). 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.
Print the number that will stand at the position number *k* after Volodya's manipulations.
[ "10 3\n", "7 7\n" ]
[ "5", "6" ]
In the first sample Volodya's sequence will look like this: {1, 3, 5, 7, 9, 2, 4, 6, 8, 10}. The third place in the sequence is therefore occupied by the number 5.
500
[ { "input": "10 3", "output": "5" }, { "input": "7 7", "output": "6" }, { "input": "7 1", "output": "1" }, { "input": "7 2", "output": "3" }, { "input": "8 5", "output": "2" }, { "input": "8 3", "output": "5" }, { "input": "8 4", "output...
1,699,362,973
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
154
0
l=input().split() n=int(l[0]);k=int(l[1]) if k<=(n//2+1): print(k*2-1) else: print((k-(n//2+1))*2)
Title: Even Odds Time Limit: None seconds Memory Limit: None megabytes Problem Description: Being a nonconformist, Volodya is displeased with the current state of things, particularly with the order of natural numbers (natural number is positive integer number). He is determined to rearrange them. But there are too ...
```python l=input().split() n=int(l[0]);k=int(l[1]) if k<=(n//2+1): print(k*2-1) else: print((k-(n//2+1))*2) ```
0
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,591,009,589
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
80
218
0
i = int (input()) a= 0 b= 0 c= 0 d= 0 while a < i : x,y,z = input().split() a+=1 b= b+int(x) c= c+int(y) d = d+int(z) p = b+c+d if p == 0 : print("YES") else : print ("NO")
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python i = int (input()) a= 0 b= 0 c= 0 d= 0 while a < i : x,y,z = input().split() a+=1 b= b+int(x) c= c+int(y) d = d+int(z) p = b+c+d if p == 0 : print("YES") else : print ("NO") ```
0
300
A
Array
PROGRAMMING
1,100
[ "brute force", "constructive algorithms", "implementation" ]
null
null
Vitaly has an array of *n* distinct integers. Vitaly wants to divide this array into three non-empty sets so as the following conditions hold: 1. The product of all numbers in the first set is less than zero (<=&lt;<=0). 1. The product of all numbers in the second set is greater than zero (<=&gt;<=0). 1. The produ...
The first line of the input contains integer *n* (3<=≤<=*n*<=≤<=100). The second line contains *n* space-separated distinct integers *a*1,<=*a*2,<=...,<=*a**n* (|*a**i*|<=≤<=103) — the array elements.
In the first line print integer *n*1 (*n*1<=&gt;<=0) — the number of elements in the first set. Then print *n*1 numbers — the elements that got to the first set. In the next line print integer *n*2 (*n*2<=&gt;<=0) — the number of elements in the second set. Then print *n*2 numbers — the elements that got to the second...
[ "3\n-1 2 0\n", "4\n-1 -2 -3 0\n" ]
[ "1 -1\n1 2\n1 0\n", "1 -1\n2 -3 -2\n1 0\n" ]
none
500
[ { "input": "3\n-1 2 0", "output": "1 -1\n1 2\n1 0" }, { "input": "4\n-1 -2 -3 0", "output": "1 -1\n2 -3 -2\n1 0" }, { "input": "5\n-1 -2 1 2 0", "output": "1 -1\n2 1 2\n2 0 -2" }, { "input": "100\n-64 -51 -75 -98 74 -26 -1 -8 -99 -76 -53 -80 -43 -22 -100 -62 -34 -5 -65 -81 -1...
1,613,996,291
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
122
307,200
n = int(input()) t = list(map(int, input().split())) p1 = [] p2 = [] p3 = [0] for elem in t: if elem > 0: p1.append(elem) elif elem < 0: p2.append(elem) if len(p1) == 0: p1 = p2[-2:] p2 = p2[:-2] if len(p2)%2 == 0: p3.append(p2[0]) p2 = p2[-len(p2)-1:] print(len(p2), e...
Title: Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vitaly has an array of *n* distinct integers. Vitaly wants to divide this array into three non-empty sets so as the following conditions hold: 1. The product of all numbers in the first set is less than zero (<=&lt;<=0). 1. T...
```python n = int(input()) t = list(map(int, input().split())) p1 = [] p2 = [] p3 = [0] for elem in t: if elem > 0: p1.append(elem) elif elem < 0: p2.append(elem) if len(p1) == 0: p1 = p2[-2:] p2 = p2[:-2] if len(p2)%2 == 0: p3.append(p2[0]) p2 = p2[-len(p2)-1:] print(...
0
245
A
System Administrator
PROGRAMMING
800
[ "implementation" ]
null
null
Polycarpus is a system administrator. There are two servers under his strict guidance — *a* and *b*. To stay informed about the servers' performance, Polycarpus executes commands "ping a" and "ping b". Each ping command sends exactly ten packets to the server specified in the argument of the command. Executing a progra...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=1000) — the number of commands Polycarpus has fulfilled. Each of the following *n* lines contains three integers — the description of the commands. The *i*-th of these lines contains three space-separated integers *t**i*, *x**i*, *y**i* (1<=≤<=*t**i*<=≤<=2; *x...
In the first line print string "LIVE" (without the quotes) if server *a* is "alive", otherwise print "DEAD" (without the quotes). In the second line print the state of server *b* in the similar format.
[ "2\n1 5 5\n2 6 4\n", "3\n1 0 10\n2 0 10\n1 10 0\n" ]
[ "LIVE\nLIVE\n", "LIVE\nDEAD\n" ]
Consider the first test case. There 10 packets were sent to server *a*, 5 of them reached it. Therefore, at least half of all packets sent to this server successfully reached it through the network. Overall there were 10 packets sent to server *b*, 6 of them reached it. Therefore, at least half of all packets sent to t...
0
[ { "input": "2\n1 5 5\n2 6 4", "output": "LIVE\nLIVE" }, { "input": "3\n1 0 10\n2 0 10\n1 10 0", "output": "LIVE\nDEAD" }, { "input": "10\n1 3 7\n2 4 6\n1 2 8\n2 5 5\n2 10 0\n2 10 0\n1 8 2\n2 2 8\n2 10 0\n1 1 9", "output": "DEAD\nLIVE" }, { "input": "11\n1 8 2\n1 6 4\n1 9 1\n1...
1,426,698,273
2,147,483,647
Python 3
OK
TESTS
13
124
0
n = int(input()) aSended = 0 bSended = 0 aPing = 0 bPing = 0 while n > 0: t, x, y = map(int, input().split()) if t == 1: aSended = aSended + 10 aPing = aPing + x elif t == 2: bSended = bSended + 10 bPing = bPing + x n = n - 1 if(int(aSended / 2) <= aPing...
Title: System Administrator Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus is a system administrator. There are two servers under his strict guidance — *a* and *b*. To stay informed about the servers' performance, Polycarpus executes commands "ping a" and "ping b". Each ping co...
```python n = int(input()) aSended = 0 bSended = 0 aPing = 0 bPing = 0 while n > 0: t, x, y = map(int, input().split()) if t == 1: aSended = aSended + 10 aPing = aPing + x elif t == 2: bSended = bSended + 10 bPing = bPing + x n = n - 1 if(int(aSended / 2...
3
225
A
Dice Tower
PROGRAMMING
1,100
[ "constructive algorithms", "greedy" ]
null
null
A dice is a cube, its faces contain distinct integers from 1 to 6 as black points. The sum of numbers at the opposite dice faces always equals 7. Please note that there are only two dice (these dices are mirror of each other) that satisfy the given constraints (both of them are shown on the picture on the left). Alice...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of dice in the tower. The second line contains an integer *x* (1<=≤<=*x*<=≤<=6) — the number Bob sees at the top of the tower. Next *n* lines contain two space-separated integers each: the *i*-th line contains numbers *a**i*,<=*b**i* (1<=≤<=...
Print "YES" (without the quotes), if it is possible to to uniquely identify the numbers on the faces of all the dice in the tower. If it is impossible, print "NO" (without the quotes).
[ "3\n6\n3 2\n5 4\n2 4\n", "3\n3\n2 6\n4 1\n5 3\n" ]
[ "YES", "NO" ]
none
500
[ { "input": "3\n6\n3 2\n5 4\n2 4", "output": "YES" }, { "input": "3\n3\n2 6\n4 1\n5 3", "output": "NO" }, { "input": "1\n3\n2 1", "output": "YES" }, { "input": "2\n2\n3 1\n1 5", "output": "NO" }, { "input": "3\n2\n1 4\n5 3\n6 4", "output": "NO" }, { "in...
1,614,228,018
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
154
0
n=int(input()) l=list(map(int,input().split())) L=[] for i in range(0,3): L.append(sum(l[i::3])) if L[0]==max(L): print('chest') elif L[1]==max(L): print('biceps') else: print('back')
Title: Dice Tower Time Limit: None seconds Memory Limit: None megabytes Problem Description: A dice is a cube, its faces contain distinct integers from 1 to 6 as black points. The sum of numbers at the opposite dice faces always equals 7. Please note that there are only two dice (these dices are mirror of each other...
```python n=int(input()) l=list(map(int,input().split())) L=[] for i in range(0,3): L.append(sum(l[i::3])) if L[0]==max(L): print('chest') elif L[1]==max(L): print('biceps') else: print('back') ```
0
318
A
Even Odds
PROGRAMMING
900
[ "math" ]
null
null
Being a nonconformist, Volodya is displeased with the current state of things, particularly with the order of natural numbers (natural number is positive integer number). He is determined to rearrange them. But there are too many natural numbers, so Volodya decided to start with the first *n*. He writes down the follow...
The only line of input contains integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=1012). 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.
Print the number that will stand at the position number *k* after Volodya's manipulations.
[ "10 3\n", "7 7\n" ]
[ "5", "6" ]
In the first sample Volodya's sequence will look like this: {1, 3, 5, 7, 9, 2, 4, 6, 8, 10}. The third place in the sequence is therefore occupied by the number 5.
500
[ { "input": "10 3", "output": "5" }, { "input": "7 7", "output": "6" }, { "input": "7 1", "output": "1" }, { "input": "7 2", "output": "3" }, { "input": "8 5", "output": "2" }, { "input": "8 3", "output": "5" }, { "input": "8 4", "output...
1,693,835,579
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
1,000
268,390,400
n, k = map(int, input().split()) print(([i for i in range(1, n+1, 2)] + [i for i in range(2, n+1, 2)])[k-1])
Title: Even Odds Time Limit: None seconds Memory Limit: None megabytes Problem Description: Being a nonconformist, Volodya is displeased with the current state of things, particularly with the order of natural numbers (natural number is positive integer number). He is determined to rearrange them. But there are too ...
```python n, k = map(int, input().split()) print(([i for i in range(1, n+1, 2)] + [i for i in range(2, n+1, 2)])[k-1]) ```
0
501
B
Misha and Changing Handles
PROGRAMMING
1,100
[ "data structures", "dsu", "strings" ]
null
null
Misha hacked the Codeforces site. Then he decided to let all the users change their handles. A user can now change his handle any number of times. But each new handle must not be equal to any handle that is already used or that was used at some point. Misha has a list of handle change requests. After completing the re...
The first line contains integer *q* (1<=≤<=*q*<=≤<=1000), the number of handle change requests. Next *q* lines contain the descriptions of the requests, one per line. Each query consists of two non-empty strings *old* and *new*, separated by a space. The strings consist of lowercase and uppercase Latin letters and di...
In the first line output the integer *n* — the number of users that changed their handles at least once. In the next *n* lines print the mapping between the old and the new handles of the users. Each of them must contain two strings, *old* and *new*, separated by a space, meaning that before the user had handle *old*,...
[ "5\nMisha ILoveCodeforces\nVasya Petrov\nPetrov VasyaPetrov123\nILoveCodeforces MikeMirzayanov\nPetya Ivanov\n" ]
[ "3\nPetya Ivanov\nMisha MikeMirzayanov\nVasya VasyaPetrov123\n" ]
none
500
[ { "input": "5\nMisha ILoveCodeforces\nVasya Petrov\nPetrov VasyaPetrov123\nILoveCodeforces MikeMirzayanov\nPetya Ivanov", "output": "3\nPetya Ivanov\nMisha MikeMirzayanov\nVasya VasyaPetrov123" }, { "input": "1\nMisha Vasya", "output": "1\nMisha Vasya" }, { "input": "10\na b\nb c\nc d\nd...
1,570,090,924
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
124
0
def main(): q = int(input()) requests = [input().split() for _ in range(q)] mappings = {} seen = set() old_users = set() out = [] for old, new in requests: if old not in seen: old_users.add(old) seen |= {old, new} mappings[old] = new ...
Title: Misha and Changing Handles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Misha hacked the Codeforces site. Then he decided to let all the users change their handles. A user can now change his handle any number of times. But each new handle must not be equal to any handle that is a...
```python def main(): q = int(input()) requests = [input().split() for _ in range(q)] mappings = {} seen = set() old_users = set() out = [] for old, new in requests: if old not in seen: old_users.add(old) seen |= {old, new} mappings[ol...
0
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,591,978,549
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
154
0
n=int(input()) m = [] for i in range(n): # A for loop for row entries a =[] for j in range(n): # A for loop for column entries a.append(int(input())) m.append(a) c=0 for i in range(n): s=0 for j in range(n): s+=m[j][i] if(s!=0): c=1 ...
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 n=int(input()) m = [] for i in range(n): # A for loop for row entries a =[] for j in range(n): # A for loop for column entries a.append(int(input())) m.append(a) c=0 for i in range(n): s=0 for j in range(n): s+=m[j][i] if(s!=0): ...
-1