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
344
A
Magnets
PROGRAMMING
800
[ "implementation" ]
null
null
Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets are put together at a close distance, then the like poles will repel each other and the oppo...
The first line of the input contains an integer *n* (1<=≤<=*n*<=≤<=100000) — the number of magnets. Then *n* lines follow. The *i*-th line (1<=≤<=*i*<=≤<=*n*) contains either characters "01", if Mike put the *i*-th magnet in the "plus-minus" position, or characters "10", if Mike put the magnet in the "minus-plus" posit...
On the single line of the output print the number of groups of magnets.
[ "6\n10\n10\n10\n01\n10\n10\n", "4\n01\n01\n10\n10\n" ]
[ "3\n", "2\n" ]
The first testcase corresponds to the figure. The testcase has three groups consisting of three, one and two magnets. The second testcase has two groups, each consisting of two magnets.
500
[ { "input": "6\n10\n10\n10\n01\n10\n10", "output": "3" }, { "input": "4\n01\n01\n10\n10", "output": "2" }, { "input": "1\n10", "output": "1" }, { "input": "2\n01\n10", "output": "2" }, { "input": "2\n10\n10", "output": "1" }, { "input": "3\n10\n01\n10",...
1,694,944,258
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
6
1,000
9,113,600
n = int(input()) magnets = [input() for _ in range(n)] num_groups = 1 for i in range(1, n): if magnets[i] != magnets[i - 1]: num_groups += 1 print(num_groups)
Title: Magnets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets...
```python n = int(input()) magnets = [input() for _ in range(n)] num_groups = 1 for i in range(1, n): if magnets[i] != magnets[i - 1]: num_groups += 1 print(num_groups) ```
0
914
A
Perfect Squares
PROGRAMMING
900
[ "brute force", "implementation", "math" ]
null
null
Given an array *a*1,<=*a*2,<=...,<=*a**n* of *n* integers, find the largest number in the array that is not a perfect square. A number *x* is said to be a perfect square if there exists an integer *y* such that *x*<==<=*y*2.
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of elements in the array. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=106<=≤<=*a**i*<=≤<=106) — the elements of the array. It is guaranteed that at least one element of the array is not a perfect square.
Print the largest number in the array which is not a perfect square. It is guaranteed that an answer always exists.
[ "2\n4 2\n", "8\n1 2 4 8 16 32 64 576\n" ]
[ "2\n", "32\n" ]
In the first sample case, 4 is a perfect square, so the largest number in the array that is not a perfect square is 2.
500
[ { "input": "2\n4 2", "output": "2" }, { "input": "8\n1 2 4 8 16 32 64 576", "output": "32" }, { "input": "3\n-1 -4 -9", "output": "-1" }, { "input": "5\n918375 169764 598796 76602 538757", "output": "918375" }, { "input": "5\n804610 765625 2916 381050 93025", ...
1,667,017,114
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
import math def isPerfectSquare(num): return isinstance(math.sqrt(num), float) if __name__ == '__main__': n = int(input()) nums = input().split() result = 0 for i in range(0, n): susNum = int(nums[i]) if isPerfectSquare(susNum): if result == 0: ...
Title: Perfect Squares Time Limit: None seconds Memory Limit: None megabytes Problem Description: Given an array *a*1,<=*a*2,<=...,<=*a**n* of *n* integers, find the largest number in the array that is not a perfect square. A number *x* is said to be a perfect square if there exists an integer *y* such that *x*<==<...
```python import math def isPerfectSquare(num): return isinstance(math.sqrt(num), float) if __name__ == '__main__': n = int(input()) nums = input().split() result = 0 for i in range(0, n): susNum = int(nums[i]) if isPerfectSquare(susNum): if result == 0:...
0
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,575,240,086
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
108
0
""" https://codeforces.com/problemset/problem/58/A """ if __name__ == '__main__': s = input() word = "" for i in s: if i not in word: word += i if "helo" in word: print("YES") else: print("NO")
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python """ https://codeforces.com/problemset/problem/58/A """ if __name__ == '__main__': s = input() word = "" for i in s: if i not in word: word += i if "helo" in word: print("YES") else: print("NO") ```
0
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,685,632,609
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
n=int(input()) price=[] quality=[] for i in range(n): a,b=map(int,input().split()) price.append(a) quality.append(b) if quality[price.index(max(price))] > max(quality): print("Poor Alex") else: print("Happy Alex")
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=int(input()) price=[] quality=[] for i in range(n): a,b=map(int,input().split()) price.append(a) quality.append(b) if quality[price.index(max(price))] > max(quality): print("Poor Alex") else: print("Happy Alex") ```
0
534
B
Covered Path
PROGRAMMING
1,400
[ "dp", "greedy", "math" ]
null
null
The on-board computer on Polycarp's car measured that the car speed at the beginning of some section of the path equals *v*1 meters per second, and in the end it is *v*2 meters per second. We know that this section of the route took exactly *t* seconds to pass. Assuming that at each of the seconds the speed is constan...
The first line contains two integers *v*1 and *v*2 (1<=≤<=*v*1,<=*v*2<=≤<=100) — the speeds in meters per second at the beginning of the segment and at the end of the segment, respectively. The second line contains two integers *t* (2<=≤<=*t*<=≤<=100) — the time when the car moves along the segment in seconds, *d* (0<...
Print the maximum possible length of the path segment in meters.
[ "5 6\n4 2\n", "10 10\n10 0\n" ]
[ "26", "100" ]
In the first sample the sequence of speeds of Polycarpus' car can look as follows: 5, 7, 8, 6. Thus, the total path is 5 + 7 + 8 + 6 = 26 meters. In the second sample, as *d* = 0, the car covers the whole segment at constant speed *v* = 10. In *t* = 10 seconds it covers the distance of 100 meters.
1,000
[ { "input": "5 6\n4 2", "output": "26" }, { "input": "10 10\n10 0", "output": "100" }, { "input": "87 87\n2 10", "output": "174" }, { "input": "1 11\n6 2", "output": "36" }, { "input": "100 10\n10 10", "output": "550" }, { "input": "1 1\n100 10", "o...
1,428,857,987
3,587
Python 3
WRONG_ANSWER
PRETESTS
2
46
0
v1, v2 = map(int, input().split()) t, d = map(int, input().split()) v1, v2 = min(v1, v2), max(v1, v2) l, r = 0, t * d while r - l > 1: q = (l + r) / 2 if q / d + q - (v2 - v1) / d <= t: l = q else: r = q #print (l) v = v1 ans = 0 if l == 0: print (t * v1) else: k = 0 ...
Title: Covered Path Time Limit: None seconds Memory Limit: None megabytes Problem Description: The on-board computer on Polycarp's car measured that the car speed at the beginning of some section of the path equals *v*1 meters per second, and in the end it is *v*2 meters per second. We know that this section of the ...
```python v1, v2 = map(int, input().split()) t, d = map(int, input().split()) v1, v2 = min(v1, v2), max(v1, v2) l, r = 0, t * d while r - l > 1: q = (l + r) / 2 if q / d + q - (v2 - v1) / d <= t: l = q else: r = q #print (l) v = v1 ans = 0 if l == 0: print (t * v1) else: ...
0
922
A
Cloning Toys
PROGRAMMING
1,300
[ "implementation" ]
null
null
Imp likes his plush toy a lot. Recently, he found a machine that can clone plush toys. Imp knows that if he applies the machine to an original toy, he additionally gets one more original toy and one copy, and if he applies the machine to a copied toy, he gets two additional copies. Initially, Imp has only one origina...
The only line contains two integers *x* and *y* (0<=≤<=*x*,<=*y*<=≤<=109) — the number of copies and the number of original toys Imp wants to get (including the initial one).
Print "Yes", if the desired configuration is possible, and "No" otherwise. You can print each letter in arbitrary case (upper or lower).
[ "6 3\n", "4 2\n", "1000 1001\n" ]
[ "Yes\n", "No\n", "Yes\n" ]
In the first example, Imp has to apply the machine twice to original toys and then twice to copies.
500
[ { "input": "6 3", "output": "Yes" }, { "input": "4 2", "output": "No" }, { "input": "1000 1001", "output": "Yes" }, { "input": "1000000000 999999999", "output": "Yes" }, { "input": "81452244 81452247", "output": "No" }, { "input": "188032448 86524683",...
1,698,469,364
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
3
1,000
0
x,y = map(int,input().split()) n_org = 1 n_copy = 0 while n_copy < x or n_org < y: if n_copy < x and n_org < y: n_org += 1 n_copy += 1 elif n_copy >= 1: n_copy += 2 else: print("NO") break if n_copy == x and n_org == y: print("YES") else: ...
Title: Cloning Toys Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imp likes his plush toy a lot. Recently, he found a machine that can clone plush toys. Imp knows that if he applies the machine to an original toy, he additionally gets one more original toy and one copy, and if he applie...
```python x,y = map(int,input().split()) n_org = 1 n_copy = 0 while n_copy < x or n_org < y: if n_copy < x and n_org < y: n_org += 1 n_copy += 1 elif n_copy >= 1: n_copy += 2 else: print("NO") break if n_copy == x and n_org == y: print("YES") e...
0
637
B
Chat Order
PROGRAMMING
1,200
[ "*special", "binary search", "constructive algorithms", "data structures", "sortings" ]
null
null
Polycarp is a big lover of killing time in social networks. A page with a chatlist in his favourite network is made so that when a message is sent to some friend, his friend's chat rises to the very top of the page. The relative order of the other chats doesn't change. If there was no chat with this friend before, then...
The first line contains integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of Polycarpus' messages. Next *n* lines enlist the message recipients in the order in which the messages were sent. The name of each participant is a non-empty sequence of lowercase English letters of length at most 10.
Print all the recipients to who Polycarp talked to in the order of chats with them, from top to bottom.
[ "4\nalex\nivan\nroman\nivan\n", "8\nalina\nmaria\nekaterina\ndarya\ndarya\nekaterina\nmaria\nalina\n" ]
[ "ivan\nroman\nalex\n", "alina\nmaria\nekaterina\ndarya\n" ]
In the first test case Polycarpus first writes to friend by name "alex", and the list looks as follows: 1. alex Then Polycarpus writes to friend by name "ivan" and the list looks as follows: 1. ivan 1. alex Polycarpus writes the third message to friend by name "roman" and the list looks as follows: 1. roman 1...
1,000
[ { "input": "4\nalex\nivan\nroman\nivan", "output": "ivan\nroman\nalex" }, { "input": "8\nalina\nmaria\nekaterina\ndarya\ndarya\nekaterina\nmaria\nalina", "output": "alina\nmaria\nekaterina\ndarya" }, { "input": "1\nwdi", "output": "wdi" }, { "input": "2\nypg\nypg", "outpu...
1,509,259,292
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
12
3,000
716,800
n =int(input()) chat =[] for i in range(n): a =input() if (a in chat): chat.remove(a) chat.insert(0,a) for par in chat: print (par)
Title: Chat Order Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is a big lover of killing time in social networks. A page with a chatlist in his favourite network is made so that when a message is sent to some friend, his friend's chat rises to the very top of the page. The rela...
```python n =int(input()) chat =[] for i in range(n): a =input() if (a in chat): chat.remove(a) chat.insert(0,a) for par in chat: print (par) ```
0
621
A
Wet Shark and Odd and Even
PROGRAMMING
900
[ "implementation" ]
null
null
Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, that if Wet Shark uses no integers from the *n* integers, the sum is an even integer 0.
The first line of the input contains one integer, *n* (1<=≤<=*n*<=≤<=100<=000). The next line contains *n* space separated integers given to Wet Shark. Each of these integers is in range from 1 to 109, inclusive.
Print the maximum possible even sum that can be obtained if we use some of the given integers.
[ "3\n1 2 3\n", "5\n999999999 999999999 999999999 999999999 999999999\n" ]
[ "6", "3999999996" ]
In the first sample, we can simply take all three integers for a total sum of 6. In the second sample Wet Shark should take any four out of five integers 999 999 999.
500
[ { "input": "3\n1 2 3", "output": "6" }, { "input": "5\n999999999 999999999 999999999 999999999 999999999", "output": "3999999996" }, { "input": "1\n1", "output": "0" }, { "input": "15\n39 52 88 78 46 95 84 98 55 3 68 42 6 18 98", "output": "870" }, { "input": "15\...
1,632,587,554
2,147,483,647
Python 3
OK
TESTS
87
186
15,462,400
n=int(input()) l=list(map(int,input().split())) sum1=sum(l) if sum1%2==0: print(sum1) else: l.sort() l=set(l) l=list(l) l.sort() for i in range(len(l)): sum2=sum1-l[i] if (sum2%2==0): print(sum2) break
Title: Wet Shark and Odd and Even Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, th...
```python n=int(input()) l=list(map(int,input().split())) sum1=sum(l) if sum1%2==0: print(sum1) else: l.sort() l=set(l) l=list(l) l.sort() for i in range(len(l)): sum2=sum1-l[i] if (sum2%2==0): print(sum2) break ```
3
144
A
Arrival of the General
PROGRAMMING
800
[ "implementation" ]
null
null
A Ministry for Defense sent a general to inspect the Super Secret Military Squad under the command of the Colonel SuperDuper. Having learned the news, the colonel ordered to all *n* squad soldiers to line up on the parade ground. By the military charter the soldiers should stand in the order of non-increasing of their...
The first input line contains the only integer *n* (2<=≤<=*n*<=≤<=100) which represents the number of soldiers in the line. The second line contains integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100) the values of the soldiers' heights in the order of soldiers' heights' increasing in the order from the beginnin...
Print the only integer — the minimum number of seconds the colonel will need to form a line-up the general will like.
[ "4\n33 44 11 22\n", "7\n10 10 58 31 63 40 76\n" ]
[ "2\n", "10\n" ]
In the first sample the colonel will need to swap the first and second soldier and then the third and fourth soldier. That will take 2 seconds. The resulting position of the soldiers is (44, 33, 22, 11). In the second sample the colonel may swap the soldiers in the following sequence: 1. (10, 10, 58, 31, 63, 40, 76)...
500
[ { "input": "4\n33 44 11 22", "output": "2" }, { "input": "7\n10 10 58 31 63 40 76", "output": "10" }, { "input": "2\n88 89", "output": "1" }, { "input": "5\n100 95 100 100 88", "output": "0" }, { "input": "7\n48 48 48 48 45 45 45", "output": "0" }, { "...
1,685,278,516
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
n = int(input()) a = list(map(int, input().split())) if a.count(min(a)) > 1: mnd = a.index(min(a)) a[mnd] += 1 mn = a.index(min(a)) mx = a.index(max(a)) if mn < mx: i = a.index(a[-1]) i1 = a.index(a[0]) raznMn = abs(i - mn) - 1 raznMx = abs(i1 - mx) else: i = a.in...
Title: Arrival of the General Time Limit: None seconds Memory Limit: None megabytes Problem Description: A Ministry for Defense sent a general to inspect the Super Secret Military Squad under the command of the Colonel SuperDuper. Having learned the news, the colonel ordered to all *n* squad soldiers to line up on t...
```python n = int(input()) a = list(map(int, input().split())) if a.count(min(a)) > 1: mnd = a.index(min(a)) a[mnd] += 1 mn = a.index(min(a)) mx = a.index(max(a)) if mn < mx: i = a.index(a[-1]) i1 = a.index(a[0]) raznMn = abs(i - mn) - 1 raznMx = abs(i1 - mx) else: ...
0
669
A
Little Artem and Presents
PROGRAMMING
800
[ "math" ]
null
null
Little Artem got *n* stones on his birthday and now wants to give some of them to Masha. He knows that Masha cares more about the fact of receiving the present, rather than the value of that present, so he wants to give her stones as many times as possible. However, Masha remembers the last present she received, so Art...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=109) — number of stones Artem received on his birthday.
Print the maximum possible number of times Artem can give presents to Masha.
[ "1\n", "2\n", "3\n", "4\n" ]
[ "1\n", "1\n", "2\n", "3\n" ]
In the first sample, Artem can only give 1 stone to Masha. In the second sample, Atrem can give Masha 1 or 2 stones, though he can't give her 1 stone two times. In the third sample, Atrem can first give Masha 2 stones, a then 1 more stone. In the fourth sample, Atrem can first give Masha 1 stone, then 2 stones, and ...
500
[ { "input": "1", "output": "1" }, { "input": "2", "output": "1" }, { "input": "3", "output": "2" }, { "input": "4", "output": "3" }, { "input": "100", "output": "67" }, { "input": "101", "output": "67" }, { "input": "102", "output": "68"...
1,626,970,449
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
6,758,400
a = int(input()) print(a-1)
Title: Little Artem and Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Artem got *n* stones on his birthday and now wants to give some of them to Masha. He knows that Masha cares more about the fact of receiving the present, rather than the value of that present, so he wan...
```python a = int(input()) print(a-1) ```
0
129
A
Cookies
PROGRAMMING
900
[ "implementation" ]
null
null
Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't want the sisters to quarrel because of nothing when they divide the cookies. That's why Olga wan...
The first line contains the only integer *n* (1<=≤<=*n*<=≤<=100) — the number of cookie bags Anna and Maria have. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=100) — the number of cookies in the *i*-th bag.
Print in the only line the only number — the sought number of ways. If there are no such ways print 0.
[ "1\n1\n", "10\n1 2 2 3 4 4 4 2 2 2\n", "11\n2 2 2 2 2 2 2 2 2 2 99\n" ]
[ "1\n", "8\n", "1\n" ]
In the first sample Olga should take the only bag so that the twins ended up with the even number of cookies. In the second sample Olga can take any of five bags with two cookies or any of three bags with four cookies — 5 + 3 = 8 ways in total. In the third sample, no matter which bag with two cookies Olga chooses, t...
500
[ { "input": "1\n1", "output": "1" }, { "input": "10\n1 2 2 3 4 4 4 2 2 2", "output": "8" }, { "input": "11\n2 2 2 2 2 2 2 2 2 2 99", "output": "1" }, { "input": "2\n1 1", "output": "0" }, { "input": "2\n2 2", "output": "2" }, { "input": "2\n1 2", "o...
1,615,716,856
2,147,483,647
Python 3
OK
TESTS
52
124
0
n = int(input()) arr = list(map(int, input().split())) ans = 0 s = sum(arr) for i in arr: if (s-i)%2 == 0: ans += 1 print(ans)
Title: Cookies Time Limit: None seconds Memory Limit: None megabytes Problem Description: Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't wan...
```python n = int(input()) arr = list(map(int, input().split())) ans = 0 s = sum(arr) for i in arr: if (s-i)%2 == 0: ans += 1 print(ans) ```
3
136
A
Presents
PROGRAMMING
800
[ "implementation" ]
null
null
Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on this occasion he organized a New Year party at his place and invited *n* his friends there. If...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the quantity of friends Petya invited to the party. The second line contains *n* space-separated integers: the *i*-th number is *p**i* — the number of a friend who gave a gift to friend number *i*. It is guaranteed that each friend received exactly one gift....
Print *n* space-separated integers: the *i*-th number should equal the number of the friend who gave a gift to friend number *i*.
[ "4\n2 3 4 1\n", "3\n1 3 2\n", "2\n1 2\n" ]
[ "4 1 2 3\n", "1 3 2\n", "1 2\n" ]
none
500
[ { "input": "4\n2 3 4 1", "output": "4 1 2 3" }, { "input": "3\n1 3 2", "output": "1 3 2" }, { "input": "2\n1 2", "output": "1 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 3 2 6 4 5 7 9 8 10", "output": "1 3 2 5 6 4 7 9 8 10" }, { "input"...
1,691,587,061
2,147,483,647
Python 3
OK
TESTS
101
92
0
def find_gift_givers(n, gift_list): result = [0] * n for i in range(n): result[gift_list[i] - 1] = i + 1 return result n = int(input()) gift_list = list(map(int, input().split())) gift_givers = find_gift_givers(n, gift_list) print(" ".join(map(str, gift_givers)))
Title: Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on t...
```python def find_gift_givers(n, gift_list): result = [0] * n for i in range(n): result[gift_list[i] - 1] = i + 1 return result n = int(input()) gift_list = list(map(int, input().split())) gift_givers = find_gift_givers(n, gift_list) print(" ".join(map(str, gift_givers))) ```
3
776
B
Sherlock and his girlfriend
PROGRAMMING
1,200
[ "constructive algorithms", "number theory" ]
null
null
Sherlock has a new girlfriend (so unlike him!). Valentine's day is coming and he wants to gift her some jewelry. He bought *n* pieces of jewelry. The *i*-th piece has price equal to *i*<=+<=1, that is, the prices of the jewelry are 2,<=3,<=4,<=... *n*<=+<=1. Watson gave Sherlock a challenge to color these jewelry pie...
The only line contains single integer *n* (1<=≤<=*n*<=≤<=100000) — the number of jewelry pieces.
The first line of output should contain a single integer *k*, the minimum number of colors that can be used to color the pieces of jewelry with the given constraints. The next line should consist of *n* space-separated integers (between 1 and *k*) that specify the color of each piece in the order of increasing price. ...
[ "3\n", "4\n" ]
[ "2\n1 1 2 ", "2\n2 1 1 2\n" ]
In the first input, the colors for first, second and third pieces of jewelry having respective prices 2, 3 and 4 are 1, 1 and 2 respectively. In this case, as 2 is a prime divisor of 4, colors of jewelry having prices 2 and 4 must be distinct.
1,000
[ { "input": "3", "output": "2\n1 1 2 " }, { "input": "4", "output": "2\n1 1 2 1 " }, { "input": "17", "output": "2\n1 1 2 1 2 1 2 2 2 1 2 1 2 2 2 1 2 " }, { "input": "25", "output": "2\n1 1 2 1 2 1 2 2 2 1 2 1 2 2 2 1 2 1 2 2 2 1 2 2 2 " }, { "input": "85", "ou...
1,579,132,612
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
11
124
1,638,400
sieve = [False for _ in range(100005)] n = int(input()) i = 2 while i <= n + 1: if not sieve[i]: j = 2 * i while j <= n + 1: sieve[j] = 1 j += i i += 1 if n > 2: print("2\n", end="") else: print("1\n", end="") i = 2 while i <= n + 1: if not sie...
Title: Sherlock and his girlfriend Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sherlock has a new girlfriend (so unlike him!). Valentine's day is coming and he wants to gift her some jewelry. He bought *n* pieces of jewelry. The *i*-th piece has price equal to *i*<=+<=1, that is, the ...
```python sieve = [False for _ in range(100005)] n = int(input()) i = 2 while i <= n + 1: if not sieve[i]: j = 2 * i while j <= n + 1: sieve[j] = 1 j += i i += 1 if n > 2: print("2\n", end="") else: print("1\n", end="") i = 2 while i <= n + 1: ...
0
14
D
Two Paths
PROGRAMMING
1,900
[ "dfs and similar", "dp", "graphs", "shortest paths", "trees", "two pointers" ]
D. Two Paths
2
64
As you know, Bob's brother lives in Flatland. In Flatland there are *n* cities, connected by *n*<=-<=1 two-way roads. The cities are numbered from 1 to *n*. You can get from one city to another moving along the roads. The «Two Paths» company, where Bob's brother works, has won a tender to repair two paths in Flatland....
The first line contains an integer *n* (2<=≤<=*n*<=≤<=200), where *n* is the amount of cities in the country. The following *n*<=-<=1 lines contain the information about the roads. Each line contains a pair of numbers of the cities, connected by the road *a**i*,<=*b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*).
Output the maximum possible profit.
[ "4\n1 2\n2 3\n3 4\n", "7\n1 2\n1 3\n1 4\n1 5\n1 6\n1 7\n", "6\n1 2\n2 3\n2 4\n5 4\n6 4\n" ]
[ "1\n", "0\n", "4\n" ]
none
0
[ { "input": "4\n1 2\n2 3\n3 4", "output": "1" }, { "input": "7\n1 2\n1 3\n1 4\n1 5\n1 6\n1 7", "output": "0" }, { "input": "6\n1 2\n2 3\n2 4\n5 4\n6 4", "output": "4" }, { "input": "2\n2 1", "output": "0" }, { "input": "3\n3 1\n1 2", "output": "0" }, { ...
1,692,527,480
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
92
0
import sys from collections import defaultdict def add_edge(u, v): graph[u].append(v) graph[v].append(u) def dfs(v, parent): global max_d, max_node for u in graph[v]: if u == parent: continue depth[u] = depth[v] + 1 if depth[u] > max_d: max...
Title: Two Paths Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: As you know, Bob's brother lives in Flatland. In Flatland there are *n* cities, connected by *n*<=-<=1 two-way roads. The cities are numbered from 1 to *n*. You can get from one city to another moving along the roads. The «Two Pa...
```python import sys from collections import defaultdict def add_edge(u, v): graph[u].append(v) graph[v].append(u) def dfs(v, parent): global max_d, max_node for u in graph[v]: if u == parent: continue depth[u] = depth[v] + 1 if depth[u] > max_d: ...
0
78
B
Easter Eggs
PROGRAMMING
1,200
[ "constructive algorithms", "implementation" ]
B. Easter Eggs
2
256
The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: - Each of the seven colors should be used to paint at least one egg. - Any four eggs lying s...
The only line contains an integer *n* — the amount of eggs (7<=≤<=*n*<=≤<=100).
Print one line consisting of *n* characters. The *i*-th character should describe the color of the *i*-th egg in the order they lie in the circle. The colors should be represented as follows: "R" stands for red, "O" stands for orange, "Y" stands for yellow, "G" stands for green, "B" stands for blue, "I" stands for indi...
[ "8\n", "13\n" ]
[ "ROYGRBIV\n", "ROYGBIVGBIVYG\n" ]
The way the eggs will be painted in the first sample is shown on the picture:
1,000
[ { "input": "8", "output": "ROYGBIVG" }, { "input": "13", "output": "ROYGBIVOYGBIV" }, { "input": "7", "output": "ROYGBIV" }, { "input": "10", "output": "ROYGBIVYGB" }, { "input": "14", "output": "ROYGBIVROYGBIV" }, { "input": "50", "output": "ROYGB...
1,633,400,532
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
92
6,758,400
#link : https://codeforces.com/contest/78/problem/B #time : y = [ "", "G", "GB", "YGB", "YGBI", "OYGBI" , "OYGBIV"] n = int(input()) x = "ROYGBIV" if n <= 7 : print(x[:n]) else: m = n%7 x+=y[m] print(x)
Title: Easter Eggs Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: -...
```python #link : https://codeforces.com/contest/78/problem/B #time : y = [ "", "G", "GB", "YGB", "YGBI", "OYGBI" , "OYGBIV"] n = int(input()) x = "ROYGBIV" if n <= 7 : print(x[:n]) else: m = n%7 x+=y[m] print(x) ```
0
827
B
High Load
PROGRAMMING
1,800
[ "constructive algorithms", "greedy", "implementation", "trees" ]
null
null
Arkady needs your help again! This time he decided to build his own high-speed Internet exchange point. It should consist of *n* nodes connected with minimum possible number of wires into one network (a wire directly connects two nodes). Exactly *k* of the nodes should be exit-nodes, that means that each of them should...
The first line contains two integers *n* and *k* (3<=≤<=*n*<=≤<=2·105, 2<=≤<=*k*<=≤<=*n*<=-<=1) — the total number of nodes and the number of exit-nodes. Note that it is always possible to build at least one network with *n* nodes and *k* exit-nodes within the given constraints.
In the first line print the minimum possible distance between the two most distant exit-nodes. In each of the next *n*<=-<=1 lines print two integers: the ids of the nodes connected by a wire. The description of each wire should be printed exactly once. You can print wires and wires' ends in arbitrary order. The nodes ...
[ "3 2\n", "5 3\n" ]
[ "2\n1 2\n2 3\n", "3\n1 2\n2 3\n3 4\n3 5\n" ]
In the first example the only network is shown on the left picture. In the second example one of optimal networks is shown on the right picture. Exit-nodes are highlighted.
750
[ { "input": "3 2", "output": "2\n1 2\n2 3" }, { "input": "5 3", "output": "3\n1 2\n2 3\n3 4\n3 5" }, { "input": "4 2", "output": "3\n1 2\n2 3\n3 4" }, { "input": "4 3", "output": "2\n1 2\n2 3\n2 4" }, { "input": "5 2", "output": "4\n1 2\n2 3\n3 4\n4 5" }, {...
1,609,192,686
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
10
139
2,150,400
n,k=map(int,input().split()) print(n-k+1) for j in range(1,n-k+1): print(j,j+1) for j in range(n-k+2,n+1): print(1,j)
Title: High Load Time Limit: None seconds Memory Limit: None megabytes Problem Description: Arkady needs your help again! This time he decided to build his own high-speed Internet exchange point. It should consist of *n* nodes connected with minimum possible number of wires into one network (a wire directly connects...
```python n,k=map(int,input().split()) print(n-k+1) for j in range(1,n-k+1): print(j,j+1) for j in range(n-k+2,n+1): print(1,j) ```
0
490
A
Team Olympiad
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The School №0 of the capital of Berland has *n* children studying in it. All the children in this school are gifted: some of them are good at programming, some are good at maths, others are good at PE (Physical Education). Hence, for each child we know value *t**i*: - *t**i*<==<=1, if the *i*-th child is good at prog...
The first line contains integer *n* (1<=≤<=*n*<=≤<=5000) — the number of children in the school. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=3), where *t**i* describes the skill of the *i*-th child.
In the first line output integer *w* — the largest possible number of teams. Then print *w* lines, containing three numbers in each line. Each triple represents the indexes of the children forming the team. You can print both the teams, and the numbers in the triplets in any order. The children are numbered from 1 to...
[ "7\n1 3 1 3 2 1 2\n", "4\n2 1 1 2\n" ]
[ "2\n3 5 2\n6 7 4\n", "0\n" ]
none
500
[ { "input": "7\n1 3 1 3 2 1 2", "output": "2\n3 5 2\n6 7 4" }, { "input": "4\n2 1 1 2", "output": "0" }, { "input": "1\n2", "output": "0" }, { "input": "2\n3 1", "output": "0" }, { "input": "3\n2 1 2", "output": "0" }, { "input": "3\n1 2 3", "output...
1,688,382,185
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
# https://codeforces.com/problemset/problem/490/A children = int(input()) children_skills = list(map(int, input().split())) mathematicians_idx = [] programmers_idx = [] athletes_idx = [] for i, v in enumerate(children_skills): if v == 1: programmers_idx.append(i) elif v == 2: mat...
Title: Team Olympiad Time Limit: None seconds Memory Limit: None megabytes Problem Description: The School №0 of the capital of Berland has *n* children studying in it. All the children in this school are gifted: some of them are good at programming, some are good at maths, others are good at PE (Physical Education)...
```python # https://codeforces.com/problemset/problem/490/A children = int(input()) children_skills = list(map(int, input().split())) mathematicians_idx = [] programmers_idx = [] athletes_idx = [] for i, v in enumerate(children_skills): if v == 1: programmers_idx.append(i) elif v == 2: ...
0
215
A
Bicycle Chain
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
Vasya's bicycle chain drive consists of two parts: *n* stars are attached to the pedal axle, *m* stars are attached to the rear wheel axle. The chain helps to rotate the rear wheel by transmitting the pedal rotation. We know that the *i*-th star on the pedal axle has *a**i* (0<=&lt;<=*a*1<=&lt;<=*a*2<=&lt;<=...<=&lt;<...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=50) — the number of stars on the bicycle's pedal axle. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=104) in the order of strict increasing. The third input line contains integer *m* (1<=≤<=*m*<=≤<=50) — the number of stars o...
Print the number of "integer" gears with the maximum ratio among all "integer" gears.
[ "2\n4 5\n3\n12 13 15\n", "4\n1 2 3 4\n5\n10 11 12 13 14\n" ]
[ "2\n", "1\n" ]
In the first sample the maximum "integer" gear ratio equals 3. There are two gears that have such gear ratio. For one of them *a*<sub class="lower-index">1</sub> = 4, *b*<sub class="lower-index">1</sub> = 12, and for the other *a*<sub class="lower-index">2</sub> = 5, *b*<sub class="lower-index">3</sub> = 15.
500
[ { "input": "2\n4 5\n3\n12 13 15", "output": "2" }, { "input": "4\n1 2 3 4\n5\n10 11 12 13 14", "output": "1" }, { "input": "1\n1\n1\n1", "output": "1" }, { "input": "2\n1 2\n1\n1", "output": "1" }, { "input": "1\n1\n2\n1 2", "output": "1" }, { "input":...
1,618,866,365
2,147,483,647
Python 3
OK
TESTS
57
124
307,200
n = int(input()) a = list(map(int, input().split(' '))) m = int(input()) b = list(map(int, input().split(' '))) max_ = -1 count = 0 for ai in a: for bi in b: ratio = bi/ai #print(ai, bi) if ratio == int(ratio): if ratio > max_: max_ = ratio ...
Title: Bicycle Chain Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya's bicycle chain drive consists of two parts: *n* stars are attached to the pedal axle, *m* stars are attached to the rear wheel axle. The chain helps to rotate the rear wheel by transmitting the pedal rotation. We ...
```python n = int(input()) a = list(map(int, input().split(' '))) m = int(input()) b = list(map(int, input().split(' '))) max_ = -1 count = 0 for ai in a: for bi in b: ratio = bi/ai #print(ai, bi) if ratio == int(ratio): if ratio > max_: max_ =...
3
811
A
Vladik and Courtesy
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
At regular competition Vladik and Valera won *a* and *b* candies respectively. Vladik offered 1 his candy to Valera. After that Valera gave Vladik 2 his candies, so that no one thought that he was less generous. Vladik for same reason gave 3 candies to Valera in next turn. More formally, the guys take turns giving eac...
Single line of input data contains two space-separated integers *a*, *b* (1<=≤<=*a*,<=*b*<=≤<=109) — number of Vladik and Valera candies respectively.
Pring a single line "Vladik’’ in case, if Vladik first who can’t give right amount of candy, or "Valera’’ otherwise.
[ "1 1\n", "7 6\n" ]
[ "Valera\n", "Vladik\n" ]
Illustration for first test case: <img class="tex-graphics" src="https://espresso.codeforces.com/ad9b7d0e481208de8e3a585aa1d96b9e1dda4fd7.png" style="max-width: 100.0%;max-height: 100.0%;"/> Illustration for second test case: <img class="tex-graphics" src="https://espresso.codeforces.com/9f4836d2ccdffaee5a63898e5d4e...
500
[ { "input": "1 1", "output": "Valera" }, { "input": "7 6", "output": "Vladik" }, { "input": "25 38", "output": "Vladik" }, { "input": "8311 2468", "output": "Valera" }, { "input": "250708 857756", "output": "Vladik" }, { "input": "957985574 24997558", ...
1,496,832,619
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
0
a, b = map(int, input().split()) c = 1 while a >= 0 and b >= 0: if c % 2 == 1: a -= c b += c else: a += c b -= c c += 1 if b > 0: print('Valera') else: print('Vladik')
Title: Vladik and Courtesy Time Limit: None seconds Memory Limit: None megabytes Problem Description: At regular competition Vladik and Valera won *a* and *b* candies respectively. Vladik offered 1 his candy to Valera. After that Valera gave Vladik 2 his candies, so that no one thought that he was less generous. Vla...
```python a, b = map(int, input().split()) c = 1 while a >= 0 and b >= 0: if c % 2 == 1: a -= c b += c else: a += c b -= c c += 1 if b > 0: print('Valera') else: print('Vladik') ```
0
125
B
Simple XML
PROGRAMMING
1,000
[ "implementation" ]
null
null
Let's define a string &lt;x&gt; as an opening tag, where *x* is any small letter of the Latin alphabet. Each opening tag matches a closing tag of the type &lt;/x&gt;, where *x* is the same letter. Tegs can be nested into each other: in this case one opening and closing tag pair is located inside another pair. Let's d...
The input data consists on the only non-empty string — the XML-text, its length does not exceed 1000 characters. It is guaranteed that the text is valid. The text contains no spaces.
Print the given XML-text according to the above-given rules.
[ "&lt;a&gt;&lt;b&gt;&lt;c&gt;&lt;/c&gt;&lt;/b&gt;&lt;/a&gt;\n", "&lt;a&gt;&lt;b&gt;&lt;/b&gt;&lt;d&gt;&lt;c&gt;&lt;/c&gt;&lt;/d&gt;&lt;/a&gt;\n" ]
[ "&lt;a&gt;\n &lt;b&gt;\n &lt;c&gt;\n &lt;/c&gt;\n &lt;/b&gt;\n&lt;/a&gt;\n", "&lt;a&gt;\n &lt;b&gt;\n &lt;/b&gt;\n &lt;d&gt;\n &lt;c&gt;\n &lt;/c&gt;\n &lt;/d&gt;\n&lt;/a&gt;\n" ]
none
1,500
[ { "input": "<a><b><c></c></b></a>", "output": "<a>\n <b>\n <c>\n </c>\n </b>\n</a>" }, { "input": "<a><b></b><d><c></c></d></a>", "output": "<a>\n <b>\n </b>\n <d>\n <c>\n </c>\n </d>\n</a>" }, { "input": "<z></z>", "output": "<z>\n</z>" }, { "input": "<u><d...
1,593,123,632
2,147,483,647
Python 3
OK
TESTS
27
216
6,656,000
x = input()[1:-1].split('><') n = 0 for i in range(len(x)): c = x[i] if '/' not in c: print('{}<{}>'.format(' '*2*n, c)) n += 1 else: n -= 1 print('{}<{}>'.format(' ' * 2 * n, c))
Title: Simple XML Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's define a string &lt;x&gt; as an opening tag, where *x* is any small letter of the Latin alphabet. Each opening tag matches a closing tag of the type &lt;/x&gt;, where *x* is the same letter. Tegs can be nested into ea...
```python x = input()[1:-1].split('><') n = 0 for i in range(len(x)): c = x[i] if '/' not in c: print('{}<{}>'.format(' '*2*n, c)) n += 1 else: n -= 1 print('{}<{}>'.format(' ' * 2 * n, c)) ```
3
49
A
Sleuth
PROGRAMMING
800
[ "implementation" ]
A. Sleuth
2
256
Vasya plays the sleuth with his friends. The rules of the game are as follows: those who play for the first time, that is Vasya is the sleuth, he should investigate a "crime" and find out what is happening. He can ask any questions whatsoever that can be answered with "Yes" or "No". All the rest agree beforehand to ans...
The single line contains a question represented by a non-empty line consisting of large and small Latin letters, spaces and a question mark. The line length does not exceed 100. It is guaranteed that the question mark occurs exactly once in the line — as the last symbol and that the line contains at least one letter.
Print answer for the question in a single line: YES if the answer is "Yes", NO if the answer is "No". Remember that in the reply to the question the last letter, not the last character counts. I. e. the spaces and the question mark do not count as letters.
[ "Is it a melon?\n", "Is it an apple?\n", "Is it a banana ?\n", "Is it an apple and a banana simultaneouSLY?\n" ]
[ "NO\n", "YES\n", "YES\n", "YES\n" ]
none
500
[ { "input": "Is it a melon?", "output": "NO" }, { "input": "Is it an apple?", "output": "YES" }, { "input": " Is it a banana ?", "output": "YES" }, { "input": "Is it an apple and a banana simultaneouSLY?", "output": "YES" }, { "input": "oHtSbDwzHb?", ...
1,621,960,833
2,147,483,647
PyPy 3
OK
TESTS
35
216
0
s = list(input().rstrip("?").split(" ")) s.reverse() for i in s: if i != '': if(i[-1].lower() == 'a' or i[-1].lower() == 'e' or i[-1].lower() == 'i' or i[-1].lower() == 'o' or i[-1].lower() == 'u' or i[-1].lower() == 'y'): print("YES") else: print("NO") break
Title: Sleuth Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya plays the sleuth with his friends. The rules of the game are as follows: those who play for the first time, that is Vasya is the sleuth, he should investigate a "crime" and find out what is happening. He can ask any questions ...
```python s = list(input().rstrip("?").split(" ")) s.reverse() for i in s: if i != '': if(i[-1].lower() == 'a' or i[-1].lower() == 'e' or i[-1].lower() == 'i' or i[-1].lower() == 'o' or i[-1].lower() == 'u' or i[-1].lower() == 'y'): print("YES") else: print("NO") ...
3.946
461
A
Appleman and Toastman
PROGRAMMING
1,200
[ "greedy", "sortings" ]
null
null
Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all the numbers and adds this sum to the score. Then he gives the group to the Appleman. - Each time Appleman...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=3·105). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=106) — the initial group that is given to Toastman.
Print a single integer — the largest possible score.
[ "3\n3 1 5\n", "1\n10\n" ]
[ "26\n", "10\n" ]
Consider the following situation in the first example. Initially Toastman gets group [3, 1, 5] and adds 9 to the score, then he give the group to Appleman. Appleman splits group [3, 1, 5] into two groups: [3, 5] and [1]. Both of them should be given to Toastman. When Toastman receives group [1], he adds 1 to score and ...
500
[ { "input": "3\n3 1 5", "output": "26" }, { "input": "1\n10", "output": "10" }, { "input": "10\n8 10 2 5 6 2 4 7 2 1", "output": "376" }, { "input": "10\n171308 397870 724672 431255 228496 892002 542924 718337 888642 161821", "output": "40204082" }, { "input": "10\...
1,513,140,504
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
6
2,000
11,366,400
n = int(input()) num = [int(n) for n in input().split()] score = 0 num.sort() for i in num: score = score + i while len(num) != 1: for i in num: score = score + i num.pop(0) print(score)
Title: Appleman and Toastman Time Limit: None seconds Memory Limit: None megabytes Problem Description: Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all...
```python n = int(input()) num = [int(n) for n in input().split()] score = 0 num.sort() for i in num: score = score + i while len(num) != 1: for i in num: score = score + i num.pop(0) print(score) ```
0
289
B
Polo the Penguin and Matrix
PROGRAMMING
1,400
[ "brute force", "dp", "implementation", "sortings", "ternary search" ]
null
null
Little penguin Polo has an *n*<=×<=*m* matrix, consisting of integers. Let's index the matrix rows from 1 to *n* from top to bottom and let's index the columns from 1 to *m* from left to right. Let's represent the matrix element on the intersection of row *i* and column *j* as *a**ij*. In one move the penguin can add ...
The first line contains three integers *n*, *m* and *d* (1<=≤<=*n*,<=*m*<=≤<=100,<=1<=≤<=*d*<=≤<=104) — the matrix sizes and the *d* parameter. Next *n* lines contain the matrix: the *j*-th integer in the *i*-th row is the matrix element *a**ij* (1<=≤<=*a**ij*<=≤<=104).
In a single line print a single integer — the minimum number of moves the penguin needs to make all matrix elements equal. If that is impossible, print "-1" (without the quotes).
[ "2 2 2\n2 4\n6 8\n", "1 2 7\n6 7\n" ]
[ "4\n", "-1\n" ]
none
1,000
[ { "input": "2 2 2\n2 4\n6 8", "output": "4" }, { "input": "1 2 7\n6 7", "output": "-1" }, { "input": "3 2 1\n5 7\n1 2\n5 100", "output": "104" }, { "input": "3 3 3\n5 8 5\n11 11 17\n14 5 2", "output": "12" }, { "input": "3 3 3\n5 8 5\n11 11 17\n14 5 3", "outpu...
1,593,501,184
2,147,483,647
PyPy 3
OK
TESTS
31
310
22,016,000
n,m,d=(int(i) for i in input().split()) l=[] for i in range(n): l+=[int(i) for i in input().split()] l=sorted(l) mod=l[0]%d for i in range(n*m): if(l[i]%d!=mod): mod=-1 break if(mod==-1): print(-1) else: k=l[(n*m)//2] moves=0 for i in range(n*m): moves+=(a...
Title: Polo the Penguin and Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little penguin Polo has an *n*<=×<=*m* matrix, consisting of integers. Let's index the matrix rows from 1 to *n* from top to bottom and let's index the columns from 1 to *m* from left to right. Let's represe...
```python n,m,d=(int(i) for i in input().split()) l=[] for i in range(n): l+=[int(i) for i in input().split()] l=sorted(l) mod=l[0]%d for i in range(n*m): if(l[i]%d!=mod): mod=-1 break if(mod==-1): print(-1) else: k=l[(n*m)//2] moves=0 for i in range(n*m): ...
3
797
A
k-Factorization
PROGRAMMING
1,100
[ "implementation", "math", "number theory" ]
null
null
Given a positive integer *n*, find *k* integers (not necessary distinct) such that all these integers are strictly greater than 1, and their product is equal to *n*.
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=100000, 1<=≤<=*k*<=≤<=20).
If it's impossible to find the representation of *n* as a product of *k* numbers, print -1. Otherwise, print *k* integers in any order. Their product must be equal to *n*. If there are multiple answers, print any of them.
[ "100000 2\n", "100000 20\n", "1024 5\n" ]
[ "2 50000 \n", "-1\n", "2 64 2 2 2 \n" ]
none
0
[ { "input": "100000 2", "output": "2 50000 " }, { "input": "100000 20", "output": "-1" }, { "input": "1024 5", "output": "2 64 2 2 2 " }, { "input": "100000 10", "output": "2 2 2 2 2 5 5 5 5 5 " }, { "input": "99999 3", "output": "3 813 41 " }, { "input...
1,640,432,651
2,147,483,647
Python 3
OK
TESTS
166
62
0
from math import sqrt def k_factor(n, k): if k == 1: return [n] factor_candidate = 2 smallest_factor = None while factor_candidate < sqrt(n + 1): if not (n % factor_candidate): smallest_factor = factor_candidate break factor_candidate += 1 if smalles...
Title: k-Factorization Time Limit: None seconds Memory Limit: None megabytes Problem Description: Given a positive integer *n*, find *k* integers (not necessary distinct) such that all these integers are strictly greater than 1, and their product is equal to *n*. Input Specification: The first line contains two int...
```python from math import sqrt def k_factor(n, k): if k == 1: return [n] factor_candidate = 2 smallest_factor = None while factor_candidate < sqrt(n + 1): if not (n % factor_candidate): smallest_factor = factor_candidate break factor_candidate += 1 ...
3
14
B
Young Photographer
PROGRAMMING
1,000
[ "implementation" ]
B. Young Photographer
2
64
Among other things, Bob is keen on photography. Especially he likes to take pictures of sportsmen. That was the reason why he placed himself in position *x*0 of a long straight racetrack and got ready to take pictures. But the problem was that not all the runners passed him. The total amount of sportsmen, training at t...
The first line of the input file contains integers *n* and *x*0 (1<=≤<=*n*<=≤<=100; 0<=≤<=*x*0<=≤<=1000). The following *n* lines contain pairs of integers *a**i*,<=*b**i* (0<=≤<=*a**i*,<=*b**i*<=≤<=1000; *a**i*<=≠<=*b**i*).
Output the required minimum distance in the same units as the positions on the racetrack. If there is no such a position, output -1.
[ "3 3\n0 7\n14 2\n4 6\n" ]
[ "1\n" ]
none
0
[ { "input": "3 3\n0 7\n14 2\n4 6", "output": "1" }, { "input": "1 1\n0 10", "output": "0" }, { "input": "2 2\n1 2\n3 2", "output": "0" }, { "input": "3 2\n1 2\n2 3\n3 4", "output": "-1" }, { "input": "2 4\n10 4\n1 5", "output": "0" }, { "input": "1 10\n...
1,635,103,130
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
62
4,505,600
import math bob, n = map(int, input().split()) max = 0 for i in range(n): a, b = map(int, input().split()) if not a < bob < b or a > bob > b: p = abs((a - bob)) q = abs((b - bob)) if p < q: max = p else: max = q print(max)
Title: Young Photographer Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Among other things, Bob is keen on photography. Especially he likes to take pictures of sportsmen. That was the reason why he placed himself in position *x*0 of a long straight racetrack and got ready to take pictures. Bu...
```python import math bob, n = map(int, input().split()) max = 0 for i in range(n): a, b = map(int, input().split()) if not a < bob < b or a > bob > b: p = abs((a - bob)) q = abs((b - bob)) if p < q: max = p else: max = q print(max) ```
0
727
A
Transformation: from A to B
PROGRAMMING
1,000
[ "brute force", "dfs and similar", "math" ]
null
null
Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2·*x*); - append the digit 1 to the right of current number (that is, replace the number *x* by 10·*x*<=+<=1). You need to he...
The first line contains two positive integers *a* and *b* (1<=≤<=*a*<=&lt;<=*b*<=≤<=109) — the number which Vasily has and the number he wants to have.
If there is no way to get *b* from *a*, print "NO" (without quotes). Otherwise print three lines. On the first line print "YES" (without quotes). The second line should contain single integer *k* — the length of the transformation sequence. On the third line print the sequence of transformations *x*1,<=*x*2,<=...,<=*x...
[ "2 162\n", "4 42\n", "100 40021\n" ]
[ "YES\n5\n2 4 8 81 162 \n", "NO\n", "YES\n5\n100 200 2001 4002 40021 \n" ]
none
1,000
[ { "input": "2 162", "output": "YES\n5\n2 4 8 81 162 " }, { "input": "4 42", "output": "NO" }, { "input": "100 40021", "output": "YES\n5\n100 200 2001 4002 40021 " }, { "input": "1 111111111", "output": "YES\n9\n1 11 111 1111 11111 111111 1111111 11111111 111111111 " }, ...
1,632,640,237
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
61
20,172,800
def solve(n, m, l): if n > m: return [] if n == m: return l ans = solve(n*2, m, l + [n*2]) if ans: return ans return solve(n*10 + 1, m, l + [n*10+1]) n, m = map(int, input().split()) l = solve(n, m, [n]) if not l: print("No") else: print("Yes") print(*l)
Title: Transformation: from A to B Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2·*x*); - app...
```python def solve(n, m, l): if n > m: return [] if n == m: return l ans = solve(n*2, m, l + [n*2]) if ans: return ans return solve(n*10 + 1, m, l + [n*10+1]) n, m = map(int, input().split()) l = solve(n, m, [n]) if not l: print("No") else: print("Yes") print(*l)...
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,679,430,318
2,147,483,647
Python 3
OK
TESTS
20
46
0
n = int(input()) word_list = [] for x in range(n): word = input() word_list.append(word) for w in word_list: if len(w) <= 10: print(w) else: print(w[0] + str(len(w) - 2) + w[-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 n = int(input()) word_list = [] for x in range(n): word = input() word_list.append(word) for w in word_list: if len(w) <= 10: print(w) else: print(w[0] + str(len(w) - 2) + w[-1]) ```
3.977
327
A
Flipping Game
PROGRAMMING
1,200
[ "brute force", "dp", "implementation" ]
null
null
Iahub got bored, so he invented a game to be played on paper. He writes *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Each of those integers can be either 0 or 1. He's allowed to do exactly one move: he chooses two indices *i* and *j* (1<=≤<=*i*<=≤<=*j*<=≤<=*n*) and flips all values *a**k* for which their positions are in...
The first line of the input contains an integer *n* (1<=≤<=*n*<=≤<=100). In the second line of the input there are *n* integers: *a*1,<=*a*2,<=...,<=*a**n*. It is guaranteed that each of those *n* values is either 0 or 1.
Print an integer — the maximal number of 1s that can be obtained after exactly one move.
[ "5\n1 0 0 1 0\n", "4\n1 0 0 1\n" ]
[ "4\n", "4\n" ]
In the first case, flip the segment from 2 to 5 (*i* = 2, *j* = 5). That flip changes the sequence, it becomes: [1 1 1 0 1]. So, it contains four ones. There is no way to make the whole sequence equal to [1 1 1 1 1]. In the second case, flipping only the second and the third element (*i* = 2, *j* = 3) will turn all nu...
500
[ { "input": "5\n1 0 0 1 0", "output": "4" }, { "input": "4\n1 0 0 1", "output": "4" }, { "input": "1\n1", "output": "0" }, { "input": "1\n0", "output": "1" }, { "input": "8\n1 0 0 0 1 0 0 0", "output": "7" }, { "input": "18\n0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
1,679,669,072
2,147,483,647
PyPy 3-64
OK
TESTS
21
154
2,048,000
size = int(input()) nums = list(map(int, input().split())) out = 0 for n in range(0,size): temp = nums.copy() for p in range(n,size): temp[p] = 1-temp[p] out = sum(temp) if sum(temp) > out else out print(out)
Title: Flipping Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub got bored, so he invented a game to be played on paper. He writes *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Each of those integers can be either 0 or 1. He's allowed to do exactly one move: he chooses two indices *...
```python size = int(input()) nums = list(map(int, input().split())) out = 0 for n in range(0,size): temp = nums.copy() for p in range(n,size): temp[p] = 1-temp[p] out = sum(temp) if sum(temp) > out else out print(out) ```
3
779
B
Weird Rounding
PROGRAMMING
1,100
[ "brute force", "greedy" ]
null
null
Polycarp is crazy about round numbers. He especially likes the numbers divisible by 10*k*. In the given number of *n* Polycarp wants to remove the least number of digits to get a number that is divisible by 10*k*. For example, if *k*<==<=3, in the number 30020 it is enough to delete a single digit (2). In this case, t...
The only line of the input contains two integer numbers *n* and *k* (0<=≤<=*n*<=≤<=2<=000<=000<=000, 1<=≤<=*k*<=≤<=9). It is guaranteed that the answer exists. All numbers in the input are written in traditional notation of integers, that is, without any extra leading zeros.
Print *w* — the required minimal number of digits to erase. After removing the appropriate *w* digits from the number *n*, the result should have a value that is divisible by 10*k*. The result can start with digit 0 in the single case (the result is zero and written by exactly the only digit 0).
[ "30020 3\n", "100 9\n", "10203049 2\n" ]
[ "1\n", "2\n", "3\n" ]
In the example 2 you can remove two digits: 1 and any 0. The result is number 0 which is divisible by any number.
1,000
[ { "input": "30020 3", "output": "1" }, { "input": "100 9", "output": "2" }, { "input": "10203049 2", "output": "3" }, { "input": "0 1", "output": "0" }, { "input": "0 9", "output": "0" }, { "input": "100 2", "output": "0" }, { "input": "102...
1,496,020,733
2,147,483,647
Python 3
OK
TESTS
161
62
0
if __name__ == '__main__': n, k = map(int, input().split()) n = list(str(n)) n.reverse() note = list() s, t = len(n), 0 for i in range(s): if n[i] == '0': note.append(i) t += 1 if t < k: print(s - 1) else: print(note[k - 1] - (...
Title: Weird Rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is crazy about round numbers. He especially likes the numbers divisible by 10*k*. In the given number of *n* Polycarp wants to remove the least number of digits to get a number that is divisible by 10*k*. For e...
```python if __name__ == '__main__': n, k = map(int, input().split()) n = list(str(n)) n.reverse() note = list() s, t = len(n), 0 for i in range(s): if n[i] == '0': note.append(i) t += 1 if t < k: print(s - 1) else: print(note[...
3
146
A
Lucky Ticket
PROGRAMMING
800
[ "implementation" ]
null
null
Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya loves tickets very much. As we know, each ticket has a number that is a positive integer. It...
The first line contains an even integer *n* (2<=≤<=*n*<=≤<=50) — the length of the ticket number that needs to be checked. The second line contains an integer whose length equals exactly *n* — the ticket number. The number may contain leading zeros.
On the first line print "YES" if the given ticket number is lucky. Otherwise, print "NO" (without the quotes).
[ "2\n47\n", "4\n4738\n", "4\n4774\n" ]
[ "NO\n", "NO\n", "YES\n" ]
In the first sample the sum of digits in the first half does not equal the sum of digits in the second half (4 ≠ 7). In the second sample the ticket number is not the lucky number.
500
[ { "input": "2\n47", "output": "NO" }, { "input": "4\n4738", "output": "NO" }, { "input": "4\n4774", "output": "YES" }, { "input": "4\n4570", "output": "NO" }, { "input": "6\n477477", "output": "YES" }, { "input": "6\n777777", "output": "YES" }, ...
1,612,540,446
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
92
204,800
import sys def lucky_ticket(length, number): length = int(length) (h1, h2) = (number[:length//2], number[length//2:]) summer = lambda hi: sum(int(i) for i in hi) sum1 = summer(h1) sum2 = summer(h2) if sum1==sum2: return "YES" else: return "NO" if __name__ == '__main__': ...
Title: Lucky Ticket Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python import sys def lucky_ticket(length, number): length = int(length) (h1, h2) = (number[:length//2], number[length//2:]) summer = lambda hi: sum(int(i) for i in hi) sum1 = summer(h1) sum2 = summer(h2) if sum1==sum2: return "YES" else: return "NO" if __name__ == '__m...
-1
0
none
none
none
0
[ "none" ]
null
null
Watchmen are in a danger and Doctor Manhattan together with his friend Daniel Dreiberg should warn them as soon as possible. There are *n* watchmen on a plane, the *i*-th watchman is located at point (*x**i*,<=*y**i*). They need to arrange a plan, but there are some difficulties on their way. As you know, Doctor Manha...
The first line of the input contains the single integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of watchmen. Each of the following *n* lines contains two integers *x**i* and *y**i* (|*x**i*|,<=|*y**i*|<=≤<=109). Some positions may coincide.
Print the number of pairs of watchmen such that the distance between them calculated by Doctor Manhattan is equal to the distance calculated by Daniel.
[ "3\n1 1\n7 5\n1 5\n", "6\n0 0\n0 1\n0 2\n-1 1\n0 1\n1 1\n" ]
[ "2\n", "11\n" ]
In the first sample, the distance between watchman 1 and watchman 2 is equal to |1 - 7| + |1 - 5| = 10 for Doctor Manhattan and <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/bcb5b7064b5f02088da0fdcf677e6fda495dd0df.png" style="max-width: 100.0%;max-height: 100.0%;"/> for Daniel. For pairs...
0
[ { "input": "3\n1 1\n7 5\n1 5", "output": "2" }, { "input": "6\n0 0\n0 1\n0 2\n-1 1\n0 1\n1 1", "output": "11" }, { "input": "10\n46 -55\n46 45\n46 45\n83 -55\n46 45\n83 -55\n46 45\n83 45\n83 45\n46 -55", "output": "33" }, { "input": "1\n-5 -90", "output": "0" }, { ...
1,650,396,320
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
3,000
204,800
y=int(input()) list0=[] s=0 for i in range(y): line2=input() line2=line2.split() r=int(line2[0]) l=int(line2[1]) list0.append([r,l]) for m in range(i): if(list0[m][0]==list0[i][0] or list0[m][1]==list0[i][1]): s=s+1 print(s)
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Watchmen are in a danger and Doctor Manhattan together with his friend Daniel Dreiberg should warn them as soon as possible. There are *n* watchmen on a plane, the *i*-th watchman is located at point (*x**i*,<=*y**i*). They need ...
```python y=int(input()) list0=[] s=0 for i in range(y): line2=input() line2=line2.split() r=int(line2[0]) l=int(line2[1]) list0.append([r,l]) for m in range(i): if(list0[m][0]==list0[i][0] or list0[m][1]==list0[i][1]): s=s+1 print(s) ```
0
172
B
Pseudorandom Sequence Period
PROGRAMMING
1,200
[ "*special", "implementation", "number theory" ]
null
null
Polycarpus has recently got interested in sequences of pseudorandom numbers. He learned that many programming languages generate such sequences in a similar way: (for *i*<=≥<=1). Here *a*, *b*, *m* are constants, fixed for the given realization of the pseudorandom numbers generator, *r*0 is the so-called *randseed* (t...
The single line of the input contains four integers *a*, *b*, *m* and *r*0 (1<=≤<=*m*<=≤<=105,<=0<=≤<=*a*,<=*b*<=≤<=1000,<=0<=≤<=*r*0<=&lt;<=*m*), separated by single spaces.
Print a single integer — the period of the sequence.
[ "2 6 12 11\n", "2 3 5 1\n", "3 6 81 9\n" ]
[ "2\n", "4\n", "1\n" ]
The first sample is described above. In the second sample the sequence is (starting from the first element): 0, 3, 4, 1, 0, 3, 4, 1, 0, ... In the third sample the sequence is (starting from the first element): 33, 24, 78, 78, 78, 78, ...
1,000
[ { "input": "2 6 12 11", "output": "2" }, { "input": "2 3 5 1", "output": "4" }, { "input": "3 6 81 9", "output": "1" }, { "input": "10 11 12 3", "output": "3" }, { "input": "4 4 5 4", "output": "2" }, { "input": "0 1 6 5", "output": "1" }, { ...
1,518,072,372
2,147,483,647
PyPy 3
OK
TESTS
56
156
23,244,800
a, b, m, r0 = [int(k) for k in input().split(' ') if k] valueToPos = [-1 for _ in range(m + 1)] prev = r0 for i in range(m + 1): prev = (a * prev + b) % m if valueToPos[prev] != -1: print(i - valueToPos[prev]) exit() valueToPos[prev] = i raise Exception
Title: Pseudorandom Sequence Period Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has recently got interested in sequences of pseudorandom numbers. He learned that many programming languages generate such sequences in a similar way: (for *i*<=≥<=1). Here *a*, *b*, *m* are con...
```python a, b, m, r0 = [int(k) for k in input().split(' ') if k] valueToPos = [-1 for _ in range(m + 1)] prev = r0 for i in range(m + 1): prev = (a * prev + b) % m if valueToPos[prev] != -1: print(i - valueToPos[prev]) exit() valueToPos[prev] = i raise Exception ```
3
24
B
F1 Champions
PROGRAMMING
1,500
[ "implementation" ]
B. F1 Champions
2
256
Formula One championship consists of series of races called Grand Prix. After every race drivers receive points according to their final position. Only the top 10 drivers receive points in the following order 25, 18, 15, 12, 10, 8, 6, 4, 2, 1. At the conclusion of the championship the driver with most points is the cha...
The first line contain integer *t* (1<=≤<=*t*<=≤<=20), where *t* is the number of races. After that all races are described one by one. Every race description start with an integer *n* (1<=≤<=*n*<=≤<=50) on a line of itself, where *n* is the number of clasified drivers in the given race. After that *n* lines follow wit...
Your output should contain exactly two line. On the first line is the name of the champion according to the original rule, and on the second line the name of the champion according to the alternative rule.
[ "3\n3\nHamilton\nVettel\nWebber\n2\nWebber\nVettel\n2\nHamilton\nVettel\n", "2\n7\nProst\nSurtees\nNakajima\nSchumacher\nButton\nDeLaRosa\nBuemi\n8\nAlonso\nProst\nNinoFarina\nJimClark\nDeLaRosa\nNakajima\nPatrese\nSurtees\n" ]
[ "Vettel\nHamilton\n", "Prost\nProst\n" ]
It is not guaranteed that the same drivers participate in all races. For the championship consider every driver that has participated in at least one race. The total number of drivers during the whole season is not more then 50.
0
[ { "input": "3\n3\nHamilton\nVettel\nWebber\n2\nWebber\nVettel\n2\nHamilton\nVettel", "output": "Vettel\nHamilton" }, { "input": "2\n7\nProst\nSurtees\nNakajima\nSchumacher\nButton\nDeLaRosa\nBuemi\n8\nAlonso\nProst\nNinoFarina\nJimClark\nDeLaRosa\nNakajima\nPatrese\nSurtees", "output": "Prost\nP...
1,503,160,872
2,147,483,647
Python 3
OK
TESTS
51
154
0
t, q = {}, [25, 18, 15, 12, 10, 8, 6, 4, 2, 1] for i in range(int(input())): for j in range(int(input())): p = input() if not p in t: t[p] = [0] * 52 if j < 10: t[p][0] += q[j] t[p][j + 1] += 1 print(max(t.items(), key = lambda x: x[1])[0]) for p in t: t[p][1], t[p][0] = t[p]...
Title: F1 Champions Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Formula One championship consists of series of races called Grand Prix. After every race drivers receive points according to their final position. Only the top 10 drivers receive points in the following order 25, 18, 15, 12, 1...
```python t, q = {}, [25, 18, 15, 12, 10, 8, 6, 4, 2, 1] for i in range(int(input())): for j in range(int(input())): p = input() if not p in t: t[p] = [0] * 52 if j < 10: t[p][0] += q[j] t[p][j + 1] += 1 print(max(t.items(), key = lambda x: x[1])[0]) for p in t: t[p][1], t[p]...
3.9615
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,689,567,300
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include<bits/stdc++.h> using namespace std; int main() { int arr[10][10], a; cin>>a; for (int i=0;i<10; i++) for (int j=1;j<10;j++) arr[i][j]=j*pow(10, i); for (int i=0;i<10;i++) for (int j=1;j<10;j++) if (arr[i][j]>a) { cout<<arr[i][j]-a<<'\n'; return 0; } return 0; }
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 #include<bits/stdc++.h> using namespace std; int main() { int arr[10][10], a; cin>>a; for (int i=0;i<10; i++) for (int j=1;j<10;j++) arr[i][j]=j*pow(10, i); for (int i=0;i<10;i++) for (int j=1;j<10;j++) if (arr[i][j]>a) { cout<<arr[i][j]-a<<'\n'; return 0; } return...
-1
499
B
Lecture
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
You have a new professor of graph theory and he speaks very quickly. You come up with the following plan to keep up with his lecture and make notes. You know two languages, and the professor is giving the lecture in the first one. The words in both languages consist of lowercase English characters, each language consi...
The first line contains two integers, *n* and *m* (1<=≤<=*n*<=≤<=3000, 1<=≤<=*m*<=≤<=3000) — the number of words in the professor's lecture and the number of words in each of these languages. The following *m* lines contain the words. The *i*-th line contains two strings *a**i*, *b**i* meaning that the word *a**i* bel...
Output exactly *n* words: how you will record the lecture in your notebook. Output the words of the lecture in the same order as in the input.
[ "4 3\ncodeforces codesecrof\ncontest round\nletter message\ncodeforces contest letter contest\n", "5 3\njoll wuqrd\neuzf un\nhbnyiyc rsoqqveh\nhbnyiyc joll joll euzf joll\n" ]
[ "codeforces round letter round\n", "hbnyiyc joll joll un joll\n" ]
none
500
[ { "input": "4 3\ncodeforces codesecrof\ncontest round\nletter message\ncodeforces contest letter contest", "output": "codeforces round letter round" }, { "input": "5 3\njoll wuqrd\neuzf un\nhbnyiyc rsoqqveh\nhbnyiyc joll joll euzf joll", "output": "hbnyiyc joll joll un joll" }, { "input"...
1,670,266,800
2,147,483,647
PyPy 3-64
OK
TESTS
37
77
3,686,400
import sys data = sys.stdin.read().strip().split('\n') _, *lines, lecture = data d = {} for line in lines: short, long = sorted(line.split(), key=len) d[long] = short print(' '.join(d[word] if word in d else word for word in lecture.split()))
Title: Lecture Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have a new professor of graph theory and he speaks very quickly. You come up with the following plan to keep up with his lecture and make notes. You know two languages, and the professor is giving the lecture in the first ...
```python import sys data = sys.stdin.read().strip().split('\n') _, *lines, lecture = data d = {} for line in lines: short, long = sorted(line.split(), key=len) d[long] = short print(' '.join(d[word] if word in d else word for word in lecture.split())) ```
3
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,544,255,133
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
108
0
s=input() x=[] xx={'h','e','l','o'} f=False for i in range(len(s)): if s[i] =='h' or s[i] =='e' or s[i] =='l' or s[i] =='o': x.append(s[i]) #print(x) if 'l' in x: index=x.index('l') if index<len(x)-1: if x[index+1]=='l': x=set(x) #print(x) if...
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s=input() x=[] xx={'h','e','l','o'} f=False for i in range(len(s)): if s[i] =='h' or s[i] =='e' or s[i] =='l' or s[i] =='o': x.append(s[i]) #print(x) if 'l' in x: index=x.index('l') if index<len(x)-1: if x[index+1]=='l': x=set(x) #print(x) ...
0
343
B
Alternating Current
PROGRAMMING
1,600
[ "data structures", "greedy", "implementation" ]
null
null
Mad scientist Mike has just finished constructing a new device to search for extraterrestrial intelligence! He was in such a hurry to launch it for the first time that he plugged in the power wires without giving it a proper glance and started experimenting right away. After a while Mike observed that the wires ended u...
The single line of the input contains a sequence of characters "+" and "-" of length *n* (1<=≤<=*n*<=≤<=100000). The *i*-th (1<=≤<=*i*<=≤<=*n*) position of the sequence contains the character "+", if on the *i*-th step from the wall the "plus" wire runs above the "minus" wire, and the character "-" otherwise.
Print either "Yes" (without the quotes) if the wires can be untangled or "No" (without the quotes) if the wires cannot be untangled.
[ "-++-\n", "+-\n", "++\n", "-\n" ]
[ "Yes\n", "No\n", "Yes\n", "No\n" ]
The first testcase corresponds to the picture in the statement. To untangle the wires, one can first move the "plus" wire lower, thus eliminating the two crosses in the middle, and then draw it under the "minus" wire, eliminating also the remaining two crosses. In the second testcase the "plus" wire makes one full rev...
1,000
[ { "input": "-++-", "output": "Yes" }, { "input": "+-", "output": "No" }, { "input": "++", "output": "Yes" }, { "input": "-", "output": "No" }, { "input": "+-+-", "output": "No" }, { "input": "-+-", "output": "No" }, { "input": "-++-+--+", ...
1,689,335,436
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
60
0
def untangle_wires(sequence): stack = [] for symbol in sequence: if symbol == '+': stack.append(symbol) elif symbol == '-': if not stack: return "No" stack.pop() if not stack: return "Yes" else: return "N...
Title: Alternating Current Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mad scientist Mike has just finished constructing a new device to search for extraterrestrial intelligence! He was in such a hurry to launch it for the first time that he plugged in the power wires without giving it...
```python def untangle_wires(sequence): stack = [] for symbol in sequence: if symbol == '+': stack.append(symbol) elif symbol == '-': if not stack: return "No" stack.pop() if not stack: return "Yes" else: ...
0
535
B
Tavas and SaDDas
PROGRAMMING
1,100
[ "bitmasks", "brute force", "combinatorics", "implementation" ]
null
null
Once again Tavas started eating coffee mix without water! Keione told him that it smells awful, but he didn't stop doing that. That's why Keione told his smart friend, SaDDas to punish him! SaDDas took Tavas' headphones and told him: "If you solve the following problem, I'll return it to you." The problem is: You ar...
The first and only line of input contains a lucky number *n* (1<=≤<=*n*<=≤<=109).
Print the index of *n* among all lucky numbers.
[ "4\n", "7\n", "77\n" ]
[ "1\n", "2\n", "6\n" ]
none
1,000
[ { "input": "4", "output": "1" }, { "input": "7", "output": "2" }, { "input": "77", "output": "6" }, { "input": "4", "output": "1" }, { "input": "474744", "output": "83" }, { "input": "777774", "output": "125" }, { "input": "447", "outpu...
1,616,346,925
2,147,483,647
Python 3
OK
TESTS
33
77
0
n=int(input()) s=str(n) l=len(s) i=1 total=0 while(i<l): total+=(2**i) i+=1 num=2**i for j in range(i): if(s[j]=='4'): total+=0 else: total+=num//2 num=num//2 print(total+1)
Title: Tavas and SaDDas Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once again Tavas started eating coffee mix without water! Keione told him that it smells awful, but he didn't stop doing that. That's why Keione told his smart friend, SaDDas to punish him! SaDDas took Tavas' headphone...
```python n=int(input()) s=str(n) l=len(s) i=1 total=0 while(i<l): total+=(2**i) i+=1 num=2**i for j in range(i): if(s[j]=='4'): total+=0 else: total+=num//2 num=num//2 print(total+1) ```
3
859
A
Declined Finalists
PROGRAMMING
800
[ "greedy", "implementation" ]
null
null
This year, as in previous years, MemSQL is inviting the top 25 competitors from the Start[c]up qualification round to compete onsite for the final round. Not everyone who is eligible to compete onsite can afford to travel to the office, though. Initially the top 25 contestants are invited to come onsite. Each eligible ...
The first line of input contains *K* (1<=≤<=*K*<=≤<=25), the number of onsite finalists you know. The second line of input contains *r*1,<=*r*2,<=...,<=*r**K* (1<=≤<=*r**i*<=≤<=106), the qualifying ranks of the finalists you know. All these ranks are distinct.
Print the minimum possible number of contestants that declined the invitation to compete onsite.
[ "25\n2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 24 25 26 28\n", "5\n16 23 8 15 4\n", "3\n14 15 92\n" ]
[ "3\n", "0\n", "67\n" ]
In the first example, you know all 25 onsite finalists. The contestants who ranked 1-st, 13-th, and 27-th must have declined, so the answer is 3.
500
[ { "input": "25\n2 3 4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 22 23 24 25 26 28", "output": "3" }, { "input": "5\n16 23 8 15 4", "output": "0" }, { "input": "3\n14 15 92", "output": "67" }, { "input": "1\n1000000", "output": "999975" }, { "input": "25\n1000000 ...
1,505,585,670
2,370
Python 3
OK
TESTS
25
62
0
n = int(input()) s = list(map(int, input().split())) s.sort() if s[-1] > 25: print(s[-1] - 25) else: print(0)
Title: Declined Finalists Time Limit: None seconds Memory Limit: None megabytes Problem Description: This year, as in previous years, MemSQL is inviting the top 25 competitors from the Start[c]up qualification round to compete onsite for the final round. Not everyone who is eligible to compete onsite can afford to t...
```python n = int(input()) s = list(map(int, input().split())) s.sort() if s[-1] > 25: print(s[-1] - 25) else: print(0) ```
3
525
C
Ilya and Sticks
PROGRAMMING
1,600
[ "greedy", "math", "sortings" ]
null
null
In the evening, after the contest Ilya was bored, and he really felt like maximizing. He remembered that he had a set of *n* sticks and an instrument. Each stick is characterized by its length *l**i*. Ilya decided to make a rectangle from the sticks. And due to his whim, he decided to make rectangles in such a way tha...
The first line of the input contains a positive integer *n* (1<=≤<=*n*<=≤<=105) — the number of the available sticks. The second line of the input contains *n* positive integers *l**i* (2<=≤<=*l**i*<=≤<=106) — the lengths of the sticks.
The first line of the output must contain a single non-negative integer — the maximum total area of the rectangles that Ilya can make from the available sticks.
[ "4\n2 4 4 2\n", "4\n2 2 3 5\n", "4\n100003 100004 100005 100006\n" ]
[ "8\n", "0\n", "10000800015\n" ]
none
1,000
[ { "input": "4\n2 4 4 2", "output": "8" }, { "input": "4\n2 2 3 5", "output": "0" }, { "input": "4\n100003 100004 100005 100006", "output": "10000800015" }, { "input": "8\n5 3 3 3 3 4 4 4", "output": "25" }, { "input": "10\n123 124 123 124 2 2 2 2 9 9", "output...
1,583,343,459
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
140
5,324,800
import sys input = sys.stdin.readline n = int(input()) l = list(map(int, input().split())) cnt = [0]*(10**6+2) for li in l: cnt[li] += 1 ans = 0 for i in range(10**6, 0, -1): if cnt[i]+cnt[i+1]>=4: ans = max(ans, i*i) for i in range(10**6, 0, -1): if cnt[i]+cnt[i+1]>=2: ...
Title: Ilya and Sticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: In the evening, after the contest Ilya was bored, and he really felt like maximizing. He remembered that he had a set of *n* sticks and an instrument. Each stick is characterized by its length *l**i*. Ilya decided to m...
```python import sys input = sys.stdin.readline n = int(input()) l = list(map(int, input().split())) cnt = [0]*(10**6+2) for li in l: cnt[li] += 1 ans = 0 for i in range(10**6, 0, -1): if cnt[i]+cnt[i+1]>=4: ans = max(ans, i*i) for i in range(10**6, 0, -1): if cnt[i]+cnt[i+1]>=...
0
656
G
You're a Professional
PROGRAMMING
1,900
[ "*special" ]
null
null
A simple recommendation system would recommend a user things liked by a certain number of their friends. In this problem you will implement part of such a system. You are given user's friends' opinions about a list of items. You are also given a threshold *T* — the minimal number of "likes" necessary for an item to be...
The first line of the input will contain three space-separated integers: the number of friends *F* (1<=≤<=*F*<=≤<=10), the number of items *I* (1<=≤<=*I*<=≤<=10) and the threshold *T* (1<=≤<=*T*<=≤<=*F*). The following *F* lines of input contain user's friends' opinions. *j*-th character of *i*-th line is 'Y' if *i*-t...
Output an integer — the number of items liked by at least *T* of user's friends.
[ "3 3 2\nYYY\nNNN\nYNY\n", "4 4 1\nNNNY\nNNYN\nNYNN\nYNNN\n" ]
[ "2\n", "4\n" ]
none
0
[ { "input": "3 3 2\nYYY\nNNN\nYNY", "output": "2" }, { "input": "4 4 1\nNNNY\nNNYN\nNYNN\nYNNN", "output": "4" }, { "input": "3 5 2\nNYNNY\nYNNNN\nNNYYN", "output": "0" }, { "input": "1 10 1\nYYYNYNNYNN", "output": "5" }, { "input": "10 1 5\nY\nN\nN\nN\nY\nN\nN\nY\...
1,514,602,175
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
0
0
n,m,k=map(int,input().split()) a=[0]*n for i in range(n): a[i]=input() b=0 for i in range(m): c=0 for j in range(n): c+=(a[j][i]=='Y') b+=(c>=k) print(b)
Title: You're a Professional Time Limit: None seconds Memory Limit: None megabytes Problem Description: A simple recommendation system would recommend a user things liked by a certain number of their friends. In this problem you will implement part of such a system. You are given user's friends' opinions about a li...
```python n,m,k=map(int,input().split()) a=[0]*n for i in range(n): a[i]=input() b=0 for i in range(m): c=0 for j in range(n): c+=(a[j][i]=='Y') b+=(c>=k) print(b) ```
0
370
A
Rook, Bishop and King
PROGRAMMING
1,100
[ "graphs", "math", "shortest paths" ]
null
null
Little Petya is learning to play chess. He has already learned how to move a king, a rook and a bishop. Let us remind you the rules of moving chess pieces. A chessboard is 64 square fields organized into an 8<=×<=8 table. A field is represented by a pair of integers (*r*,<=*c*) — the number of the row and the number of...
The input contains four integers *r*1,<=*c*1,<=*r*2,<=*c*2 (1<=≤<=*r*1,<=*c*1,<=*r*2,<=*c*2<=≤<=8) — the coordinates of the starting and the final field. The starting field doesn't coincide with the final one. You can assume that the chessboard rows are numbered from top to bottom 1 through 8, and the columns are numb...
Print three space-separated integers: the minimum number of moves the rook, the bishop and the king (in this order) is needed to move from field (*r*1,<=*c*1) to field (*r*2,<=*c*2). If a piece cannot make such a move, print a 0 instead of the corresponding number.
[ "4 3 1 6\n", "5 5 5 6\n" ]
[ "2 1 3\n", "1 0 1\n" ]
none
500
[ { "input": "4 3 1 6", "output": "2 1 3" }, { "input": "5 5 5 6", "output": "1 0 1" }, { "input": "1 1 8 8", "output": "2 1 7" }, { "input": "1 1 8 1", "output": "1 0 7" }, { "input": "1 1 1 8", "output": "1 0 7" }, { "input": "8 1 1 1", "output": "...
1,398,266,138
2,147,483,647
Python 3
OK
TESTS
42
77
0
__author__ = 'widoc' r1, c1, r2, c2 = map(int, input().split()) a1 = 1 if r1 == r2 or c1 == c2 else 2 a2 = 0 if abs(r1-r2) == abs(c1-c2): a2 = 1 elif (abs(r1-r2) + abs(c1-c2)) % 2 == 0: a2 = 2 a3 = max(abs(r1-r2),abs(c1-c2)) print(a1, a2, a3)
Title: Rook, Bishop and King Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya is learning to play chess. He has already learned how to move a king, a rook and a bishop. Let us remind you the rules of moving chess pieces. A chessboard is 64 square fields organized into an 8<=×<=...
```python __author__ = 'widoc' r1, c1, r2, c2 = map(int, input().split()) a1 = 1 if r1 == r2 or c1 == c2 else 2 a2 = 0 if abs(r1-r2) == abs(c1-c2): a2 = 1 elif (abs(r1-r2) + abs(c1-c2)) % 2 == 0: a2 = 2 a3 = max(abs(r1-r2),abs(c1-c2)) print(a1, a2, a3) ```
3
177
B1
Rectangular Game
PROGRAMMING
1,000
[ "number theory" ]
null
null
The Smart Beaver from ABBYY decided to have a day off. But doing nothing the whole day turned out to be too boring, and he decided to play a game with pebbles. Initially, the Beaver has *n* pebbles. He arranges them in *a* equal rows, each row has *b* pebbles (*a*<=&gt;<=1). Note that the Beaver must use all the pebble...
The single line of the input contains a single integer *n* — the initial number of pebbles the Smart Beaver has. The input limitations for getting 30 points are: - 2<=≤<=*n*<=≤<=50 The input limitations for getting 100 points are: - 2<=≤<=*n*<=≤<=109
Print a single number — the maximum possible result of the game.
[ "10\n", "8\n" ]
[ "16\n", "15\n" ]
Consider the first example (*c*<sub class="lower-index">1</sub> = 10). The possible options for the game development are: - Arrange the pebbles in 10 rows, one pebble per row. Then *c*<sub class="lower-index">2</sub> = 1, and the game ends after the first move with the result of 11. - Arrange the pebbles in 5 rows, ...
30
[ { "input": "10", "output": "16" }, { "input": "8", "output": "15" }, { "input": "4", "output": "7" }, { "input": "36", "output": "67" }, { "input": "32", "output": "63" }, { "input": "46", "output": "70" }, { "input": "6", "output": "10...
1,588,229,746
2,147,483,647
PyPy 3
OK
TESTS1
26
310
0
def sieve(x): i=2 while(i*i<=x): if(x%i==0): return x//i i+=1 else: return 1 n=int(input()) c=n ans=c while(c!=1): c= sieve(c) ans+=c print(ans)
Title: Rectangular Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Smart Beaver from ABBYY decided to have a day off. But doing nothing the whole day turned out to be too boring, and he decided to play a game with pebbles. Initially, the Beaver has *n* pebbles. He arranges them in...
```python def sieve(x): i=2 while(i*i<=x): if(x%i==0): return x//i i+=1 else: return 1 n=int(input()) c=n ans=c while(c!=1): c= sieve(c) ans+=c print(ans) ```
3
137
C
History
PROGRAMMING
1,500
[ "sortings" ]
null
null
Polycarpus likes studying at school a lot and he is always diligent about his homework. Polycarpus has never had any problems with natural sciences as his great-great-grandfather was the great physicist Seinstein. On the other hand though, Polycarpus has never had an easy time with history. Everybody knows that the Wo...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=105) which represents the number of events. Next *n* lines contain descriptions of the historical events, one event per line. The *i*<=+<=1 line contains two integers *a**i* and *b**i* (1<=≤<=*a**i*<=&lt;<=*b**i*<=≤<=109) — the beginning and the end of the *i*-th...
Print the only integer — the answer to the problem.
[ "5\n1 10\n2 9\n3 8\n4 7\n5 6\n", "5\n1 100\n2 50\n51 99\n52 98\n10 60\n", "1\n1 1000000000\n" ]
[ "4\n", "4\n", "0\n" ]
In the first example the fifth event is contained in the fourth. Similarly, the fourth event is contained in the third, the third — in the second and the second — in the first. In the second example all events except the first one are contained in the first. In the third example only one event, so the answer is 0.
1,500
[ { "input": "5\n1 10\n2 9\n3 8\n4 7\n5 6", "output": "4" }, { "input": "5\n1 100\n2 50\n51 99\n52 98\n10 60", "output": "4" }, { "input": "1\n1 1000000000", "output": "0" }, { "input": "2\n100 1000\n500 1500", "output": "0" }, { "input": "4\n1 100\n50 150\n120 200\...
1,624,366,295
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
14
654
7,475,200
from collections import defaultdict dic = defaultdict(list) n = int(input()) dates = [] for i in range(n): dates.append(tuple(map(int,input().split()))) tempDate = dates[0] sol = 0 for i in range(1,n): if dates[i][0] > tempDate[0] and dates[i][1] < tempDate[1]: sol += 1 else: ...
Title: History Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus likes studying at school a lot and he is always diligent about his homework. Polycarpus has never had any problems with natural sciences as his great-great-grandfather was the great physicist Seinstein. On the other ...
```python from collections import defaultdict dic = defaultdict(list) n = int(input()) dates = [] for i in range(n): dates.append(tuple(map(int,input().split()))) tempDate = dates[0] sol = 0 for i in range(1,n): if dates[i][0] > tempDate[0] and dates[i][1] < tempDate[1]: sol += 1 ...
0
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,661,514,561
2,147,483,647
Python 3
OK
TESTS
34
92
102,400
from collections import Counter n = int(input()) arr = [] for x in range(n): team = input() arr.append(team) answer = dict(Counter(arr)) print(max(answer, key=answer.get))
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python from collections import Counter n = int(input()) arr = [] for x in range(n): team = input() arr.append(team) answer = dict(Counter(arr)) print(max(answer, key=answer.get)) ```
3.976809
478
B
Random Teams
PROGRAMMING
1,300
[ "combinatorics", "constructive algorithms", "greedy", "math" ]
null
null
*n* participants of the competition were split into *m* teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends. Your task is to write a program that will find the minimum and the maximum number of pairs of friends that coul...
The only line of input contains two integers *n* and *m*, separated by a single space (1<=≤<=*m*<=≤<=*n*<=≤<=109) — the number of participants and the number of teams respectively.
The only line of the output should contain two integers *k**min* and *k**max* — the minimum possible number of pairs of friends and the maximum possible number of pairs of friends respectively.
[ "5 1\n", "3 2\n", "6 3\n" ]
[ "10 10\n", "1 1\n", "3 6\n" ]
In the first sample all the participants get into one team, so there will be exactly ten pairs of friends. In the second sample at any possible arrangement one team will always have two participants and the other team will always have one participant. Thus, the number of pairs of friends will always be equal to one. ...
1,000
[ { "input": "5 1", "output": "10 10" }, { "input": "3 2", "output": "1 1" }, { "input": "6 3", "output": "3 6" }, { "input": "5 3", "output": "2 3" }, { "input": "10 2", "output": "20 36" }, { "input": "10 6", "output": "4 10" }, { "input": ...
1,677,254,848
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
1,000
54,886,400
n, m = map(int, input().split()) def sumUpTo(n): return int(n/2 * (n-1)) low, high = 0, 0 teams = [n//m for i in range(m-1)] teams.append(n - (n//m)*(m-1)) for i in range(m-2, 0, -1): if teams[-1] >teams[i] + 1: teams[-1] -= 1 teams[i] += 1 else: break for i in r...
Title: Random Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* participants of the competition were split into *m* teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends. Your task is ...
```python n, m = map(int, input().split()) def sumUpTo(n): return int(n/2 * (n-1)) low, high = 0, 0 teams = [n//m for i in range(m-1)] teams.append(n - (n//m)*(m-1)) for i in range(m-2, 0, -1): if teams[-1] >teams[i] + 1: teams[-1] -= 1 teams[i] += 1 else: break ...
0
837
B
Flag of Berland
PROGRAMMING
1,600
[ "brute force", "implementation" ]
null
null
The flag of Berland is such rectangular field *n*<=×<=*m* that satisfies following conditions: - Flag consists of three colors which correspond to letters 'R', 'G' and 'B'. - Flag consists of three equal in width and height stripes, parralel to each other and to sides of the flag. Each stripe has exactly one color. ...
The first line contains two integer numbers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the sizes of the field. Each of the following *n* lines consisting of *m* characters 'R', 'G' and 'B' — the description of the field.
Print "YES" (without quotes) if the given field corresponds to correct flag of Berland . Otherwise, print "NO" (without quotes).
[ "6 5\nRRRRR\nRRRRR\nBBBBB\nBBBBB\nGGGGG\nGGGGG\n", "4 3\nBRG\nBRG\nBRG\nBRG\n", "6 7\nRRRGGGG\nRRRGGGG\nRRRGGGG\nRRRBBBB\nRRRBBBB\nRRRBBBB\n", "4 4\nRRRR\nRRRR\nBBBB\nGGGG\n" ]
[ "YES\n", "YES\n", "NO\n", "NO\n" ]
The field in the third example doesn't have three parralel stripes. Rows of the field in the fourth example are parralel to each other and to borders. But they have different heights — 2, 1 and 1.
0
[ { "input": "6 5\nRRRRR\nRRRRR\nBBBBB\nBBBBB\nGGGGG\nGGGGG", "output": "YES" }, { "input": "4 3\nBRG\nBRG\nBRG\nBRG", "output": "YES" }, { "input": "6 7\nRRRGGGG\nRRRGGGG\nRRRGGGG\nRRRBBBB\nRRRBBBB\nRRRBBBB", "output": "NO" }, { "input": "4 4\nRRRR\nRRRR\nBBBB\nGGGG", "out...
1,586,323,676
1,376
PyPy 3
WRONG_ANSWER
TESTS
10
124
0
n,m = map(int,input().split()) lis=[] for i in range(n): l = list(input()) lis.append(l) #hori d={} d['R']=0;d['G']=0;d['B']=0; cr=1 for i in range(n): a=set(lis[i]) if len(a)>1: cr=0 break for j in a: d[j]+=1 #print(set(d.values())) if len(set(d.value...
Title: Flag of Berland Time Limit: None seconds Memory Limit: None megabytes Problem Description: The flag of Berland is such rectangular field *n*<=×<=*m* that satisfies following conditions: - Flag consists of three colors which correspond to letters 'R', 'G' and 'B'. - Flag consists of three equal in width and...
```python n,m = map(int,input().split()) lis=[] for i in range(n): l = list(input()) lis.append(l) #hori d={} d['R']=0;d['G']=0;d['B']=0; cr=1 for i in range(n): a=set(lis[i]) if len(a)>1: cr=0 break for j in a: d[j]+=1 #print(set(d.values())) if len(s...
0
678
D
Iterated Linear Function
PROGRAMMING
1,700
[ "math", "number theory" ]
null
null
Consider a linear function *f*(*x*)<==<=*Ax*<=+<=*B*. Let's define *g*(0)(*x*)<==<=*x* and *g*(*n*)(*x*)<==<=*f*(*g*(*n*<=-<=1)(*x*)) for *n*<=&gt;<=0. For the given integer values *A*, *B*, *n* and *x* find the value of *g*(*n*)(*x*) modulo 109<=+<=7.
The only line contains four integers *A*, *B*, *n* and *x* (1<=≤<=*A*,<=*B*,<=*x*<=≤<=109,<=1<=≤<=*n*<=≤<=1018) — the parameters from the problem statement. Note that the given value *n* can be too large, so you should use 64-bit integer type to store it. In C++ you can use the long long integer type and in Java you c...
Print the only integer *s* — the value *g*(*n*)(*x*) modulo 109<=+<=7.
[ "3 4 1 1\n", "3 4 2 1\n", "3 4 3 1\n" ]
[ "7\n", "25\n", "79\n" ]
none
0
[ { "input": "3 4 1 1", "output": "7" }, { "input": "3 4 2 1", "output": "25" }, { "input": "3 4 3 1", "output": "79" }, { "input": "1 1 1 1", "output": "2" }, { "input": "3 10 723 6", "output": "443623217" }, { "input": "14 81 51 82", "output": "908...
1,617,974,697
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
93
0
M = 10**9 + 7 def le(A, n): return (((pow(A, n, M) % M) - (1 % M)) % M) * pow(A - 1, M-2, M) A,B,n,x = map(int,input().split()) first = (pow(A, n, M) * x) % M second = (B * le(A, n)) % M print((first + second) % M)
Title: Iterated Linear Function Time Limit: None seconds Memory Limit: None megabytes Problem Description: Consider a linear function *f*(*x*)<==<=*Ax*<=+<=*B*. Let's define *g*(0)(*x*)<==<=*x* and *g*(*n*)(*x*)<==<=*f*(*g*(*n*<=-<=1)(*x*)) for *n*<=&gt;<=0. For the given integer values *A*, *B*, *n* and *x* find th...
```python M = 10**9 + 7 def le(A, n): return (((pow(A, n, M) % M) - (1 % M)) % M) * pow(A - 1, M-2, M) A,B,n,x = map(int,input().split()) first = (pow(A, n, M) * x) % M second = (B * le(A, n)) % M print((first + second) % M) ```
0
443
A
Anton and Letters
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
Recently, Anton has found a set. The set consists of small English letters. Anton carefully wrote out all the letters from the set in one line, separated by a comma. He also added an opening curved bracket at the beginning of the line and a closing curved bracket at the end of the line. Unfortunately, from time to ti...
The first and the single line contains the set of letters. The length of the line doesn't exceed 1000. It is guaranteed that the line starts from an opening curved bracket and ends with a closing curved bracket. Between them, small English letters are listed, separated by a comma. Each comma is followed by a space.
Print a single number — the number of distinct letters in Anton's set.
[ "{a, b, c}\n", "{b, a, b, a}\n", "{}\n" ]
[ "3\n", "2\n", "0\n" ]
none
500
[ { "input": "{a, b, c}", "output": "3" }, { "input": "{b, a, b, a}", "output": "2" }, { "input": "{}", "output": "0" }, { "input": "{a, a, c, b, b, b, c, c, c, c}", "output": "3" }, { "input": "{a, c, b, b}", "output": "3" }, { "input": "{a, b}", "o...
1,689,853,729
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
31
0
s=set(input().split()) words=list(s) freq={} for i in range(len(words)): freq[words[i]] = freq.get(words[i],0) + 1 print(len(freq))
Title: Anton and Letters Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently, Anton has found a set. The set consists of small English letters. Anton carefully wrote out all the letters from the set in one line, separated by a comma. He also added an opening curved bracket at the begi...
```python s=set(input().split()) words=list(s) freq={} for i in range(len(words)): freq[words[i]] = freq.get(words[i],0) + 1 print(len(freq)) ```
0
427
A
Police Recruits
PROGRAMMING
800
[ "implementation" ]
null
null
The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of the police force can investigate only one crime during his/her lifetime. If there is no police offi...
The first line of input will contain an integer *n* (1<=≤<=*n*<=≤<=105), the number of events. The next line will contain *n* space-separated integers. If the integer is -1 then it means a crime has occurred. Otherwise, the integer will be positive, the number of officers recruited together at that time. No more than ...
Print a single integer, the number of crimes which will go untreated.
[ "3\n-1 -1 1\n", "8\n1 -1 1 -1 -1 1 1 1\n", "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1\n" ]
[ "2\n", "1\n", "8\n" ]
Lets consider the second example: 1. Firstly one person is hired. 1. Then crime appears, the last hired person will investigate this crime. 1. One more person is hired. 1. One more crime appears, the last hired person will investigate this crime. 1. Crime appears. There is no free policeman at the time, so this c...
500
[ { "input": "3\n-1 -1 1", "output": "2" }, { "input": "8\n1 -1 1 -1 -1 1 1 1", "output": "1" }, { "input": "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1", "output": "8" }, { "input": "7\n-1 -1 1 1 -1 -1 1", "output": "2" }, { "input": "21\n-1 -1 -1 -1 -1 3 2 -1 6 -1 -1 2 1 ...
1,690,207,954
2,147,483,647
PyPy 3-64
OK
TESTS
63
62
9,932,800
n=int(input()) v=[int(i) for i in input().split()] c=0 d=0 for i in v: if i==-1: if c==0: d+=1 else: c-=1 else: c+=i print(d)
Title: Police Recruits Time Limit: None seconds Memory Limit: None megabytes Problem Description: The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of...
```python n=int(input()) v=[int(i) for i in input().split()] c=0 d=0 for i in v: if i==-1: if c==0: d+=1 else: c-=1 else: c+=i print(d) ```
3
978
C
Letters
PROGRAMMING
1,000
[ "binary search", "implementation", "two pointers" ]
null
null
There are $n$ dormitories in Berland State University, they are numbered with integers from $1$ to $n$. Each dormitory consists of rooms, there are $a_i$ rooms in $i$-th dormitory. The rooms in $i$-th dormitory are numbered from $1$ to $a_i$. A postman delivers letters. Sometimes there is no specific dormitory and roo...
The first line contains two integers $n$ and $m$ $(1 \le n, m \le 2 \cdot 10^{5})$ — the number of dormitories and the number of letters. The second line contains a sequence $a_1, a_2, \dots, a_n$ $(1 \le a_i \le 10^{10})$, where $a_i$ equals to the number of rooms in the $i$-th dormitory. The third line contains a se...
Print $m$ lines. For each letter print two integers $f$ and $k$ — the dormitory number $f$ $(1 \le f \le n)$ and the room number $k$ in this dormitory $(1 \le k \le a_f)$ to deliver the letter.
[ "3 6\n10 15 12\n1 9 12 23 26 37\n", "2 3\n5 10000000000\n5 6 9999999999\n" ]
[ "1 1\n1 9\n2 2\n2 13\n3 1\n3 12\n", "1 5\n2 1\n2 9999999994\n" ]
In the first example letters should be delivered in the following order: - the first letter in room $1$ of the first dormitory - the second letter in room $9$ of the first dormitory - the third letter in room $2$ of the second dormitory - the fourth letter in room $13$ of the second dormitory - the fifth letter i...
0
[ { "input": "3 6\n10 15 12\n1 9 12 23 26 37", "output": "1 1\n1 9\n2 2\n2 13\n3 1\n3 12" }, { "input": "2 3\n5 10000000000\n5 6 9999999999", "output": "1 5\n2 1\n2 9999999994" }, { "input": "1 1\n1\n1", "output": "1 1" }, { "input": "5 15\n10 20 30 20 10\n1 6 10 11 15 30 31 54...
1,663,518,211
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
826
19,968,000
n, m = map(int, input().split()) r = list(map(int, input().split())) r = [0] + r for i in range(1, len(r)): r[i] = r[i] + r[i - 1] w = 0 for i in map(int, input().split()): if r[w + 1] < i: w += 1 print(w + 1, i - r[w])
Title: Letters Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are $n$ dormitories in Berland State University, they are numbered with integers from $1$ to $n$. Each dormitory consists of rooms, there are $a_i$ rooms in $i$-th dormitory. The rooms in $i$-th dormitory are numbered fro...
```python n, m = map(int, input().split()) r = list(map(int, input().split())) r = [0] + r for i in range(1, len(r)): r[i] = r[i] + r[i - 1] w = 0 for i in map(int, input().split()): if r[w + 1] < i: w += 1 print(w + 1, i - r[w]) ```
0
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,689,793,713
2,147,483,647
Python 3
OK
TESTS
34
92
307,200
#https://codeforces.com/problemset/problem/43/A from collections import Counter results = int(input()) result = [] while results > 0: result.append(input()) results -=1 result_dict = Counter(result) print(max(result_dict, key=result_dict.get))
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python #https://codeforces.com/problemset/problem/43/A from collections import Counter results = int(input()) result = [] while results > 0: result.append(input()) results -=1 result_dict = Counter(result) print(max(result_dict, key=result_dict.get)) ```
3.976428
732
A
Buy a Shovel
PROGRAMMING
800
[ "brute force", "constructive algorithms", "implementation", "math" ]
null
null
Polycarp urgently needs a shovel! He comes to the shop and chooses an appropriate one. The shovel that Policarp chooses is sold for *k* burles. Assume that there is an unlimited number of such shovels in the shop. In his pocket Polycarp has an unlimited number of "10-burle coins" and exactly one coin of *r* burles (1<...
The single line of input contains two integers *k* and *r* (1<=≤<=*k*<=≤<=1000, 1<=≤<=*r*<=≤<=9) — the price of one shovel and the denomination of the coin in Polycarp's pocket that is different from "10-burle coins". Remember that he has an unlimited number of coins in the denomination of 10, that is, Polycarp has e...
Print the required minimum number of shovels Polycarp has to buy so that he can pay for them without any change.
[ "117 3\n", "237 7\n", "15 2\n" ]
[ "9\n", "1\n", "2\n" ]
In the first example Polycarp can buy 9 shovels and pay 9·117 = 1053 burles. Indeed, he can pay this sum by using 10-burle coins and one 3-burle coin. He can't buy fewer shovels without any change. In the second example it is enough for Polycarp to buy one shovel. In the third example Polycarp should buy two shovels ...
500
[ { "input": "117 3", "output": "9" }, { "input": "237 7", "output": "1" }, { "input": "15 2", "output": "2" }, { "input": "1 1", "output": "1" }, { "input": "1 9", "output": "9" }, { "input": "1000 3", "output": "1" }, { "input": "1000 1", ...
1,682,178,902
2,147,483,647
Python 3
OK
TESTS
54
46
0
m,n=input().split(" ") n=float(n) m=float(m) ans=1 f=m while f % 10 !=0.0 and (f-n)%10!=0.0: f=f+m ans=ans+1 print(ans)
Title: Buy a Shovel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp urgently needs a shovel! He comes to the shop and chooses an appropriate one. The shovel that Policarp chooses is sold for *k* burles. Assume that there is an unlimited number of such shovels in the shop. In his ...
```python m,n=input().split(" ") n=float(n) m=float(m) ans=1 f=m while f % 10 !=0.0 and (f-n)%10!=0.0: f=f+m ans=ans+1 print(ans) ```
3
572
B
Order Book
PROGRAMMING
1,300
[ "data structures", "greedy", "implementation", "sortings" ]
null
null
In this task you need to process a set of stock exchange orders and use them to create order book. An order is an instruction of some participant to buy or sell stocks on stock exchange. The order number *i* has price *p**i*, direction *d**i* — buy or sell, and integer *q**i*. This means that the participant is ready ...
The input starts with two positive integers *n* and *s* (1<=≤<=*n*<=≤<=1000,<=1<=≤<=*s*<=≤<=50), the number of orders and the book depth. Next *n* lines contains a letter *d**i* (either 'B' or 'S'), an integer *p**i* (0<=≤<=*p**i*<=≤<=105) and an integer *q**i* (1<=≤<=*q**i*<=≤<=104) — direction, price and volume resp...
Print no more than 2*s* lines with aggregated orders from order book of depth *s*. The output format for orders should be the same as in input.
[ "6 2\nB 10 3\nS 50 2\nS 40 1\nS 50 6\nB 20 4\nB 25 10\n" ]
[ "S 50 8\nS 40 1\nB 25 10\nB 20 4\n" ]
Denote (x, y) an order with price *x* and volume *y*. There are 3 aggregated buy orders (10, 3), (20, 4), (25, 10) and two sell orders (50, 8), (40, 1) in the sample. You need to print no more than two best orders for each direction, so you shouldn't print the order (10 3) having the worst price among buy orders.
1,000
[ { "input": "6 2\nB 10 3\nS 50 2\nS 40 1\nS 50 6\nB 20 4\nB 25 10", "output": "S 50 8\nS 40 1\nB 25 10\nB 20 4" }, { "input": "2 1\nB 7523 5589\nS 69799 1711", "output": "S 69799 1711\nB 7523 5589" }, { "input": "1 1\nB 48259 991", "output": "B 48259 991" }, { "input": "1 50\n...
1,657,826,850
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
7
62
0
import sys input = sys.stdin.readline from collections import Counter n, s = map(int, input().split()) d1 = Counter() d2 = Counter() d = {'S': d1, 'B': d2} for i in range(n): a, b, c = input()[:-1].split() b = int(b) c = int(c) d[a][b] += c d1 = sorted(d1.most_common()[:s], key=lambda x:...
Title: Order Book Time Limit: None seconds Memory Limit: None megabytes Problem Description: In this task you need to process a set of stock exchange orders and use them to create order book. An order is an instruction of some participant to buy or sell stocks on stock exchange. The order number *i* has price *p**i...
```python import sys input = sys.stdin.readline from collections import Counter n, s = map(int, input().split()) d1 = Counter() d2 = Counter() d = {'S': d1, 'B': d2} for i in range(n): a, b, c = input()[:-1].split() b = int(b) c = int(c) d[a][b] += c d1 = sorted(d1.most_common()[:s], key...
0
656
G
You're a Professional
PROGRAMMING
1,900
[ "*special" ]
null
null
A simple recommendation system would recommend a user things liked by a certain number of their friends. In this problem you will implement part of such a system. You are given user's friends' opinions about a list of items. You are also given a threshold *T* — the minimal number of "likes" necessary for an item to be...
The first line of the input will contain three space-separated integers: the number of friends *F* (1<=≤<=*F*<=≤<=10), the number of items *I* (1<=≤<=*I*<=≤<=10) and the threshold *T* (1<=≤<=*T*<=≤<=*F*). The following *F* lines of input contain user's friends' opinions. *j*-th character of *i*-th line is 'Y' if *i*-t...
Output an integer — the number of items liked by at least *T* of user's friends.
[ "3 3 2\nYYY\nNNN\nYNY\n", "4 4 1\nNNNY\nNNYN\nNYNN\nYNNN\n" ]
[ "2\n", "4\n" ]
none
0
[ { "input": "3 3 2\nYYY\nNNN\nYNY", "output": "2" }, { "input": "4 4 1\nNNNY\nNNYN\nNYNN\nYNNN", "output": "4" }, { "input": "3 5 2\nNYNNY\nYNNNN\nNNYYN", "output": "0" }, { "input": "1 10 1\nYYYNYNNYNN", "output": "5" }, { "input": "10 1 5\nY\nN\nN\nN\nY\nN\nN\nY\...
1,459,895,049
5,649
Python 3
WRONG_ANSWER
TESTS
0
0
0
f, o, t = map(int, input().split()) k = [0] * o for i in range(f): s = input() for j in range(o): if s[j] == "Y": k[j] += 1 c = 0 for i in k: if i >= t: c += 1 print(c)
Title: You're a Professional Time Limit: None seconds Memory Limit: None megabytes Problem Description: A simple recommendation system would recommend a user things liked by a certain number of their friends. In this problem you will implement part of such a system. You are given user's friends' opinions about a li...
```python f, o, t = map(int, input().split()) k = [0] * o for i in range(f): s = input() for j in range(o): if s[j] == "Y": k[j] += 1 c = 0 for i in k: if i >= t: c += 1 print(c) ```
0
1,004
C
Sonya and Robots
PROGRAMMING
1,400
[ "constructive algorithms", "implementation" ]
null
null
Since Sonya is interested in robotics too, she decided to construct robots that will read and recognize numbers. Sonya has drawn $n$ numbers in a row, $a_i$ is located in the $i$-th position. She also has put a robot at each end of the row (to the left of the first number and to the right of the last number). Sonya wi...
The first line contains a single integer $n$ ($1\leq n\leq 10^5$) — the number of numbers in a row. The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1\leq a_i\leq 10^5$) — the numbers in a row.
Print one number — the number of possible pairs that Sonya can give to robots so that they will not meet.
[ "5\n1 5 4 1 3\n", "7\n1 2 1 1 1 3 2\n" ]
[ "9\n", "7\n" ]
In the first example, Sonya can give pairs ($1$, $1$), ($1$, $3$), ($1$, $4$), ($1$, $5$), ($4$, $1$), ($4$, $3$), ($5$, $1$), ($5$, $3$), and ($5$, $4$). In the second example, Sonya can give pairs ($1$, $1$), ($1$, $2$), ($1$, $3$), ($2$, $1$), ($2$, $2$), ($2$, $3$), and ($3$, $2$).
1,500
[ { "input": "5\n1 5 4 1 3", "output": "9" }, { "input": "7\n1 2 1 1 1 3 2", "output": "7" }, { "input": "10\n2 2 4 4 3 1 1 2 3 2", "output": "14" }, { "input": "15\n1 2 2 1 2 4 2 1 1 6 6 4 2 5 4", "output": "20" }, { "input": "1\n1", "output": "0" } ]
1,599,469,440
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
124
2,048,000
noe = int(input()) arr = [int(x) for x in input().split()] cnt = [0] * int(2e5) g=noe-1 for x in arr: cnt[x] = len(set(arr[:g])) g-=1 #print(cnt[:10], cur) print(sum(cnt))
Title: Sonya and Robots Time Limit: None seconds Memory Limit: None megabytes Problem Description: Since Sonya is interested in robotics too, she decided to construct robots that will read and recognize numbers. Sonya has drawn $n$ numbers in a row, $a_i$ is located in the $i$-th position. She also has put a robot ...
```python noe = int(input()) arr = [int(x) for x in input().split()] cnt = [0] * int(2e5) g=noe-1 for x in arr: cnt[x] = len(set(arr[:g])) g-=1 #print(cnt[:10], cur) print(sum(cnt)) ```
0
862
B
Mahmoud and Ehab and the bipartiteness
PROGRAMMING
1,300
[ "dfs and similar", "graphs", "trees" ]
null
null
Mahmoud and Ehab continue their adventures! As everybody in the evil land knows, Dr. Evil likes bipartite graphs, especially trees. A tree is a connected acyclic graph. A bipartite graph is a graph, whose vertices can be partitioned into 2 sets in such a way, that for each edge (*u*,<=*v*) that belongs to the graph, *...
The first line of input contains an integer *n* — the number of nodes in the tree (1<=≤<=*n*<=≤<=105). The next *n*<=-<=1 lines contain integers *u* and *v* (1<=≤<=*u*,<=*v*<=≤<=*n*, *u*<=≠<=*v*) — the description of the edges of the tree. It's guaranteed that the given graph is a tree.
Output one integer — the maximum number of edges that Mahmoud and Ehab can add to the tree while fulfilling the conditions.
[ "3\n1 2\n1 3\n", "5\n1 2\n2 3\n3 4\n4 5\n" ]
[ "0\n", "2\n" ]
Tree definition: [https://en.wikipedia.org/wiki/Tree_(graph_theory)](https://en.wikipedia.org/wiki/Tree_(graph_theory)) Bipartite graph definition: [https://en.wikipedia.org/wiki/Bipartite_graph](https://en.wikipedia.org/wiki/Bipartite_graph) In the first test case the only edge that can be added in such a way, that ...
1,000
[ { "input": "3\n1 2\n1 3", "output": "0" }, { "input": "5\n1 2\n2 3\n3 4\n4 5", "output": "2" }, { "input": "10\n3 8\n6 2\n9 7\n10 1\n3 5\n1 3\n6 7\n5 4\n3 6", "output": "16" }, { "input": "10\n7 6\n2 7\n4 1\n8 5\n9 4\n5 3\n8 7\n10 8\n10 4", "output": "16" }, { "in...
1,673,687,818
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
16
842
20,172,800
def dfs(u): global g c = vis[u] next_c = (not (c - 1)) + 1 for i in g[u]: if not vis[i]: vis[i] = next_c dfs(i) def answer(colors): o = 0 for i in colors: o += i == 1 t = len(vis) - o return o * t - (n - 1) n = int(input()) g...
Title: Mahmoud and Ehab and the bipartiteness Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mahmoud and Ehab continue their adventures! As everybody in the evil land knows, Dr. Evil likes bipartite graphs, especially trees. A tree is a connected acyclic graph. A bipartite graph is a gra...
```python def dfs(u): global g c = vis[u] next_c = (not (c - 1)) + 1 for i in g[u]: if not vis[i]: vis[i] = next_c dfs(i) def answer(colors): o = 0 for i in colors: o += i == 1 t = len(vis) - o return o * t - (n - 1) n = int(i...
-1
908
A
New Year and Counting Cards
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Your friend has *n* cards. You know that each card has a lowercase English letter on one side and a digit on the other. Currently, your friend has laid out the cards on a table so only one side of each card is visible. You would like to know if the following statement is true for cards that your friend owns: "If a c...
The first and only line of input will contain a string *s* (1<=≤<=|*s*|<=≤<=50), denoting the sides of the cards that you can see on the table currently. Each character of *s* is either a lowercase English letter or a digit.
Print a single integer, the minimum number of cards you must turn over to verify your claim.
[ "ee\n", "z\n", "0ay1\n" ]
[ "2\n", "0\n", "2\n" ]
In the first sample, we must turn over both cards. Note that even though both cards have the same letter, they could possibly have different numbers on the other side. In the second sample, we don't need to turn over any cards. The statement is vacuously true, since you know your friend has no cards with a vowel on th...
500
[ { "input": "ee", "output": "2" }, { "input": "z", "output": "0" }, { "input": "0ay1", "output": "2" }, { "input": "0abcdefghijklmnopqrstuvwxyz1234567896", "output": "10" }, { "input": "0a0a9e9e2i2i9o9o6u6u9z9z4x4x9b9b", "output": "18" }, { "input": "01...
1,621,853,480
2,147,483,647
Python 3
OK
TESTS
38
62
0
vowels = ['a','e','i','o','u'] l = [str(i) for i in range(10)] s = input() count = 0 for i in s: if(i in vowels): count+=1 elif(i not in vowels and i not in l): pass else: a = int(i) if(a%2!=0): count+=1 print(count)
Title: New Year and Counting Cards Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your friend has *n* cards. You know that each card has a lowercase English letter on one side and a digit on the other. Currently, your friend has laid out the cards on a table so only one side of each car...
```python vowels = ['a','e','i','o','u'] l = [str(i) for i in range(10)] s = input() count = 0 for i in s: if(i in vowels): count+=1 elif(i not in vowels and i not in l): pass else: a = int(i) if(a%2!=0): count+=1 print(count) ```
3
1,004
C
Sonya and Robots
PROGRAMMING
1,400
[ "constructive algorithms", "implementation" ]
null
null
Since Sonya is interested in robotics too, she decided to construct robots that will read and recognize numbers. Sonya has drawn $n$ numbers in a row, $a_i$ is located in the $i$-th position. She also has put a robot at each end of the row (to the left of the first number and to the right of the last number). Sonya wi...
The first line contains a single integer $n$ ($1\leq n\leq 10^5$) — the number of numbers in a row. The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1\leq a_i\leq 10^5$) — the numbers in a row.
Print one number — the number of possible pairs that Sonya can give to robots so that they will not meet.
[ "5\n1 5 4 1 3\n", "7\n1 2 1 1 1 3 2\n" ]
[ "9\n", "7\n" ]
In the first example, Sonya can give pairs ($1$, $1$), ($1$, $3$), ($1$, $4$), ($1$, $5$), ($4$, $1$), ($4$, $3$), ($5$, $1$), ($5$, $3$), and ($5$, $4$). In the second example, Sonya can give pairs ($1$, $1$), ($1$, $2$), ($1$, $3$), ($2$, $1$), ($2$, $2$), ($2$, $3$), and ($3$, $2$).
1,500
[ { "input": "5\n1 5 4 1 3", "output": "9" }, { "input": "7\n1 2 1 1 1 3 2", "output": "7" }, { "input": "10\n2 2 4 4 3 1 1 2 3 2", "output": "14" }, { "input": "15\n1 2 2 1 2 4 2 1 1 6 6 4 2 5 4", "output": "20" }, { "input": "1\n1", "output": "0" } ]
1,535,887,001
3,881
PyPy 3
OK
TESTS
42
249
14,848,000
n = int(input()) arr = [int(x) for x in input().split()] num___fl = {} num___fr = {} for i, num in enumerate(arr): if num not in num___fl: num___fl[num] = i if num not in num___fr: num___fr[num] = i elif num___fr[num] < i: num___fr[num] = i fls_asc = list(sorted(num___fl.values()...
Title: Sonya and Robots Time Limit: None seconds Memory Limit: None megabytes Problem Description: Since Sonya is interested in robotics too, she decided to construct robots that will read and recognize numbers. Sonya has drawn $n$ numbers in a row, $a_i$ is located in the $i$-th position. She also has put a robot ...
```python n = int(input()) arr = [int(x) for x in input().split()] num___fl = {} num___fr = {} for i, num in enumerate(arr): if num not in num___fl: num___fl[num] = i if num not in num___fr: num___fr[num] = i elif num___fr[num] < i: num___fr[num] = i fls_asc = list(sorted(num___f...
3
961
B
Lecture Sleep
PROGRAMMING
1,200
[ "data structures", "dp", "implementation", "two pointers" ]
null
null
Your friend Mishka and you attend a calculus lecture. Lecture lasts *n* minutes. Lecturer tells *a**i* theorems during the *i*-th minute. Mishka is really interested in calculus, though it is so hard to stay awake for all the time of lecture. You are given an array *t* of Mishka's behavior. If Mishka is asleep during ...
The first line of the input contains two integer numbers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=105) — the duration of the lecture in minutes and the number of minutes you can keep Mishka awake. The second line of the input contains *n* integer numbers *a*1,<=*a*2,<=... *a**n* (1<=≤<=*a**i*<=≤<=104) — the number of theore...
Print only one integer — the maximum number of theorems Mishka will be able to write down if you use your technique only once to wake him up.
[ "6 3\n1 3 5 2 5 4\n1 1 0 1 0 0\n" ]
[ "16\n" ]
In the sample case the better way is to use the secret technique at the beginning of the third minute. Then the number of theorems Mishka will be able to write down will be equal to 16.
0
[ { "input": "6 3\n1 3 5 2 5 4\n1 1 0 1 0 0", "output": "16" }, { "input": "5 3\n1 9999 10000 10000 10000\n0 0 0 0 0", "output": "30000" }, { "input": "3 3\n10 10 10\n1 1 0", "output": "30" }, { "input": "1 1\n423\n0", "output": "423" }, { "input": "6 6\n1 3 5 2 5 4...
1,600,354,830
2,147,483,647
PyPy 3
OK
TESTS
37
233
11,366,400
n, k = map(int,input().split()) a = list(map(int,input().split())) t = list(map(int,input().split())) dif = 0 soma = 0 tdif = 0 for c in range(n): if(t[c]==1): soma += a[c] t[c] = 0 else: t[c] = a[c] for e in range(n): if(e != 0): t[e] = t[e] + t[e-1] else: t[e] ...
Title: Lecture Sleep Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your friend Mishka and you attend a calculus lecture. Lecture lasts *n* minutes. Lecturer tells *a**i* theorems during the *i*-th minute. Mishka is really interested in calculus, though it is so hard to stay awake for al...
```python n, k = map(int,input().split()) a = list(map(int,input().split())) t = list(map(int,input().split())) dif = 0 soma = 0 tdif = 0 for c in range(n): if(t[c]==1): soma += a[c] t[c] = 0 else: t[c] = a[c] for e in range(n): if(e != 0): t[e] = t[e] + t[e-1] else: ...
3
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,651,279,513
2,147,483,647
PyPy 3-64
OK
TESTS
30
124
0
# cook your dish here n=int(input()) l=list(map(int,input().split()))[:n] s=sum(l) p=s%(n+1) count=0 for i in range(5): p+=1 if p>n+1: p=1 elif p!=1: count+=1 print(count)
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 # cook your dish here n=int(input()) l=list(map(int,input().split()))[:n] s=sum(l) p=s%(n+1) count=0 for i in range(5): p+=1 if p>n+1: p=1 elif p!=1: count+=1 print(count) ```
3
771
A
Bear and Friendship Condition
PROGRAMMING
1,500
[ "dfs and similar", "dsu", "graphs" ]
null
null
Bear Limak examines a social network. Its main functionality is that two members can become friends (then they can talk with each other and share funny pictures). There are *n* members, numbered 1 through *n*. *m* pairs of members are friends. Of course, a member can't be a friend with themselves. Let A-B denote that...
The first line of the input contain two integers *n* and *m* (3<=≤<=*n*<=≤<=150<=000, ) — the number of members and the number of pairs of members that are friends. The *i*-th of the next *m* lines contains two distinct integers *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*,<=*a**i*<=≠<=*b**i*). Members *a**i* and ...
If the given network is reasonable, print "YES" in a single line (without the quotes). Otherwise, print "NO" in a single line (without the quotes).
[ "4 3\n1 3\n3 4\n1 4\n", "4 4\n3 1\n2 3\n3 4\n1 2\n", "10 4\n4 3\n5 10\n8 9\n1 2\n", "3 2\n1 2\n2 3\n" ]
[ "YES\n", "NO\n", "YES\n", "NO\n" ]
The drawings below show the situation in the first sample (on the left) and in the second sample (on the right). Each edge represents two members that are friends. The answer is "NO" in the second sample because members (2, 3) are friends and members (3, 4) are friends, while members (2, 4) are not.
250
[ { "input": "4 3\n1 3\n3 4\n1 4", "output": "YES" }, { "input": "4 4\n3 1\n2 3\n3 4\n1 2", "output": "NO" }, { "input": "10 4\n4 3\n5 10\n8 9\n1 2", "output": "YES" }, { "input": "3 2\n1 2\n2 3", "output": "NO" }, { "input": "3 0", "output": "YES" }, { ...
1,660,725,042
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
10
1,000
49,971,200
from typing import Dict, List, Tuple from collections import defaultdict def IsClique( v: int, visited: Dict[int, bool], graph: Dict[int, List[int]], component_size: int = 0, ) -> Tuple[int, bool]: is_clique = True component_size += 1 visited[v] = True for u in graph[v]: if no...
Title: Bear and Friendship Condition Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak examines a social network. Its main functionality is that two members can become friends (then they can talk with each other and share funny pictures). There are *n* members, numbered 1 through...
```python from typing import Dict, List, Tuple from collections import defaultdict def IsClique( v: int, visited: Dict[int, bool], graph: Dict[int, List[int]], component_size: int = 0, ) -> Tuple[int, bool]: is_clique = True component_size += 1 visited[v] = True for u in graph[v]: ...
0
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,616,647,305
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
60
0
l=list(map(int,input().split())) o=0 e=0 for i in range(len(l)): if (l[i]%2!=0): o+=1 od=i+1 else: e+=1 ev=i+1 if o==1 : print(od) else: print(ev)
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python l=list(map(int,input().split())) o=0 e=0 for i in range(len(l)): if (l[i]%2!=0): o+=1 od=i+1 else: e+=1 ev=i+1 if o==1 : print(od) else: print(ev) ```
0
831
A
Unimodal Array
PROGRAMMING
1,000
[ "implementation" ]
null
null
Array of integers is unimodal, if: - it is strictly increasing in the beginning; - after that it is constant; - after that it is strictly decreasing. The first block (increasing) and the last block (decreasing) may be absent. It is allowed that both of this blocks are absent. For example, the following three arra...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in the array. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1<=000) — the elements of the array.
Print "YES" if the given array is unimodal. Otherwise, print "NO". You can output each letter in any case (upper or lower).
[ "6\n1 5 5 5 4 2\n", "5\n10 20 30 20 10\n", "4\n1 2 1 2\n", "7\n3 3 3 3 3 3 3\n" ]
[ "YES\n", "YES\n", "NO\n", "YES\n" ]
In the first example the array is unimodal, because it is strictly increasing in the beginning (from position 1 to position 2, inclusively), that it is constant (from position 2 to position 4, inclusively) and then it is strictly decreasing (from position 4 to position 6, inclusively).
500
[ { "input": "6\n1 5 5 5 4 2", "output": "YES" }, { "input": "5\n10 20 30 20 10", "output": "YES" }, { "input": "4\n1 2 1 2", "output": "NO" }, { "input": "7\n3 3 3 3 3 3 3", "output": "YES" }, { "input": "6\n5 7 11 11 2 1", "output": "YES" }, { "input":...
1,641,233,028
2,147,483,647
Python 3
OK
TESTS
101
61
0
a=int(input()) k=list(map(int,input().split())) q=[] for i in range(len(k)-1): if k[i] < k[i+1]: q.append(0) elif k[i] > k[i+1]: q.append(2) elif k[i]==k[i+1]: q.append(1) y=sorted(q) if y == q: print('YES') else: print('NO')
Title: Unimodal Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Array of integers is unimodal, if: - it is strictly increasing in the beginning; - after that it is constant; - after that it is strictly decreasing. The first block (increasing) and the last block (decreasing) may ...
```python a=int(input()) k=list(map(int,input().split())) q=[] for i in range(len(k)-1): if k[i] < k[i+1]: q.append(0) elif k[i] > k[i+1]: q.append(2) elif k[i]==k[i+1]: q.append(1) y=sorted(q) if y == q: print('YES') else: print('NO') ```
3
415
A
Mashmokh and Lights
PROGRAMMING
900
[ "implementation" ]
null
null
Mashmokh works in a factory. At the end of each day he must turn off all of the lights. The lights on the factory are indexed from 1 to *n*. There are *n* buttons in Mashmokh's room indexed from 1 to *n* as well. If Mashmokh pushes button with index *i*, then each light with index not less than *i* that is still turn...
The first line of the input contains two space-separated integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100), the number of the factory lights and the pushed buttons respectively. The next line contains *m* distinct space-separated integers *b*1,<=*b*2,<=...,<=*b**m* (1<=≤<=*b**i*<=≤<=*n*). It is guaranteed that all lights...
Output *n* space-separated integers where the *i*-th number is index of the button that turns the *i*-th light off.
[ "5 4\n4 3 1 2\n", "5 5\n5 4 3 2 1\n" ]
[ "1 1 3 4 4 \n", "1 2 3 4 5 \n" ]
In the first sample, after pressing button number 4, lights 4 and 5 are turned off and lights 1, 2 and 3 are still on. Then after pressing button number 3, light number 3 is turned off as well. Pressing button number 1 turns off lights number 1 and 2 as well so pressing button number 2 in the end has no effect. Thus bu...
500
[ { "input": "5 4\n4 3 1 2", "output": "1 1 3 4 4 " }, { "input": "5 5\n5 4 3 2 1", "output": "1 2 3 4 5 " }, { "input": "16 11\n8 5 12 10 14 2 6 3 15 9 1", "output": "1 2 2 2 5 5 5 8 8 8 8 8 8 8 8 8 " }, { "input": "79 22\n76 32 48 28 33 44 58 59 1 51 77 13 15 64 49 72 74 21 6...
1,410,910,635
2,147,483,647
Python 3
OK
TESTS
31
77
0
n, m = (int(x) for x in input().split()) l = [0] * n for b in (int(x) for x in input().split()): for i in range(b - 1, n): if l[i] == 0: l[i] = b print(' '.join(map(str, l)))
Title: Mashmokh and Lights Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mashmokh works in a factory. At the end of each day he must turn off all of the lights. The lights on the factory are indexed from 1 to *n*. There are *n* buttons in Mashmokh's room indexed from 1 to *n* as well. ...
```python n, m = (int(x) for x in input().split()) l = [0] * n for b in (int(x) for x in input().split()): for i in range(b - 1, n): if l[i] == 0: l[i] = b print(' '.join(map(str, l))) ```
3
854
B
Maxim Buys an Apartment
PROGRAMMING
1,200
[ "constructive algorithms", "math" ]
null
null
Maxim wants to buy an apartment in a new house at Line Avenue of Metropolis. The house has *n* apartments that are numbered from 1 to *n* and are arranged in a row. Two apartments are adjacent if their indices differ by 1. Some of the apartments can already be inhabited, others are available for sale. Maxim often visi...
The only line of the input contains two integers: *n* and *k* (1<=≤<=*n*<=≤<=109, 0<=≤<=*k*<=≤<=*n*).
Print the minimum possible and the maximum possible number of apartments good for Maxim.
[ "6 3\n" ]
[ "1 3\n" ]
In the sample test, the number of good apartments could be minimum possible if, for example, apartments with indices 1, 2 and 3 were inhabited. In this case only apartment 4 is good. The maximum possible number could be, for example, if apartments with indices 1, 3 and 5 were inhabited. In this case all other apartment...
1,000
[ { "input": "6 3", "output": "1 3" }, { "input": "10 1", "output": "1 2" }, { "input": "10 9", "output": "1 1" }, { "input": "8 0", "output": "0 0" }, { "input": "8 8", "output": "0 0" }, { "input": "966871928 890926970", "output": "1 75944958" },...
1,601,623,737
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
93
0
n,k=map(int,input().split()) a=(n+1)//2 b=n-a if k<b:m=2*k else:m=n-k print(1if k>0 and n!=1 else 0,m if k!=0 else 0)
Title: Maxim Buys an Apartment Time Limit: None seconds Memory Limit: None megabytes Problem Description: Maxim wants to buy an apartment in a new house at Line Avenue of Metropolis. The house has *n* apartments that are numbered from 1 to *n* and are arranged in a row. Two apartments are adjacent if their indices d...
```python n,k=map(int,input().split()) a=(n+1)//2 b=n-a if k<b:m=2*k else:m=n-k print(1if k>0 and n!=1 else 0,m if k!=0 else 0) ```
0
625
B
War of the Corporations
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "strings" ]
null
null
A long time ago, in a galaxy far far away two giant IT-corporations Pineapple and Gogol continue their fierce competition. Crucial moment is just around the corner: Gogol is ready to release it's new tablet Lastus 3000. This new device is equipped with specially designed artificial intelligence (AI). Employees of Pine...
The first line of the input contains the name of AI designed by Gogol, its length doesn't exceed 100<=000 characters. Second line contains the name of the phone released by Pineapple 200 years ago, its length doesn't exceed 30. Both string are non-empty and consist of only small English letters.
Print the minimum number of characters that must be replaced with "#" in order to obtain that the name of the phone doesn't occur in the name of AI as a substring.
[ "intellect\ntell\n", "google\napple\n", "sirisiri\nsir\n" ]
[ "1", "0", "2" ]
In the first sample AI's name may be replaced with "int#llect". In the second sample Gogol can just keep things as they are. In the third sample one of the new possible names of AI may be "s#ris#ri".
750
[ { "input": "intellect\ntell", "output": "1" }, { "input": "google\napple", "output": "0" }, { "input": "sirisiri\nsir", "output": "2" }, { "input": "sirisiri\nsiri", "output": "2" }, { "input": "aaaaaaa\naaaa", "output": "1" }, { "input": "bbbbbb\nbb",...
1,528,571,874
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <bits/stdc++.h> using namespace std; #define ll long long int main() { string s1,s2; cin>>s1>>s2; ll i=0,j=0,len1,len2,c=0; len1=s1.length(); len2=s2.length(); while(i<len1) { if(s1[i]==s2[j]) { if(j==(len2-1)) { j=0; i++; ...
Title: War of the Corporations Time Limit: None seconds Memory Limit: None megabytes Problem Description: A long time ago, in a galaxy far far away two giant IT-corporations Pineapple and Gogol continue their fierce competition. Crucial moment is just around the corner: Gogol is ready to release it's new tablet Last...
```python #include <bits/stdc++.h> using namespace std; #define ll long long int main() { string s1,s2; cin>>s1>>s2; ll i=0,j=0,len1,len2,c=0; len1=s1.length(); len2=s2.length(); while(i<len1) { if(s1[i]==s2[j]) { if(j==(len2-1)) { j=0; i+...
-1
716
A
Crazy Computer
PROGRAMMING
800
[ "implementation" ]
null
null
ZS the Coder is coding on a crazy computer. If you don't type in a word for a *c* consecutive seconds, everything you typed disappear! More formally, if you typed a word at second *a* and then the next word at second *b*, then if *b*<=-<=*a*<=≤<=*c*, just the new word is appended to other words on the screen. If *b*<...
The first line contains two integers *n* and *c* (1<=≤<=*n*<=≤<=100<=000,<=1<=≤<=*c*<=≤<=109) — the number of words ZS the Coder typed and the crazy computer delay respectively. The next line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t*1<=&lt;<=*t*2<=&lt;<=...<=&lt;<=*t**n*<=≤<=109), where *t**i* denote...
Print a single positive integer, the number of words that remain on the screen after all *n* words was typed, in other words, at the second *t**n*.
[ "6 5\n1 3 8 14 19 20\n", "6 1\n1 3 5 7 9 10\n" ]
[ "3", "2" ]
The first sample is already explained in the problem statement. For the second sample, after typing the first word at the second 1, it disappears because the next word is typed at the second 3 and 3 - 1 &gt; 1. Similarly, only 1 word will remain at the second 9. Then, a word is typed at the second 10, so there will be...
500
[ { "input": "6 5\n1 3 8 14 19 20", "output": "3" }, { "input": "6 1\n1 3 5 7 9 10", "output": "2" }, { "input": "1 1\n1000000000", "output": "1" }, { "input": "5 5\n1 7 12 13 14", "output": "4" }, { "input": "2 1000000000\n1 1000000000", "output": "2" }, { ...
1,590,600,279
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
108
0
a,b=list(map(int,input().split())) c=list(map(int,input().split())) d=1 for i in range(len(c)): if(c[i]-c[i-1]<=b): d+=1 else: d=1 print(d)
Title: Crazy Computer Time Limit: None seconds Memory Limit: None megabytes Problem Description: ZS the Coder is coding on a crazy computer. If you don't type in a word for a *c* consecutive seconds, everything you typed disappear! More formally, if you typed a word at second *a* and then the next word at second *...
```python a,b=list(map(int,input().split())) c=list(map(int,input().split())) d=1 for i in range(len(c)): if(c[i]-c[i-1]<=b): d+=1 else: d=1 print(d) ```
0
202
A
LLPS
PROGRAMMING
800
[ "binary search", "bitmasks", "brute force", "greedy", "implementation", "strings" ]
null
null
This problem's actual name, "Lexicographically Largest Palindromic Subsequence" is too long to fit into the page headline. You are given string *s* consisting of lowercase English letters only. Find its lexicographically largest palindromic subsequence. We'll call a non-empty string *s*[*p*1*p*2... *p**k*] = *s**p*1*...
The only input line contains a non-empty string *s* consisting of lowercase English letters only. Its length does not exceed 10.
Print the lexicographically largest palindromic subsequence of string *s*.
[ "radar\n", "bowwowwow\n", "codeforces\n", "mississipp\n" ]
[ "rr\n", "wwwww\n", "s\n", "ssss\n" ]
Among all distinct subsequences of string "radar" the following ones are palindromes: "a", "d", "r", "aa", "rr", "ada", "rar", "rdr", "raar" and "radar". The lexicographically largest of them is "rr".
500
[ { "input": "radar", "output": "rr" }, { "input": "bowwowwow", "output": "wwwww" }, { "input": "codeforces", "output": "s" }, { "input": "mississipp", "output": "ssss" }, { "input": "tourist", "output": "u" }, { "input": "romka", "output": "r" }, ...
1,639,664,688
2,147,483,647
Python 3
OK
TESTS
54
92
0
s=input() i=max(s) v=s.count(i) print(v*i)
Title: LLPS Time Limit: None seconds Memory Limit: None megabytes Problem Description: This problem's actual name, "Lexicographically Largest Palindromic Subsequence" is too long to fit into the page headline. You are given string *s* consisting of lowercase English letters only. Find its lexicographically largest ...
```python s=input() i=max(s) v=s.count(i) print(v*i) ```
3
727
A
Transformation: from A to B
PROGRAMMING
1,000
[ "brute force", "dfs and similar", "math" ]
null
null
Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2·*x*); - append the digit 1 to the right of current number (that is, replace the number *x* by 10·*x*<=+<=1). You need to he...
The first line contains two positive integers *a* and *b* (1<=≤<=*a*<=&lt;<=*b*<=≤<=109) — the number which Vasily has and the number he wants to have.
If there is no way to get *b* from *a*, print "NO" (without quotes). Otherwise print three lines. On the first line print "YES" (without quotes). The second line should contain single integer *k* — the length of the transformation sequence. On the third line print the sequence of transformations *x*1,<=*x*2,<=...,<=*x...
[ "2 162\n", "4 42\n", "100 40021\n" ]
[ "YES\n5\n2 4 8 81 162 \n", "NO\n", "YES\n5\n100 200 2001 4002 40021 \n" ]
none
1,000
[ { "input": "2 162", "output": "YES\n5\n2 4 8 81 162 " }, { "input": "4 42", "output": "NO" }, { "input": "100 40021", "output": "YES\n5\n100 200 2001 4002 40021 " }, { "input": "1 111111111", "output": "YES\n9\n1 11 111 1111 11111 111111 1111111 11111111 111111111 " }, ...
1,620,908,972
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
6,963,200
l=input().split() a=int(l[0]) b=int(l[1]) ls=[b] ai=0 while True: if b==a: break if b%2==0: b=b//2 ls.append(b) elif b%10==1: b=(b-1)//10 ls.append(b) else: print('NO') ai=1 break if b<a: print('NO') ...
Title: Transformation: from A to B Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2·*x*); - app...
```python l=input().split() a=int(l[0]) b=int(l[1]) ls=[b] ai=0 while True: if b==a: break if b%2==0: b=b//2 ls.append(b) elif b%10==1: b=(b-1)//10 ls.append(b) else: print('NO') ai=1 break if b<a: print('NO')...
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,678,772,938
2,147,483,647
Python 3
OK
TESTS
20
46
0
w = int(input()) for i in range(w): t = input() if len(t) > 10: print(t[0] + str(len(t) - 2) + t[len(t) - 1]) else: print(t)
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 w = int(input()) for i in range(w): t = input() if len(t) > 10: print(t[0] + str(len(t) - 2) + t[len(t) - 1]) else: print(t) ```
3.977
525
E
Anya and Cubes
PROGRAMMING
2,100
[ "binary search", "bitmasks", "brute force", "dp", "math", "meet-in-the-middle" ]
null
null
Anya loves to fold and stick. Today she decided to do just that. Anya has *n* cubes lying in a line and numbered from 1 to *n* from left to right, with natural numbers written on them. She also has *k* stickers with exclamation marks. We know that the number of stickers does not exceed the number of cubes. Anya can s...
The first line of the input contains three space-separated integers *n*, *k* and *S* (1<=≤<=*n*<=≤<=25, 0<=≤<=*k*<=≤<=*n*, 1<=≤<=*S*<=≤<=1016) — the number of cubes and the number of stickers that Anya has, and the sum that she needs to get. The second line contains *n* positive integers *a**i* (1<=≤<=*a**i*<=≤<=109)...
Output the number of ways to choose some number of cubes and stick exclamation marks on some of them so that the sum of the numbers became equal to the given number *S*.
[ "2 2 30\n4 3\n", "2 2 7\n4 3\n", "3 1 1\n1 1 1\n" ]
[ "1\n", "1\n", "6\n" ]
In the first sample the only way is to choose both cubes and stick an exclamation mark on each of them. In the second sample the only way is to choose both cubes but don't stick an exclamation mark on any of them. In the third sample it is possible to choose any of the cubes in three ways, and also we may choose to s...
3,000
[]
1,690,852,760
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
# LUOGU_RID: 118362645 print(6)###################################
Title: Anya and Cubes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anya loves to fold and stick. Today she decided to do just that. Anya has *n* cubes lying in a line and numbered from 1 to *n* from left to right, with natural numbers written on them. She also has *k* stickers with exc...
```python # LUOGU_RID: 118362645 print(6)################################### ```
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,674,555,675
2,147,483,647
Python 3
OK
TESTS
20
46
0
t=int(input()) for i in range(t): s=input() m=len(s) if(m<=10): print(s) else: print(s[0],m-2,s[m-1],sep="")
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 t=int(input()) for i in range(t): s=input() m=len(s) if(m<=10): print(s) else: print(s[0],m-2,s[m-1],sep="") ```
3.977
709
A
Juicer
PROGRAMMING
900
[ "implementation" ]
null
null
Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To be put in the juicer the orange must have size not exceeding *b*, so if Kolya sees an orange ...
The first line of the input contains three integers *n*, *b* and *d* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*b*<=≤<=*d*<=≤<=1<=000<=000) — the number of oranges, the maximum size of the orange that fits in the juicer and the value *d*, which determines the condition when the waste section should be emptied. The second line co...
Print one integer — the number of times Kolya will have to empty the waste section.
[ "2 7 10\n5 6\n", "1 5 10\n7\n", "3 10 10\n5 7 7\n", "1 1 1\n1\n" ]
[ "1\n", "0\n", "1\n", "0\n" ]
In the first sample, Kolya will squeeze the juice from two oranges and empty the waste section afterwards. In the second sample, the orange won't fit in the juicer so Kolya will have no juice at all.
500
[ { "input": "2 7 10\n5 6", "output": "1" }, { "input": "1 5 10\n7", "output": "0" }, { "input": "3 10 10\n5 7 7", "output": "1" }, { "input": "1 1 1\n1", "output": "0" }, { "input": "2 951637 951638\n44069 951637", "output": "1" }, { "input": "50 100 12...
1,661,432,557
2,147,483,647
Python 3
OK
TESTS
58
93
5,939,200
x, y, z = input().split() x = int (x) y = int(y) z = int(z) w = 0 e = 0 for o in input().split(): o = int(o) if o <= (y): w += o if w > z: e += 1 w = 0 print (e)
Title: Juicer Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To b...
```python x, y, z = input().split() x = int (x) y = int(y) z = int(z) w = 0 e = 0 for o in input().split(): o = int(o) if o <= (y): w += o if w > z: e += 1 w = 0 print (e) ```
3
0
none
none
none
0
[ "none" ]
null
null
For a connected undirected weighted graph *G*, MST (minimum spanning tree) is a subgraph of *G* that contains all of *G*'s vertices, is a tree, and sum of its edges is minimum possible. You are given a graph *G*. If you run a MST algorithm on graph it would give you only one MST and it causes other edges to become jea...
The first line contains two integers *n*, *m* (2<=<=≤<=*n*,<=*m*<=<=≤<=5·105, *n*<=-<=1<=≤<=*m*) — the number of vertices and edges in the graph and the number of queries. The *i*-th of the next *m* lines contains three integers *u**i*, *v**i*, *w**i* (*u**i*<=≠<=*v**i*, 1<=≤<=*w**i*<=≤<=5·105) — the endpoints and wei...
For each query you should print "YES" (without quotes) if there's a MST containing these edges and "NO" (of course without quotes again) otherwise.
[ "5 7\n1 2 2\n1 3 2\n2 3 1\n2 4 1\n3 4 1\n3 5 2\n4 5 2\n4\n2 3 4\n3 3 4 5\n2 1 7\n2 1 2\n" ]
[ "YES\nNO\nYES\nNO\n" ]
This is the graph of sample: Weight of minimum spanning tree on this graph is 6. MST with edges (1, 3, 4, 6), contains all of edges from the first query, so answer on the first query is "YES". Edges from the second query form a cycle of length 3, so there is no spanning tree including these three edges. Thus, answer...
0
[]
1,689,168,475
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
print("_RANDOM_GUESS_1689168475.675073")# 1689168475.6750872
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: For a connected undirected weighted graph *G*, MST (minimum spanning tree) is a subgraph of *G* that contains all of *G*'s vertices, is a tree, and sum of its edges is minimum possible. You are given a graph *G*. If you run a MST...
```python print("_RANDOM_GUESS_1689168475.675073")# 1689168475.6750872 ```
0
784
G
BF Calculator
PROGRAMMING
2,000
[ "*special" ]
null
null
In this problem you will write a simple generator of Brainfuck ([https://en.wikipedia.org/wiki/Brainfuck](https://en.wikipedia.org/wiki/Brainfuck)) calculators. You are given an arithmetic expression consisting of integers from 0 to 255 and addition/subtraction signs between them. Output a Brainfuck program which, whe...
The only line of input data contains the arithmetic expression. The expression will contain between 2 and 10 operands, separated with arithmetic signs plus and/or minus. Each operand will be an integer between 0 and 255, inclusive. The calculations result is guaranteed to be an integer between 0 and 255, inclusive (res...
Output a Brainfuck program which, when executed, will print the result of evaluating this expression. The program must be at most 5000000 characters long (including the non-command characters), and its execution must be complete in at most 50000000 steps.
[ "2+3\n", "9-7\n" ]
[ "++&gt;\n+++&gt;\n&lt;[&lt;+&gt;-]&lt;\n++++++++++++++++++++++++++++++++++++++++++++++++.\n", "+++++++++&gt;\n+++++++&gt;\n&lt;[&lt;-&gt;-]&lt;\n++++++++++++++++++++++++++++++++++++++++++++++++.\n" ]
You can download the source code of the Brainfuck interpreter by the link [http://assets.codeforces.com/rounds/784/bf.cpp](//assets.codeforces.com/rounds/784/bf.cpp). We use this code to interpret outputs.
0
[ { "input": "2+3", "output": "+++++++++++++++++++++++++++++++++++++++++++++++++++++.>" }, { "input": "9-7", "output": "++++++++++++++++++++++++++++++++++++++++++++++++++.>" }, { "input": "1+1+1", "output": "+++++++++++++++++++++++++++++++++++++++++++++++++++.>" }, { "input": "...
1,626,076,945
2,147,483,647
Python 3
OK
TESTS
20
62
6,963,200
#By: Luogu@rui_er(122461) x = eval(input()) def gen_bf(x): expr = "" for i in range(x+48): expr += "+" expr += ".[-]" return expr bf = "" if x >= 100: bf += gen_bf(x//100) bf += gen_bf(x//10%10) bf += gen_bf(x%10) elif x >= 10: bf += gen_bf(x//10) bf += gen...
Title: BF Calculator Time Limit: None seconds Memory Limit: None megabytes Problem Description: In this problem you will write a simple generator of Brainfuck ([https://en.wikipedia.org/wiki/Brainfuck](https://en.wikipedia.org/wiki/Brainfuck)) calculators. You are given an arithmetic expression consisting of intege...
```python #By: Luogu@rui_er(122461) x = eval(input()) def gen_bf(x): expr = "" for i in range(x+48): expr += "+" expr += ".[-]" return expr bf = "" if x >= 100: bf += gen_bf(x//100) bf += gen_bf(x//10%10) bf += gen_bf(x%10) elif x >= 10: bf += gen_bf(x//10) ...
3
0
none
none
none
0
[ "none" ]
null
null
...Once upon a time a man came to the sea. The sea was stormy and dark. The man started to call for the little mermaid to appear but alas, he only woke up Cthulhu... Whereas on the other end of the world Pentagon is actively collecting information trying to predict the monster's behavior and preparing the secret super...
The first line contains two integers — the number of vertices *n* and the number of edges *m* of the graph (1<=≤<=*n*<=≤<=100, 0<=≤<=*m*<=≤<=). Each of the following *m* lines contains a pair of integers *x* and *y*, that show that an edge exists between vertices *x* and *y* (1<=≤<=*x*,<=*y*<=≤<=*n*,<=*x*<=≠<=*y*). Fo...
Print "NO", if the graph is not Cthulhu and "FHTAGN!" if it is.
[ "6 6\n6 3\n6 4\n5 1\n2 5\n1 4\n5 4\n", "6 5\n5 6\n4 6\n3 1\n5 1\n1 2\n" ]
[ "FHTAGN!", "NO" ]
Let us denote as a simple cycle a set of *v* vertices that can be numbered so that the edges will only exist between vertices number 1 and 2, 2 and 3, ..., *v* - 1 and *v*, *v* and 1. A tree is a connected undirected graph consisting of *n* vertices and *n* - 1 edges (*n* &gt; 0). A rooted tree is a tree where one ve...
0
[ { "input": "6 6\n6 3\n6 4\n5 1\n2 5\n1 4\n5 4", "output": "FHTAGN!" }, { "input": "6 5\n5 6\n4 6\n3 1\n5 1\n1 2", "output": "NO" }, { "input": "10 10\n4 10\n8 5\n2 8\n4 9\n9 3\n2 7\n10 6\n10 2\n9 8\n1 8", "output": "FHTAGN!" }, { "input": "5 4\n1 5\n1 3\n1 4\n3 2", "outpu...
1,683,215,651
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
248
8,908,800
from typing import List class Graph: def __init__(self) -> None: self.graph = dict() def add_vertex(self, v): if v not in self.graph: self.graph[v] = [] def add_edge(self, u, v): self.add_vertex(u) self.add_vertex(v) self.graph[u].append(v) self...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: ...Once upon a time a man came to the sea. The sea was stormy and dark. The man started to call for the little mermaid to appear but alas, he only woke up Cthulhu... Whereas on the other end of the world Pentagon is actively coll...
```python from typing import List class Graph: def __init__(self) -> None: self.graph = dict() def add_vertex(self, v): if v not in self.graph: self.graph[v] = [] def add_edge(self, u, v): self.add_vertex(u) self.add_vertex(v) self.graph[u].append(v) ...
0
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,552,367,161
2,147,483,647
Python 3
OK
TESTS
40
109
0
s=input() b="" z={'h':0,'e':0,'l':0,'o':0} count=1 for i in s: if i=='h' and count==1: b=b+i count=count+1 elif i=='e' and count==2: b=b+i count=count+1 elif i=='l' and (count==3 or count==4): b=b+i count=count+1 elif i=='o' and count==5: b=b+i break if b=='hello': ...
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s=input() b="" z={'h':0,'e':0,'l':0,'o':0} count=1 for i in s: if i=='h' and count==1: b=b+i count=count+1 elif i=='e' and count==2: b=b+i count=count+1 elif i=='l' and (count==3 or count==4): b=b+i count=count+1 elif i=='o' and count==5: b=b+i break if b=='...
3.9455
11
A
Increasing Sequence
PROGRAMMING
900
[ "constructive algorithms", "implementation", "math" ]
A. Increasing Sequence
1
64
A sequence *a*0,<=*a*1,<=...,<=*a**t*<=-<=1 is called increasing if *a**i*<=-<=1<=&lt;<=*a**i* for each *i*:<=0<=&lt;<=*i*<=&lt;<=*t*. You are given a sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 and a positive integer *d*. In each move you may choose one element of the given sequence and add *d* to it. What is the least...
The first line of the input contains two integer numbers *n* and *d* (2<=≤<=*n*<=≤<=2000,<=1<=≤<=*d*<=≤<=106). The second line contains space separated sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 (1<=≤<=*b**i*<=≤<=106).
Output the minimal number of moves needed to make the sequence increasing.
[ "4 2\n1 3 3 2\n" ]
[ "3\n" ]
none
0
[ { "input": "4 2\n1 3 3 2", "output": "3" }, { "input": "2 1\n1 1", "output": "1" }, { "input": "2 1\n2 5", "output": "0" }, { "input": "2 1\n1 2", "output": "0" }, { "input": "2 1\n1 1", "output": "1" }, { "input": "2 7\n10 20", "output": "0" }, ...
1,598,947,114
2,147,483,647
Python 3
OK
TESTS
25
218
307,200
n,k=map(int,input().split()) a=list(map(int,input().split())) co=0 for i in range(1,n): if a[i]<=a[i-1]: l=a[i-1]-a[i] p=l//k+1 a[i]+=p*k co+=p print(co)
Title: Increasing Sequence Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: A sequence *a*0,<=*a*1,<=...,<=*a**t*<=-<=1 is called increasing if *a**i*<=-<=1<=&lt;<=*a**i* for each *i*:<=0<=&lt;<=*i*<=&lt;<=*t*. You are given a sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 and a positive integer *d*...
```python n,k=map(int,input().split()) a=list(map(int,input().split())) co=0 for i in range(1,n): if a[i]<=a[i-1]: l=a[i-1]-a[i] p=l//k+1 a[i]+=p*k co+=p print(co) ```
3.888711
270
B
Multithreading
PROGRAMMING
1,400
[ "data structures", "greedy", "implementation" ]
null
null
Emuskald is addicted to Codeforces, and keeps refreshing the main page not to miss any changes in the "recent actions" list. He likes to read thread conversations where each thread consists of multiple messages. Recent actions shows a list of *n* different threads ordered by the time of the latest message in the threa...
The first line of input contains an integer *n*, the number of threads (1<=≤<=*n*<=≤<=105). The next line contains a list of *n* space-separated integers *a*1, *a*2, ..., *a**n* where *a**i* (1<=≤<=*a**i*<=≤<=*n*) is the old position of the *i*-th thread in the new list. It is guaranteed that all of the *a**i* are dist...
Output a single integer — the number of threads that surely contain a new message.
[ "5\n5 2 1 3 4\n", "3\n1 2 3\n", "4\n4 3 2 1\n" ]
[ "2\n", "0\n", "3\n" ]
In the first test case, threads 2 and 5 are placed before the thread 1, so these threads must contain new messages. Threads 1, 3 and 4 may contain no new messages, if only threads 2 and 5 have new messages. In the second test case, there may be no new messages at all, since the thread order hasn't changed. In the thi...
1,500
[ { "input": "5\n5 2 1 3 4", "output": "2" }, { "input": "3\n1 2 3", "output": "0" }, { "input": "4\n4 3 2 1", "output": "3" }, { "input": "5\n1 2 5 3 4", "output": "3" }, { "input": "1\n1", "output": "0" }, { "input": "2\n1 2", "output": "0" }, ...
1,687,846,281
2,147,483,647
Python 3
OK
TESTS
41
154
12,390,400
n=int(input()) a=list(map(int,input().split())) ans=-1 for i in range(n-1): if a[i]>a[i+1]: ans=i print(ans+1)
Title: Multithreading Time Limit: None seconds Memory Limit: None megabytes Problem Description: Emuskald is addicted to Codeforces, and keeps refreshing the main page not to miss any changes in the "recent actions" list. He likes to read thread conversations where each thread consists of multiple messages. Recent ...
```python n=int(input()) a=list(map(int,input().split())) ans=-1 for i in range(n-1): if a[i]>a[i+1]: ans=i print(ans+1) ```
3
119
A
Epic Game
PROGRAMMING
800
[ "implementation" ]
null
null
Simon and Antisimon play a game. Initially each player receives one fixed positive integer that doesn't change throughout the game. Simon receives number *a* and Antisimon receives number *b*. They also have a heap of *n* stones. The players take turns to make a move and Simon starts. During a move a player should take...
The only string contains space-separated integers *a*, *b* and *n* (1<=≤<=*a*,<=*b*,<=*n*<=≤<=100) — the fixed numbers Simon and Antisimon have received correspondingly and the initial number of stones in the pile.
If Simon wins, print "0" (without the quotes), otherwise print "1" (without the quotes).
[ "3 5 9\n", "1 1 100\n" ]
[ "0", "1" ]
The greatest common divisor of two non-negative integers *a* and *b* is such maximum positive integer *k*, that *a* is divisible by *k* without remainder and similarly, *b* is divisible by *k* without remainder. Let *gcd*(*a*, *b*) represent the operation of calculating the greatest common divisor of numbers *a* and *b...
500
[ { "input": "3 5 9", "output": "0" }, { "input": "1 1 100", "output": "1" }, { "input": "23 12 16", "output": "1" }, { "input": "95 26 29", "output": "1" }, { "input": "73 32 99", "output": "1" }, { "input": "1 1 1", "output": "0" }, { "inpu...
1,641,413,263
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
60
0
from math import gcd t = int(input()) while t > 0 : g = 0 s = 0 t-=1 n = int(input()) x = list(map(int,input().split(' '))) for i in x : g = gcd(g , i) s+=i print(s , g)
Title: Epic Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Simon and Antisimon play a game. Initially each player receives one fixed positive integer that doesn't change throughout the game. Simon receives number *a* and Antisimon receives number *b*. They also have a heap of *n* sto...
```python from math import gcd t = int(input()) while t > 0 : g = 0 s = 0 t-=1 n = int(input()) x = list(map(int,input().split(' '))) for i in x : g = gcd(g , i) s+=i print(s , g) ```
-1
197
B
Limit
PROGRAMMING
1,400
[ "math" ]
null
null
You are given two polynomials: - *P*(*x*)<==<=*a*0·*x**n*<=+<=*a*1·*x**n*<=-<=1<=+<=...<=+<=*a**n*<=-<=1·*x*<=+<=*a**n* and - *Q*(*x*)<==<=*b*0·*x**m*<=+<=*b*1·*x**m*<=-<=1<=+<=...<=+<=*b**m*<=-<=1·*x*<=+<=*b**m*. Calculate limit .
The first line contains two space-separated integers *n* and *m* (0<=≤<=*n*,<=*m*<=≤<=100) — degrees of polynomials *P*(*x*) and *Q*(*x*) correspondingly. The second line contains *n*<=+<=1 space-separated integers — the factors of polynomial *P*(*x*): *a*0, *a*1, ..., *a**n*<=-<=1, *a**n* (<=-<=100<=≤<=*a**i*<=≤<=100...
If the limit equals <=+<=∞, print "Infinity" (without quotes). If the limit equals <=-<=∞, print "-Infinity" (without the quotes). If the value of the limit equals zero, print "0/1" (without the quotes). Otherwise, print an irreducible fraction — the value of limit , in the format "p/q" (without the quotes), where *p...
[ "2 1\n1 1 1\n2 5\n", "1 0\n-1 3\n2\n", "0 1\n1\n1 0\n", "2 2\n2 1 6\n4 5 -7\n", "1 1\n9 0\n-5 2\n" ]
[ "Infinity\n", "-Infinity\n", "0/1\n", "1/2\n", "-9/5\n" ]
Let's consider all samples: 1. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/c28febca257452afdfcbd6984ba8623911f9bdbc.png" style="max-width: 100.0%;max-height: 100.0%;"/> 1. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/1e55ecd04e54a45e5e0092ec9a5c1ea03bb...
500
[ { "input": "2 1\n1 1 1\n2 5", "output": "Infinity" }, { "input": "1 0\n-1 3\n2", "output": "-Infinity" }, { "input": "0 1\n1\n1 0", "output": "0/1" }, { "input": "2 2\n2 1 6\n4 5 -7", "output": "1/2" }, { "input": "1 1\n9 0\n-5 2", "output": "-9/5" }, { ...
1,635,435,158
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
47
124
5,017,600
from fractions import Fraction n, m = map(int, input().split()) n_values = list(map(int, input().split())) m_values = list(map(int, input().split())) if n > m: res = "Infinity" if n_values[0] * m_values[0] > 0 else "-Infinity" print(res) elif n < m: print("0/1") else: result = Fraction(n_...
Title: Limit Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two polynomials: - *P*(*x*)<==<=*a*0·*x**n*<=+<=*a*1·*x**n*<=-<=1<=+<=...<=+<=*a**n*<=-<=1·*x*<=+<=*a**n* and - *Q*(*x*)<==<=*b*0·*x**m*<=+<=*b*1·*x**m*<=-<=1<=+<=...<=+<=*b**m*<=-<=1·*x*<=+<=*b**m*. Calculate l...
```python from fractions import Fraction n, m = map(int, input().split()) n_values = list(map(int, input().split())) m_values = list(map(int, input().split())) if n > m: res = "Infinity" if n_values[0] * m_values[0] > 0 else "-Infinity" print(res) elif n < m: print("0/1") else: result = F...
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,467,286
2,147,483,647
Python 3
OK
TESTS
21
62
0
inStr = input() nums = [int(num) for num in inStr.split('+')] nums.sort() res_str = '+'.join(map(str, nums)) print(res_str)
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 inStr = input() nums = [int(num) for num in inStr.split('+')] nums.sort() res_str = '+'.join(map(str, nums)) print(res_str) ```
3
757
A
Gotta Catch Em' All!
PROGRAMMING
1,000
[ "implementation" ]
null
null
Bash wants to become a Pokemon master one day. Although he liked a lot of Pokemon, he has always been fascinated by Bulbasaur the most. Soon, things started getting serious and his fascination turned into an obsession. Since he is too young to go out and catch Bulbasaur, he came up with his own way of catching a Bulbas...
Input contains a single line containing a string *s* (1<=<=≤<=<=|*s*|<=<=≤<=<=105) — the text on the front page of the newspaper without spaces and punctuation marks. |*s*| is the length of the string *s*. The string *s* contains lowercase and uppercase English letters, i.e. .
Output a single integer, the answer to the problem.
[ "Bulbbasaur\n", "F\n", "aBddulbasaurrgndgbualdBdsagaurrgndbb\n" ]
[ "1\n", "0\n", "2\n" ]
In the first case, you could pick: Bulbbasaur. In the second case, there is no way to pick even a single Bulbasaur. In the third case, you can rearrange the string to BulbasaurBulbasauraddrgndgddgargndbb to get two words "Bulbasaur".
500
[ { "input": "Bulbbasaur", "output": "1" }, { "input": "F", "output": "0" }, { "input": "aBddulbasaurrgndgbualdBdsagaurrgndbb", "output": "2" }, { "input": "BBBBBBBBBBbbbbbbbbbbuuuuuuuuuullllllllllssssssssssaaaaaaaaaarrrrrrrrrr", "output": "5" }, { "input": "BBBBBBB...
1,694,016,279
2,147,483,647
Python 3
OK
TESTS
107
93
921,600
def solve(data: list) -> int: now = 0 target = "auBlbsr" memo = [0] * 7 cnt = 0 for i in range(len(data)): for j in range(len(target)): if data[i] == target[j]: memo[j] += 1 memo[0] //= 2 memo[1] //= 2 return(min(memo)) data = lis...
Title: Gotta Catch Em' All! Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bash wants to become a Pokemon master one day. Although he liked a lot of Pokemon, he has always been fascinated by Bulbasaur the most. Soon, things started getting serious and his fascination turned into an obsess...
```python def solve(data: list) -> int: now = 0 target = "auBlbsr" memo = [0] * 7 cnt = 0 for i in range(len(data)): for j in range(len(target)): if data[i] == target[j]: memo[j] += 1 memo[0] //= 2 memo[1] //= 2 return(min(memo)) ...
3
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,687,016,874
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
i=lambda:map(int,input().split()) n,k=i();l=list(i()) print(sum(0<v>=l[k-1] for v in l))
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 i=lambda:map(int,input().split()) n,k=i();l=list(i()) print(sum(0<v>=l[k-1] for v in l)) ```
-1
262
A
Roma and Lucky Numbers
PROGRAMMING
800
[ "implementation" ]
null
null
Roma (a popular Russian name that means 'Roman') loves the Little Lvov Elephant's lucky numbers. Let us remind you that lucky numbers are positive integers whose decimal representation only contains lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Roma's got *n* positive integer...
The first line contains two integers *n*, *k* (1<=≤<=*n*,<=*k*<=≤<=100). The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=109) — the numbers that Roma has. The numbers in the lines are separated by single spaces.
In a single line print a single integer — the answer to the problem.
[ "3 4\n1 2 4\n", "3 2\n447 44 77\n" ]
[ "3\n", "2\n" ]
In the first sample all numbers contain at most four lucky digits, so the answer is 3. In the second sample number 447 doesn't fit in, as it contains more than two lucky digits. All other numbers are fine, so the answer is 2.
500
[ { "input": "3 4\n1 2 4", "output": "3" }, { "input": "3 2\n447 44 77", "output": "2" }, { "input": "2 2\n507978501 180480073", "output": "2" }, { "input": "9 6\n655243746 167613748 1470546 57644035 176077477 56984809 44677 215706823 369042089", "output": "9" }, { ...
1,679,628,956
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
92
0
inp1 = input().split(" ") k = int(inp1[1]) inp2 = input().split(" ") count = 0 for i in inp2: if int(i)%4!=0 and int(i)%7!=0: count+=1 if count<k: count+=1 print(count)
Title: Roma and Lucky Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Roma (a popular Russian name that means 'Roman') loves the Little Lvov Elephant's lucky numbers. Let us remind you that lucky numbers are positive integers whose decimal representation only contains lucky digits...
```python inp1 = input().split(" ") k = int(inp1[1]) inp2 = input().split(" ") count = 0 for i in inp2: if int(i)%4!=0 and int(i)%7!=0: count+=1 if count<k: count+=1 print(count) ```
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,686,828,425
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
124
0
a = int(input()) matrix = [] for i in range(a): row = input() row = [int(x) for x in row.split()] matrix.append(row) x =0 y =0 z =0 for i in range(a): for j in range(a): if j == 0: x = row[j] + x elif j==1: y = row[j]+y elif j==2: ...
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 a = int(input()) matrix = [] for i in range(a): row = input() row = [int(x) for x in row.split()] matrix.append(row) x =0 y =0 z =0 for i in range(a): for j in range(a): if j == 0: x = row[j] + x elif j==1: y = row[j]+y elif j==2: ...
0
514
A
Chewbaсca and Number
PROGRAMMING
1,200
[ "greedy", "implementation" ]
null
null
Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform the initial number *x* to the minimum possible positive number by inverting some (possibly, zero) digits....
The first line contains a single integer *x* (1<=≤<=*x*<=≤<=1018) — the number that Luke Skywalker gave to Chewbacca.
Print the minimum possible positive number that Chewbacca can obtain after inverting some digits. The number shouldn't contain leading zeroes.
[ "27\n", "4545\n" ]
[ "22\n", "4444\n" ]
none
500
[ { "input": "27", "output": "22" }, { "input": "4545", "output": "4444" }, { "input": "1", "output": "1" }, { "input": "9", "output": "9" }, { "input": "8772", "output": "1222" }, { "input": "81", "output": "11" }, { "input": "71723447", ...
1,688,968,143
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
7
62
0
import sys strin = lambda: sys.stdin.readline().strip() ######################### START###################### def solve(): s = strin() for i,x in enumerate(s): if ord(x) < ord("5") or ord(x) == ord("0") or ord(x) == ord("9"): continue s = s.replace(x, str(9-int(x))) print(s) #...
Title: Chewbaсca and Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform...
```python import sys strin = lambda: sys.stdin.readline().strip() ######################### START###################### def solve(): s = strin() for i,x in enumerate(s): if ord(x) < ord("5") or ord(x) == ord("0") or ord(x) == ord("9"): continue s = s.replace(x, str(9-int(x))) pri...
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,918,323
2,147,483,647
Python 3
OK
TESTS
21
122
0
expression = input() # Split the expression using '+' numbers = expression.split('+') # Convert the numbers to integers numbers = [int(num) for num in numbers] # Sort the numbers in ascending order numbers.sort() # Convert the numbers back to strings numbers_str = [str(num) for num in numbers] # Conv...
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 expression = input() # Split the expression using '+' numbers = expression.split('+') # Convert the numbers to integers numbers = [int(num) for num in numbers] # Sort the numbers in ascending order numbers.sort() # Convert the numbers back to strings numbers_str = [str(num) for num in numbers]...
3
747
A
Display Size
PROGRAMMING
800
[ "brute force", "math" ]
null
null
A big company decided to launch a new series of rectangular displays, and decided that the display must have exactly *n* pixels. Your task is to determine the size of the rectangular display — the number of lines (rows) of pixels *a* and the number of columns of pixels *b*, so that: - there are exactly *n* pixels o...
The first line contains the positive integer *n* (1<=≤<=*n*<=≤<=106) — the number of pixels display should have.
Print two integers — the number of rows and columns on the display.
[ "8\n", "64\n", "5\n", "999999\n" ]
[ "2 4\n", "8 8\n", "1 5\n", "999 1001\n" ]
In the first example the minimum possible difference equals 2, so on the display should be 2 rows of 4 pixels. In the second example the minimum possible difference equals 0, so on the display should be 8 rows of 8 pixels. In the third example the minimum possible difference equals 4, so on the display should be 1 ro...
500
[ { "input": "8", "output": "2 4" }, { "input": "64", "output": "8 8" }, { "input": "5", "output": "1 5" }, { "input": "999999", "output": "999 1001" }, { "input": "716539", "output": "97 7387" }, { "input": "1", "output": "1 1" }, { "input":...
1,689,178,652
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
31
0
print("_RANDOM_GUESS_1689178652.607627")# 1689178652.607643
Title: Display Size Time Limit: None seconds Memory Limit: None megabytes Problem Description: A big company decided to launch a new series of rectangular displays, and decided that the display must have exactly *n* pixels. Your task is to determine the size of the rectangular display — the number of lines (rows) ...
```python print("_RANDOM_GUESS_1689178652.607627")# 1689178652.607643 ```
0
876
B
Divisiblity of Differences
PROGRAMMING
1,300
[ "implementation", "math", "number theory" ]
null
null
You are given a multiset of *n* integers. You should select exactly *k* of them in a such way that the difference between any two of them is divisible by *m*, or tell that it is impossible. Numbers can be repeated in the original multiset and in the multiset of selected numbers, but number of occurrences of any number...
First line contains three integers *n*, *k* and *m* (2<=≤<=*k*<=≤<=*n*<=≤<=100<=000, 1<=≤<=*m*<=≤<=100<=000) — number of integers in the multiset, number of integers you should select and the required divisor of any pair of selected integers. Second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=...
If it is not possible to select *k* numbers in the desired way, output «No» (without the quotes). Otherwise, in the first line of output print «Yes» (without the quotes). In the second line print *k* integers *b*1,<=*b*2,<=...,<=*b**k* — the selected numbers. If there are multiple possible solutions, print any of them...
[ "3 2 3\n1 8 4\n", "3 3 3\n1 8 4\n", "4 3 5\n2 7 7 7\n" ]
[ "Yes\n1 4 ", "No", "Yes\n2 7 7 " ]
none
1,000
[ { "input": "3 2 3\n1 8 4", "output": "Yes\n1 4 " }, { "input": "3 3 3\n1 8 4", "output": "No" }, { "input": "4 3 5\n2 7 7 7", "output": "Yes\n2 7 7 " }, { "input": "9 9 5\n389149775 833127990 969340400 364457730 48649145 316121525 640054660 924273385 973207825", "output":...
1,508,518,647
2,147,483,647
Python 3
OK
TESTS
63
202
23,859,200
n,k,m=list(map(int,input().split())) b=[[] for i in range(m)] c=[0 for i in range(m)] for i in map(int,input().split()): j=i%m b[j].append(i) c[j]+=1 if c[j]==k: print('Yes') print(' '.join(str(i) for i in b[j])) break else: print('No')
Title: Divisiblity of Differences Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a multiset of *n* integers. You should select exactly *k* of them in a such way that the difference between any two of them is divisible by *m*, or tell that it is impossible. Numbers can be re...
```python n,k,m=list(map(int,input().split())) b=[[] for i in range(m)] c=[0 for i in range(m)] for i in map(int,input().split()): j=i%m b[j].append(i) c[j]+=1 if c[j]==k: print('Yes') print(' '.join(str(i) for i in b[j])) break else: print('No') ```
3
321
A
Ciel and Robot
PROGRAMMING
1,700
[ "binary search", "implementation", "math" ]
null
null
Fox Ciel has a robot on a 2D plane. Initially it is located in (0, 0). Fox Ciel code a command to it. The command was represented by string *s*. Each character of *s* is one move operation. There are four move operations at all: - 'U': go up, (x, y) <=→<= (x, y+1); - 'D': go down, (x, y) <=→<= (x, y-1); - 'L': go l...
The first line contains two integers *a* and *b*, (<=-<=109<=≤<=*a*,<=*b*<=≤<=109). The second line contains a string *s* (1<=≤<=|*s*|<=≤<=100, *s* only contains characters 'U', 'D', 'L', 'R') — the command.
Print "Yes" if the robot will be located at (*a*,<=*b*), and "No" otherwise.
[ "2 2\nRU\n", "1 2\nRU\n", "-1 1000000000\nLRRLU\n", "0 0\nD\n" ]
[ "Yes\n", "No\n", "Yes\n", "Yes\n" ]
In the first and second test case, command string is "RU", so the robot will go right, then go up, then right, and then up and so on. The locations of its moves are (0, 0)  →  (1, 0)  →  (1, 1)  →  (2, 1)  →  (2, 2)  →  ... So it can reach (2, 2) but not (1, 2).
500
[ { "input": "2 2\nRU", "output": "Yes" }, { "input": "1 2\nRU", "output": "No" }, { "input": "-1 1000000000\nLRRLU", "output": "Yes" }, { "input": "0 0\nD", "output": "Yes" }, { "input": "0 0\nUURRDL", "output": "Yes" }, { "input": "987654321 987654321\...
1,489,313,913
2,147,483,647
Python 3
OK
TESTS
66
124
4,915,200
#!/usr/bin/python3 import sys MAPPING = { 'U': (0, 1), 'D': (0, -1), 'L': (-1, 0), 'R': (1, 0), } def read_ints(): return [int(x) for x in input().split()] def get_vectors(moves): vector = (0, 0) yield vector for move in moves: delta = MAPPING[move] vector = (vector[...
Title: Ciel and Robot Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel has a robot on a 2D plane. Initially it is located in (0, 0). Fox Ciel code a command to it. The command was represented by string *s*. Each character of *s* is one move operation. There are four move operations...
```python #!/usr/bin/python3 import sys MAPPING = { 'U': (0, 1), 'D': (0, -1), 'L': (-1, 0), 'R': (1, 0), } def read_ints(): return [int(x) for x in input().split()] def get_vectors(moves): vector = (0, 0) yield vector for move in moves: delta = MAPPING[move] vector ...
3
525
B
Pasha and String
PROGRAMMING
1,400
[ "constructive algorithms", "greedy", "math", "strings" ]
null
null
Pasha got a very beautiful string *s* for his birthday, the string consists of lowercase Latin letters. The letters in the string are numbered from 1 to |*s*| from left to right, where |*s*| is the length of the given string. Pasha didn't like his present very much so he decided to change it. After his birthday Pasha ...
The first line of the input contains Pasha's string *s* of length from 2 to 2·105 characters, consisting of lowercase Latin letters. The second line contains a single integer *m* (1<=≤<=*m*<=≤<=105) —  the number of days when Pasha changed his string. The third line contains *m* space-separated elements *a**i* (1<=≤<...
In the first line of the output print what Pasha's string *s* will look like after *m* days.
[ "abcdef\n1\n2\n", "vwxyz\n2\n2 2\n", "abcdef\n3\n1 2 3\n" ]
[ "aedcbf\n", "vwxyz\n", "fbdcea\n" ]
none
750
[ { "input": "abcdef\n1\n2", "output": "aedcbf" }, { "input": "vwxyz\n2\n2 2", "output": "vwxyz" }, { "input": "abcdef\n3\n1 2 3", "output": "fbdcea" }, { "input": "jc\n5\n1 1 1 1 1", "output": "cj" }, { "input": "wljqgdlxyc\n13\n3 4 3 3 5 4 4 2 4 4 5 3 3", "out...
1,588,001,300
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
139
0
from collections import * s=list(input()) n=int(input()) l=list(map(int,input().split())) d=defaultdict(int) for i in l: d[i]+=1 c=0 m=len(s) for i in range(m//2): c+=d[i] if(c&1): s[i],s[m-i-1]=s[m-i-1],s[i] print(''.join(s))
Title: Pasha and String Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha got a very beautiful string *s* for his birthday, the string consists of lowercase Latin letters. The letters in the string are numbered from 1 to |*s*| from left to right, where |*s*| is the length of the given ...
```python from collections import * s=list(input()) n=int(input()) l=list(map(int,input().split())) d=defaultdict(int) for i in l: d[i]+=1 c=0 m=len(s) for i in range(m//2): c+=d[i] if(c&1): s[i],s[m-i-1]=s[m-i-1],s[i] print(''.join(s)) ```
0
780
A
Andryusha and Socks
PROGRAMMING
800
[ "implementation" ]
null
null
Andryusha is an orderly boy and likes to keep things in their place. Today he faced a problem to put his socks in the wardrobe. He has *n* distinct pairs of socks which are initially in a bag. The pairs are numbered from 1 to *n*. Andryusha wants to put paired socks together and put them in the wardrobe. He takes the ...
The first line contains the single integer *n* (1<=≤<=*n*<=≤<=105) — the number of sock pairs. The second line contains 2*n* integers *x*1,<=*x*2,<=...,<=*x*2*n* (1<=≤<=*x**i*<=≤<=*n*), which describe the order in which Andryusha took the socks from the bag. More precisely, *x**i* means that the *i*-th sock Andryusha ...
Print single integer — the maximum number of socks that were on the table at the same time.
[ "1\n1 1\n", "3\n2 1 1 3 2 3\n" ]
[ "1\n", "2\n" ]
In the first example Andryusha took a sock from the first pair and put it on the table. Then he took the next sock which is from the first pair as well, so he immediately puts both socks to the wardrobe. Thus, at most one sock was on the table at the same time. In the second example Andryusha behaved as follows: - ...
500
[ { "input": "1\n1 1", "output": "1" }, { "input": "3\n2 1 1 3 2 3", "output": "2" }, { "input": "5\n5 1 3 2 4 3 1 2 4 5", "output": "5" }, { "input": "10\n4 2 6 3 4 8 7 1 1 5 2 10 6 8 3 5 10 9 9 7", "output": "6" }, { "input": "50\n30 47 31 38 37 50 36 43 9 23 2 2 ...
1,571,659,876
2,147,483,647
PyPy 3
COMPILATION_ERROR
TESTS
0
0
0
n = int(input()) socks = map(int, input().split()) singles = set() max_len = 0 for sock in socks: if not sock in singles: singles.add(sock) else singles.remove(sock) max_len = max(max_len, len(singles)) print(max_len)
Title: Andryusha and Socks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andryusha is an orderly boy and likes to keep things in their place. Today he faced a problem to put his socks in the wardrobe. He has *n* distinct pairs of socks which are initially in a bag. The pairs are numbere...
```python n = int(input()) socks = map(int, input().split()) singles = set() max_len = 0 for sock in socks: if not sock in singles: singles.add(sock) else singles.remove(sock) max_len = max(max_len, len(singles)) print(max_len) ```
-1
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,691,580,067
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
n=int(input()) l=list(map(int,input().split())) l2=list(map(int,input().split())) mq=max(l2) c=l2.index(mq) lp=min(l) d=l.index(lp) if d==c: print("Happy Alex") else: print("Poor Alex")
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=int(input()) l=list(map(int,input().split())) l2=list(map(int,input().split())) mq=max(l2) c=l2.index(mq) lp=min(l) d=l.index(lp) if d==c: print("Happy Alex") else: print("Poor Alex") ```
0
807
B
T-Shirt Hunt
PROGRAMMING
1,300
[ "brute force", "implementation" ]
null
null
Not so long ago the Codecraft-17 contest was held on Codeforces. The top 25 participants, and additionally random 25 participants out of those who got into top 500, will receive a Codeforces T-shirt. Unfortunately, you didn't manage to get into top 25, but you got into top 500, taking place *p*. Now the elimination r...
The only line contains three integers *p*, *x* and *y* (26<=≤<=*p*<=≤<=500; 1<=≤<=*y*<=≤<=*x*<=≤<=20000) — your place in Codecraft-17, your current score in the elimination round of 8VC Venture Cup 2017, and the smallest number of points you consider sufficient for winning the current round.
Output a single integer — the smallest number of successful hacks you have to do in order to both win the elimination round of 8VC Venture Cup 2017 and ensure getting a Codecraft-17 T-shirt. It's guaranteed that your goal is achievable for any valid input data.
[ "239 10880 9889\n", "26 7258 6123\n", "493 8000 8000\n", "101 6800 6500\n", "329 19913 19900\n" ]
[ "0\n", "2\n", "24\n", "0\n", "8\n" ]
In the first example, there is no need to do any hacks since 10880 points already bring the T-shirt to the 239-th place of Codecraft-17 (that is, you). In this case, according to the pseudocode, the T-shirts will be given to the participants at the following places: In the second example, you have to do two successfu...
1,000
[ { "input": "239 10880 9889", "output": "0" }, { "input": "26 7258 6123", "output": "2" }, { "input": "493 8000 8000", "output": "24" }, { "input": "101 6800 6500", "output": "0" }, { "input": "329 19913 19900", "output": "8" }, { "input": "264 19252 10...
1,494,440,822
2,147,483,647
Python 3
OK
TESTS
48
62
0
def checkWin(s,p): i=(s//50)%475 for j in range(25): i=(i*96+42)%475 if 26+i==p: return True return False p,x,y=[int(i) for i in input().split()] ans=0 if x<=y: x1=x else: x1=x-(x-y)//50*50 while not checkWin(x1,p) or x<y: x1+=50 if x1>x:ans+=1 print((a...
Title: T-Shirt Hunt Time Limit: None seconds Memory Limit: None megabytes Problem Description: Not so long ago the Codecraft-17 contest was held on Codeforces. The top 25 participants, and additionally random 25 participants out of those who got into top 500, will receive a Codeforces T-shirt. Unfortunately, you di...
```python def checkWin(s,p): i=(s//50)%475 for j in range(25): i=(i*96+42)%475 if 26+i==p: return True return False p,x,y=[int(i) for i in input().split()] ans=0 if x<=y: x1=x else: x1=x-(x-y)//50*50 while not checkWin(x1,p) or x<y: x1+=50 if x1>x:ans+=1...
3
322
B
Ciel and Flowers
PROGRAMMING
1,600
[ "combinatorics", "math" ]
null
null
Fox Ciel has some flowers: *r* red flowers, *g* green flowers and *b* blue flowers. She wants to use these flowers to make several bouquets. There are 4 types of bouquets: - To make a "red bouquet", it needs 3 red flowers. - To make a "green bouquet", it needs 3 green flowers. - To make a "blue bouquet", it needs 3...
The first line contains three integers *r*, *g* and *b* (0<=≤<=*r*,<=*g*,<=*b*<=≤<=109) — the number of red, green and blue flowers.
Print the maximal number of bouquets Fox Ciel can make.
[ "3 6 9\n", "4 4 4\n", "0 0 0\n" ]
[ "6\n", "4\n", "0\n" ]
In test case 1, we can make 1 red bouquet, 2 green bouquets and 3 blue bouquets. In test case 2, we can make 1 red, 1 green, 1 blue and 1 mixing bouquet.
1,000
[ { "input": "3 6 9", "output": "6" }, { "input": "4 4 4", "output": "4" }, { "input": "0 0 0", "output": "0" }, { "input": "0 3 6", "output": "3" }, { "input": "7 8 9", "output": "7" }, { "input": "8 8 9", "output": "8" }, { "input": "15 3 9...
1,561,740,506
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
218
0
a,b,c=map(int,input().split()) s=a//3+b//3+c//3 s+=min(a%3,b%3,c%3) print(max(min(a,b,c),s))
Title: Ciel and Flowers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel has some flowers: *r* red flowers, *g* green flowers and *b* blue flowers. She wants to use these flowers to make several bouquets. There are 4 types of bouquets: - To make a "red bouquet", it needs 3 red fl...
```python a,b,c=map(int,input().split()) s=a//3+b//3+c//3 s+=min(a%3,b%3,c%3) print(max(min(a,b,c),s)) ```
0
863
B
Kayaking
PROGRAMMING
1,500
[ "brute force", "greedy", "sortings" ]
null
null
Vadim is really keen on travelling. Recently he heard about kayaking activity near his town and became very excited about it, so he joined a party of kayakers. Now the party is ready to start its journey, but firstly they have to choose kayaks. There are 2·*n* people in the group (including Vadim), and they have exact...
The first line contains one number *n* (2<=≤<=*n*<=≤<=50). The second line contains 2·*n* integer numbers *w*1, *w*2, ..., *w*2*n*, where *w**i* is weight of person *i* (1<=≤<=*w**i*<=≤<=1000).
Print minimum possible total instability.
[ "2\n1 2 3 4\n", "4\n1 3 4 6 3 4 100 200\n" ]
[ "1\n", "5\n" ]
none
0
[ { "input": "2\n1 2 3 4", "output": "1" }, { "input": "4\n1 3 4 6 3 4 100 200", "output": "5" }, { "input": "3\n305 139 205 406 530 206", "output": "102" }, { "input": "3\n610 750 778 6 361 407", "output": "74" }, { "input": "5\n97 166 126 164 154 98 221 7 51 47", ...
1,630,073,628
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
93
20,172,800
n=int(input()) arr=list(map(int,input().split())) arr=sorted(arr) ans=0 for i in range(0,len(arr)-2,2): ans+=abs(arr[i+1]-arr[i]) print(ans)
Title: Kayaking Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vadim is really keen on travelling. Recently he heard about kayaking activity near his town and became very excited about it, so he joined a party of kayakers. Now the party is ready to start its journey, but firstly they hav...
```python n=int(input()) arr=list(map(int,input().split())) arr=sorted(arr) ans=0 for i in range(0,len(arr)-2,2): ans+=abs(arr[i+1]-arr[i]) print(ans) ```
0
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,675,828,560
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
30
0
a,b,c = map(int, input().split()) dis = (max(a,b,c) - min(a,b,c)) mid = 0 if dis%2 == 0: cal = int((max(a,b,c) - min(a,b,c))/2) mid = min(a,b,c) + cal ''' if a==cal or b==cal or c==cal: mid = min(a,b,c) + cal else: mid = min(a,b,c) + cal+1 ''' print(abs(mid-a) + abs(mid-b) + abs(mid-c)...
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 a,b,c = map(int, input().split()) dis = (max(a,b,c) - min(a,b,c)) mid = 0 if dis%2 == 0: cal = int((max(a,b,c) - min(a,b,c))/2) mid = min(a,b,c) + cal ''' if a==cal or b==cal or c==cal: mid = min(a,b,c) + cal else: mid = min(a,b,c) + cal+1 ''' print(abs(mid-a) + abs(mid-b) + ...
0
227
B
Effective Approach
PROGRAMMING
1,100
[ "implementation" ]
null
null
Once at a team training Vasya, Petya and Sasha got a problem on implementing linear search in an array. According to the boys, linear search works as follows. The array elements in a pre-selected order are in turn compared with the number that you need to find. Once you find the array element that is equal to the requ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of elements in the array. The second line contains *n* distinct space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*n*) — the elements of array. The third line contains integer *m* (1<=≤<=*m*<=≤<=105) — the number of queries. The ...
Print two integers, showing how many comparisons Vasya's approach needs and how many comparisons Petya's approach needs. Separate the numbers by spaces. Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specifier.
[ "2\n1 2\n1\n1\n", "2\n2 1\n1\n1\n", "3\n3 1 2\n3\n1 2 3\n" ]
[ "1 2\n", "2 1\n", "6 6\n" ]
In the first sample Vasya's approach will make one comparison (it starts with the 1-st element and immediately finds the required number), and Petya's approach makes two comparisons (first he compares with the 2-nd array element, doesn't find the search item and compares with the 1-st element). In the second sample, o...
1,000
[ { "input": "2\n1 2\n1\n1", "output": "1 2" }, { "input": "2\n2 1\n1\n1", "output": "2 1" }, { "input": "3\n3 1 2\n3\n1 2 3", "output": "6 6" }, { "input": "9\n2 9 3 1 6 4 7 8 5\n9\n5 1 5 2 8 4 4 4 5", "output": "58 32" }, { "input": "10\n3 10 9 2 7 6 5 8 4 1\n1\n4...
1,630,028,607
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
6
2,000
16,588,800
n = int(input()) n_integers = input().split(' ') m = int(input()) m_integers = input().split(' ') forward_count = sum(n_integers.index(x) + 1 for x in m_integers) backward_count = sum(n - n_integers.index(x) for x in m_integers) print(forward_count, backward_count)
Title: Effective Approach Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once at a team training Vasya, Petya and Sasha got a problem on implementing linear search in an array. According to the boys, linear search works as follows. The array elements in a pre-selected order are in turn c...
```python n = int(input()) n_integers = input().split(' ') m = int(input()) m_integers = input().split(' ') forward_count = sum(n_integers.index(x) + 1 for x in m_integers) backward_count = sum(n - n_integers.index(x) for x in m_integers) print(forward_count, backward_count) ```
0