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
412
B
Network Configuration
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
The R1 company wants to hold a web search championship. There were *n* computers given for the competition, each of them is connected to the Internet. The organizers believe that the data transfer speed directly affects the result. The higher the speed of the Internet is, the faster the participant will find the necess...
The first line contains two space-separated integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=100) — the number of computers and the number of participants, respectively. In the second line you have a space-separated sequence consisting of *n* integers: *a*1,<=*a*2,<=...,<=*a**n* (16<=≤<=*a**i*<=≤<=32768); number *a**i* deno...
Print a single integer — the maximum Internet speed value. It is guaranteed that the answer to the problem is always an integer.
[ "3 2\n40 20 30\n", "6 4\n100 20 40 20 50 50\n" ]
[ "30\n", "40\n" ]
In the first test case the organizers can cut the first computer's speed to 30 kilobits. Then two computers (the first and the third one) will have the same speed of 30 kilobits. They should be used as the participants' computers. This answer is optimal.
1,000
[ { "input": "3 2\n40 20 30", "output": "30" }, { "input": "6 4\n100 20 40 20 50 50", "output": "40" }, { "input": "1 1\n16", "output": "16" }, { "input": "2 1\n10000 17", "output": "10000" }, { "input": "2 2\n200 300", "output": "200" }, { "input": "3 1...
1,589,244,030
2,147,483,647
Python 3
OK
TESTS
34
124
0
n, k = [int (x) for x in input().split()] a = [int (x) for x in input().split()] a.sort(reverse=True) print(a[k-1])
Title: Network Configuration Time Limit: None seconds Memory Limit: None megabytes Problem Description: The R1 company wants to hold a web search championship. There were *n* computers given for the competition, each of them is connected to the Internet. The organizers believe that the data transfer speed directly a...
```python n, k = [int (x) for x in input().split()] a = [int (x) for x in input().split()] a.sort(reverse=True) print(a[k-1]) ```
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,694,502,686
2,147,483,647
Python 3
OK
TESTS
40
46
0
input_str = input() hello = "hello" counter = 0 printed = 0 for char in input_str: if counter > 4: print("YES") printed = 1 break if char == hello[counter]: counter += 1 if not printed and counter > 4: print("YES") else: if not printed: 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 input_str = input() hello = "hello" counter = 0 printed = 0 for char in input_str: if counter > 4: print("YES") printed = 1 break if char == hello[counter]: counter += 1 if not printed and counter > 4: print("YES") else: if not printed: print("NO") ```
3.977
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,529,701,485
2,147,483,647
Python 3
OK
TESTS
40
154
0
# -*- coding: utf-8 -*- """ Created on Fri Jun 22 16:56:03 2018 @author: KOTS2Z """ s = input() t = input() if s == t[::-1]: print("YES") else: print("NO")
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python # -*- coding: utf-8 -*- """ Created on Fri Jun 22 16:56:03 2018 @author: KOTS2Z """ s = input() t = input() if s == t[::-1]: print("YES") else: print("NO") ```
3.9615
645
A
Amity Assessment
PROGRAMMING
1,200
[ "brute force", "constructive algorithms", "implementation" ]
null
null
Bessie the cow and her best friend Elsie each received a sliding puzzle on Pi Day. Their puzzles consist of a 2<=×<=2 grid and three tiles labeled 'A', 'B', and 'C'. The three tiles sit on top of the grid, leaving one grid cell empty. To make a move, Bessie or Elsie can slide a tile adjacent to the empty cell into the ...
The first two lines of the input consist of a 2<=×<=2 grid describing the initial configuration of Bessie's puzzle. The next two lines contain a 2<=×<=2 grid describing the initial configuration of Elsie's puzzle. The positions of the tiles are labeled 'A', 'B', and 'C', while the empty cell is labeled 'X'. It's guaran...
Output "YES"(without quotes) if the puzzles can reach the same configuration (and Bessie and Elsie are truly BFFLs). Otherwise, print "NO" (without quotes).
[ "AB\nXC\nXB\nAC\n", "AB\nXC\nAC\nBX\n" ]
[ "YES\n", "NO\n" ]
The solution to the first sample is described by the image. All Bessie needs to do is slide her 'A' tile down. In the second sample, the two puzzles can never be in the same configuration. Perhaps Bessie and Elsie are not meant to be friends after all...
500
[ { "input": "AB\nXC\nXB\nAC", "output": "YES" }, { "input": "AB\nXC\nAC\nBX", "output": "NO" }, { "input": "XC\nBA\nCB\nAX", "output": "NO" }, { "input": "AB\nXC\nAX\nCB", "output": "YES" }, { "input": "CB\nAX\nXA\nBC", "output": "YES" }, { "input": "BC...
1,590,864,095
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
124
0
a=input() b=input() c=input() d=input() if (a[0] == 'X'): s1 = a[1]+b if (a[1] == 'X'): s1 = b[1]+b[0]+a[0] if (b[0] == 'X'): s1 = a + b[1] if (b[1] == 'X'): s1 = a + b[0] if (c[0] == 'X'): s2 = c[1]+d if (c[1] == 'X'): s2 = d[1]+d[0]+c[0] if (d[0] == 'X'): s2 = c + d[1]...
Title: Amity Assessment Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bessie the cow and her best friend Elsie each received a sliding puzzle on Pi Day. Their puzzles consist of a 2<=×<=2 grid and three tiles labeled 'A', 'B', and 'C'. The three tiles sit on top of the grid, leaving one ...
```python a=input() b=input() c=input() d=input() if (a[0] == 'X'): s1 = a[1]+b if (a[1] == 'X'): s1 = b[1]+b[0]+a[0] if (b[0] == 'X'): s1 = a + b[1] if (b[1] == 'X'): s1 = a + b[0] if (c[0] == 'X'): s2 = c[1]+d if (c[1] == 'X'): s2 = d[1]+d[0]+c[0] if (d[0] == 'X'): s2 ...
0
870
B
Maximum of Maximums of Minimums
PROGRAMMING
1,200
[ "greedy" ]
null
null
You are given an array *a*1,<=*a*2,<=...,<=*a**n* consisting of *n* integers, and an integer *k*. You have to split the array into exactly *k* non-empty subsegments. You'll then compute the minimum integer on each subsegment, and take the maximum integer over the *k* obtained minimums. What is the maximum possible inte...
The first line contains two integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=<=105) — the size of the array *a* and the number of subsegments you have to split the array to. The second line contains *n* integers *a*1,<=<=*a*2,<=<=...,<=<=*a**n* (<=-<=109<=<=≤<=<=*a**i*<=≤<=<=109).
Print single integer — the maximum possible integer you can get if you split the array into *k* non-empty subsegments and take maximum of minimums on the subsegments.
[ "5 2\n1 2 3 4 5\n", "5 1\n-4 -5 -3 -2 -1\n" ]
[ "5\n", "-5\n" ]
A subsegment [*l*,  *r*] (*l* ≤ *r*) of array *a* is the sequence *a*<sub class="lower-index">*l*</sub>,  *a*<sub class="lower-index">*l* + 1</sub>,  ...,  *a*<sub class="lower-index">*r*</sub>. Splitting of array *a* of *n* elements into *k* subsegments [*l*<sub class="lower-index">1</sub>, *r*<sub class="lower-index...
1,000
[ { "input": "5 2\n1 2 3 4 5", "output": "5" }, { "input": "5 1\n-4 -5 -3 -2 -1", "output": "-5" }, { "input": "10 2\n10 9 1 -9 -7 -9 3 8 -10 5", "output": "10" }, { "input": "10 4\n-8 -1 2 -3 9 -8 4 -3 5 9", "output": "9" }, { "input": "1 1\n504262064", "output...
1,509,827,189
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n,k=list(map(int,input().split())) a=list(map(int,input().split())) m=0 if k==1: print(min(a)) elif k>=3: print(max(a)) else: print(max(a[0],a[-1])
Title: Maximum of Maximums of Minimums Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array *a*1,<=*a*2,<=...,<=*a**n* consisting of *n* integers, and an integer *k*. You have to split the array into exactly *k* non-empty subsegments. You'll then compute the minimum integ...
```python n,k=list(map(int,input().split())) a=list(map(int,input().split())) m=0 if k==1: print(min(a)) elif k>=3: print(max(a)) else: print(max(a[0],a[-1]) ```
-1
190
C
STL
PROGRAMMING
1,500
[ "dfs and similar" ]
null
null
Vasya used to be an accountant before the war began and he is one of the few who knows how to operate a computer, so he was assigned as the programmer. We all know that programs often store sets of integers. For example, if we have a problem about a weighted directed graph, its edge can be represented by three integer...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105), showing how many numbers the type dictated by Gena contains. The second line contains space-separated words, said by Gena. Each of them is either "pair" or "int" (without the quotes). It is guaranteed that the total number of words does not exceed 105 ...
If it is possible to add the punctuation marks so as to get a correct type of language X-- as a result, print a single line that represents the resulting type. Otherwise, print "Error occurred" (without the quotes). Inside the record of a type should not be any extra spaces and other characters. It is guaranteed that...
[ "3\npair pair int int int\n", "1\npair int\n" ]
[ "pair&lt;pair&lt;int,int&gt;,int&gt;", "Error occurred" ]
none
1,500
[ { "input": "3\npair pair int int int", "output": "pair<pair<int,int>,int>" }, { "input": "1\npair int", "output": "Error occurred" }, { "input": "4\npair pair int int pair int int", "output": "pair<pair<int,int>,pair<int,int>>" }, { "input": "4\npair pair pair int int int int...
1,660,592,823
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
92
0
n = int(input()) words = input().split() cnt_stack = 0 flag = True ans = "" closing_cnt = 0 for word in words: if word == "pair": cnt_stack += 1 ans += word ans += "<" else: if len(ans) == 0: ans += word elif ans[-1] == '<': ans +=...
Title: STL Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya used to be an accountant before the war began and he is one of the few who knows how to operate a computer, so he was assigned as the programmer. We all know that programs often store sets of integers. For example, if we hav...
```python n = int(input()) words = input().split() cnt_stack = 0 flag = True ans = "" closing_cnt = 0 for word in words: if word == "pair": cnt_stack += 1 ans += word ans += "<" else: if len(ans) == 0: ans += word elif ans[-1] == '<': ...
0
205
A
Little Elephant and Rozdil
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elephant doesn't like to spend much time on travelling, so for his journey he will choose a town that needs minimum ti...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of cities. The next line contains *n* integers, separated by single spaces: the *i*-th integer represents the time needed to go from town Rozdil to the *i*-th town. The time values are positive integers, not exceeding 109. You can consider t...
Print the answer on a single line — the number of the town the Little Elephant will go to. If there are multiple cities with minimum travel time, print "Still Rozdil" (without the quotes).
[ "2\n7 4\n", "7\n7 4 47 100 4 9 12\n" ]
[ "2\n", "Still Rozdil\n" ]
In the first sample there are only two cities where the Little Elephant can go. The travel time for the first town equals 7, to the second one — 4. The town which is closest to Rodzil (the only one) is the second one, so the answer is 2. In the second sample the closest cities are cities two and five, the travelling t...
500
[ { "input": "2\n7 4", "output": "2" }, { "input": "7\n7 4 47 100 4 9 12", "output": "Still Rozdil" }, { "input": "1\n47", "output": "1" }, { "input": "2\n1000000000 1000000000", "output": "Still Rozdil" }, { "input": "7\n7 6 5 4 3 2 1", "output": "7" }, { ...
1,593,111,975
2,147,483,647
PyPy 3
OK
TESTS
45
434
30,924,800
n = int(input()) a = list(map(int, input().split())) target = min(a) cnt = a.count(target) if cnt > 1: print('Still Rozdil') else: print(a.index(target) + 1)
Title: Little Elephant and Rozdil Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elepha...
```python n = int(input()) a = list(map(int, input().split())) target = min(a) cnt = a.count(target) if cnt > 1: print('Still Rozdil') else: print(a.index(target) + 1) ```
3
248
A
Cupboards
PROGRAMMING
800
[ "implementation" ]
null
null
One foggy Stockholm morning, Karlsson decided to snack on some jam in his friend Lillebror Svantenson's house. Fortunately for Karlsson, there wasn't anybody in his friend's house. Karlsson was not going to be hungry any longer, so he decided to get some food in the house. Karlsson's gaze immediately fell on *n* woode...
The first input line contains a single integer *n* — the number of cupboards in the kitchen (2<=≤<=*n*<=≤<=104). Then follow *n* lines, each containing two integers *l**i* and *r**i* (0<=≤<=*l**i*,<=*r**i*<=≤<=1). Number *l**i* equals one, if the left door of the *i*-th cupboard is opened, otherwise number *l**i* equal...
In the only output line print a single integer *t* — the minimum number of seconds Karlsson needs to change the doors of all cupboards to the position he needs.
[ "5\n0 1\n1 0\n0 1\n1 1\n0 1\n" ]
[ "3\n" ]
none
500
[ { "input": "5\n0 1\n1 0\n0 1\n1 1\n0 1", "output": "3" }, { "input": "2\n0 0\n0 0", "output": "0" }, { "input": "3\n0 1\n1 1\n1 1", "output": "1" }, { "input": "8\n0 1\n1 0\n0 1\n1 1\n0 1\n1 0\n0 1\n1 0", "output": "7" }, { "input": "8\n1 0\n1 0\n1 0\n0 1\n0 1\n1 ...
1,589,582,407
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
154
6,860,800
n = int(input()) li = [] for i in range(n): c = tuple(input().split()) li.append(c) count1 = 0 for j in range(len(li)-1): if (li[j][0] == '0' and li[j+1][0] == '1') or (li[j][0] == '1' and li[j+1][0] == '0'): count1 = count1 + 1 count2 = 0 for k in range(len(li)-1): if (li...
Title: Cupboards Time Limit: None seconds Memory Limit: None megabytes Problem Description: One foggy Stockholm morning, Karlsson decided to snack on some jam in his friend Lillebror Svantenson's house. Fortunately for Karlsson, there wasn't anybody in his friend's house. Karlsson was not going to be hungry any long...
```python n = int(input()) li = [] for i in range(n): c = tuple(input().split()) li.append(c) count1 = 0 for j in range(len(li)-1): if (li[j][0] == '0' and li[j+1][0] == '1') or (li[j][0] == '1' and li[j+1][0] == '0'): count1 = count1 + 1 count2 = 0 for k in range(len(li)-1): ...
0
304
A
Pythagorean Theorem II
PROGRAMMING
1,200
[ "brute force", "math" ]
null
null
In mathematics, the Pythagorean theorem — is a relation in Euclidean geometry among the three sides of a right-angled triangle. In terms of areas, it states: In any right-angled triangle, the area of the square whose side is the hypotenuse (the side opposite the right angle) is equal to the sum of the areas of the s...
The only line contains one integer *n* (1<=≤<=*n*<=≤<=104) as we mentioned above.
Print a single integer — the answer to the problem.
[ "5\n", "74\n" ]
[ "1\n", "35\n" ]
none
500
[ { "input": "5", "output": "1" }, { "input": "74", "output": "35" }, { "input": "1000", "output": "881" }, { "input": "586", "output": "472" }, { "input": "2", "output": "0" }, { "input": "362", "output": "258" }, { "input": "778", "outp...
1,698,247,559
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
60
0
a = int(input()) l = [] c= 0 for i in range(a): for j in range(a): k = (i**2+j**2)**(1/2) if k==int(k): c+=1 print(c)
Title: Pythagorean Theorem II Time Limit: None seconds Memory Limit: None megabytes Problem Description: In mathematics, the Pythagorean theorem — is a relation in Euclidean geometry among the three sides of a right-angled triangle. In terms of areas, it states: In any right-angled triangle, the area of the squar...
```python a = int(input()) l = [] c= 0 for i in range(a): for j in range(a): k = (i**2+j**2)**(1/2) if k==int(k): c+=1 print(c) ```
0
600
B
Queries about less or equal elements
PROGRAMMING
1,300
[ "binary search", "data structures", "sortings", "two pointers" ]
null
null
You are given two arrays of integers *a* and *b*. For each element of the second array *b**j* you should find the number of elements in array *a* that are less than or equal to the value *b**j*.
The first line contains two integers *n*,<=*m* (1<=≤<=*n*,<=*m*<=≤<=2·105) — the sizes of arrays *a* and *b*. The second line contains *n* integers — the elements of array *a* (<=-<=109<=≤<=*a**i*<=≤<=109). The third line contains *m* integers — the elements of array *b* (<=-<=109<=≤<=*b**j*<=≤<=109).
Print *m* integers, separated by spaces: the *j*-th of which is equal to the number of such elements in array *a* that are less than or equal to the value *b**j*.
[ "5 4\n1 3 5 7 9\n6 4 2 8\n", "5 5\n1 2 1 2 5\n3 1 4 1 5\n" ]
[ "3 2 1 4\n", "4 2 4 2 5\n" ]
none
0
[ { "input": "5 4\n1 3 5 7 9\n6 4 2 8", "output": "3 2 1 4" }, { "input": "5 5\n1 2 1 2 5\n3 1 4 1 5", "output": "4 2 4 2 5" }, { "input": "1 1\n-1\n-2", "output": "0" }, { "input": "1 1\n-80890826\n686519510", "output": "1" }, { "input": "11 11\n237468511 -77918754...
1,682,912,489
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
31
0
n, k = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) a.sort() ans = [] for i in range(k): temp = b[i] left, right = 0, n - 1 while left < right: mid = (left + right) >> 1 if a[mid] <= temp: left = mid + 1 els...
Title: Queries about less or equal elements Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two arrays of integers *a* and *b*. For each element of the second array *b**j* you should find the number of elements in array *a* that are less than or equal to the value *b**j*. In...
```python n, k = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) a.sort() ans = [] for i in range(k): temp = b[i] left, right = 0, n - 1 while left < right: mid = (left + right) >> 1 if a[mid] <= temp: left = mid + 1 ...
0
626
B
Cards
PROGRAMMING
1,300
[ "constructive algorithms", "dp", "math" ]
null
null
Catherine has a deck of *n* cards, each of which is either red, green, or blue. As long as there are at least two cards left, she can do one of two actions: - take any two (not necessarily adjacent) cards with different colors and exchange them for a new card of the third color; - take any two (not necessarily adja...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=200) — the total number of cards. The next line contains a string *s* of length *n* — the colors of the cards. *s* contains only the characters 'B', 'G', and 'R', representing blue, green, and red, respectively.
Print a single string of up to three characters — the possible colors of the final card (using the same symbols as the input) in alphabetical order.
[ "2\nRB\n", "3\nGRG\n", "5\nBBBBB\n" ]
[ "G\n", "BR\n", "B\n" ]
In the first sample, Catherine has one red card and one blue card, which she must exchange for a green card. In the second sample, Catherine has two green cards and one red card. She has two options: she can exchange the two green cards for a green card, then exchange the new green card and the red card for a blue car...
750
[ { "input": "2\nRB", "output": "G" }, { "input": "3\nGRG", "output": "BR" }, { "input": "5\nBBBBB", "output": "B" }, { "input": "1\nR", "output": "R" }, { "input": "200\nBBRGRRBBRGGGBGBGBGRRGRGRGRBGRGRRBBGRGBGRRGRRRGGBBRGBGBGBRBBBBBBBGGBRGGRRRGGRGBGBGGBRRRRBRRRBRBB...
1,455,385,993
1,093
PyPy 3
TIME_LIMIT_EXCEEDED
PRETESTS
4
2,000
21,504,000
#!/usr/bin/env python3 from collections import Counter from functools import lru_cache from itertools import combinations @lru_cache() def calc(*args): if sum(args) == 1: return set([args.index(1)]) r, g, b = args args = list(args) result = set() for i, j in combinations...
Title: Cards Time Limit: None seconds Memory Limit: None megabytes Problem Description: Catherine has a deck of *n* cards, each of which is either red, green, or blue. As long as there are at least two cards left, she can do one of two actions: - take any two (not necessarily adjacent) cards with different colors...
```python #!/usr/bin/env python3 from collections import Counter from functools import lru_cache from itertools import combinations @lru_cache() def calc(*args): if sum(args) == 1: return set([args.index(1)]) r, g, b = args args = list(args) result = set() for i, j in co...
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,670,320,776
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
n = int(input()) for i in range(n): s = input() if len(s)>10: print(s[0]+str(len(s))+s[-1]) else: print(s)
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()) for i in range(n): s = input() if len(s)>10: print(s[0]+str(len(s))+s[-1]) else: print(s) ```
0
992
A
Nastya and an Array
PROGRAMMING
800
[ "implementation", "sortings" ]
null
null
Nastya owns too many arrays now, so she wants to delete the least important of them. However, she discovered that this array is magic! Nastya now knows that the array has the following properties: - In one second we can add an arbitrary (possibly negative) integer to all elements of the array that are not equal to ze...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the size of the array. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=105<=≤<=*a**i*<=≤<=105) — the elements of the array.
Print a single integer — the minimum number of seconds needed to make all elements of the array equal to zero.
[ "5\n1 1 1 1 1\n", "3\n2 0 -1\n", "4\n5 -6 -5 1\n" ]
[ "1\n", "2\n", "4\n" ]
In the first example you can add  - 1 to all non-zero elements in one second and make them equal to zero. In the second example you can add  - 2 on the first second, then the array becomes equal to [0, 0,  - 3]. On the second second you can add 3 to the third (the only non-zero) element.
500
[ { "input": "5\n1 1 1 1 1", "output": "1" }, { "input": "3\n2 0 -1", "output": "2" }, { "input": "4\n5 -6 -5 1", "output": "4" }, { "input": "1\n0", "output": "0" }, { "input": "2\n21794 -79194", "output": "2" }, { "input": "3\n-63526 95085 -5239", ...
1,617,799,178
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
109
2,150,400
x, k = map(int, input().split()) if x == 0: print(0) exit() mod = 10**9+7 ans = 1+(2*x-1)*pow(2, k, mod) print(ans%mod)
Title: Nastya and an Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Nastya owns too many arrays now, so she wants to delete the least important of them. However, she discovered that this array is magic! Nastya now knows that the array has the following properties: - In one second ...
```python x, k = map(int, input().split()) if x == 0: print(0) exit() mod = 10**9+7 ans = 1+(2*x-1)*pow(2, k, mod) print(ans%mod) ```
-1
205
A
Little Elephant and Rozdil
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elephant doesn't like to spend much time on travelling, so for his journey he will choose a town that needs minimum ti...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of cities. The next line contains *n* integers, separated by single spaces: the *i*-th integer represents the time needed to go from town Rozdil to the *i*-th town. The time values are positive integers, not exceeding 109. You can consider t...
Print the answer on a single line — the number of the town the Little Elephant will go to. If there are multiple cities with minimum travel time, print "Still Rozdil" (without the quotes).
[ "2\n7 4\n", "7\n7 4 47 100 4 9 12\n" ]
[ "2\n", "Still Rozdil\n" ]
In the first sample there are only two cities where the Little Elephant can go. The travel time for the first town equals 7, to the second one — 4. The town which is closest to Rodzil (the only one) is the second one, so the answer is 2. In the second sample the closest cities are cities two and five, the travelling t...
500
[ { "input": "2\n7 4", "output": "2" }, { "input": "7\n7 4 47 100 4 9 12", "output": "Still Rozdil" }, { "input": "1\n47", "output": "1" }, { "input": "2\n1000000000 1000000000", "output": "Still Rozdil" }, { "input": "7\n7 6 5 4 3 2 1", "output": "7" }, { ...
1,624,279,428
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
92
0
n = int(input()) cities = list(map(int , input().split())) dict = {} m = 1000000009 for i in range(0,n): if cities[i]<m: m = cities[i] ind = i+1 if cities[i] not in dict: dict[cities[i]] = 1 else: dict[cities[i]] += 1 if dict[m]>1: print('Stil Rozdil') els...
Title: Little Elephant and Rozdil Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elepha...
```python n = int(input()) cities = list(map(int , input().split())) dict = {} m = 1000000009 for i in range(0,n): if cities[i]<m: m = cities[i] ind = i+1 if cities[i] not in dict: dict[cities[i]] = 1 else: dict[cities[i]] += 1 if dict[m]>1: print('Stil Roz...
0
274
A
k-Multiple Free Set
PROGRAMMING
1,500
[ "binary search", "greedy", "sortings" ]
null
null
A *k*-multiple free set is a set of integers where there is no pair of integers where one is equal to another integer multiplied by *k*. That is, there are no two integers *x* and *y* (*x*<=&lt;<=*y*) from the set, such that *y*<==<=*x*·*k*. You're given a set of *n* distinct positive integers. Your task is to find th...
The first line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=105,<=1<=≤<=*k*<=≤<=109). The next line contains a list of *n* distinct positive integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109). All the numbers in the lines are separated by single spaces.
On the only line of the output print the size of the largest *k*-multiple free subset of {*a*1,<=*a*2,<=...,<=*a**n*}.
[ "6 2\n2 3 6 5 4 10\n" ]
[ "3\n" ]
In the sample input one of the possible maximum 2-multiple free subsets is {4, 5, 6}.
500
[ { "input": "6 2\n2 3 6 5 4 10", "output": "3" }, { "input": "10 2\n1 2 3 4 5 6 7 8 9 10", "output": "6" }, { "input": "1 1\n1", "output": "1" }, { "input": "100 2\n191 17 61 40 77 95 128 88 26 69 79 10 131 106 142 152 68 39 182 53 83 81 6 89 65 148 33 22 5 47 107 121 52 163 1...
1,609,042,536
2,147,483,647
PyPy 3
OK
TESTS
43
528
15,769,600
n, k = [int(e) for e in input().split()] a = sorted([int(e) for e in input().split()]) s = set() for i in range(n): if a[i] % k != 0: s.add(a[i]) elif a[i] / k not in s: s.add(a[i]) print(len(s))
Title: k-Multiple Free Set Time Limit: None seconds Memory Limit: None megabytes Problem Description: A *k*-multiple free set is a set of integers where there is no pair of integers where one is equal to another integer multiplied by *k*. That is, there are no two integers *x* and *y* (*x*<=&lt;<=*y*) from the set, ...
```python n, k = [int(e) for e in input().split()] a = sorted([int(e) for e in input().split()]) s = set() for i in range(n): if a[i] % k != 0: s.add(a[i]) elif a[i] / k not in s: s.add(a[i]) print(len(s)) ```
3
195
D
Analyzing Polyline
PROGRAMMING
1,900
[ "geometry", "math", "sortings" ]
null
null
As Valeric and Valerko were watching one of the last Euro Championship games in a sports bar, they broke a mug. Of course, the guys paid for it but the barman said that he will let them watch football in his bar only if they help his son complete a programming task. The task goes like that. Let's consider a set of fun...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of functions. Each of the following *n* lines contains two space-separated integer numbers *k**i*,<=*b**i* (<=-<=109<=≤<=*k**i*,<=*b**i*<=≤<=109) that determine the *i*-th function.
Print a single number — the number of angles that do not equal 180 degrees in the graph of the polyline that equals the sum of the given functions.
[ "1\n1 0\n", "3\n1 0\n0 2\n-1 1\n", "3\n-2 -4\n1 7\n-5 1\n" ]
[ "1\n", "2\n", "3\n" ]
none
2,000
[ { "input": "1\n1 0", "output": "1" }, { "input": "3\n1 0\n0 2\n-1 1", "output": "2" }, { "input": "3\n-2 -4\n1 7\n-5 1", "output": "3" }, { "input": "10\n9 9\n-5 2\n-2 9\n0 6\n6 7\n-1 -10\n-8 6\n3 6\n-3 -9\n0 4", "output": "8" }, { "input": "10\n-4 -9\n5 9\n-4 -1\...
1,500,867,625
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
124
4,608,000
index=0 t=int(input()) slo=list([]) while(t!=0): k,b=map(int, input().split()) if(k!=0): slo.append(-b/k) index+=1 t-=1 slo.sort() res=0 i=0 slo.append(0) while(i<index): while(slo[i]==slo[i+1] and i<index): i+=1 res+=1 i+=1 print(res)
Title: Analyzing Polyline Time Limit: None seconds Memory Limit: None megabytes Problem Description: As Valeric and Valerko were watching one of the last Euro Championship games in a sports bar, they broke a mug. Of course, the guys paid for it but the barman said that he will let them watch football in his bar only...
```python index=0 t=int(input()) slo=list([]) while(t!=0): k,b=map(int, input().split()) if(k!=0): slo.append(-b/k) index+=1 t-=1 slo.sort() res=0 i=0 slo.append(0) while(i<index): while(slo[i]==slo[i+1] and i<index): i+=1 res+=1 i+=1 print(res) ...
-1
964
A
Splits
PROGRAMMING
800
[ "math" ]
null
null
Let's define a split of $n$ as a nonincreasing sequence of positive integers, the sum of which is $n$. For example, the following sequences are splits of $8$: $[4, 4]$, $[3, 3, 2]$, $[2, 2, 1, 1, 1, 1]$, $[5, 2, 1]$. The following sequences aren't splits of $8$: $[1, 7]$, $[5, 4]$, $[11, -3]$, $[1, 1, 4, 1, 1]$. Th...
The first line contains one integer $n$ ($1 \leq n \leq 10^9$).
Output one integer — the answer to the problem.
[ "7\n", "8\n", "9\n" ]
[ "4\n", "5\n", "5\n" ]
In the first sample, there are following possible weights of splits of $7$: Weight 1: [$\textbf 7$] Weight 2: [$\textbf 3$, $\textbf 3$, 1] Weight 3: [$\textbf 2$, $\textbf 2$, $\textbf 2$, 1] Weight 7: [$\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$, $\textbf 1$]
500
[ { "input": "7", "output": "4" }, { "input": "8", "output": "5" }, { "input": "9", "output": "5" }, { "input": "1", "output": "1" }, { "input": "286", "output": "144" }, { "input": "48", "output": "25" }, { "input": "941", "output": "471...
1,530,480,191
2,147,483,647
Python 3
OK
TESTS
63
109
0
n=int(input()) if n==1: print (1) elif n==2: print (2) else: print (n//2+1)
Title: Splits Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's define a split of $n$ as a nonincreasing sequence of positive integers, the sum of which is $n$. For example, the following sequences are splits of $8$: $[4, 4]$, $[3, 3, 2]$, $[2, 2, 1, 1, 1, 1]$, $[5, 2, 1]$. The foll...
```python n=int(input()) if n==1: print (1) elif n==2: print (2) else: print (n//2+1) ```
3
952
B
A Map of the Cat
PROGRAMMING
1,900
[ "brute force", "interactive" ]
null
null
If you have ever interacted with a cat, you have probably noticed that they are quite particular about how to pet them. Here is an approximate map of a normal cat. However, some cats won't tolerate this nonsense from the humans. Here is a map of a grumpy cat. You have met a cat. Can you figure out whether it's normal...
none
none
[]
[]
Please make sure to use the stream flushing operation after each query in order not to leave part of your output in some buffer.
0
[ { "input": "5 0 1 2 5 3 5 4 5 5", "output": "Correct answer 'normal'" }, { "input": "5 5 5 6 6 7 8 9 10 11", "output": "Correct answer 'grumpy'" }, { "input": "10 6 5 7 5 6 11 5 8 9", "output": "Correct answer 'grumpy'" }, { "input": "7 10 8 9 6 5 5 11 5 6", "output": "Co...
1,617,114,347
2,147,483,647
PyPy 3
OK
TESTS
18
93
0
# coding: utf-8 response = input('9\n') print('grumpy') if response in ['terrible', 'worse', 'are you serious?', "don't even", 'no way', 'go die in a hole'] else print('normal')
Title: A Map of the Cat Time Limit: None seconds Memory Limit: None megabytes Problem Description: If you have ever interacted with a cat, you have probably noticed that they are quite particular about how to pet them. Here is an approximate map of a normal cat. However, some cats won't tolerate this nonsense from ...
```python # coding: utf-8 response = input('9\n') print('grumpy') if response in ['terrible', 'worse', 'are you serious?', "don't even", 'no way', 'go die in a hole'] else print('normal') ```
3
931
A
Friends Meeting
PROGRAMMING
800
[ "brute force", "greedy", "implementation", "math" ]
null
null
Two friends are on the coordinate axis *Ox* in points with integer coordinates. One of them is in the point *x*1<==<=*a*, another one is in the point *x*2<==<=*b*. Each of the friends can move by one along the line in any direction unlimited number of times. When a friend moves, the tiredness of a friend changes acco...
The first line contains a single integer *a* (1<=≤<=*a*<=≤<=1000) — the initial position of the first friend. The second line contains a single integer *b* (1<=≤<=*b*<=≤<=1000) — the initial position of the second friend. It is guaranteed that *a*<=≠<=*b*.
Print the minimum possible total tiredness if the friends meet in the same point.
[ "3\n4\n", "101\n99\n", "5\n10\n" ]
[ "1\n", "2\n", "9\n" ]
In the first example the first friend should move by one to the right (then the meeting happens at point 4), or the second friend should move by one to the left (then the meeting happens at point 3). In both cases, the total tiredness becomes 1. In the second example the first friend should move by one to the left, an...
500
[ { "input": "3\n4", "output": "1" }, { "input": "101\n99", "output": "2" }, { "input": "5\n10", "output": "9" }, { "input": "1\n2", "output": "1" }, { "input": "1\n1000", "output": "250000" }, { "input": "999\n1000", "output": "1" }, { "inpu...
1,550,136,882
2,147,483,647
Python 3
OK
TESTS
40
109
0
a = int(input()) b = int(input()) c = (abs(a - b) + 1) // 2 s = 0 for i in range(1, c + 1): s += i if (a - b) % 2: print(2 * s - c) else: print(2 * s)
Title: Friends Meeting Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two friends are on the coordinate axis *Ox* in points with integer coordinates. One of them is in the point *x*1<==<=*a*, another one is in the point *x*2<==<=*b*. Each of the friends can move by one along the line in...
```python a = int(input()) b = int(input()) c = (abs(a - b) + 1) // 2 s = 0 for i in range(1, c + 1): s += i if (a - b) % 2: print(2 * s - c) else: print(2 * s) ```
3
615
A
Bulbs
PROGRAMMING
800
[ "implementation" ]
null
null
Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is pressed, it turns on all the bulbs it's connected to. Can Vasya light up all the bulbs? I...
The first line of the input contains integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of buttons and the number of bulbs respectively. Each of the next *n* lines contains *x**i* (0<=≤<=*x**i*<=≤<=*m*) — the number of bulbs that are turned on by the *i*-th button, and then *x**i* numbers *y**ij* (1<=≤<=*y**...
If it's possible to turn on all *m* bulbs print "YES", otherwise print "NO".
[ "3 4\n2 1 4\n3 1 3 1\n1 2\n", "3 3\n1 1\n1 2\n1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample you can press each button once and turn on all the bulbs. In the 2 sample it is impossible to turn on the 3-rd lamp.
500
[ { "input": "3 4\n2 1 4\n3 1 3 1\n1 2", "output": "YES" }, { "input": "3 3\n1 1\n1 2\n1 1", "output": "NO" }, { "input": "3 4\n1 1\n1 2\n1 3", "output": "NO" }, { "input": "1 5\n5 1 2 3 4 5", "output": "YES" }, { "input": "1 5\n5 4 4 1 2 3", "output": "NO" },...
1,597,236,024
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
4
124
20,172,800
n,m=[int(x) for x in input().split(' ')] l=set() z=[] for _ in range(n): l=set([int(x) for x in input().split(' ')]) for x in l: z.append(x) a=set(z) if len(a)==m: print('YES') else: print('NO')
Title: Bulbs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is...
```python n,m=[int(x) for x in input().split(' ')] l=set() z=[] for _ in range(n): l=set([int(x) for x in input().split(' ')]) for x in l: z.append(x) a=set(z) if len(a)==m: print('YES') else: print('NO') ```
0
510
A
Fox And Snake
PROGRAMMING
800
[ "implementation" ]
null
null
Fox Ciel starts to learn programming. The first task is drawing a fox! However, that turns out to be too hard for a beginner, so she decides to draw a snake instead. A snake is a pattern on a *n* by *m* table. Denote *c*-th cell of *r*-th row as (*r*,<=*c*). The tail of the snake is located at (1,<=1), then it's body ...
The only line contains two integers: *n* and *m* (3<=≤<=*n*,<=*m*<=≤<=50). *n* is an odd number.
Output *n* lines. Each line should contain a string consisting of *m* characters. Do not output spaces.
[ "3 3\n", "3 4\n", "5 3\n", "9 9\n" ]
[ "###\n..#\n###\n", "####\n...#\n####\n", "###\n..#\n###\n#..\n###\n", "#########\n........#\n#########\n#........\n#########\n........#\n#########\n#........\n#########\n" ]
none
500
[ { "input": "3 3", "output": "###\n..#\n###" }, { "input": "3 4", "output": "####\n...#\n####" }, { "input": "5 3", "output": "###\n..#\n###\n#..\n###" }, { "input": "9 9", "output": "#########\n........#\n#########\n#........\n#########\n........#\n#########\n#........\n#...
1,699,769,526
2,147,483,647
Python 3
OK
TESTS
28
61
102,400
n,m=map(int,input().split()) count=0 arr=[] for i in range(n): if i%2==0: b=['#']*m arr.append(b) else: b=['.']*m b[0]='#' if count%2==0: arr.append(b[::-1]) else: arr.append(b) count+=1 for i in range(n): prin...
Title: Fox And Snake Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel starts to learn programming. The first task is drawing a fox! However, that turns out to be too hard for a beginner, so she decides to draw a snake instead. A snake is a pattern on a *n* by *m* table. Denote *c*...
```python n,m=map(int,input().split()) count=0 arr=[] for i in range(n): if i%2==0: b=['#']*m arr.append(b) else: b=['.']*m b[0]='#' if count%2==0: arr.append(b[::-1]) else: arr.append(b) count+=1 for i in range(n):...
3
0
none
none
none
0
[ "none" ]
null
null
Slastyona and her loyal dog Pushok are playing a meaningless game that is indeed very interesting. The game consists of multiple rounds. Its rules are very simple: in each round, a natural number *k* is chosen. Then, the one who says (or barks) it faster than the other wins the round. After that, the winner's score is...
In the first string, the number of games *n* (1<=≤<=*n*<=≤<=350000) is given. Each game is represented by a pair of scores *a*, *b* (1<=≤<=*a*,<=*b*<=≤<=109) – the results of Slastyona and Pushok, correspondingly.
For each pair of scores, answer "Yes" if it's possible for a game to finish with given score, and "No" otherwise. You can output each letter in arbitrary case (upper or lower).
[ "6\n2 4\n75 45\n8 8\n16 16\n247 994\n1000000000 1000000\n" ]
[ "Yes\nYes\nYes\nNo\nNo\nYes\n" ]
First game might have been consisted of one round, in which the number 2 would have been chosen and Pushok would have won. The second game needs exactly two rounds to finish with such result: in the first one, Slastyona would have said the number 5, and in the second one, Pushok would have barked the number 3.
0
[ { "input": "6\n2 4\n75 45\n8 8\n16 16\n247 994\n1000000000 1000000", "output": "Yes\nYes\nYes\nNo\nNo\nYes" }, { "input": "3\n1 1\n8 27\n1000 1331", "output": "Yes\nNo\nNo" }, { "input": "1\n12004 18012002", "output": "Yes" }, { "input": "1\n3331 11095561", "output": "Yes...
1,584,222,593
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
124
0
from math import pow, ceil for i in range(int(input())): a, b = map(int, input().split()) ans = ceil(pow(a * b, 1 / 3)) print('yes' if ans * ans * ans == a * b else 'no')
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Slastyona and her loyal dog Pushok are playing a meaningless game that is indeed very interesting. The game consists of multiple rounds. Its rules are very simple: in each round, a natural number *k* is chosen. Then, the one who ...
```python from math import pow, ceil for i in range(int(input())): a, b = map(int, input().split()) ans = ceil(pow(a * b, 1 / 3)) print('yes' if ans * ans * ans == a * b else 'no') ```
0
48
B
Land Lot
PROGRAMMING
1,200
[ "brute force", "implementation" ]
B. Land Lot
2
256
Vasya has a beautiful garden where wonderful fruit trees grow and yield fantastic harvest every year. But lately thieves started to sneak into the garden at nights and steal the fruit too often. Vasya can’t spend the nights in the garden and guard the fruit because there’s no house in the garden! Vasya had been saving ...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=50) which represent the garden location. The next *n* lines contain *m* numbers 0 or 1, which describe the garden on the scheme. The zero means that a tree doesn’t grow on this square and the 1 means that there is a growing tree. The last line contai...
Print the minimum number of trees that needs to be chopped off to select a land lot *a*<=×<=*b* in size to build a house on. It is guaranteed that at least one lot location can always be found, i. e. either *a*<=≤<=*n* and *b*<=≤<=*m*, or *a*<=≤<=*m* и *b*<=≤<=*n*.
[ "2 2\n1 0\n1 1\n1 1\n", "4 5\n0 0 1 0 1\n0 1 1 1 0\n1 0 1 0 1\n1 1 1 1 1\n2 3\n" ]
[ "0\n", "2\n" ]
In the second example the upper left square is (1,1) and the lower right is (3,2).
0
[ { "input": "2 2\n1 0\n1 1\n1 1", "output": "0" }, { "input": "4 5\n0 0 1 0 1\n0 1 1 1 0\n1 0 1 0 1\n1 1 1 1 1\n2 3", "output": "2" }, { "input": "3 3\n0 0 0\n0 0 0\n0 0 0\n1 2", "output": "0" }, { "input": "3 3\n1 1 1\n1 1 1\n1 1 1\n2 1", "output": "2" }, { "input...
1,640,878,868
2,147,483,647
PyPy 3-64
OK
TESTS
30
248
2,355,200
Homura = [int(i) for i in input().split()] m = Homura[0] n = Homura[1] garden = [] for i in range(m): garden.append([int(i) for i in input().split()]) Madoka = [int(i) for i in input().split()] a = Madoka[0] b = Madoka[1] ans = a*b for i in range(m+1-a): for j in range(n+1-b): trees = 0 for x...
Title: Land Lot Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya has a beautiful garden where wonderful fruit trees grow and yield fantastic harvest every year. But lately thieves started to sneak into the garden at nights and steal the fruit too often. Vasya can’t spend the nights in the...
```python Homura = [int(i) for i in input().split()] m = Homura[0] n = Homura[1] garden = [] for i in range(m): garden.append([int(i) for i in input().split()]) Madoka = [int(i) for i in input().split()] a = Madoka[0] b = Madoka[1] ans = a*b for i in range(m+1-a): for j in range(n+1-b): trees = ...
3.933613
722
C
Destroying Array
PROGRAMMING
1,600
[ "data structures", "dsu" ]
null
null
You are given an array consisting of *n* non-negative integers *a*1,<=*a*2,<=...,<=*a**n*. You are going to destroy integers in the array one by one. Thus, you are given the permutation of integers from 1 to *n* defining the order elements of the array are destroyed. After each element is destroyed you have to find o...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the length of the array. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109). The third line contains a permutation of integers from 1 to *n* — the order used to destroy elements.
Print *n* lines. The *i*-th line should contain a single integer — the maximum possible sum of elements on the segment containing no destroyed elements, after first *i* operations are performed.
[ "4\n1 3 2 5\n3 4 1 2\n", "5\n1 2 3 4 5\n4 2 3 5 1\n", "8\n5 5 4 4 6 6 5 5\n5 2 8 7 1 3 4 6\n" ]
[ "5\n4\n3\n0\n", "6\n5\n5\n1\n0\n", "18\n16\n11\n8\n8\n6\n6\n0\n" ]
Consider the first sample: 1. Third element is destroyed. Array is now 1 3  *  5. Segment with maximum sum 5 consists of one integer 5. 1. Fourth element is destroyed. Array is now 1 3  *   * . Segment with maximum sum 4 consists of two integers 1 3. 1. First element is destroyed. Array is now  *  3  *   * . Segme...
1,000
[ { "input": "4\n1 3 2 5\n3 4 1 2", "output": "5\n4\n3\n0" }, { "input": "5\n1 2 3 4 5\n4 2 3 5 1", "output": "6\n5\n5\n1\n0" }, { "input": "8\n5 5 4 4 6 6 5 5\n5 2 8 7 1 3 4 6", "output": "18\n16\n11\n8\n8\n6\n6\n0" }, { "input": "10\n3 3 3 5 6 9 3 1 7 3\n3 4 6 7 5 1 10 9 2 8"...
1,475,335,077
4,377
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
12
1,000
1,945,600
#! /usr/bin/env python3 import itertools n = int(input()) a = list(map(int, input().split(' '))) o = list(map(int, input().split(' '))) segs = [[0, n - 1, sum(a)]] for i in o: i = i - 1 rem = a[i] a[i] = -1 # Find broken segment for j,s in enumerate(segs): #print(segs) if i >= s[0...
Title: Destroying Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array consisting of *n* non-negative integers *a*1,<=*a*2,<=...,<=*a**n*. You are going to destroy integers in the array one by one. Thus, you are given the permutation of integers from 1 to *n* defin...
```python #! /usr/bin/env python3 import itertools n = int(input()) a = list(map(int, input().split(' '))) o = list(map(int, input().split(' '))) segs = [[0, n - 1, sum(a)]] for i in o: i = i - 1 rem = a[i] a[i] = -1 # Find broken segment for j,s in enumerate(segs): #print(segs) i...
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,691,516,678
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
46
0
n = int(input()) wts = list(map(int,input().split())) wts.sort() ans = sum(wts) for i in range(len(wts)-1): for j in range(i+1,len(wts)): newarr= wts[:i] + wts[i+1:j] + wts[j+1:] cans = 0 for k in range(1,len(newarr)): cans += abs(newarr[k]-newarr[k-1]) ans = m...
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()) wts = list(map(int,input().split())) wts.sort() ans = sum(wts) for i in range(len(wts)-1): for j in range(i+1,len(wts)): newarr= wts[:i] + wts[i+1:j] + wts[j+1:] cans = 0 for k in range(1,len(newarr)): cans += abs(newarr[k]-newarr[k-1]) ...
0
391
A
Genetic Engineering
PROGRAMMING
0
[ "implementation", "two pointers" ]
null
null
You will receive 3 points for solving this problem. Manao is designing the genetic code for a new type of algae to efficiently produce fuel. Specifically, Manao is focusing on a stretch of DNA that encodes one protein. The stretch of DNA is represented by a string containing only the characters 'A', 'T', 'G' and 'C'. ...
The input consists of a single line, containing a string *s* of length *n* (1<=≤<=*n*<=≤<=100). Each character of *s* will be from the set {'A', 'T', 'G', 'C'}. This problem doesn't have subproblems. You will get 3 points for the correct submission.
The program should print on one line a single integer representing the minimum number of 'A', 'T', 'G', 'C' characters that are required to be inserted into the input string in order to make all runs of identical characters have odd length.
[ "GTTAAAG\n", "AACCAACCAAAAC\n" ]
[ "1\n", "5\n" ]
In the first example, it is sufficient to insert a single nucleotide of any type between the two 'T's in the sequence to restore the functionality of the protein.
3
[ { "input": "GTTAAAG", "output": "1" }, { "input": "AACCAACCAAAAC", "output": "5" }, { "input": "GTGAATTTCC", "output": "2" }, { "input": "CAGGGGGCCGCCCATGAAAAAAACCCGGCCCCTTGGGAAAACTTGGGTTA", "output": "7" }, { "input": "CCCTTCACCCGGATCCAAATCCCTTAGAAATAATCCCCGACGGC...
1,478,158,647
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
0
k=1 p=r=0 for x in input(): if x!=p:r+=1-k%2;k=0;p=x k+=1 print(r)
Title: Genetic Engineering Time Limit: None seconds Memory Limit: None megabytes Problem Description: You will receive 3 points for solving this problem. Manao is designing the genetic code for a new type of algae to efficiently produce fuel. Specifically, Manao is focusing on a stretch of DNA that encodes one prot...
```python k=1 p=r=0 for x in input(): if x!=p:r+=1-k%2;k=0;p=x k+=1 print(r) ```
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,397,227
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
word = input() def is_integer(n): try: float(n) except ValueError: return False else: return float(n).is_integer() if not is_integer(word): if len(word) >= 10: print(f"{word[0]}{len(word) - 2}{word[-1]}") else: print(word)
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 word = input() def is_integer(n): try: float(n) except ValueError: return False else: return float(n).is_integer() if not is_integer(word): if len(word) >= 10: print(f"{word[0]}{len(word) - 2}{word[-1]}") else: print(word) ```
0
340
C
Tourist Problem
PROGRAMMING
1,600
[ "combinatorics", "implementation", "math" ]
null
null
Iahub is a big fan of tourists. He wants to become a tourist himself, so he planned a trip. There are *n* destinations on a straight road that Iahub wants to visit. Iahub starts the excursion from kilometer 0. The *n* destinations are described by a non-negative integers sequence *a*1, *a*2, ..., *a**n*. The number *a*...
The first line contains integer *n* (2<=≤<=*n*<=≤<=105). Next line contains *n* distinct integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=107).
Output two integers — the numerator and denominator of a fraction which is equal to the wanted average number. The fraction must be irreducible.
[ "3\n2 3 5\n" ]
[ "22 3" ]
Consider 6 possible routes: - [2, 3, 5]: total distance traveled: |2 – 0| + |3 – 2| + |5 – 3| = 5; - [2, 5, 3]: |2 – 0| + |5 – 2| + |3 – 5| = 7; - [3, 2, 5]: |3 – 0| + |2 – 3| + |5 – 2| = 7; - [3, 5, 2]: |3 – 0| + |5 – 3| + |2 – 5| = 8; - [5, 2, 3]: |5 – 0| + |2 – 5| + |3 – 2| = 9; - [5, 3, 2]: |5 – 0| + |3 – 5|...
2,000
[ { "input": "3\n2 3 5", "output": "22 3" }, { "input": "4\n1 5 77 2", "output": "547 4" }, { "input": "5\n3 3842 288 199 334", "output": "35918 5" }, { "input": "7\n1 2 3 40 52 33 86", "output": "255 1" }, { "input": "7\n1 10 100 1000 10000 1000000 10000000", "...
1,667,722,927
2,147,483,647
Python 3
OK
TESTS
43
280
7,270,400
def gcd(a,b) : return a if b==0 else gcd(b,a%b) n = int(input()) l = sorted(map(int, input().split())) t = sum((i+i-n+1)*l[i] for i in range(n)) t = t+t+sum(l) d = gcd(t,n) print(t//d,n//d)
Title: Tourist Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub is a big fan of tourists. He wants to become a tourist himself, so he planned a trip. There are *n* destinations on a straight road that Iahub wants to visit. Iahub starts the excursion from kilometer 0. The *n* d...
```python def gcd(a,b) : return a if b==0 else gcd(b,a%b) n = int(input()) l = sorted(map(int, input().split())) t = sum((i+i-n+1)*l[i] for i in range(n)) t = t+t+sum(l) d = gcd(t,n) print(t//d,n//d) ```
3
4
A
Watermelon
PROGRAMMING
800
[ "brute force", "math" ]
A. Watermelon
1
64
One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem. Pete and ...
The first (and the only) input line contains integer number *w* (1<=≤<=*w*<=≤<=100) — the weight of the watermelon bought by the boys.
Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.
[ "8\n" ]
[ "YES\n" ]
For example, the boys can divide the watermelon into two parts of 2 and 6 kilos respectively (another variant — two parts of 4 and 4 kilos).
0
[ { "input": "8", "output": "YES" }, { "input": "5", "output": "NO" }, { "input": "4", "output": "YES" }, { "input": "3", "output": "NO" }, { "input": "2", "output": "NO" }, { "input": "1", "output": "NO" }, { "input": "7", "output": "NO"...
1,691,610,636
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
peso=int(input("Escribe el peso")) if (peso -2)%2 == 0: print("YES") else: print("NO")
Title: Watermelon Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dyin...
```python peso=int(input("Escribe el peso")) if (peso -2)%2 == 0: print("YES") else: print("NO") ```
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,212,576
2,147,483,647
Python 3
OK
TESTS
41
389
204,800
n=int(input()) t=input().split() a=t.count('1') b=t.count('2') c=t.count('3') if a==0 or b==0 or c==0: print(0) else: if a<=b and a<=c: print(a) for i in range(a): print('\n') print(t.index('1')+1,end=' ') d=t.index('1') t[d]=0 ...
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 n=int(input()) t=input().split() a=t.count('1') b=t.count('2') c=t.count('3') if a==0 or b==0 or c==0: print(0) else: if a<=b and a<=c: print(a) for i in range(a): print('\n') print(t.index('1')+1,end=' ') d=t.index('1') t[d]=0 ...
3
617
A
Elephant
PROGRAMMING
800
[ "math" ]
null
null
An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2, 3, 4 or 5 positions forward. Determine, what is the minimum number of steps he need to make ...
The first line of the input contains an integer *x* (1<=≤<=*x*<=≤<=1<=000<=000) — The coordinate of the friend's house.
Print the minimum number of steps that elephant needs to make to get from point 0 to point *x*.
[ "5\n", "12\n" ]
[ "1\n", "3\n" ]
In the first sample the elephant needs to make one step of length 5 to reach the point *x*. In the second sample the elephant can get to point *x* if he moves by 3, 5 and 4. There are other ways to get the optimal answer but the elephant cannot reach *x* in less than three moves.
500
[ { "input": "5", "output": "1" }, { "input": "12", "output": "3" }, { "input": "999999", "output": "200000" }, { "input": "41", "output": "9" }, { "input": "1000000", "output": "200000" }, { "input": "1", "output": "1" }, { "input": "2", ...
1,699,250,050
2,147,483,647
Python 3
OK
TESTS
34
46
0
# -*- coding: utf-8 -*- """A. Elephant Automatically generated by Colaboratory. Original file is located at https://colab.research.google.com/drive/18dzm1R8Wq5W627D9TUJQdrvST1psy7SR """ house = int(input()) steps = house // 5 if house % 5 != 0: steps += 1 print(steps)
Title: Elephant Time Limit: None seconds Memory Limit: None megabytes Problem Description: An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2...
```python # -*- coding: utf-8 -*- """A. Elephant Automatically generated by Colaboratory. Original file is located at https://colab.research.google.com/drive/18dzm1R8Wq5W627D9TUJQdrvST1psy7SR """ house = int(input()) steps = house // 5 if house % 5 != 0: steps += 1 print(steps) ```
3
47
B
Coins
PROGRAMMING
1,200
[ "implementation" ]
B. Coins
2
256
One day Vasya came across three Berland coins. They didn't have any numbers that's why Vasya didn't understand how their denominations differ. He supposed that if one coin is heavier than the other one, then it should be worth more. Vasya weighed all the three pairs of coins on pan balance scales and told you the resul...
The input data contains the results of all the weighting, one result on each line. It is guaranteed that every coin pair was weighted exactly once. Vasya labelled the coins with letters «A», «B» and «C». Each result is a line that appears as (letter)(&gt; or &lt; sign)(letter). For example, if coin "A" proved lighter t...
It the results are contradictory, print Impossible. Otherwise, print without spaces the rearrangement of letters «A», «B» and «C» which represent the coins in the increasing order of their weights.
[ "A&gt;B\nC&lt;B\nA&gt;C\n", "A&lt;B\nB&gt;C\nC&gt;A\n" ]
[ "CBA", "ACB" ]
none
1,000
[ { "input": "A>B\nC<B\nA>C", "output": "CBA" }, { "input": "A<B\nB>C\nC>A", "output": "ACB" }, { "input": "A<C\nB<A\nB>C", "output": "Impossible" }, { "input": "A<B\nA<C\nB>C", "output": "ACB" }, { "input": "B>A\nC<B\nC>A", "output": "ACB" }, { "input":...
1,688,196,754
2,147,483,647
PyPy 3-64
OK
TESTS
50
218
141,619,200
import sys, threading input = sys.stdin.readline from collections import defaultdict input = sys.stdin.readline def main(): d = defaultdict(int) for _ in range(3): s = input().strip() if s[1] == '>': d[s[0]]+=1 else: d[s[2]]+=1 r = sorted(['A', 'B',...
Title: Coins Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya came across three Berland coins. They didn't have any numbers that's why Vasya didn't understand how their denominations differ. He supposed that if one coin is heavier than the other one, then it should be worth more. ...
```python import sys, threading input = sys.stdin.readline from collections import defaultdict input = sys.stdin.readline def main(): d = defaultdict(int) for _ in range(3): s = input().strip() if s[1] == '>': d[s[0]]+=1 else: d[s[2]]+=1 r = sorted(...
3.681714
296
A
Yaroslav and Permutations
PROGRAMMING
1,100
[ "greedy", "math" ]
null
null
Yaroslav has an array that consists of *n* integers. In one second Yaroslav can swap two neighboring array elements. Now Yaroslav is wondering if he can obtain an array where any two neighboring elements would be distinct in a finite time. Help Yaroslav.
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*<=≤<=1000) — the array elements.
In the single line print "YES" (without the quotes) if Yaroslav can obtain the array he needs, and "NO" (without the quotes) otherwise.
[ "1\n1\n", "3\n1 1 2\n", "4\n7 7 7 7\n" ]
[ "YES\n", "YES\n", "NO\n" ]
In the first sample the initial array fits well. In the second sample Yaroslav can get array: 1, 2, 1. He can swap the last and the second last elements to obtain it. In the third sample Yarosav can't get the array he needs.
500
[ { "input": "1\n1", "output": "YES" }, { "input": "3\n1 1 2", "output": "YES" }, { "input": "4\n7 7 7 7", "output": "NO" }, { "input": "4\n479 170 465 146", "output": "YES" }, { "input": "5\n996 437 605 996 293", "output": "YES" }, { "input": "6\n727 53...
1,580,489,259
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
186
307,200
n=int(input()) arr=[int(x) for x in input().split()] arr=sorted(arr) arr1=[] i=0 j=1 c=1 for c in range(n): if c%2==0: arr1.append(arr[i]) i+=1 else: arr1.append(arr[-j]) j+=1 cnt=0 for i in range(n-1): if arr1[i]!=arr1[i+1]: cnt+=1 if...
Title: Yaroslav and Permutations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Yaroslav has an array that consists of *n* integers. In one second Yaroslav can swap two neighboring array elements. Now Yaroslav is wondering if he can obtain an array where any two neighboring elements would...
```python n=int(input()) arr=[int(x) for x in input().split()] arr=sorted(arr) arr1=[] i=0 j=1 c=1 for c in range(n): if c%2==0: arr1.append(arr[i]) i+=1 else: arr1.append(arr[-j]) j+=1 cnt=0 for i in range(n-1): if arr1[i]!=arr1[i+1]: c...
0
664
A
Complicated GCD
PROGRAMMING
800
[ "math", "number theory" ]
null
null
Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find greatest common divisor *GCD*(*a*,<=*b*), for example, Euclid algorithm. Formally, find the biggest in...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10100).
Output one integer — greatest common divisor of all integers from *a* to *b* inclusive.
[ "1 2\n", "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576\n" ]
[ "1\n", "61803398874989484820458683436563811772030917980576\n" ]
none
500
[ { "input": "1 2", "output": "1" }, { "input": "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576", "output": "61803398874989484820458683436563811772030917980576" }, { "input": "1 100", "output": "1" }, { "input": "100 100000...
1,635,248,532
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
4,505,600
def answer(a,b): if b == 0: return a return answer(b, a%b) def main(): inputs = list(map(int, input().split())) a, b = inputs[0], inputs[1] print(answer(max(a, b), min(a,b))) if __name__ == "__main__": main()
Title: Complicated GCD Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find gre...
```python def answer(a,b): if b == 0: return a return answer(b, a%b) def main(): inputs = list(map(int, input().split())) a, b = inputs[0], inputs[1] print(answer(max(a, b), min(a,b))) if __name__ == "__main__": main() ```
0
515
C
Drazil and Factorial
PROGRAMMING
1,400
[ "greedy", "math", "sortings" ]
null
null
Drazil is playing a math game with Varda. Let's define for positive integer *x* as a product of factorials of its digits. For example, . First, they choose a decimal number *a* consisting of *n* digits that contains at least one digit larger than 1. This number may possibly start with leading zeroes. Then they shoul...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=15) — the number of digits in *a*. The second line contains *n* digits of *a*. There is at least one digit in *a* that is larger than 1. Number *a* may possibly contain leading zeroes.
Output a maximum possible integer satisfying the conditions above. There should be no zeroes and ones in this number decimal representation.
[ "4\n1234\n", "3\n555\n" ]
[ "33222\n", "555\n" ]
In the first case, <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/f5a4207f23215fddce977ab5ea9e9d2e7578fb52.png" style="max-width: 100.0%;max-height: 100.0%;"/>
1,000
[ { "input": "4\n1234", "output": "33222" }, { "input": "3\n555", "output": "555" }, { "input": "15\n012345781234578", "output": "7777553333222222222222" }, { "input": "1\n8", "output": "7222" }, { "input": "10\n1413472614", "output": "75333332222222" }, { ...
1,590,170,689
2,147,483,647
Python 3
OK
TESTS
45
124
307,200
def descompunere(nr): ls = [] while nr % 2 == 0: ls.append(2) nr //= 2 for i in range(3, nr + 1, 2): while nr % i == 0: nr //= i ls.append(i) return ls def factorial(nr): l = [] for i in range(2, nr + 1): l.extend(descompunere(i)) ret...
Title: Drazil and Factorial Time Limit: None seconds Memory Limit: None megabytes Problem Description: Drazil is playing a math game with Varda. Let's define for positive integer *x* as a product of factorials of its digits. For example, . First, they choose a decimal number *a* consisting of *n* digits that cont...
```python def descompunere(nr): ls = [] while nr % 2 == 0: ls.append(2) nr //= 2 for i in range(3, nr + 1, 2): while nr % i == 0: nr //= i ls.append(i) return ls def factorial(nr): l = [] for i in range(2, nr + 1): l.extend(descompunere(i...
3
122
A
Lucky Division
PROGRAMMING
1,000
[ "brute force", "number theory" ]
null
null
Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya calls a number almost lucky if it could be evenly divided by some lucky number. Help him find ...
The single line contains an integer *n* (1<=≤<=*n*<=≤<=1000) — the number that needs to be checked.
In the only line print "YES" (without the quotes), if number *n* is almost lucky. Otherwise, print "NO" (without the quotes).
[ "47\n", "16\n", "78\n" ]
[ "YES\n", "YES\n", "NO\n" ]
Note that all lucky numbers are almost lucky as any number is evenly divisible by itself. In the first sample 47 is a lucky number. In the second sample 16 is divisible by 4.
500
[ { "input": "47", "output": "YES" }, { "input": "16", "output": "YES" }, { "input": "78", "output": "NO" }, { "input": "48", "output": "YES" }, { "input": "100", "output": "YES" }, { "input": "107", "output": "NO" }, { "input": "77", "ou...
1,691,468,884
2,147,483,647
PyPy 3
OK
TESTS
36
186
0
l = [4, 7, 44, 47, 74, 77, 444, 447, 474, 477, 744, 747, 774, 777] x = int(input()) answer = 0 for i in l: if x%i==0: answer+=1 else: pass if answer > 0: print("YES") else: print("NO")
Title: Lucky Division Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python l = [4, 7, 44, 47, 74, 77, 444, 447, 474, 477, 744, 747, 774, 777] x = int(input()) answer = 0 for i in l: if x%i==0: answer+=1 else: pass if answer > 0: print("YES") else: print("NO") ```
3
634
A
Island Puzzle
PROGRAMMING
1,300
[ "constructive algorithms", "implementation" ]
null
null
A remote island chain contains *n* islands, labeled 1 through *n*. Bidirectional bridges connect the islands to form a simple cycle — a bridge connects islands 1 and 2, islands 2 and 3, and so on, and additionally a bridge connects islands *n* and 1. The center of each island contains an identical pedestal, and all but...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=200<=000) — the total number of islands. The second line contains *n* space-separated integers *a**i* (0<=≤<=*a**i*<=≤<=*n*<=-<=1) — the statue currently placed on the *i*-th island. If *a**i*<==<=0, then the island has no statue. It is guaranteed that the *a...
Print "YES" (without quotes) if the rearrangement can be done in the existing network, and "NO" otherwise.
[ "3\n1 0 2\n2 0 1\n", "2\n1 0\n0 1\n", "4\n1 2 3 0\n0 3 2 1\n" ]
[ "YES\n", "YES\n", "NO\n" ]
In the first sample, the islanders can first move statue 1 from island 1 to island 2, then move statue 2 from island 3 to island 1, and finally move statue 1 from island 2 to island 3. In the second sample, the islanders can simply move statue 1 from island 1 to island 2. In the third sample, no sequence of movements...
500
[ { "input": "3\n1 0 2\n2 0 1", "output": "YES" }, { "input": "2\n1 0\n0 1", "output": "YES" }, { "input": "4\n1 2 3 0\n0 3 2 1", "output": "NO" }, { "input": "9\n3 8 4 6 7 1 5 2 0\n6 4 8 5 3 1 2 0 7", "output": "NO" }, { "input": "4\n2 3 1 0\n2 0 1 3", "output"...
1,463,159,418
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
4,608,000
def main(): pass def solver(a, b): a.remove(0) b.remove(0) if isRotation(a, b): return "YES" else: return "NO" def isRotation(a, b): if len(a) != len(b): return False else: for i in range(len(a)): a = rotateLeft(a) if a == b: return True return False def rotateLeft(L):...
Title: Island Puzzle Time Limit: None seconds Memory Limit: None megabytes Problem Description: A remote island chain contains *n* islands, labeled 1 through *n*. Bidirectional bridges connect the islands to form a simple cycle — a bridge connects islands 1 and 2, islands 2 and 3, and so on, and additionally a bridg...
```python def main(): pass def solver(a, b): a.remove(0) b.remove(0) if isRotation(a, b): return "YES" else: return "NO" def isRotation(a, b): if len(a) != len(b): return False else: for i in range(len(a)): a = rotateLeft(a) if a == b: return True return False def rota...
0
462
A
Appleman and Easy Task
PROGRAMMING
1,000
[ "brute force", "implementation" ]
null
null
Toastman came up with a very easy task. He gives it to Appleman, but Appleman doesn't know how to solve it. Can you help him? Given a *n*<=×<=*n* checkerboard. Each cell of the board has either character 'x', or character 'o'. Is it true that each cell of the board has even number of adjacent cells with 'o'? Two cells...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Then *n* lines follow containing the description of the checkerboard. Each of them contains *n* characters (either 'x' or 'o') without spaces.
Print "YES" or "NO" (without the quotes) depending on the answer to the problem.
[ "3\nxxo\nxox\noxx\n", "4\nxxxo\nxoxo\noxox\nxxxx\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "3\nxxo\nxox\noxx", "output": "YES" }, { "input": "4\nxxxo\nxoxo\noxox\nxxxx", "output": "NO" }, { "input": "1\no", "output": "YES" }, { "input": "2\nox\nxo", "output": "YES" }, { "input": "2\nxx\nxo", "output": "NO" }, { "input": "3\nooo\no...
1,540,278,567
2,147,483,647
Python 3
OK
TESTS
32
124
0
n=int(input()) p=[] zoj=True for i in range(n): s=input() p.append(s) for i in range(n): for j in range(n): cnt=0 if i>0: if p[i-1][j]=="o": cnt+=1 if j>0: if p[i][j-1]=="o": cnt+=1 if i<n-1: if p[i+1][j]=="o": cnt+=1 if j<n-1: if p[i][j+1]=="o": cnt+=1 if...
Title: Appleman and Easy Task Time Limit: None seconds Memory Limit: None megabytes Problem Description: Toastman came up with a very easy task. He gives it to Appleman, but Appleman doesn't know how to solve it. Can you help him? Given a *n*<=×<=*n* checkerboard. Each cell of the board has either character 'x', or...
```python n=int(input()) p=[] zoj=True for i in range(n): s=input() p.append(s) for i in range(n): for j in range(n): cnt=0 if i>0: if p[i-1][j]=="o": cnt+=1 if j>0: if p[i][j-1]=="o": cnt+=1 if i<n-1: if p[i+1][j]=="o": cnt+=1 if j<n-1: if p[i][j+1]=="o": cn...
3
631
A
Interview
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
Blake is a CEO of a large company called "Blake Technologies". He loves his company very much and he thinks that his company should be the best. That is why every candidate needs to pass through the interview that consists of the following problem. We define function *f*(*x*,<=*l*,<=*r*) as a bitwise OR of integers *x...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the length of the arrays. The second line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=109). The third line contains *n* integers *b**i* (0<=≤<=*b**i*<=≤<=109).
Print a single integer — the maximum value of sum *f*(*a*,<=*l*,<=*r*)<=+<=*f*(*b*,<=*l*,<=*r*) among all possible 1<=≤<=*l*<=≤<=*r*<=≤<=*n*.
[ "5\n1 2 4 3 2\n2 3 3 12 1\n", "10\n13 2 7 11 8 4 9 8 5 1\n5 7 18 9 2 3 0 11 8 6\n" ]
[ "22", "46" ]
Bitwise OR of two non-negative integers *a* and *b* is the number *c* = *a* *OR* *b*, such that each of its digits in binary notation is 1 if and only if at least one of *a* or *b* have 1 in the corresponding position in binary notation. In the first sample, one of the optimal answers is *l* = 2 and *r* = 4, because *...
500
[ { "input": "5\n1 2 4 3 2\n2 3 3 12 1", "output": "22" }, { "input": "10\n13 2 7 11 8 4 9 8 5 1\n5 7 18 9 2 3 0 11 8 6", "output": "46" }, { "input": "25\n12 30 38 109 81 124 80 33 38 48 29 78 96 48 96 27 80 77 102 65 80 113 31 118 35\n25 64 95 13 12 6 111 80 85 16 61 119 23 65 73 65 20 9...
1,546,445,322
2,147,483,647
Python 3
OK
TESTS
27
545
37,580,800
n = int(input()) a = list(map(int,input().split())) b = list(map(int,input().split())) l_a = [] l_b = [] l_sum = [] for i in range(n): x = a[i] for j in range(n - i): x = x | a[j] l_a.append(x) for i in range(n): x = b[i] for j in range(n - i): x = x | b[j] l_b.append(x...
Title: Interview Time Limit: None seconds Memory Limit: None megabytes Problem Description: Blake is a CEO of a large company called "Blake Technologies". He loves his company very much and he thinks that his company should be the best. That is why every candidate needs to pass through the interview that consists of...
```python n = int(input()) a = list(map(int,input().split())) b = list(map(int,input().split())) l_a = [] l_b = [] l_sum = [] for i in range(n): x = a[i] for j in range(n - i): x = x | a[j] l_a.append(x) for i in range(n): x = b[i] for j in range(n - i): x = x | b[j] l_...
3
813
A
The Contest
PROGRAMMING
1,100
[ "implementation" ]
null
null
Pasha is participating in a contest on one well-known website. This time he wants to win the contest and will do anything to get to the first place! This contest consists of *n* problems, and Pasha solves *i*th problem in *a**i* time units (his solutions are always correct). At any moment of time he can be thinking ab...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=1000) — the number of problems. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=105) — the time Pasha needs to solve *i*th problem. The third line contains one integer *m* (0<=≤<=*m*<=≤<=1000) — the number of periods of time when the website is work...
If Pasha can solve and submit all the problems before the end of the contest, print the minimal moment of time by which he can have all the solutions submitted. Otherwise print "-1" (without brackets).
[ "2\n3 4\n2\n1 4\n7 9\n", "1\n5\n1\n1 4\n", "1\n5\n1\n1 5\n" ]
[ "7\n", "-1\n", "5\n" ]
In the first example Pasha can act like this: he solves the second problem in 4 units of time and sends it immediately. Then he spends 3 time units to solve the first problem and sends it 7 time units after the contest starts, because at this moment the website starts working again. In the second example Pasha invents...
0
[ { "input": "2\n3 4\n2\n1 4\n7 9", "output": "7" }, { "input": "1\n5\n1\n1 4", "output": "-1" }, { "input": "1\n5\n1\n1 5", "output": "5" }, { "input": "5\n100000 100000 100000 100000 100000\n0", "output": "-1" }, { "input": "5\n886 524 128 4068 298\n3\n416 3755\n4...
1,642,142,488
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
3
77
2,048,000
n=int(input()) arr=list(map(int,input().split())) t=int(input()) time=[] for i in range(t): a,b=map(int,input().split()) time+=[[a,b]] maxi=max(time) totalsum=sum(arr) if totalsum>maxi[1]: print(-1) else: for i in time: if totalsum<=i[0]: print(i[0]) break ...
Title: The Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha is participating in a contest on one well-known website. This time he wants to win the contest and will do anything to get to the first place! This contest consists of *n* problems, and Pasha solves *i*th problem in ...
```python n=int(input()) arr=list(map(int,input().split())) t=int(input()) time=[] for i in range(t): a,b=map(int,input().split()) time+=[[a,b]] maxi=max(time) totalsum=sum(arr) if totalsum>maxi[1]: print(-1) else: for i in time: if totalsum<=i[0]: print(i[0]) ...
-1
365
A
Good Number
PROGRAMMING
1,100
[ "implementation" ]
null
null
Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number every time it occurs in array *a*).
The first line contains integers *n* and *k* (1<=≤<=*n*<=≤<=100, 0<=≤<=*k*<=≤<=9). The *i*-th of the following *n* lines contains integer *a**i* without leading zeroes (1<=≤<=*a**i*<=≤<=109).
Print a single integer — the number of *k*-good numbers in *a*.
[ "10 6\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n", "2 1\n1\n10\n" ]
[ "10\n", "1\n" ]
none
500
[ { "input": "10 6\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560", "output": "10" }, { "input": "2 1\n1\n10", "output": "1" }, { "input": "1 0\n1000000000", "output": "1" }, { "input": "1 1\n1000000000", "output": "1" }, { ...
1,664,704,503
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
0
n,k =list(map(int,input().split(" "))) c,temp=0,0 for i in range(n): number =list(map(int,input())) for j in range(k+1): if ( j in number): temp+=1 if(temp==k+1): c+=1 temp=0 print(c)
Title: Good Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number eve...
```python n,k =list(map(int,input().split(" "))) c,temp=0,0 for i in range(n): number =list(map(int,input())) for j in range(k+1): if ( j in number): temp+=1 if(temp==k+1): c+=1 temp=0 print(c) ```
0
518
A
Vitaly and Strings
PROGRAMMING
1,600
[ "constructive algorithms", "strings" ]
null
null
Vitaly is a diligent student who never missed a lesson in his five years of studying in the university. He always does his homework on time and passes his exams in time. During the last lesson the teacher has provided two strings *s* and *t* to Vitaly. The strings have the same length, they consist of lowercase Engli...
The first line contains string *s* (1<=≤<=|*s*|<=≤<=100), consisting of lowercase English letters. Here, |*s*| denotes the length of the string. The second line contains string *t* (|*t*|<==<=|*s*|), consisting of lowercase English letters. It is guaranteed that the lengths of strings *s* and *t* are the same and str...
If the string that meets the given requirements doesn't exist, print a single string "No such string" (without the quotes). If such string exists, print it. If there are multiple valid strings, you may print any of them.
[ "a\nc\n", "aaa\nzzz\n", "abcdefg\nabcdefh\n" ]
[ "b\n", "kkk\n", "No such string\n" ]
String *s* = *s*<sub class="lower-index">1</sub>*s*<sub class="lower-index">2</sub>... *s*<sub class="lower-index">*n*</sub> is said to be lexicographically smaller than *t* = *t*<sub class="lower-index">1</sub>*t*<sub class="lower-index">2</sub>... *t*<sub class="lower-index">*n*</sub>, if there exists such *i*, that ...
500
[ { "input": "a\nc", "output": "b" }, { "input": "aaa\nzzz", "output": "kkk" }, { "input": "abcdefg\nabcdefh", "output": "No such string" }, { "input": "abcdefg\nabcfefg", "output": "abcdefh" }, { "input": "frt\nfru", "output": "No such string" }, { "inp...
1,675,671,704
2,147,483,647
Python 3
OK
TESTS
51
46
0
# LUOGU_RID: 101573390 def f(s): return f(s[:-1]) + 'a' if s[-1] == 'z' else s[:-1] + chr(ord(s[-1]) + 1) s, t = input(), input() s = f(s) print(s < t and s or 'No such string')
Title: Vitaly and Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vitaly is a diligent student who never missed a lesson in his five years of studying in the university. He always does his homework on time and passes his exams in time. During the last lesson the teacher has provi...
```python # LUOGU_RID: 101573390 def f(s): return f(s[:-1]) + 'a' if s[-1] == 'z' else s[:-1] + chr(ord(s[-1]) + 1) s, t = input(), input() s = f(s) print(s < t and s or 'No such string') ```
3
538
A
Cutting Banner
PROGRAMMING
1,400
[ "brute force", "implementation" ]
null
null
A large banner with word CODEFORCES was ordered for the 1000-th onsite round of Codeforcesω that takes place on the Miami beach. Unfortunately, the company that made the banner mixed up two orders and delivered somebody else's banner that contains someone else's word. The word on the banner consists only of upper-case ...
The single line of the input contains the word written on the banner. The word only consists of upper-case English letters. The word is non-empty and its length doesn't exceed 100 characters. It is guaranteed that the word isn't word CODEFORCES.
Print 'YES', if there exists a way to cut out the substring, and 'NO' otherwise (without the quotes).
[ "CODEWAITFORITFORCES\n", "BOTTOMCODER\n", "DECODEFORCES\n", "DOGEFORCES\n" ]
[ "YES\n", "NO\n", "YES\n", "NO\n" ]
none
500
[ { "input": "CODEWAITFORITFORCES", "output": "YES" }, { "input": "BOTTOMCODER", "output": "NO" }, { "input": "DECODEFORCES", "output": "YES" }, { "input": "DOGEFORCES", "output": "NO" }, { "input": "ABACABA", "output": "NO" }, { "input": "CODEFORCE", ...
1,587,372,680
2,147,483,647
PyPy 3
OK
TESTS
55
155
0
l=input() s='CODEFORCES' for i in range(11): if(l.startswith(s[:i]) and l.endswith(s[i:])): print("YES") break else: print("NO")
Title: Cutting Banner Time Limit: None seconds Memory Limit: None megabytes Problem Description: A large banner with word CODEFORCES was ordered for the 1000-th onsite round of Codeforcesω that takes place on the Miami beach. Unfortunately, the company that made the banner mixed up two orders and delivered somebody ...
```python l=input() s='CODEFORCES' for i in range(11): if(l.startswith(s[:i]) and l.endswith(s[i:])): print("YES") break else: print("NO") ```
3
830
B
Cards Sorting
PROGRAMMING
1,600
[ "data structures", "implementation", "sortings" ]
null
null
Vasily has a deck of cards consisting of *n* cards. There is an integer on each of the cards, this integer is between 1 and 100<=000, inclusive. It is possible that some cards have the same integers on them. Vasily decided to sort the cards. To do this, he repeatedly takes the top card from the deck, and if the number...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of cards in the deck. The second line contains a sequence of *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100<=000), where *a**i* is the number written on the *i*-th from top card in the deck.
Print the total number of times Vasily takes the top card from the deck.
[ "4\n6 3 1 2\n", "1\n1000\n", "7\n3 3 3 3 3 3 3\n" ]
[ "7\n", "1\n", "7\n" ]
In the first example Vasily at first looks at the card with number 6 on it, puts it under the deck, then on the card with number 3, puts it under the deck, and then on the card with number 1. He places away the card with 1, because the number written on it is the minimum among the remaining cards. After that the cards ...
1,000
[ { "input": "4\n6 3 1 2", "output": "7" }, { "input": "1\n1000", "output": "1" }, { "input": "7\n3 3 3 3 3 3 3", "output": "7" }, { "input": "64\n826 142 89 337 897 891 1004 704 281 644 910 852 147 193 289 384 625 695 416 944 162 939 164 1047 359 114 499 99 713 300 268 316 256...
1,689,432,949
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
15
0
print("_RANDOM_GUESS_1689432949.4188979")# 1689432949.4189172
Title: Cards Sorting Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily has a deck of cards consisting of *n* cards. There is an integer on each of the cards, this integer is between 1 and 100<=000, inclusive. It is possible that some cards have the same integers on them. Vasily decid...
```python print("_RANDOM_GUESS_1689432949.4188979")# 1689432949.4189172 ```
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,694,637,866
2,147,483,647
PyPy 3-64
OK
TESTS
81
124
0
n=int(input()) xpow=0 ypow=0 zpow=0 for i in range (n): x, y, z = map(int, input().split()) xpow+=x ypow+=y zpow+=z if(xpow==0 and ypow==0 and zpow==0): print("YES") else: print("NO")
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python n=int(input()) xpow=0 ypow=0 zpow=0 for i in range (n): x, y, z = map(int, input().split()) xpow+=x ypow+=y zpow+=z if(xpow==0 and ypow==0 and zpow==0): print("YES") else: print("NO") ```
3.969
985
D
Sand Fortress
PROGRAMMING
2,100
[ "binary search", "constructive algorithms", "math" ]
null
null
You are going to the beach with the idea to build the greatest sand castle ever in your head! The beach is not as three-dimensional as you could have imagined, it can be decribed as a line of spots to pile up sand pillars. Spots are numbered 1 through infinity from left to right. Obviously, there is not enough sand o...
The only line contains two integer numbers *n* and *H* (1<=≤<=*n*,<=*H*<=≤<=1018) — the number of sand packs you have and the height of the fence, respectively.
Print the minimum number of spots you can occupy so the all the castle building conditions hold.
[ "5 2\n", "6 8\n" ]
[ "3\n", "3\n" ]
Here are the heights of some valid castles: - *n* = 5, *H* = 2, [2, 2, 1, 0, ...], [2, 1, 1, 1, 0, ...], [1, 0, 1, 2, 1, 0, ...] - *n* = 6, *H* = 8, [3, 2, 1, 0, ...], [2, 2, 1, 1, 0, ...], [0, 1, 0, 1, 2, 1, 1, 0...] (this one has 5 spots occupied) The first list for both cases is the optimal answer, 3 spots are ...
0
[ { "input": "5 2", "output": "3" }, { "input": "6 8", "output": "3" }, { "input": "20 4", "output": "7" }, { "input": "1000000000000000000 1000000000000000000", "output": "1414213562" }, { "input": "1 1", "output": "1" }, { "input": "1 10000000000000000...
1,527,348,637
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
6
109
0
def bin(f,l,val,h): mid = int((f+l)/2) p = mid*(mid+1) - int(h*(h-1)/2) - mid if(p <= val and val < ((mid+1)*(mid+2) - int(h*(h-1)/2)- mid -1)): return mid elif(val >= p): f = mid+1 return bin(f,l,val,h) elif(val < p): l = mid - 1 return bin(f,l,val,h) else: return mid def binS(f,l,val)...
Title: Sand Fortress Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are going to the beach with the idea to build the greatest sand castle ever in your head! The beach is not as three-dimensional as you could have imagined, it can be decribed as a line of spots to pile up sand pillars...
```python def bin(f,l,val,h): mid = int((f+l)/2) p = mid*(mid+1) - int(h*(h-1)/2) - mid if(p <= val and val < ((mid+1)*(mid+2) - int(h*(h-1)/2)- mid -1)): return mid elif(val >= p): f = mid+1 return bin(f,l,val,h) elif(val < p): l = mid - 1 return bin(f,l,val,h) else: return mid def bin...
0
633
A
Ebony and Ivory
PROGRAMMING
1,100
[ "brute force", "math", "number theory" ]
null
null
Dante is engaged in a fight with "The Savior". Before he can fight it with his sword, he needs to break its shields. He has two guns, Ebony and Ivory, each of them is able to perform any non-negative number of shots. For every bullet that hits the shield, Ebony deals *a* units of damage while Ivory deals *b* units of ...
The first line of the input contains three integers *a*, *b*, *c* (1<=≤<=*a*,<=*b*<=≤<=100,<=1<=≤<=*c*<=≤<=10<=000) — the number of units of damage dealt by Ebony gun and Ivory gun, and the total number of damage required to break the shield, respectively.
Print "Yes" (without quotes) if Dante can deal exactly *c* damage to the shield and "No" (without quotes) otherwise.
[ "4 6 15\n", "3 2 7\n", "6 11 6\n" ]
[ "No\n", "Yes\n", "Yes\n" ]
In the second sample, Dante can fire 1 bullet from Ebony and 2 from Ivory to deal exactly 1·3 + 2·2 = 7 damage. In the third sample, Dante can fire 1 bullet from ebony and no bullets from ivory to do 1·6 + 0·11 = 6 damage.
250
[ { "input": "4 6 15", "output": "No" }, { "input": "3 2 7", "output": "Yes" }, { "input": "6 11 6", "output": "Yes" }, { "input": "3 12 15", "output": "Yes" }, { "input": "5 5 10", "output": "Yes" }, { "input": "6 6 7", "output": "No" }, { "...
1,497,974,039
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
46
4,608,000
n = int(input()) a = [int(i) for i in input().split()] ans = a.count(0) s = set(a) for i in range(n - 1): for j in range(i + 1, n): if a[i] == a[j] == 0: continue ln = 2 a1 = a[i] a2 = a[j] while a1 + a2 in s and ln < 100: a1, a2 = a2, a1 + a2 ...
Title: Ebony and Ivory Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dante is engaged in a fight with "The Savior". Before he can fight it with his sword, he needs to break its shields. He has two guns, Ebony and Ivory, each of them is able to perform any non-negative number of shots. F...
```python n = int(input()) a = [int(i) for i in input().split()] ans = a.count(0) s = set(a) for i in range(n - 1): for j in range(i + 1, n): if a[i] == a[j] == 0: continue ln = 2 a1 = a[i] a2 = a[j] while a1 + a2 in s and ln < 100: a1, a2 = a2, a1 + a2...
-1
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,694,669,488
2,147,483,647
Python 3
OK
TESTS
20
31
0
a=int(input()) for i in range(a): b=input() m=len(b) if(m<=10): print(b) else: print(b[0]+str(m-2)+b[-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 a=int(input()) for i in range(a): b=input() m=len(b) if(m<=10): print(b) else: print(b[0]+str(m-2)+b[-1]) ```
3.9845
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,626,346,247
2,147,483,647
Python 3
OK
TESTS
45
186
6,963,200
import math def solve(): a, b, n = map(int, input().split()) turn_a = True while True: if turn_a: if n == 0: return "1" x = math.gcd(a, n) if n < x: return "1" n -= x else: if n == 0: return "0" ...
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 import math def solve(): a, b, n = map(int, input().split()) turn_a = True while True: if turn_a: if n == 0: return "1" x = math.gcd(a, n) if n < x: return "1" n -= x else: if n == 0: return "...
3
133
A
HQ9+
PROGRAMMING
900
[ "implementation" ]
null
null
HQ9+ is a joke programming language which has only four one-character instructions: - "H" prints "Hello, World!",- "Q" prints the source code of the program itself,- "9" prints the lyrics of "99 Bottles of Beer" song, - "+" increments the value stored in the internal accumulator. Instructions "H" and "Q" are case-s...
The input will consist of a single line *p* which will give a program in HQ9+. String *p* will contain between 1 and 100 characters, inclusive. ASCII-code of each character of *p* will be between 33 (exclamation mark) and 126 (tilde), inclusive.
Output "YES", if executing the program will produce any output, and "NO" otherwise.
[ "Hi!\n", "Codeforces\n" ]
[ "YES\n", "NO\n" ]
In the first case the program contains only one instruction — "H", which prints "Hello, World!". In the second case none of the program characters are language instructions.
500
[ { "input": "Hi!", "output": "YES" }, { "input": "Codeforces", "output": "NO" }, { "input": "a+b=c", "output": "NO" }, { "input": "hq-lowercase", "output": "NO" }, { "input": "Q", "output": "YES" }, { "input": "9", "output": "YES" }, { "inpu...
1,684,895,205
2,147,483,647
Python 3
OK
TESTS
85
92
0
code = input() answer = False for i in range(len(code)): if code[i] == "H" or code[i] == "9" or code[i] == "Q": answer = True break if answer == True: print("YES") else: print("NO")
Title: HQ9+ Time Limit: None seconds Memory Limit: None megabytes Problem Description: HQ9+ is a joke programming language which has only four one-character instructions: - "H" prints "Hello, World!",- "Q" prints the source code of the program itself,- "9" prints the lyrics of "99 Bottles of Beer" song, - "+" in...
```python code = input() answer = False for i in range(len(code)): if code[i] == "H" or code[i] == "9" or code[i] == "Q": answer = True break if answer == True: print("YES") else: print("NO") ```
3
363
B
Fence
PROGRAMMING
1,100
[ "brute force", "dp" ]
null
null
There is a fence in front of Polycarpus's home. The fence consists of *n* planks of the same width which go one after another from left to right. The height of the *i*-th plank is *h**i* meters, distinct planks can have distinct heights. Polycarpus has bought a posh piano and is thinking about how to get it into the h...
The first line of the input contains integers *n* and *k* (1<=≤<=*n*<=≤<=1.5·105,<=1<=≤<=*k*<=≤<=*n*) — the number of planks in the fence and the width of the hole for the piano. The second line contains the sequence of integers *h*1,<=*h*2,<=...,<=*h**n* (1<=≤<=*h**i*<=≤<=100), where *h**i* is the height of the *i*-th...
Print such integer *j* that the sum of the heights of planks *j*, *j*<=+<=1, ..., *j*<=+<=*k*<=-<=1 is the minimum possible. If there are multiple such *j*'s, print any of them.
[ "7 3\n1 2 6 1 1 7 1\n" ]
[ "3\n" ]
In the sample, your task is to find three consecutive planks with the minimum sum of heights. In the given case three planks with indexes 3, 4 and 5 have the required attribute, their total height is 8.
1,000
[ { "input": "7 3\n1 2 6 1 1 7 1", "output": "3" }, { "input": "1 1\n100", "output": "1" }, { "input": "2 1\n10 20", "output": "1" }, { "input": "10 5\n1 2 3 1 2 2 3 1 4 5", "output": "1" }, { "input": "10 2\n3 1 4 1 4 6 2 1 4 6", "output": "7" }, { "inp...
1,692,947,267
2,147,483,647
PyPy 3
OK
TESTS
51
155
11,161,600
n,piano =map(int,input().split()) piano-=1 def prefix_sum(array): for i in range(1,n+1): array[i]+=array[i-1] array = [0]+list(map(int,input().split())) def get_sum(l,r): return array[r] - array[l-1] prefix_sum(array) minimum_index = 0 minimum_value_ever = float('inf') for m in range(1,n+1-pi...
Title: Fence Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is a fence in front of Polycarpus's home. The fence consists of *n* planks of the same width which go one after another from left to right. The height of the *i*-th plank is *h**i* meters, distinct planks can have distinct ...
```python n,piano =map(int,input().split()) piano-=1 def prefix_sum(array): for i in range(1,n+1): array[i]+=array[i-1] array = [0]+list(map(int,input().split())) def get_sum(l,r): return array[r] - array[l-1] prefix_sum(array) minimum_index = 0 minimum_value_ever = float('inf') for m in rang...
3
621
B
Wet Shark and Bishops
PROGRAMMING
1,300
[ "combinatorics", "implementation" ]
null
null
Today, Wet Shark is given *n* bishops on a 1000 by 1000 grid. Both rows and columns of the grid are numbered from 1 to 1000. Rows are numbered from top to bottom, while columns are numbered from left to right. Wet Shark thinks that two bishops attack each other if they share the same diagonal. Note, that this is the o...
The first line of the input contains *n* (1<=≤<=*n*<=≤<=200<=000) — the number of bishops. Each of next *n* lines contains two space separated integers *x**i* and *y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<=1000) — the number of row and the number of column where *i*-th bishop is positioned. It's guaranteed that no two bishops ...
Output one integer — the number of pairs of bishops which attack each other.
[ "5\n1 1\n1 5\n3 3\n5 1\n5 5\n", "3\n1 1\n2 3\n3 5\n" ]
[ "6\n", "0\n" ]
In the first sample following pairs of bishops attack each other: (1, 3), (1, 5), (2, 3), (2, 4), (3, 4) and (3, 5). Pairs (1, 2), (1, 4), (2, 5) and (4, 5) do not attack each other because they do not share the same diagonal.
1,000
[ { "input": "5\n1 1\n1 5\n3 3\n5 1\n5 5", "output": "6" }, { "input": "3\n1 1\n2 3\n3 5", "output": "0" }, { "input": "3\n859 96\n634 248\n808 72", "output": "0" }, { "input": "3\n987 237\n891 429\n358 145", "output": "0" }, { "input": "3\n411 81\n149 907\n611 114"...
1,656,234,161
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
561
11,366,400
n=int(input()) dic={} ans=0 for i in range(1,n+1): x,y=map(int,input().split()) if (x+y) in dic: dic[x+y].append(i) else: dic[x+y]=[i] if (x-y) in dic: dic[x-y].append(i) else: dic[x-y]=[i] for ele in dic.values(): if len(ele)>1: ans+=(len(e...
Title: Wet Shark and Bishops Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today, Wet Shark is given *n* bishops on a 1000 by 1000 grid. Both rows and columns of the grid are numbered from 1 to 1000. Rows are numbered from top to bottom, while columns are numbered from left to right. We...
```python n=int(input()) dic={} ans=0 for i in range(1,n+1): x,y=map(int,input().split()) if (x+y) in dic: dic[x+y].append(i) else: dic[x+y]=[i] if (x-y) in dic: dic[x-y].append(i) else: dic[x-y]=[i] for ele in dic.values(): if len(ele)>1: a...
0
165
A
Supercentral Point
PROGRAMMING
1,000
[ "implementation" ]
null
null
One day Vasya painted a Cartesian coordinate system on a piece of paper and marked some set of points (*x*1,<=*y*1),<=(*x*2,<=*y*2),<=...,<=(*x**n*,<=*y**n*). Let's define neighbors for some fixed point from the given set (*x*,<=*y*): - point (*x*',<=*y*') is (*x*,<=*y*)'s right neighbor, if *x*'<=&gt;<=*x* and *y*'...
The first input line contains the only integer *n* (1<=≤<=*n*<=≤<=200) — the number of points in the given set. Next *n* lines contain the coordinates of the points written as "*x* *y*" (without the quotes) (|*x*|,<=|*y*|<=≤<=1000), all coordinates are integers. The numbers in the line are separated by exactly one spac...
Print the only number — the number of supercentral points of the given set.
[ "8\n1 1\n4 2\n3 1\n1 2\n0 2\n0 1\n1 0\n1 3\n", "5\n0 0\n0 1\n1 0\n0 -1\n-1 0\n" ]
[ "2\n", "1\n" ]
In the first sample the supercentral points are only points (1, 1) and (1, 2). In the second sample there is one supercental point — point (0, 0).
500
[ { "input": "8\n1 1\n4 2\n3 1\n1 2\n0 2\n0 1\n1 0\n1 3", "output": "2" }, { "input": "5\n0 0\n0 1\n1 0\n0 -1\n-1 0", "output": "1" }, { "input": "9\n-565 -752\n-184 723\n-184 -752\n-184 1\n950 723\n-565 723\n950 -752\n950 1\n-565 1", "output": "1" }, { "input": "25\n-651 897\n...
1,605,284,692
2,147,483,647
Python 3
OK
TESTS
26
218
307,200
points=[] for _ in range(int(input())): points.append(list(map(int, input().split()))) ans=0 for i in points: if any(j[0]==i[0] and j[1]>i[1] for j in points): if any(j[0]==i[0] and j[1]<i[1] for j in points): if any(j[1]==i[1] and j[0]>i[0] for j in points): if any(j...
Title: Supercentral Point Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya painted a Cartesian coordinate system on a piece of paper and marked some set of points (*x*1,<=*y*1),<=(*x*2,<=*y*2),<=...,<=(*x**n*,<=*y**n*). Let's define neighbors for some fixed point from the give...
```python points=[] for _ in range(int(input())): points.append(list(map(int, input().split()))) ans=0 for i in points: if any(j[0]==i[0] and j[1]>i[1] for j in points): if any(j[0]==i[0] and j[1]<i[1] for j in points): if any(j[1]==i[1] and j[0]>i[0] for j in points): ...
3
265
B
Roadside Trees (Simplified Edition)
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
Squirrel Liss loves nuts. There are *n* trees (numbered 1 to *n* from west to east) along a street and there is a delicious nut on the top of each tree. The height of the tree *i* is *h**i*. Liss wants to eat all nuts. Now Liss is on the root of the tree with the number 1. In one second Liss can perform one of the fol...
The first line contains an integer *n* (1<=<=≤<=<=*n*<=≤<=105) — the number of trees. Next *n* lines contains the height of trees: *i*-th line contains an integer *h**i* (1<=≤<=*h**i*<=≤<=104) — the height of the tree with the number *i*.
Print a single integer — the minimal time required to eat all nuts in seconds.
[ "2\n1\n2\n", "5\n2\n1\n2\n1\n1\n" ]
[ "5\n", "14\n" ]
none
1,000
[ { "input": "2\n1\n2", "output": "5" }, { "input": "5\n2\n1\n2\n1\n1", "output": "14" }, { "input": "1\n1", "output": "2" } ]
1,692,441,432
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int M=1e9+7; void solve() { int n; cin>>n; vector<int> arr(n); for(int i=0; i<n; i++) { cin>>arr[i]; } arr.insert(arr.begin(), 0); int ans=2*n-1; for(int i=1; i<=n; i++) { a...
Title: Roadside Trees (Simplified Edition) Time Limit: None seconds Memory Limit: None megabytes Problem Description: Squirrel Liss loves nuts. There are *n* trees (numbered 1 to *n* from west to east) along a street and there is a delicious nut on the top of each tree. The height of the tree *i* is *h**i*. Liss wan...
```python #include <bits/stdc++.h> using namespace std; typedef long long ll; const int M=1e9+7; void solve() { int n; cin>>n; vector<int> arr(n); for(int i=0; i<n; i++) { cin>>arr[i]; } arr.insert(arr.begin(), 0); int ans=2*n-1; for(int i=1; i<=n; i++) { ...
-1
409
H
A + B Strikes Back
PROGRAMMING
1,500
[ "*special", "brute force", "constructive algorithms", "dsu", "implementation" ]
null
null
A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try?
The input contains two integers *a* and *b* (0<=≤<=*a*,<=*b*<=≤<=103), separated by a single space.
Output the sum of the given integers.
[ "5 14\n", "381 492\n" ]
[ "19\n", "873\n" ]
none
0
[ { "input": "5 14", "output": "19" }, { "input": "381 492", "output": "873" }, { "input": "536 298", "output": "834" }, { "input": "143 522", "output": "665" }, { "input": "433 126", "output": "559" }, { "input": "723 350", "output": "1073" }, {...
1,633,757,788
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
0
0
a,d=map(int,input().split()) print(a+d)
Title: A + B Strikes Back Time Limit: None seconds Memory Limit: None megabytes Problem Description: A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try? Input ...
```python a,d=map(int,input().split()) print(a+d) ```
0
903
A
Hungry Student Problem
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Ivan's classes at the university have just finished, and now he wants to go to the local CFK cafe and eat some fried chicken. CFK sells chicken chunks in small and large portions. A small portion contains 3 chunks; a large one — 7 chunks. Ivan wants to eat exactly *x* chunks. Now he wonders whether he can buy exactly ...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the number of testcases. The *i*-th of the following *n* lines contains one integer *x**i* (1<=≤<=*x**i*<=≤<=100) — the number of chicken chunks Ivan wants to eat.
Print *n* lines, in *i*-th line output YES if Ivan can buy exactly *x**i* chunks. Otherwise, print NO.
[ "2\n6\n5\n" ]
[ "YES\nNO\n" ]
In the first example Ivan can buy two small portions. In the second example Ivan cannot buy exactly 5 chunks, since one small portion is not enough, but two small portions or one large is too much.
0
[ { "input": "2\n6\n5", "output": "YES\nNO" }, { "input": "100\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n30\n31\n32\n33\n34\n35\n36\n37\n38\n39\n40\n41\n42\n43\n44\n45\n46\n47\n48\n49\n50\n51\n52\n53\n54\n55\n56\n57\n58\n59\n60\n61\n62\...
1,606,760,073
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
93
0
n = int(input()) for item in range(n): a = int(input()) if a < 3: print("NO") elif a % 7 == 0 or a % 7 == 3 or a % 7 == 6: print("YES") elif a % 3 == 0 or (a != 4 and a % 3 == 1): print("YES") else: print("NO")
Title: Hungry Student Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ivan's classes at the university have just finished, and now he wants to go to the local CFK cafe and eat some fried chicken. CFK sells chicken chunks in small and large portions. A small portion contains 3 chun...
```python n = int(input()) for item in range(n): a = int(input()) if a < 3: print("NO") elif a % 7 == 0 or a % 7 == 3 or a % 7 == 6: print("YES") elif a % 3 == 0 or (a != 4 and a % 3 == 1): print("YES") else: print("NO") ```
0
743
B
Chloe and the sequence
PROGRAMMING
1,200
[ "binary search", "bitmasks", "constructive algorithms", "implementation" ]
null
null
Chloe, the same as Vladik, is a competitive programmer. She didn't have any problems to get to the olympiad like Vladik, but she was confused by the task proposed on the olympiad. Let's consider the following algorithm of generating a sequence of integers. Initially we have a sequence consisting of a single element eq...
The only line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=50, 1<=≤<=*k*<=≤<=2*n*<=-<=1).
Print single integer — the integer at the *k*-th position in the obtained sequence.
[ "3 2\n", "4 8\n" ]
[ "2", "4" ]
In the first sample the obtained sequence is [1, 2, 1, 3, 1, 2, 1]. The number on the second position is 2. In the second sample the obtained sequence is [1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1]. The number on the eighth position is 4.
1,000
[ { "input": "3 2", "output": "2" }, { "input": "4 8", "output": "4" }, { "input": "5 27", "output": "1" }, { "input": "7 44", "output": "3" }, { "input": "15 18432", "output": "12" }, { "input": "20 259676", "output": "3" }, { "input": "30 6...
1,595,074,306
2,147,483,647
PyPy 3
COMPILATION_ERROR
TESTS
0
0
0
n,k=map(int,input().split()) c,s=1,1 while(1) if((k-c)%(c*2)==0): print(s) break c*=2 s+=1
Title: Chloe and the sequence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Chloe, the same as Vladik, is a competitive programmer. She didn't have any problems to get to the olympiad like Vladik, but she was confused by the task proposed on the olympiad. Let's consider the following a...
```python n,k=map(int,input().split()) c,s=1,1 while(1) if((k-c)%(c*2)==0): print(s) break c*=2 s+=1 ```
-1
475
B
Strongly Connected City
PROGRAMMING
1,400
[ "brute force", "dfs and similar", "graphs", "implementation" ]
null
null
Imagine a city with *n* horizontal streets crossing *m* vertical streets, forming an (*n*<=-<=1)<=×<=(*m*<=-<=1) grid. In order to increase the traffic flow, mayor of the city has decided to make each street one way. This means in each horizontal street, the traffic moves only from west to east or only from east to wes...
The first line of input contains two integers *n* and *m*, (2<=≤<=*n*,<=*m*<=≤<=20), denoting the number of horizontal streets and the number of vertical streets. The second line contains a string of length *n*, made of characters '&lt;' and '&gt;', denoting direction of each horizontal street. If the *i*-th character...
If the given pattern meets the mayor's criteria, print a single line containing "YES", otherwise print a single line containing "NO".
[ "3 3\n&gt;&lt;&gt;\nv^v\n", "4 6\n&lt;&gt;&lt;&gt;\nv^v^v^\n" ]
[ "NO\n", "YES\n" ]
The figure above shows street directions in the second sample test case.
1,000
[ { "input": "3 3\n><>\nv^v", "output": "NO" }, { "input": "4 6\n<><>\nv^v^v^", "output": "YES" }, { "input": "2 2\n<>\nv^", "output": "YES" }, { "input": "2 2\n>>\n^v", "output": "NO" }, { "input": "3 3\n>><\n^^v", "output": "YES" }, { "input": "3 4\n>>...
1,654,296,678
2,147,483,647
Python 3
OK
TESTS
81
187
307,200
n,m = [int(x) for x in input().split()] directions_h = [ True if char == '<' else False for char in input()] directions_v = [ True if char == '^' else False for char in input()] def neighs(node): x, y = node if x < m: if directions_v[x]: if y > 0: yield (x, y - 1) else: ...
Title: Strongly Connected City Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imagine a city with *n* horizontal streets crossing *m* vertical streets, forming an (*n*<=-<=1)<=×<=(*m*<=-<=1) grid. In order to increase the traffic flow, mayor of the city has decided to make each street one...
```python n,m = [int(x) for x in input().split()] directions_h = [ True if char == '<' else False for char in input()] directions_v = [ True if char == '^' else False for char in input()] def neighs(node): x, y = node if x < m: if directions_v[x]: if y > 0: yield (x, y - 1) e...
3
898
A
Rounding
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5 Vasya can round it to 0 or to 10. Both ways are correct. For given *n* find out to which int...
The first line contains single integer *n* (0<=≤<=*n*<=≤<=109) — number that Vasya has.
Print result of rounding *n*. Pay attention that in some cases answer isn't unique. In that case print any correct answer.
[ "5\n", "113\n", "1000000000\n", "5432359\n" ]
[ "0\n", "110\n", "1000000000\n", "5432360\n" ]
In the first example *n* = 5. Nearest integers, that ends up with zero are 0 and 10. Any of these answers is correct, so you can print 0 or 10.
500
[ { "input": "5", "output": "0" }, { "input": "113", "output": "110" }, { "input": "1000000000", "output": "1000000000" }, { "input": "5432359", "output": "5432360" }, { "input": "999999994", "output": "999999990" }, { "input": "10", "output": "10" ...
1,596,691,337
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
11
139
20,172,800
n = int(input()) if n%10<=5: if n//10>0: print(str(n//10)+"0") else: print(0) else: print(n+1)
Title: Rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5...
```python n = int(input()) if n%10<=5: if n//10>0: print(str(n//10)+"0") else: print(0) else: print(n+1) ```
0
301
A
Yaroslav and Sequence
PROGRAMMING
1,800
[ "constructive algorithms" ]
null
null
Yaroslav has an array, consisting of (2·*n*<=-<=1) integers. In a single operation Yaroslav can change the sign of exactly *n* elements in the array. In other words, in one operation Yaroslav can select exactly *n* array elements, and multiply each of them by -1. Yaroslav is now wondering: what maximum sum of array el...
The first line contains an integer *n* (2<=≤<=*n*<=≤<=100). The second line contains (2·*n*<=-<=1) integers — the array elements. The array elements do not exceed 1000 in their absolute value.
In a single line print the answer to the problem — the maximum sum that Yaroslav can get.
[ "2\n50 50 50\n", "2\n-1 -100 -1\n" ]
[ "150\n", "100\n" ]
In the first sample you do not need to change anything. The sum of elements equals 150. In the second sample you need to change the sign of the first two elements. Then we get the sum of the elements equal to 100.
500
[ { "input": "2\n50 50 50", "output": "150" }, { "input": "2\n-1 -100 -1", "output": "100" }, { "input": "3\n-959 -542 -669 -513 160", "output": "2843" }, { "input": "4\n717 473 344 -51 -548 703 -869", "output": "3603" }, { "input": "5\n270 -181 957 -509 -6 937 -175...
1,626,015,820
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
154
20,172,800
n = int(input()) a = list(map(int, input().split())) a.sort() ans = 0 for x in a: if x < 0: if n > 0: ans -= x n -= 1 else: ans += x else: ans += x print(ans)
Title: Yaroslav and Sequence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Yaroslav has an array, consisting of (2·*n*<=-<=1) integers. In a single operation Yaroslav can change the sign of exactly *n* elements in the array. In other words, in one operation Yaroslav can select exactly *n...
```python n = int(input()) a = list(map(int, input().split())) a.sort() ans = 0 for x in a: if x < 0: if n > 0: ans -= x n -= 1 else: ans += x else: ans += x print(ans) ```
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,690,907,463
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
s = input() s = s.lower() a = '' count_l = 0 for i in range(len(s)): if s[i] == 'h' and a == '': a += s[i] elif s[i] == 'e' and 'h' in a: a += s[i] elif s[i] == 'l' and 'e' in a and count_l < 2: a += s[i] count_l += 1 elif s[i] == 'o' and 'l' in a and count_...
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() s = s.lower() a = '' count_l = 0 for i in range(len(s)): if s[i] == 'h' and a == '': a += s[i] elif s[i] == 'e' and 'h' in a: a += s[i] elif s[i] == 'l' and 'e' in a and count_l < 2: a += s[i] count_l += 1 elif s[i] == 'o' and 'l' in a ...
0
883
M
Quadcopter Competition
PROGRAMMING
1,100
[ "greedy", "math" ]
null
null
Polycarp takes part in a quadcopter competition. According to the rules a flying robot should: - start the race from some point of a field, - go around the flag, - close cycle returning back to the starting point. Polycarp knows the coordinates of the starting point (*x*1,<=*y*1) and the coordinates of the point w...
The first line contains two integer numbers *x*1 and *y*1 (<=-<=100<=≤<=*x*1,<=*y*1<=≤<=100) — coordinates of the quadcopter starting (and finishing) point. The second line contains two integer numbers *x*2 and *y*2 (<=-<=100<=≤<=*x*2,<=*y*2<=≤<=100) — coordinates of the flag. It is guaranteed that the quadcopter sta...
Print the length of minimal path of the quadcopter to surround the flag and return back.
[ "1 5\n5 2\n", "0 1\n0 0\n" ]
[ "18\n", "8\n" ]
none
0
[ { "input": "1 5\n5 2", "output": "18" }, { "input": "0 1\n0 0", "output": "8" }, { "input": "-100 -100\n100 100", "output": "804" }, { "input": "-100 -100\n-100 100", "output": "406" }, { "input": "-100 -100\n100 -100", "output": "406" }, { "input": "1...
1,557,258,756
2,147,483,647
Python 3
OK
TESTS
100
124
0
x1, y1 = map(int, input().split()) x2, y2 = map(int, input().split()) res = 0 if x1 == x2: res = 2*abs(y2 - y1) + 6 elif y1 == y2: res = 2*abs(x2 - x1) + 6 else: for dx, dy in [(1, 1), (1, -1), (-1, 1), (-1, -1)]: dist = abs((x2 + dx) - x1) + abs((y2 + dy) - y1) res = max(res, 2 * dist) p...
Title: Quadcopter Competition Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp takes part in a quadcopter competition. According to the rules a flying robot should: - start the race from some point of a field, - go around the flag, - close cycle returning back to the starting p...
```python x1, y1 = map(int, input().split()) x2, y2 = map(int, input().split()) res = 0 if x1 == x2: res = 2*abs(y2 - y1) + 6 elif y1 == y2: res = 2*abs(x2 - x1) + 6 else: for dx, dy in [(1, 1), (1, -1), (-1, 1), (-1, -1)]: dist = abs((x2 + dx) - x1) + abs((y2 + dy) - y1) res = max(res, 2 ...
3
495
B
Modular Equations
PROGRAMMING
1,600
[ "math", "number theory" ]
null
null
Last week, Hamed learned about a new type of equations in his math class called Modular Equations. Lets define *i* modulo *j* as the remainder of division of *i* by *j* and denote it by . A Modular Equation, as Hamed's teacher described, is an equation of the form in which *a* and *b* are two non-negative integers and...
In the only line of the input two space-separated integers *a* and *b* (0<=≤<=*a*,<=*b*<=≤<=109) are given.
If there is an infinite number of answers to our equation, print "infinity" (without the quotes). Otherwise print the number of solutions of the Modular Equation .
[ "21 5\n", "9435152 272\n", "10 10\n" ]
[ "2\n", "282\n", "infinity\n" ]
In the first sample the answers of the Modular Equation are 8 and 16 since <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/6f5ff39ebd209bf990adaf91f4b82f9687097224.png" style="max-width: 100.0%;max-height: 100.0%;"/>
1,000
[ { "input": "21 5", "output": "2" }, { "input": "9435152 272", "output": "282" }, { "input": "10 10", "output": "infinity" }, { "input": "0 1000000000", "output": "0" }, { "input": "11 2", "output": "2" }, { "input": "1 0", "output": "1" }, { ...
1,694,473,503
2,147,483,647
PyPy 3-64
OK
TESTS
37
62
1,331,200
from math import sqrt a, b = map(int, input().split()) if a == b: print('infinity') elif a < b: print(0) else: cont = 0 diferenca = a - b for x in range(1, int(sqrt(diferenca)) + 1): if diferenca % x == 0: if x > b: cont += 1 fator =...
Title: Modular Equations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Last week, Hamed learned about a new type of equations in his math class called Modular Equations. Lets define *i* modulo *j* as the remainder of division of *i* by *j* and denote it by . A Modular Equation, as Hamed'...
```python from math import sqrt a, b = map(int, input().split()) if a == b: print('infinity') elif a < b: print(0) else: cont = 0 diferenca = a - b for x in range(1, int(sqrt(diferenca)) + 1): if diferenca % x == 0: if x > b: cont += 1 ...
3
777
A
Shell Game
PROGRAMMING
1,000
[ "constructive algorithms", "implementation", "math" ]
null
null
Bomboslav likes to look out of the window in his room and watch lads outside playing famous shell game. The game is played by two persons: operator and player. Operator takes three similar opaque shells and places a ball beneath one of them. Then he shuffles the shells by swapping some pairs and the player has to guess...
The first line of the input contains an integer *n* (1<=≤<=*n*<=≤<=2·109) — the number of movements made by the operator. The second line contains a single integer *x* (0<=≤<=*x*<=≤<=2) — the index of the shell where the ball was found after *n* movements.
Print one integer from 0 to 2 — the index of the shell where the ball was initially placed.
[ "4\n2\n", "1\n1\n" ]
[ "1\n", "0\n" ]
In the first sample, the ball was initially placed beneath the middle shell and the operator completed four movements. 1. During the first move operator swapped the left shell and the middle shell. The ball is now under the left shell. 1. During the second move operator swapped the middle shell and the right one. Th...
500
[ { "input": "4\n2", "output": "1" }, { "input": "1\n1", "output": "0" }, { "input": "2\n2", "output": "0" }, { "input": "3\n1", "output": "1" }, { "input": "3\n2", "output": "0" }, { "input": "3\n0", "output": "2" }, { "input": "2000000000\n...
1,489,917,024
2,147,483,647
Python 3
OK
TESTS
68
62
4,608,000
n, l=int(input()), int(input()) a=["012","102","120","210","201","021"] print(a[n%6][l])
Title: Shell Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bomboslav likes to look out of the window in his room and watch lads outside playing famous shell game. The game is played by two persons: operator and player. Operator takes three similar opaque shells and places a ball ben...
```python n, l=int(input()), int(input()) a=["012","102","120","210","201","021"] print(a[n%6][l]) ```
3
899
C
Dividing the numbers
PROGRAMMING
1,300
[ "constructive algorithms", "graphs", "math" ]
null
null
Petya has *n* integers: 1,<=2,<=3,<=...,<=*n*. He wants to split these integers in two non-empty groups in such a way that the absolute difference of sums of integers in each group is as small as possible. Help Petya to split the integers. Each of *n* integers should be exactly in one group.
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=60<=000) — the number of integers Petya has.
Print the smallest possible absolute difference in the first line. In the second line print the size of the first group, followed by the integers in that group. You can print these integers in arbitrary order. If there are multiple answers, print any of them.
[ "4\n", "2\n" ]
[ "0\n2 1 4 \n", "1\n1 1 \n" ]
In the first example you have to put integers 1 and 4 in the first group, and 2 and 3 in the second. This way the sum in each group is 5, and the absolute difference is 0. In the second example there are only two integers, and since both groups should be non-empty, you have to put one integer in the first group and on...
1,500
[ { "input": "4", "output": "0\n2 1 4 " }, { "input": "2", "output": "1\n1 1 " }, { "input": "3", "output": "0\n1\n3 " }, { "input": "5", "output": "1\n3\n1 2 5 " }, { "input": "59998", "output": "1\n29999 1 4 5 8 9 12 13 16 17 20 21 24 25 28 29 32 33 36 37 40 4...
1,667,213,779
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
n = int(input()) l1 = [] if n==2 or n==1: l1.append(1) print(len(l1),*l1) else: for i in range(1,n//2+1,2): # 1 to 5 step 2 l1.append(i) l1.append(n-i+1) # 1 2 3 4 5 6 7 8 l1 = 1,8,3,6 # 1 2 l1 = print(len(l1),*l1)
Title: Dividing the numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya has *n* integers: 1,<=2,<=3,<=...,<=*n*. He wants to split these integers in two non-empty groups in such a way that the absolute difference of sums of integers in each group is as small as possible. Help P...
```python n = int(input()) l1 = [] if n==2 or n==1: l1.append(1) print(len(l1),*l1) else: for i in range(1,n//2+1,2): # 1 to 5 step 2 l1.append(i) l1.append(n-i+1) # 1 2 3 4 5 6 7 8 l1 = 1,8,3,6 # 1 2 l1 = print(len(l1),*l1) ```
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,953,765
2,147,483,647
PyPy 3-64
OK
TESTS
21
124
0
# import sys # sys.stdout=open('output.txt','w') # sys.stdin=open('input.txt','r') s=input() n1=n2=n3=0 for i in range(0,len(s),2): if s[i]=='1': n1+=1 elif s[i]=='2': n2+=1 else : n3+=1 ss="1+"*n1 + "2+"*n2 + "3+"*n3 # `print (ss[:-1])` is printing the string `ss` wit...
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 # import sys # sys.stdout=open('output.txt','w') # sys.stdin=open('input.txt','r') s=input() n1=n2=n3=0 for i in range(0,len(s),2): if s[i]=='1': n1+=1 elif s[i]=='2': n2+=1 else : n3+=1 ss="1+"*n1 + "2+"*n2 + "3+"*n3 # `print (ss[:-1])` is printing the strin...
3
248
A
Cupboards
PROGRAMMING
800
[ "implementation" ]
null
null
One foggy Stockholm morning, Karlsson decided to snack on some jam in his friend Lillebror Svantenson's house. Fortunately for Karlsson, there wasn't anybody in his friend's house. Karlsson was not going to be hungry any longer, so he decided to get some food in the house. Karlsson's gaze immediately fell on *n* woode...
The first input line contains a single integer *n* — the number of cupboards in the kitchen (2<=≤<=*n*<=≤<=104). Then follow *n* lines, each containing two integers *l**i* and *r**i* (0<=≤<=*l**i*,<=*r**i*<=≤<=1). Number *l**i* equals one, if the left door of the *i*-th cupboard is opened, otherwise number *l**i* equal...
In the only output line print a single integer *t* — the minimum number of seconds Karlsson needs to change the doors of all cupboards to the position he needs.
[ "5\n0 1\n1 0\n0 1\n1 1\n0 1\n" ]
[ "3\n" ]
none
500
[ { "input": "5\n0 1\n1 0\n0 1\n1 1\n0 1", "output": "3" }, { "input": "2\n0 0\n0 0", "output": "0" }, { "input": "3\n0 1\n1 1\n1 1", "output": "1" }, { "input": "8\n0 1\n1 0\n0 1\n1 1\n0 1\n1 0\n0 1\n1 0", "output": "7" }, { "input": "8\n1 0\n1 0\n1 0\n0 1\n0 1\n1 ...
1,547,287,725
2,147,483,647
Python 3
OK
TESTS
57
248
0
nb_cabs = int(input()) l, r = 0, 0 for _ in range(nb_cabs): a, b = [int(x) for x in input().split()] l+= a r+= b print(min(l, nb_cabs-l) + min(r, nb_cabs-r))
Title: Cupboards Time Limit: None seconds Memory Limit: None megabytes Problem Description: One foggy Stockholm morning, Karlsson decided to snack on some jam in his friend Lillebror Svantenson's house. Fortunately for Karlsson, there wasn't anybody in his friend's house. Karlsson was not going to be hungry any long...
```python nb_cabs = int(input()) l, r = 0, 0 for _ in range(nb_cabs): a, b = [int(x) for x in input().split()] l+= a r+= b print(min(l, nb_cabs-l) + min(r, nb_cabs-r)) ```
3
811
B
Vladik and Complicated Book
PROGRAMMING
1,200
[ "implementation", "sortings" ]
null
null
Vladik had started reading a complicated book about algorithms containing *n* pages. To improve understanding of what is written, his friends advised him to read pages in some order given by permutation *P*<==<=[*p*1,<=*p*2,<=...,<=*p**n*], where *p**i* denotes the number of page that should be read *i*-th in turn. So...
First line contains two space-separated integers *n*, *m* (1<=≤<=*n*,<=*m*<=≤<=104) — length of permutation and number of times Vladik's mom sorted some subsegment of the book. Second line contains *n* space-separated integers *p*1,<=*p*2,<=...,<=*p**n* (1<=≤<=*p**i*<=≤<=*n*) — permutation *P*. Note that elements in p...
For each mom’s sorting on it’s own line print "Yes", if page which is interesting to Vladik hasn't changed, or "No" otherwise.
[ "5 5\n5 4 3 2 1\n1 5 3\n1 3 1\n2 4 3\n4 4 4\n2 5 3\n", "6 5\n1 4 3 2 5 6\n2 4 3\n1 6 2\n4 5 4\n1 3 3\n2 6 3\n" ]
[ "Yes\nNo\nYes\nYes\nNo\n", "Yes\nNo\nYes\nNo\nYes\n" ]
Explanation of first test case: 1. [1, 2, 3, 4, 5] — permutation after sorting, 3-rd element hasn’t changed, so answer is "Yes". 1. [3, 4, 5, 2, 1] — permutation after sorting, 1-st element has changed, so answer is "No". 1. [5, 2, 3, 4, 1] — permutation after sorting, 3-rd element hasn’t changed, so answer is "Ye...
1,000
[ { "input": "5 5\n5 4 3 2 1\n1 5 3\n1 3 1\n2 4 3\n4 4 4\n2 5 3", "output": "Yes\nNo\nYes\nYes\nNo" }, { "input": "6 5\n1 4 3 2 5 6\n2 4 3\n1 6 2\n4 5 4\n1 3 3\n2 6 3", "output": "Yes\nNo\nYes\nNo\nYes" }, { "input": "10 10\n10 1 6 7 9 8 4 3 5 2\n1 1 1\n4 4 4\n7 7 7\n3 3 3\n1 6 5\n2 6 2\n6...
1,516,213,847
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
8
2,000
6,656,000
def split1(s): l=[] m='' s+=' ' for i in range(len(s)): if s[i]==' ': l.append(int(m)) m='' else: m+=s[i] return l nm=input() nm=split1(nm) n=nm[0] m=nm[1] p=input() p=split1(p) ll=[] for i in range(m): ll.append(split1(inpu...
Title: Vladik and Complicated Book Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vladik had started reading a complicated book about algorithms containing *n* pages. To improve understanding of what is written, his friends advised him to read pages in some order given by permutation *P*<...
```python def split1(s): l=[] m='' s+=' ' for i in range(len(s)): if s[i]==' ': l.append(int(m)) m='' else: m+=s[i] return l nm=input() nm=split1(nm) n=nm[0] m=nm[1] p=input() p=split1(p) ll=[] for i in range(m): ll.append(s...
0
898
A
Rounding
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5 Vasya can round it to 0 or to 10. Both ways are correct. For given *n* find out to which int...
The first line contains single integer *n* (0<=≤<=*n*<=≤<=109) — number that Vasya has.
Print result of rounding *n*. Pay attention that in some cases answer isn't unique. In that case print any correct answer.
[ "5\n", "113\n", "1000000000\n", "5432359\n" ]
[ "0\n", "110\n", "1000000000\n", "5432360\n" ]
In the first example *n* = 5. Nearest integers, that ends up with zero are 0 and 10. Any of these answers is correct, so you can print 0 or 10.
500
[ { "input": "5", "output": "0" }, { "input": "113", "output": "110" }, { "input": "1000000000", "output": "1000000000" }, { "input": "5432359", "output": "5432360" }, { "input": "999999994", "output": "999999990" }, { "input": "10", "output": "10" ...
1,698,160,366
2,147,483,647
Python 3
OK
TESTS
64
46
0
n = int(input()) if n % 10 <= 5: rounded = n - (n % 10) else: rounded = n + (10 - n % 10) print(rounded)
Title: Rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5...
```python n = int(input()) if n % 10 <= 5: rounded = n - (n % 10) else: rounded = n + (10 - n % 10) print(rounded) ```
3
285
C
Building Permutation
PROGRAMMING
1,200
[ "greedy", "implementation", "sortings" ]
null
null
Permutation *p* is an ordered set of integers *p*1,<=<=*p*2,<=<=...,<=<=*p**n*, consisting of *n* distinct positive integers, each of them doesn't exceed *n*. We'll denote the *i*-th element of permutation *p* as *p**i*. We'll call number *n* the size or the length of permutation *p*1,<=<=*p*2,<=<=...,<=<=*p**n*. You ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=3·105) — the size of the sought permutation. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=109<=≤<=*a**i*<=≤<=109).
Print a single number — the minimum number of moves. Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.
[ "2\n3 0\n", "3\n-1 -1 2\n" ]
[ "2\n", "6\n" ]
In the first sample you should decrease the first number by one and then increase the second number by one. The resulting permutation is (2, 1). In the second sample you need 6 moves to build permutation (1, 3, 2).
1,500
[ { "input": "2\n3 0", "output": "2" }, { "input": "3\n-1 -1 2", "output": "6" }, { "input": "5\n-3 5 -3 3 3", "output": "10" }, { "input": "10\n9 6 -2 4 1 1 1 9 6 2", "output": "18" }, { "input": "9\n2 0 0 6 5 4 1 9 3", "output": "15" }, { "input": "100...
1,618,555,301
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
77
0
n=int(input()) l=list(map(int,input().split())) print(sum([x for x in range(1,n+1)])-sum(l))
Title: Building Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Permutation *p* is an ordered set of integers *p*1,<=<=*p*2,<=<=...,<=<=*p**n*, consisting of *n* distinct positive integers, each of them doesn't exceed *n*. We'll denote the *i*-th element of permutation *p* as *...
```python n=int(input()) l=list(map(int,input().split())) print(sum([x for x in range(1,n+1)])-sum(l)) ```
0
749
A
Bachgold Problem
PROGRAMMING
800
[ "greedy", "implementation", "math", "number theory" ]
null
null
Bachgold problem is very easy to formulate. Given a positive integer *n* represent it as a sum of maximum possible number of prime numbers. One can prove that such representation exists for any integer greater than 1. Recall that integer *k* is called prime if it is greater than 1 and has exactly two positive integer ...
The only line of the input contains a single integer *n* (2<=≤<=*n*<=≤<=100<=000).
The first line of the output contains a single integer *k* — maximum possible number of primes in representation. The second line should contain *k* primes with their sum equal to *n*. You can print them in any order. If there are several optimal solution, print any of them.
[ "5\n", "6\n" ]
[ "2\n2 3\n", "3\n2 2 2\n" ]
none
500
[ { "input": "5", "output": "2\n2 3" }, { "input": "6", "output": "3\n2 2 2" }, { "input": "2", "output": "1\n2" }, { "input": "3", "output": "1\n3" }, { "input": "99999", "output": "49999\n2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...
1,696,768,918
2,147,483,647
Python 3
OK
TESTS
41
46
102,400
a=int(input()) if a==3: print(1) print(3) elif a%2!=0: print(a//2) print('2 '*(a//2-1),3,sep="") else: print(a//2) print('2 '*(a//2),sep="")
Title: Bachgold Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bachgold problem is very easy to formulate. Given a positive integer *n* represent it as a sum of maximum possible number of prime numbers. One can prove that such representation exists for any integer greater than 1. ...
```python a=int(input()) if a==3: print(1) print(3) elif a%2!=0: print(a//2) print('2 '*(a//2-1),3,sep="") else: print(a//2) print('2 '*(a//2),sep="") ```
3
116
A
Tram
PROGRAMMING
800
[ "implementation" ]
null
null
Linear Kingdom has exactly one tram line. It has *n* stops, numbered from 1 to *n* in the order of tram's movement. At the *i*-th stop *a**i* passengers exit the tram, while *b**i* passengers enter it. The tram is empty before it arrives at the first stop. Also, when the tram arrives at the last stop, all passengers ex...
The first line contains a single number *n* (2<=≤<=*n*<=≤<=1000) — the number of the tram's stops. Then *n* lines follow, each contains two integers *a**i* and *b**i* (0<=≤<=*a**i*,<=*b**i*<=≤<=1000) — the number of passengers that exits the tram at the *i*-th stop, and the number of passengers that enter the tram at...
Print a single integer denoting the minimum possible capacity of the tram (0 is allowed).
[ "4\n0 3\n2 5\n4 2\n4 0\n" ]
[ "6\n" ]
For the first example, a capacity of 6 is sufficient: - At the first stop, the number of passengers inside the tram before arriving is 0. Then, 3 passengers enter the tram, and the number of passengers inside the tram becomes 3. - At the second stop, 2 passengers exit the tram (1 passenger remains inside). Then, 5 ...
500
[ { "input": "4\n0 3\n2 5\n4 2\n4 0", "output": "6" }, { "input": "5\n0 4\n4 6\n6 5\n5 4\n4 0", "output": "6" }, { "input": "10\n0 5\n1 7\n10 8\n5 3\n0 5\n3 3\n8 8\n0 6\n10 1\n9 0", "output": "18" }, { "input": "3\n0 1\n1 1\n1 0", "output": "1" }, { "input": "4\n0 1...
1,691,094,646
2,147,483,647
Python 3
OK
TESTS
71
92
0
num = int(input()) c = [] a = 0 for i in range(num): t,r= list(map(int,input().split())) a+=(r-t) c.append(a) print(max(c))
Title: Tram Time Limit: None seconds Memory Limit: None megabytes Problem Description: Linear Kingdom has exactly one tram line. It has *n* stops, numbered from 1 to *n* in the order of tram's movement. At the *i*-th stop *a**i* passengers exit the tram, while *b**i* passengers enter it. The tram is empty before it ...
```python num = int(input()) c = [] a = 0 for i in range(num): t,r= list(map(int,input().split())) a+=(r-t) c.append(a) print(max(c)) ```
3
776
A
A Serial Killer
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
Our beloved detective, Sherlock is currently trying to catch a serial killer who kills a person each day. Using his powers of deduction, he came to know that the killer has a strategy for selecting his next victim. The killer starts with two potential victims on his first day, selects one of these two, kills selected ...
First line of input contains two names (length of each of them doesn't exceed 10), the two initials potential victims. Next line contains integer *n* (1<=≤<=*n*<=≤<=1000), the number of days. Next *n* lines contains two names (length of each of them doesn't exceed 10), first being the person murdered on this day and t...
Output *n*<=+<=1 lines, the *i*-th line should contain the two persons from which the killer selects for the *i*-th murder. The (*n*<=+<=1)-th line should contain the two persons from which the next victim is selected. In each line, the two names can be printed in any order.
[ "ross rachel\n4\nross joey\nrachel phoebe\nphoebe monica\nmonica chandler\n", "icm codeforces\n1\ncodeforces technex\n" ]
[ "ross rachel\njoey rachel\njoey phoebe\njoey monica\njoey chandler\n", "icm codeforces\nicm technex\n" ]
In first example, the killer starts with ross and rachel. - After day 1, ross is killed and joey appears. - After day 2, rachel is killed and phoebe appears. - After day 3, phoebe is killed and monica appears. - After day 4, monica is killed and chandler appears.
500
[ { "input": "ross rachel\n4\nross joey\nrachel phoebe\nphoebe monica\nmonica chandler", "output": "ross rachel\njoey rachel\njoey phoebe\njoey monica\njoey chandler" }, { "input": "icm codeforces\n1\ncodeforces technex", "output": "icm codeforces\nicm technex" }, { "input": "a b\n3\na c\n...
1,576,631,216
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
109
102,400
s = input() n = int(input()) print(s) for i in range(n): l,r = input().split() s = s.replace(l,r) print(s)
Title: A Serial Killer Time Limit: None seconds Memory Limit: None megabytes Problem Description: Our beloved detective, Sherlock is currently trying to catch a serial killer who kills a person each day. Using his powers of deduction, he came to know that the killer has a strategy for selecting his next victim. The...
```python s = input() n = int(input()) print(s) for i in range(n): l,r = input().split() s = s.replace(l,r) print(s) ```
0
254
B
Jury Size
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
In 2013, the writers of Berland State University should prepare problems for *n* Olympiads. We will assume that the Olympiads are numbered with consecutive integers from 1 to *n*. For each Olympiad we know how many members of the jury must be involved in its preparation, as well as the time required to prepare the prob...
The first line contains integer *n* — the number of Olympiads in 2013 (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains four integers *m**i*, *d**i*, *p**i* and *t**i* — the month and day of the Olympiad (given without leading zeroes), the needed number of the jury members and the time needed to prepare the...
Print a single number — the minimum jury size.
[ "2\n5 23 1 2\n3 13 2 3\n", "3\n12 9 2 1\n12 8 1 3\n12 8 2 2\n", "1\n1 10 1 13\n" ]
[ "2\n", "3\n", "1\n" ]
none
1,000
[ { "input": "2\n5 23 1 2\n3 13 2 3", "output": "2" }, { "input": "3\n12 9 2 1\n12 8 1 3\n12 8 2 2", "output": "3" }, { "input": "1\n1 10 1 13", "output": "1" }, { "input": "3\n3 16 25 1\n3 15 9 34\n3 14 90 87", "output": "99" }, { "input": "4\n2 15 52 53\n2 15 35 8...
1,610,224,117
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
122
204,800
n = int(input()) arr = [] for i in range(n): arr.append(list(map(int, input().split()))) arr.sort() dic = {1:31, 2:28, 3:31, 4:30, 5: 31, 6: 30, 7: 31, 8: 31, 9:30, 10:31, 11:30, 12:31} total = 0 b = [] for i in arr: r = 0 for j in range(1, i[0]): r+=dic[j] r+=i[1] r-=1 l =...
Title: Jury Size Time Limit: None seconds Memory Limit: None megabytes Problem Description: In 2013, the writers of Berland State University should prepare problems for *n* Olympiads. We will assume that the Olympiads are numbered with consecutive integers from 1 to *n*. For each Olympiad we know how many members of...
```python n = int(input()) arr = [] for i in range(n): arr.append(list(map(int, input().split()))) arr.sort() dic = {1:31, 2:28, 3:31, 4:30, 5: 31, 6: 30, 7: 31, 8: 31, 9:30, 10:31, 11:30, 12:31} total = 0 b = [] for i in arr: r = 0 for j in range(1, i[0]): r+=dic[j] r+=i[1] r-=...
-1
785
A
Anton and Polyhedrons
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons: - Tetrahedron. Tetrahedron has 4 triangular faces. - Cube. Cube has 6 square faces. - Octahedron. Octahedron has 8 triangular faces. - Dodecahedron. Dodecahedron has 12 pentagonal faces. - Icosahed...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of polyhedrons in Anton's collection. Each of the following *n* lines of the input contains a string *s**i* — the name of the *i*-th polyhedron in Anton's collection. The string can look like this: - "Tetrahedron" (withou...
Output one number — the total number of faces in all the polyhedrons in Anton's collection.
[ "4\nIcosahedron\nCube\nTetrahedron\nDodecahedron\n", "3\nDodecahedron\nOctahedron\nOctahedron\n" ]
[ "42\n", "28\n" ]
In the first sample Anton has one icosahedron, one cube, one tetrahedron and one dodecahedron. Icosahedron has 20 faces, cube has 6 faces, tetrahedron has 4 faces and dodecahedron has 12 faces. In total, they have 20 + 6 + 4 + 12 = 42 faces.
500
[ { "input": "4\nIcosahedron\nCube\nTetrahedron\nDodecahedron", "output": "42" }, { "input": "3\nDodecahedron\nOctahedron\nOctahedron", "output": "28" }, { "input": "25\nIcosahedron\nOctahedron\nTetrahedron\nDodecahedron\nCube\nIcosahedron\nOctahedron\nCube\nTetrahedron\nIcosahedron\nIcosa...
1,695,734,010
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
15
0
n = int(input()) s = 0 while n: m = input() if m == 'Icosahedron': s += 4 elif m == 'Cube': s += 6 elif m == 'Octahedron': s += 8 elif m == 'Dodecahedron': s += 12 elif m == 'Icosahedron': s += 20 n -= 1 print(s)
Title: Anton and Polyhedrons Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anton's favourite geometric figures are regular polyhedrons. Note that there are five kinds of regular polyhedrons: - Tetrahedron. Tetrahedron has 4 triangular faces. - Cube. Cube has 6 square faces. - Octahe...
```python n = int(input()) s = 0 while n: m = input() if m == 'Icosahedron': s += 4 elif m == 'Cube': s += 6 elif m == 'Octahedron': s += 8 elif m == 'Dodecahedron': s += 12 elif m == 'Icosahedron': s += 20 n -= 1 print(s) ```
0
522
B
Photo to Remember
PROGRAMMING
1,100
[ "*special", "data structures", "dp", "implementation" ]
null
null
One day *n* friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the photo, each photographed friend occupies a rectangle of pixels: the *i*-th of them occupies the rectangl...
The first line contains integer *n* (2<=≤<=*n*<=≤<=200<=000) — the number of friends. Then *n* lines follow: the *i*-th line contains information about the *i*-th friend. The line contains a pair of integers *w**i*,<=*h**i* (1<=≤<=*w**i*<=≤<=10,<=1<=≤<=*h**i*<=≤<=1000) — the width and height in pixels of the correspo...
Print *n* space-separated numbers *b*1,<=*b*2,<=...,<=*b**n*, where *b**i* — the total number of pixels on the minimum photo containing all friends expect for the *i*-th one.
[ "3\n1 10\n5 5\n10 1\n", "3\n2 1\n1 2\n2 1\n" ]
[ "75 110 60 ", "6 4 6 " ]
none
1,000
[ { "input": "3\n1 10\n5 5\n10 1", "output": "75 110 60 " }, { "input": "3\n2 1\n1 2\n2 1", "output": "6 4 6 " }, { "input": "2\n1 5\n2 3", "output": "6 5 " }, { "input": "2\n2 3\n1 1", "output": "1 6 " }, { "input": "3\n1 10\n2 10\n3 10", "output": "50 40 30 " ...
1,432,997,740
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
14
2,000
14,950,400
import math def derevo_otr(a,b,v,tl,tr,t,e): if (tl == tr): t[v] = a[tl] e[v] = b[tl] else: tm = (tl + tr) // 2 derevo_otr(a,b,v * 2,tl,tm,t,e) derevo_otr(a,b,(v * 2) + 1,tm+1,tr,t,e) t[v] = t[v * 2] + t[(v * 2) + 1] e[v] = max(e[v * 2],e[(v * 2)...
Title: Photo to Remember Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day *n* friends met at a party, they hadn't seen each other for a long time and so they decided to make a group photo together. Simply speaking, the process of taking photos can be described as follows. On the p...
```python import math def derevo_otr(a,b,v,tl,tr,t,e): if (tl == tr): t[v] = a[tl] e[v] = b[tl] else: tm = (tl + tr) // 2 derevo_otr(a,b,v * 2,tl,tm,t,e) derevo_otr(a,b,(v * 2) + 1,tm+1,tr,t,e) t[v] = t[v * 2] + t[(v * 2) + 1] e[v] = max(e[v * 2]...
0
120
B
Quiz League
PROGRAMMING
1,100
[ "implementation" ]
null
null
A team quiz game called "What? Where? When?" is very popular in Berland. The game is centered on two teams competing. They are the team of six Experts versus the team of the Audience. A person from the audience asks a question and the experts are allowed a minute on brainstorming and finding the right answer to the que...
The first line contains two positive integers *n* and *k* (1<=≤<=*n*<=≤<=1000 and 1<=≤<=*k*<=≤<=*n*) — the numbers of sectors on the table and the number of the sector where the arrow is pointing. The second line contains *n* numbers: *a**i*<==<=0 if the question from sector *i* has already been asked and *a**i*<==<=1 ...
Print the single number — the number of the sector containing the question the experts will be asked. It is guaranteed that the answer exists, that is that not all the questions have already been asked.
[ "5 5\n0 1 0 1 0\n", "2 1\n1 1\n" ]
[ "2\n", "1\n" ]
none
0
[ { "input": "5 5\n0 1 0 1 0", "output": "2" }, { "input": "2 1\n1 1", "output": "1" }, { "input": "3 2\n1 0 0", "output": "1" }, { "input": "3 3\n0 1 0", "output": "2" }, { "input": "1 1\n1", "output": "1" }, { "input": "6 3\n0 0 1 1 0 1", "output":...
1,601,103,610
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
78
0
n,k=map(int,input().split()) arr=list(map(int,input().split())) if arr[k-1:].count(1)>0: print(arr[k-1:].index(1)+1) else: print(arr.index(1)+1)
Title: Quiz League Time Limit: None seconds Memory Limit: None megabytes Problem Description: A team quiz game called "What? Where? When?" is very popular in Berland. The game is centered on two teams competing. They are the team of six Experts versus the team of the Audience. A person from the audience asks a quest...
```python n,k=map(int,input().split()) arr=list(map(int,input().split())) if arr[k-1:].count(1)>0: print(arr[k-1:].index(1)+1) else: print(arr.index(1)+1) ```
-1
991
D
Bishwock
PROGRAMMING
1,500
[ "dp", "greedy" ]
null
null
Bishwock is a chess figure that consists of three squares resembling an "L-bar". This figure can be rotated by 90, 180 and 270 degrees so it can have four possible states: Bishwocks don't attack any squares and can even occupy on the adjacent squares as long as they don't occupy the same square. Vasya has a board wi...
The input contains two nonempty strings that describe Vasya's board. Those strings contain only symbols "0" (zero) that denote the empty squares and symbols "X" (uppercase English letter) that denote the squares occupied by pawns. Strings are nonempty and are of the same length that does not exceed $100$.
Output a single integer — the maximum amount of bishwocks that can be placed onto the given board.
[ "00\n00\n", "00X00X0XXX0\n0XXX0X00X00\n", "0X0X0\n0X0X0\n", "0XXX0\n00000\n" ]
[ "1", "4", "0", "2" ]
none
1,500
[ { "input": "00\n00", "output": "1" }, { "input": "00X00X0XXX0\n0XXX0X00X00", "output": "4" }, { "input": "0X0X0\n0X0X0", "output": "0" }, { "input": "0XXX0\n00000", "output": "2" }, { "input": "0\n0", "output": "0" }, { "input": "0\nX", "output": "...
1,588,864,917
2,147,483,647
Python 3
OK
TESTS
72
109
6,963,200
a = input() b = input() n = len(a) ans = 0 l = 2 i = 0 if a[0] == "X": l -= 1 if b[0] == "X": l -= 1 while i < n - 1: count = 0 if a[i + 1] == "0": count += 1 if b[i + 1] == "0": count += 1 if l + count >= 3: ans += 1 if l + count == 3: l = 0 e...
Title: Bishwock Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bishwock is a chess figure that consists of three squares resembling an "L-bar". This figure can be rotated by 90, 180 and 270 degrees so it can have four possible states: Bishwocks don't attack any squares and can even occup...
```python a = input() b = input() n = len(a) ans = 0 l = 2 i = 0 if a[0] == "X": l -= 1 if b[0] == "X": l -= 1 while i < n - 1: count = 0 if a[i + 1] == "0": count += 1 if b[i + 1] == "0": count += 1 if l + count >= 3: ans += 1 if l + count == 3: l = 0...
3
463
B
Caisa and Pylons
PROGRAMMING
1,100
[ "brute force", "implementation", "math" ]
null
null
Caisa solved the problem with the sugar and now he is on the way back to home. Caisa is playing a mobile game during his path. There are (*n*<=+<=1) pylons numbered from 0 to *n* in this game. The pylon with number 0 has zero height, the pylon with number *i* (*i*<=&gt;<=0) has height *h**i*. The goal of the game is ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105). The next line contains *n* integers *h*1, *h*2,<=..., *h**n* (1<=<=≤<=<=*h**i*<=<=≤<=<=105) representing the heights of the pylons.
Print a single number representing the minimum number of dollars paid by Caisa.
[ "5\n3 4 3 2 4\n", "3\n4 4 4\n" ]
[ "4\n", "4\n" ]
In the first sample he can pay 4 dollars and increase the height of pylon with number 0 by 4 units. Then he can safely pass to the last pylon.
1,000
[ { "input": "5\n3 4 3 2 4", "output": "4" }, { "input": "3\n4 4 4", "output": "4" }, { "input": "99\n1401 2019 1748 3785 3236 3177 3443 3772 2138 1049 353 908 310 2388 1322 88 2160 2783 435 2248 1471 706 2468 2319 3156 3506 2794 1999 1983 2519 2597 3735 537 344 3519 3772 3872 2961 3895 20...
1,696,763,448
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n = int(input()) heights = list(map(int, input().split())) dollars_paid = 0 # Total dollars paid energy = 0 # Current energy for i in range(n): energy += heights[i] - heights[i + 1] # Calculate required energy if energy < 0: dollars_paid += abs(energy) # Pay dollars to increase pylo...
Title: Caisa and Pylons Time Limit: None seconds Memory Limit: None megabytes Problem Description: Caisa solved the problem with the sugar and now he is on the way back to home. Caisa is playing a mobile game during his path. There are (*n*<=+<=1) pylons numbered from 0 to *n* in this game. The pylon with number 0...
```python n = int(input()) heights = list(map(int, input().split())) dollars_paid = 0 # Total dollars paid energy = 0 # Current energy for i in range(n): energy += heights[i] - heights[i + 1] # Calculate required energy if energy < 0: dollars_paid += abs(energy) # Pay dollars to inc...
-1
520
A
Pangram
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices. You are given a string consisting of lowercase and uppercase Latin letters. Check whether thi...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of characters in the string. The second line contains the string. The string consists only of uppercase and lowercase Latin letters.
Output "YES", if the string is a pangram and "NO" otherwise.
[ "12\ntoosmallword\n", "35\nTheQuickBrownFoxJumpsOverTheLazyDog\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "12\ntoosmallword", "output": "NO" }, { "input": "35\nTheQuickBrownFoxJumpsOverTheLazyDog", "output": "YES" }, { "input": "1\na", "output": "NO" }, { "input": "26\nqwertyuiopasdfghjklzxcvbnm", "output": "YES" }, { "input": "26\nABCDEFGHIJKLMNOPQRSTUVWXY...
1,694,968,488
2,147,483,647
PyPy 3-64
OK
TESTS
59
62
0
n = int(input()) s = input().lower() a = 'abcdefghijklmnopqrstuvwxyz' col = 0 if n < 26: print('NO') else: for i in range(n): if s[i] in a: col += 1 a = a.replace(s[i], '') if col >= 26: print('YES') else: print('NO')
Title: Pangram Time Limit: None seconds Memory Limit: None megabytes Problem Description: A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices. ...
```python n = int(input()) s = input().lower() a = 'abcdefghijklmnopqrstuvwxyz' col = 0 if n < 26: print('NO') else: for i in range(n): if s[i] in a: col += 1 a = a.replace(s[i], '') if col >= 26: print('YES') else: print('NO') ```
3
56
A
Bar
PROGRAMMING
1,000
[ "implementation" ]
A. Bar
2
256
According to Berland laws it is only allowed to sell alcohol to people not younger than 18 years. Vasya's job is to monitor the law's enforcement. Tonight he entered a bar and saw *n* people sitting there. For every one of them Vasya happened to determine either the age or the drink the person is having. Vasya can chec...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) which is the number of the bar's clients. Then follow *n* lines, each describing one visitor. A line either contains his age (an integer from 0 to 1000) or his drink (a string of capital Latin letters from 1 to 100 in length). It is guaranteed that the input da...
Print a single number which is the number of people Vasya should check to guarantee the law enforcement.
[ "5\n18\nVODKA\nCOKE\n19\n17\n" ]
[ "2\n" ]
In the sample test the second and fifth clients should be checked.
500
[ { "input": "5\n18\nVODKA\nCOKE\n19\n17", "output": "2" }, { "input": "2\n2\nGIN", "output": "2" }, { "input": "3\nWHISKEY\n3\nGIN", "output": "3" }, { "input": "4\n813\nIORBQITQXMPTFAEMEQDQIKFGKGOTNKTOSZCBRPXJLUKVLVHJYNRUJXK\nRUM\nRHVRWGODYWWTYZFLFYKCVUFFRTQDINKNWPKFHZBFWBHWI...
1,617,805,849
2,147,483,647
Python 3
OK
TESTS
28
154
0
n = int(input()) alchoholic = ['ABSINTH', 'BEER', 'BRANDY', 'CHAMPAGNE', 'GIN', 'RUM', 'SAKE', 'TEQUILA', 'VODKA', 'WHISKEY', 'WINE'] ans = 0 for i in range(n): x = input() if x in alchoholic: ans += 1 elif x.isnumeric(): if int(x) < 18: ans += 1 print(ans)
Title: Bar Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: According to Berland laws it is only allowed to sell alcohol to people not younger than 18 years. Vasya's job is to monitor the law's enforcement. Tonight he entered a bar and saw *n* people sitting there. For every one of them Vasya h...
```python n = int(input()) alchoholic = ['ABSINTH', 'BEER', 'BRANDY', 'CHAMPAGNE', 'GIN', 'RUM', 'SAKE', 'TEQUILA', 'VODKA', 'WHISKEY', 'WINE'] ans = 0 for i in range(n): x = input() if x in alchoholic: ans += 1 elif x.isnumeric(): if int(x) < 18: ans += 1 print(ans) ``...
3.9615
255
A
Greg's Workout
PROGRAMMING
800
[ "implementation" ]
null
null
Greg is a beginner bodybuilder. Today the gym coach gave him the training plan. All it had was *n* integers *a*1,<=*a*2,<=...,<=*a**n*. These numbers mean that Greg needs to do exactly *n* exercises today. Besides, Greg should repeat the *i*-th in order exercise *a**i* times. Greg now only does three types of exercise...
The first line contains integer *n* (1<=≤<=*n*<=≤<=20). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=25) — the number of times Greg repeats the exercises.
Print word "chest" (without the quotes), if the chest gets the most exercise, "biceps" (without the quotes), if the biceps gets the most exercise and print "back" (without the quotes) if the back gets the most exercise. It is guaranteed that the input is such that the answer to the problem is unambiguous.
[ "2\n2 8\n", "3\n5 1 10\n", "7\n3 3 2 7 9 6 8\n" ]
[ "biceps\n", "back\n", "chest\n" ]
In the first sample Greg does 2 chest, 8 biceps and zero back exercises, so the biceps gets the most exercises. In the second sample Greg does 5 chest, 1 biceps and 10 back exercises, so the back gets the most exercises. In the third sample Greg does 18 chest, 12 biceps and 8 back exercises, so the chest gets the mos...
500
[ { "input": "2\n2 8", "output": "biceps" }, { "input": "3\n5 1 10", "output": "back" }, { "input": "7\n3 3 2 7 9 6 8", "output": "chest" }, { "input": "4\n5 6 6 2", "output": "chest" }, { "input": "5\n8 2 2 6 3", "output": "chest" }, { "input": "6\n8 7 ...
1,649,955,369
2,147,483,647
Python 3
OK
TESTS
61
92
0
n = int(input()) reps = list(map(int,input().split())) chest = [] biceps = [] back = [] for i in range(n): if i % 3 == 0: chest.append(reps[i]) elif i % 3 == 1: biceps.append(reps[i]) else: back.append(reps[i]) if sum(chest) > sum(biceps) and sum(chest) > sum(back): ...
Title: Greg's Workout Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greg is a beginner bodybuilder. Today the gym coach gave him the training plan. All it had was *n* integers *a*1,<=*a*2,<=...,<=*a**n*. These numbers mean that Greg needs to do exactly *n* exercises today. Besides, Greg ...
```python n = int(input()) reps = list(map(int,input().split())) chest = [] biceps = [] back = [] for i in range(n): if i % 3 == 0: chest.append(reps[i]) elif i % 3 == 1: biceps.append(reps[i]) else: back.append(reps[i]) if sum(chest) > sum(biceps) and sum(chest) > sum(b...
3
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,692,279,630
2,147,483,647
PyPy 3-64
OK
TESTS
63
77
13,209,600
n=int(input()) nums=list(map(int,input().split())) officers,crime=0,0 for i in nums: if i==-1: if officers>0: officers=officers-1 else: crime=crime+1 else: officers=officers+i print(crime)
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()) nums=list(map(int,input().split())) officers,crime=0,0 for i in nums: if i==-1: if officers>0: officers=officers-1 else: crime=crime+1 else: officers=officers+i print(crime) ```
3
1,011
A
Stages
PROGRAMMING
900
[ "greedy", "implementation", "sortings" ]
null
null
Natasha is going to fly to Mars. She needs to build a rocket, which consists of several stages in some order. Each of the stages is defined by a lowercase Latin letter. This way, the rocket can be described by the string — concatenation of letters, which correspond to the stages. There are $n$ stages available. The ro...
The first line of input contains two integers — $n$ and $k$ ($1 \le k \le n \le 50$) – the number of available stages and the number of stages to use in the rocket. The second line contains string $s$, which consists of exactly $n$ lowercase Latin letters. Each letter defines a new stage, which can be used to build th...
Print a single integer — the minimal total weight of the rocket or -1, if it is impossible to build the rocket at all.
[ "5 3\nxyabd\n", "7 4\nproblem\n", "2 2\nab\n", "12 1\nabaabbaaabbb\n" ]
[ "29", "34", "-1", "1" ]
In the first example, the following rockets satisfy the condition: - "adx" (weight is $1+4+24=29$);- "ady" (weight is $1+4+25=30$);- "bdx" (weight is $2+4+24=30$);- "bdy" (weight is $2+4+25=31$). Rocket "adx" has the minimal weight, so the answer is $29$. In the second example, target rocket is "belo". Its weight ...
500
[ { "input": "5 3\nxyabd", "output": "29" }, { "input": "7 4\nproblem", "output": "34" }, { "input": "2 2\nab", "output": "-1" }, { "input": "12 1\nabaabbaaabbb", "output": "1" }, { "input": "50 13\nqwertyuiopasdfghjklzxcvbnmaaaaaaaaaaaaaaaaaaaaaaaa", "output": ...
1,582,855,410
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
93
307,200
params = input().split() min = int(params[1]) letters = list(input()) num = [] w = [] for x in range(letters.__len__()): #print(ord(letters[x])) num.append(ord(letters[x])-96) num.sort() y=-1; w.append(num[0]) x=1; while w.__len__() < min: if num[x] - 1 > w[w.__len__() -1]: w.append(num[x]) ...
Title: Stages Time Limit: None seconds Memory Limit: None megabytes Problem Description: Natasha is going to fly to Mars. She needs to build a rocket, which consists of several stages in some order. Each of the stages is defined by a lowercase Latin letter. This way, the rocket can be described by the string — conca...
```python params = input().split() min = int(params[1]) letters = list(input()) num = [] w = [] for x in range(letters.__len__()): #print(ord(letters[x])) num.append(ord(letters[x])-96) num.sort() y=-1; w.append(num[0]) x=1; while w.__len__() < min: if num[x] - 1 > w[w.__len__() -1]: w.append...
-1
34
C
Page Numbers
PROGRAMMING
1,300
[ "expression parsing", "implementation", "sortings", "strings" ]
C. Page Numbers
2
256
«Bersoft» company is working on a new version of its most popular text editor — Bord 2010. Bord, like many other text editors, should be able to print out multipage documents. A user keys a sequence of the document page numbers that he wants to print out (separates them with a comma, without spaces). Your task is to w...
The only line contains the sequence, keyed by the user. The sequence contains at least one and at most 100 positive integer numbers. It's guaranteed, that this sequence consists of positive integer numbers, not exceeding 1000, separated with a comma, doesn't contain any other characters, apart from digits and commas, c...
Output the sequence in the required format.
[ "1,2,3,1,1,2,6,6,2\n", "3,2,1\n", "30,20,10\n" ]
[ "1-3,6\n", "1-3\n", "10,20,30\n" ]
none
1,500
[ { "input": "1,2,3,1,1,2,6,6,2", "output": "1-3,6" }, { "input": "3,2,1", "output": "1-3" }, { "input": "30,20,10", "output": "10,20,30" }, { "input": "826,747,849,687,437", "output": "437,687,747,826,849" }, { "input": "999,999,993,969,999", "output": "969,993...
1,646,240,156
2,147,483,647
Python 3
OK
TESTS
26
92
0
a = sorted(list(set(map(int,input().split(','))))) ans,s = [],[] a.append(int(1e+80)) for i in range(len(a)-1): if a[i] == a[i+1]-1: s += [a[i]] else: if s == []: ans += [a[i]] else: s += [a[i]] ans += [s] s = [] out = []...
Title: Page Numbers Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: «Bersoft» company is working on a new version of its most popular text editor — Bord 2010. Bord, like many other text editors, should be able to print out multipage documents. A user keys a sequence of the document page number...
```python a = sorted(list(set(map(int,input().split(','))))) ans,s = [],[] a.append(int(1e+80)) for i in range(len(a)-1): if a[i] == a[i+1]-1: s += [a[i]] else: if s == []: ans += [a[i]] else: s += [a[i]] ans += [s] s = [] ...
3.977
48
A
Rock-paper-scissors
PROGRAMMING
900
[ "implementation", "schedules" ]
A. Rock-paper-scissors
2
256
Uncle Fyodor, Matroskin the Cat and Sharic the Dog live their simple but happy lives in Prostokvashino. Sometimes they receive parcels from Uncle Fyodor’s parents and sometimes from anonymous benefactors, in which case it is hard to determine to which one of them the package has been sent. A photographic rifle is obvio...
The first input line contains the name of the gesture that Uncle Fyodor showed, the second line shows which gesture Matroskin showed and the third line shows Sharic’s gesture.
Print "F" (without quotes) if Uncle Fyodor wins. Print "M" if Matroskin wins and "S" if Sharic wins. If it is impossible to find the winner, print "?".
[ "rock\nrock\nrock\n", "paper\nrock\nrock\n", "scissors\nrock\nrock\n", "scissors\npaper\nrock\n" ]
[ "?\n", "F\n", "?\n", "?\n" ]
none
0
[ { "input": "rock\nrock\nrock", "output": "?" }, { "input": "paper\nrock\nrock", "output": "F" }, { "input": "scissors\nrock\nrock", "output": "?" }, { "input": "scissors\npaper\nrock", "output": "?" }, { "input": "paper\npaper\nrock", "output": "?" }, { ...
1,658,496,864
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
l=[input(),input(),input()] z=['F','M','S'] k=['scissors','paper','rock'] s=[] f=0 F=0 for i in l: if i in k: s.append(k.index(i)) print(s) for i in s: if s.count(i)==2: f=1 L=k[i] lo=i for j in s: if s.count(j)==1: W=k[j] ...
Title: Rock-paper-scissors Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Uncle Fyodor, Matroskin the Cat and Sharic the Dog live their simple but happy lives in Prostokvashino. Sometimes they receive parcels from Uncle Fyodor’s parents and sometimes from anonymous benefactors, in which case ...
```python l=[input(),input(),input()] z=['F','M','S'] k=['scissors','paper','rock'] s=[] f=0 F=0 for i in l: if i in k: s.append(k.index(i)) print(s) for i in s: if s.count(i)==2: f=1 L=k[i] lo=i for j in s: if s.count(j)==1: W...
0
534
C
Polycarpus' Dice
PROGRAMMING
1,600
[ "math" ]
null
null
Polycarp has *n* dice *d*1,<=*d*2,<=...,<=*d**n*. The *i*-th dice shows numbers from 1 to *d**i*. Polycarp rolled all the dice and the sum of numbers they showed is *A*. Agrippina didn't see which dice showed what number, she knows only the sum *A* and the values *d*1,<=*d*2,<=...,<=*d**n*. However, she finds it enough...
The first line contains two integers *n*,<=*A* (1<=≤<=*n*<=≤<=2·105,<=*n*<=≤<=*A*<=≤<=*s*) — the number of dice and the sum of shown values where *s*<==<=*d*1<=+<=*d*2<=+<=...<=+<=*d**n*. The second line contains *n* integers *d*1,<=*d*2,<=...,<=*d**n* (1<=≤<=*d**i*<=≤<=106), where *d**i* is the maximum value that the...
Print *n* integers *b*1,<=*b*2,<=...,<=*b**n*, where *b**i* is the number of values for which it is guaranteed that the *i*-th dice couldn't show them.
[ "2 8\n4 4\n", "1 3\n5\n", "2 3\n2 3\n" ]
[ "3 3 ", "4 ", "0 1 " ]
In the first sample from the statement *A* equal to 8 could be obtained in the only case when both the first and the second dice show 4. Correspondingly, both dice couldn't show values 1, 2 or 3. In the second sample from the statement *A* equal to 3 could be obtained when the single dice shows 3. Correspondingly, it ...
1,500
[ { "input": "2 8\n4 4", "output": "3 3 " }, { "input": "1 3\n5", "output": "4 " }, { "input": "2 3\n2 3", "output": "0 1 " }, { "input": "1 1\n3", "output": "2 " }, { "input": "1 2\n3", "output": "2 " }, { "input": "2 2\n2 3", "output": "1 2 " }, ...
1,428,864,757
2,147,483,647
Python 3
OK
TESTS
99
452
19,148,800
n, a = [int(next_token) for next_token in input().split()] d = [int(next_token) for next_token in input().split()] s = sum(d) ans = [] for i in range(n): k_min = max(a - s + d[i], 1) k_max = min(a - n + 1, d[i]) ans.append(k_min - 1 + d[i] - k_max) print(' '.join(map(str, ans)))
Title: Polycarpus' Dice Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp has *n* dice *d*1,<=*d*2,<=...,<=*d**n*. The *i*-th dice shows numbers from 1 to *d**i*. Polycarp rolled all the dice and the sum of numbers they showed is *A*. Agrippina didn't see which dice showed what numb...
```python n, a = [int(next_token) for next_token in input().split()] d = [int(next_token) for next_token in input().split()] s = sum(d) ans = [] for i in range(n): k_min = max(a - s + d[i], 1) k_max = min(a - n + 1, d[i]) ans.append(k_min - 1 + d[i] - k_max) print(' '.join(map(str, ans))) ```
3
638
C
Road Improvement
PROGRAMMING
1,800
[ "*special", "dfs and similar", "graphs", "greedy", "trees" ]
null
null
In Berland there are *n* cities and *n*<=-<=1 bidirectional roads. Each road connects some pair of cities, from any city you can get to any other one using only the given roads. In each city there is exactly one repair brigade. To repair some road, you need two teams based in the cities connected by the road to work s...
The first line of the input contains a positive integer *n* (2<=≤<=*n*<=≤<=200<=000) — the number of cities in Berland. Each of the next *n*<=-<=1 lines contains two numbers *u**i*, *v**i*, meaning that the *i*-th road connects city *u**i* and city *v**i* (1<=≤<=*u**i*,<=*v**i*<=≤<=*n*, *u**i*<=≠<=*v**i*).
First print number *k* — the minimum number of days needed to repair all the roads in Berland. In next *k* lines print the description of the roads that should be repaired on each of the *k* days. On the *i*-th line print first number *d**i* — the number of roads that should be repaired on the *i*-th day, and then *d*...
[ "4\n1 2\n3 4\n3 2\n", "6\n3 4\n5 4\n3 2\n1 3\n4 6\n" ]
[ "2\n2 2 1\n1 3\n", "3\n1 1 \n2 2 3 \n2 4 5 \n" ]
In the first sample you can repair all the roads in two days, for example, if you repair roads 1 and 2 on the first day and road 3 — on the second day.
1,500
[ { "input": "4\n1 2\n3 4\n3 2", "output": "2\n2 1 2 \n1 3 " }, { "input": "6\n3 4\n5 4\n3 2\n1 3\n4 6", "output": "3\n1 1 \n2 2 3 \n2 4 5 " }, { "input": "8\n1 3\n1 6\n3 4\n6 2\n5 6\n6 7\n7 8", "output": "4\n3 2 3 7 \n2 1 4 \n1 5 \n1 6 " }, { "input": "5\n1 2\n1 3\n1 4\n1 5", ...
1,458,501,213
26,013
PyPy 3
TIME_LIMIT_EXCEEDED
PRETESTS
11
2,000
67,686,400
n = int(input()) res = [0] roads = [] for i in range(n-1): roads.append(input().split()+[0]) fl = True while(fl): fl = False curN = [] croads = [] for i in range(len(roads)): if roads[i][2] == 0 and roads[i][0] not in curN and roads[i][1] not in curN: fl = True ...
Title: Road Improvement Time Limit: None seconds Memory Limit: None megabytes Problem Description: In Berland there are *n* cities and *n*<=-<=1 bidirectional roads. Each road connects some pair of cities, from any city you can get to any other one using only the given roads. In each city there is exactly one repai...
```python n = int(input()) res = [0] roads = [] for i in range(n-1): roads.append(input().split()+[0]) fl = True while(fl): fl = False curN = [] croads = [] for i in range(len(roads)): if roads[i][2] == 0 and roads[i][0] not in curN and roads[i][1] not in curN: fl = T...
0
820
A
Mister B and Book Reading
PROGRAMMING
900
[ "implementation" ]
null
null
Mister B once received a gift: it was a book about aliens, which he started read immediately. This book had *c* pages. At first day Mister B read *v*0 pages, but after that he started to speed up. Every day, starting from the second, he read *a* pages more than on the previous day (at first day he read *v*0 pages, at ...
First and only line contains five space-separated integers: *c*, *v*0, *v*1, *a* and *l* (1<=≤<=*c*<=≤<=1000, 0<=≤<=*l*<=&lt;<=*v*0<=≤<=*v*1<=≤<=1000, 0<=≤<=*a*<=≤<=1000) — the length of the book in pages, the initial reading speed, the maximum reading speed, the acceleration in reading speed and the number of pages fo...
Print one integer — the number of days Mister B needed to finish the book.
[ "5 5 10 5 4\n", "12 4 12 4 1\n", "15 1 100 0 0\n" ]
[ "1\n", "3\n", "15\n" ]
In the first sample test the book contains 5 pages, so Mister B read it right at the first day. In the second sample test at first day Mister B read pages number 1 - 4, at second day — 4 - 11, at third day — 11 - 12 and finished the book. In third sample test every day Mister B read 1 page of the book, so he finished...
500
[ { "input": "5 5 10 5 4", "output": "1" }, { "input": "12 4 12 4 1", "output": "3" }, { "input": "15 1 100 0 0", "output": "15" }, { "input": "1 1 1 0 0", "output": "1" }, { "input": "1000 999 1000 1000 998", "output": "2" }, { "input": "1000 2 2 5 1", ...
1,498,637,092
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
44
62
5,529,600
c,v0,v1,a,l=map(int,input().split()) r=l ans=0 v0-=a while r<c: v0=min(v1,v0+a) r=min(r-l+v0,c) ans+=1 print (ans)
Title: Mister B and Book Reading Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mister B once received a gift: it was a book about aliens, which he started read immediately. This book had *c* pages. At first day Mister B read *v*0 pages, but after that he started to speed up. Every day, ...
```python c,v0,v1,a,l=map(int,input().split()) r=l ans=0 v0-=a while r<c: v0=min(v1,v0+a) r=min(r-l+v0,c) ans+=1 print (ans) ```
0
411
A
Password Check
PROGRAMMING
800
[ "*special", "implementation" ]
null
null
You have probably registered on Internet sites many times. And each time you should enter your invented password. Usually the registration form automatically checks the password's crypt resistance. If the user's password isn't complex enough, a message is displayed. Today your task is to implement such an automatic che...
The first line contains a non-empty sequence of characters (at most 100 characters). Each character is either a large English letter, or a small English letter, or a digit, or one of characters: "!", "?", ".", ",", "_".
If the password is complex enough, print message "Correct" (without the quotes), otherwise print message "Too weak" (without the quotes).
[ "abacaba\n", "X12345\n", "CONTEST_is_STARTED!!11\n" ]
[ "Too weak\n", "Too weak\n", "Correct\n" ]
none
0
[ { "input": "abacaba", "output": "Too weak" }, { "input": "X12345", "output": "Too weak" }, { "input": "CONTEST_is_STARTED!!11", "output": "Correct" }, { "input": "1zA__", "output": "Correct" }, { "input": "1zA_", "output": "Too weak" }, { "input": "zA_...
1,614,086,896
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
92
0
pawd = str(input()) if (len(pawd) >= 5) and (pawd.islower() == True) and (pawd.isupper() == True) and (pawd.isdigit() == True): print("Correct") else: print("Too weak")
Title: Password Check Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have probably registered on Internet sites many times. And each time you should enter your invented password. Usually the registration form automatically checks the password's crypt resistance. If the user's password...
```python pawd = str(input()) if (len(pawd) >= 5) and (pawd.islower() == True) and (pawd.isupper() == True) and (pawd.isdigit() == True): print("Correct") else: print("Too weak") ```
0
22
A
Second Order Statistics
PROGRAMMING
800
[ "brute force" ]
A. Second Order Statistics
2
256
Once Bob needed to find the second order statistics of a sequence of integer numbers. Lets choose each number from the sequence exactly once and sort them. The value on the second position is the second order statistics of the given sequence. In other words it is the smallest element strictly greater than the minimum. ...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=100) — amount of numbers in the sequence. The second line contains *n* space-separated integer numbers — elements of the sequence. These numbers don't exceed 100 in absolute value.
If the given sequence has the second order statistics, output this order statistics, otherwise output NO.
[ "4\n1 2 2 -4\n", "5\n1 2 3 1 1\n" ]
[ "1\n", "2\n" ]
none
0
[ { "input": "4\n1 2 2 -4", "output": "1" }, { "input": "5\n1 2 3 1 1", "output": "2" }, { "input": "1\n28", "output": "NO" }, { "input": "2\n-28 12", "output": "12" }, { "input": "3\n-83 40 -80", "output": "-80" }, { "input": "8\n93 77 -92 26 21 -48 53 ...
1,506,990,752
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
0
x = int(input()) integerArray = [] stringArray = input().split(' ') for i in range(0, x): integerArray.append(int(stringArray[i])) lowest = 101 secondlowest = 102 for i in range(0, len(integerArray)): if (integerArray[i] < lowest): secondlowest = lowest lowest = integerArray[i] elif (intege...
Title: Second Order Statistics Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once Bob needed to find the second order statistics of a sequence of integer numbers. Lets choose each number from the sequence exactly once and sort them. The value on the second position is the second order statis...
```python x = int(input()) integerArray = [] stringArray = input().split(' ') for i in range(0, x): integerArray.append(int(stringArray[i])) lowest = 101 secondlowest = 102 for i in range(0, len(integerArray)): if (integerArray[i] < lowest): secondlowest = lowest lowest = integerArray[i] el...
0
744
C
Hongcow Buys a Deck of Cards
PROGRAMMING
2,400
[ "bitmasks", "brute force", "dp" ]
null
null
One day, Hongcow goes to the store and sees a brand new deck of *n* special cards. Each individual card is either red or blue. He decides he wants to buy them immediately. To do this, he needs to play a game with the owner of the store. This game takes some number of turns to complete. On a turn, Hongcow may do one of...
The first line of input will contain a single integer *n* (1<=≤<=*n*<=≤<=16). The next *n* lines of input will contain three tokens *c**i*, *r**i* and *b**i*. *c**i* will be 'R' or 'B', denoting the color of the card as red or blue. *r**i* will be an integer denoting the amount of red resources required to obtain the ...
Output a single integer, denoting the minimum number of turns needed to acquire all the cards.
[ "3\nR 0 1\nB 1 0\nR 1 1\n", "3\nR 3 0\nR 2 0\nR 1 0\n" ]
[ "4\n", "6\n" ]
For the first sample, Hongcow's four moves are as follows: 1. Collect tokens 1. Buy card 1 1. Buy card 2 1. Buy card 3 For the second sample, one optimal strategy is as follows: 1. Collect tokens 1. Collect tokens 1. Buy card 2 1. Collect tokens 1. Buy card 3 1. Buy card 1
1,750
[ { "input": "3\nR 0 1\nB 1 0\nR 1 1", "output": "4" }, { "input": "3\nR 3 0\nR 2 0\nR 1 0", "output": "6" }, { "input": "8\nB 0 1\nR 2 3\nB 2 1\nR 4 2\nB 1 3\nB 1 10\nB 3 4\nR 3 4", "output": "17" }, { "input": "16\nR 10000000 10000000\nR 10000000 10000000\nR 10000000 10000000...
1,693,061,267
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
61
0
print("_RANDOM_GUESS_1693061267.434975")# 1693061267.4349902
Title: Hongcow Buys a Deck of Cards Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day, Hongcow goes to the store and sees a brand new deck of *n* special cards. Each individual card is either red or blue. He decides he wants to buy them immediately. To do this, he needs to play a gam...
```python print("_RANDOM_GUESS_1693061267.434975")# 1693061267.4349902 ```
0
835
C
Star sky
PROGRAMMING
1,600
[ "dp", "implementation" ]
null
null
The Cartesian coordinate system is set in the sky. There you can see *n* stars, the *i*-th has coordinates (*x**i*, *y**i*), a maximum brightness *c*, equal for all stars, and an initial brightness *s**i* (0<=≤<=*s**i*<=≤<=*c*). Over time the stars twinkle. At moment 0 the *i*-th star has brightness *s**i*. Let at mom...
The first line contains three integers *n*, *q*, *c* (1<=≤<=*n*,<=*q*<=≤<=105, 1<=≤<=*c*<=≤<=10) — the number of the stars, the number of the views and the maximum brightness of the stars. The next *n* lines contain the stars description. The *i*-th from these lines contains three integers *x**i*, *y**i*, *s**i* (1<=≤...
For each view print the total brightness of the viewed stars.
[ "2 3 3\n1 1 1\n3 2 0\n2 1 1 2 2\n0 2 1 4 5\n5 1 1 5 5\n", "3 4 5\n1 1 2\n2 3 0\n3 3 1\n0 1 1 100 100\n1 2 2 4 4\n2 2 1 4 7\n1 50 50 51 51\n" ]
[ "3\n0\n3\n", "3\n3\n5\n0\n" ]
Let's consider the first example. At the first view, you can see only the first star. At moment 2 its brightness is 3, so the answer is 3. At the second view, you can see only the second star. At moment 0 its brightness is 0, so the answer is 0. At the third view, you can see both stars. At moment 5 brightness of th...
1,250
[ { "input": "2 3 3\n1 1 1\n3 2 0\n2 1 1 2 2\n0 2 1 4 5\n5 1 1 5 5", "output": "3\n0\n3" }, { "input": "3 4 5\n1 1 2\n2 3 0\n3 3 1\n0 1 1 100 100\n1 2 2 4 4\n2 2 1 4 7\n1 50 50 51 51", "output": "3\n3\n5\n0" } ]
1,583,007,490
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
2,000
2,457,600
import random, math from copy import deepcopy as dc MAXX = 101 MAXY = 101 # Function to take input def input_test(): n, q, c = map(int, input().strip().split(" ")) st = [[[0 for i in range(MAXX)] for j in range(MAXY)] for k in range(c+1)] # Taking Input and marking the values in the # Frequency array and the ...
Title: Star sky Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Cartesian coordinate system is set in the sky. There you can see *n* stars, the *i*-th has coordinates (*x**i*, *y**i*), a maximum brightness *c*, equal for all stars, and an initial brightness *s**i* (0<=≤<=*s**i*<=≤<=*c*...
```python import random, math from copy import deepcopy as dc MAXX = 101 MAXY = 101 # Function to take input def input_test(): n, q, c = map(int, input().strip().split(" ")) st = [[[0 for i in range(MAXX)] for j in range(MAXY)] for k in range(c+1)] # Taking Input and marking the values in the # Frequency arra...
0
248
A
Cupboards
PROGRAMMING
800
[ "implementation" ]
null
null
One foggy Stockholm morning, Karlsson decided to snack on some jam in his friend Lillebror Svantenson's house. Fortunately for Karlsson, there wasn't anybody in his friend's house. Karlsson was not going to be hungry any longer, so he decided to get some food in the house. Karlsson's gaze immediately fell on *n* woode...
The first input line contains a single integer *n* — the number of cupboards in the kitchen (2<=≤<=*n*<=≤<=104). Then follow *n* lines, each containing two integers *l**i* and *r**i* (0<=≤<=*l**i*,<=*r**i*<=≤<=1). Number *l**i* equals one, if the left door of the *i*-th cupboard is opened, otherwise number *l**i* equal...
In the only output line print a single integer *t* — the minimum number of seconds Karlsson needs to change the doors of all cupboards to the position he needs.
[ "5\n0 1\n1 0\n0 1\n1 1\n0 1\n" ]
[ "3\n" ]
none
500
[ { "input": "5\n0 1\n1 0\n0 1\n1 1\n0 1", "output": "3" }, { "input": "2\n0 0\n0 0", "output": "0" }, { "input": "3\n0 1\n1 1\n1 1", "output": "1" }, { "input": "8\n0 1\n1 0\n0 1\n1 1\n0 1\n1 0\n0 1\n1 0", "output": "7" }, { "input": "8\n1 0\n1 0\n1 0\n0 1\n0 1\n1 ...
1,593,421,808
2,147,483,647
Python 3
OK
TESTS
57
248
6,758,400
n=int(input()) a,b,c,d=0,0,0,0 for i in range( n): e,f=map(int,input().split()) if e==0: a+=1 else: b+=1 if f==0: c+=1 else: d+=1 print(min(a,b)+min(c,d))
Title: Cupboards Time Limit: None seconds Memory Limit: None megabytes Problem Description: One foggy Stockholm morning, Karlsson decided to snack on some jam in his friend Lillebror Svantenson's house. Fortunately for Karlsson, there wasn't anybody in his friend's house. Karlsson was not going to be hungry any long...
```python n=int(input()) a,b,c,d=0,0,0,0 for i in range( n): e,f=map(int,input().split()) if e==0: a+=1 else: b+=1 if f==0: c+=1 else: d+=1 print(min(a,b)+min(c,d)) ```
3
1,005
B
Delete from the Left
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
You are given two strings $s$ and $t$. In a single move, you can choose any of two strings and delete the first (that is, the leftmost) character. After a move, the length of the string decreases by $1$. You can't choose a string if it is empty. For example: - by applying a move to the string "where", the result is ...
The first line of the input contains $s$. In the second line of the input contains $t$. Both strings consist only of lowercase Latin letters. The number of letters in each string is between 1 and $2\cdot10^5$, inclusive.
Output the fewest number of moves required. It is possible that, in the end, both strings will be equal to the empty string, and so, are equal to each other. In this case, the answer is obviously the sum of the lengths of the given strings.
[ "test\nwest\n", "codeforces\nyes\n", "test\nyes\n", "b\nab\n" ]
[ "2\n", "9\n", "7\n", "1\n" ]
In the first example, you should apply the move once to the first string and apply the move once to the second string. As a result, both strings will be equal to "est". In the second example, the move should be applied to the string "codeforces" $8$ times. As a result, the string becomes "codeforces" $\to$ "es". The m...
0
[ { "input": "test\nwest", "output": "2" }, { "input": "codeforces\nyes", "output": "9" }, { "input": "test\nyes", "output": "7" }, { "input": "b\nab", "output": "1" }, { "input": "z\nz", "output": "0" }, { "input": "abacabadabacaba\nabacabadacaba", ...
1,676,219,729
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
12
77
2,867,200
import sys input = lambda: sys.stdin.readline().rstrip() # ----------------------- # s = input()[::-1] t = input()[::-1] ans = len(s) + len(t) l = 0 r = 0 while l < len(s) and r < len(s): if s[l] == t[r]: l += 1 r += 1 ans -= 2 else: break print(ans)
Title: Delete from the Left Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two strings $s$ and $t$. In a single move, you can choose any of two strings and delete the first (that is, the leftmost) character. After a move, the length of the string decreases by $1$. You can't ...
```python import sys input = lambda: sys.stdin.readline().rstrip() # ----------------------- # s = input()[::-1] t = input()[::-1] ans = len(s) + len(t) l = 0 r = 0 while l < len(s) and r < len(s): if s[l] == t[r]: l += 1 r += 1 ans -= 2 else: break print(ans) ```
-1
313
B
Ilya and Queries
PROGRAMMING
1,100
[ "dp", "implementation" ]
null
null
Ilya the Lion wants to help all his friends with passing exams. They need to solve the following problem to pass the IT exam. You've got string *s*<==<=*s*1*s*2... *s**n* (*n* is the length of the string), consisting only of characters "." and "#" and *m* queries. Each query is described by a pair of integers *l**i*,<...
The first line contains string *s* of length *n* (2<=≤<=*n*<=≤<=105). It is guaranteed that the given string only consists of characters "." and "#". The next line contains integer *m* (1<=≤<=*m*<=≤<=105) — the number of queries. Each of the next *m* lines contains the description of the corresponding query. The *i*-t...
Print *m* integers — the answers to the queries in the order in which they are given in the input.
[ "......\n4\n3 4\n2 3\n1 6\n2 6\n", "#..###\n5\n1 3\n5 6\n1 5\n3 6\n3 4\n" ]
[ "1\n1\n5\n4\n", "1\n1\n2\n2\n0\n" ]
none
1,000
[ { "input": "......\n4\n3 4\n2 3\n1 6\n2 6", "output": "1\n1\n5\n4" }, { "input": "#..###\n5\n1 3\n5 6\n1 5\n3 6\n3 4", "output": "1\n1\n2\n2\n0" }, { "input": ".#...#..\n6\n1 5\n2 3\n6 7\n2 4\n2 5\n1 3", "output": "2\n0\n0\n1\n2\n0" }, { "input": "#.#.#..\n5\n3 4\n4 5\n5 7\n5...
1,699,890,684
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
s=input() a=[0,0] for i in range(len(s)-1): a+=a[-1]+(s[i]==s[i+1]) for _ in range(input()): i,j=map(int,input().split()) print(a[j]-a[i])
Title: Ilya and Queries Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ilya the Lion wants to help all his friends with passing exams. They need to solve the following problem to pass the IT exam. You've got string *s*<==<=*s*1*s*2... *s**n* (*n* is the length of the string), consisting ...
```python s=input() a=[0,0] for i in range(len(s)-1): a+=a[-1]+(s[i]==s[i+1]) for _ in range(input()): i,j=map(int,input().split()) print(a[j]-a[i]) ```
-1
374
A
Inna and Pink Pony
PROGRAMMING
2,000
[ "greedy", "implementation" ]
null
null
Dima and Inna are doing so great! At the moment, Inna is sitting on the magic lawn playing with a pink pony. Dima wanted to play too. He brought an *n*<=×<=*m* chessboard, a very tasty candy and two numbers *a* and *b*. Dima put the chessboard in front of Inna and placed the candy in position (*i*,<=*j*) on the board....
The first line of the input contains six integers *n*,<=*m*,<=*i*,<=*j*,<=*a*,<=*b* (1<=≤<=*n*,<=*m*<=≤<=106; 1<=≤<=*i*<=≤<=*n*; 1<=≤<=*j*<=≤<=*m*; 1<=≤<=*a*,<=*b*<=≤<=106). You can assume that the chessboard rows are numbered from 1 to *n* from top to bottom and the columns are numbered from 1 to *m* from left to rig...
In a single line print a single integer — the minimum number of moves needed to get the candy. If Inna and the pony cannot get the candy playing by Dima's rules, print on a single line "Poor Inna and pony!" without the quotes.
[ "5 7 1 3 2 2\n", "5 5 2 3 1 1\n" ]
[ "2\n", "Poor Inna and pony!\n" ]
Note to sample 1: Inna and the pony can move the candy to position (1 + 2, 3 + 2) = (3, 5), from there they can move it to positions (3 - 2, 5 + 2) = (1, 7) and (3 + 2, 5 + 2) = (5, 7). These positions correspond to the corner squares of the chess board. Thus, the answer to the test sample equals two.
500
[ { "input": "5 7 1 3 2 2", "output": "2" }, { "input": "5 5 2 3 1 1", "output": "Poor Inna and pony!" }, { "input": "1 1 1 1 1 1", "output": "0" }, { "input": "23000 15500 100 333 9 1", "output": "15167" }, { "input": "33999 99333 33000 99000 3 9", "output": "3...
1,580,576,782
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
109
307,200
n,m,i,j,a,b = map(int,input().split()) cor = [[1,1],[1,m],[n,1],[n,m]] flag = 0 dis = 1000001 for k in cor: x1 = abs(k[0] - i) y1 = abs(k[1] - j) if((x1 % a != 0) and (y1 % b != 0)): continue x1 = int(x1 / a) y1 = int(y1 / b) if((x1 % 2) != (y1 % 2)): continue el...
Title: Inna and Pink Pony Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dima and Inna are doing so great! At the moment, Inna is sitting on the magic lawn playing with a pink pony. Dima wanted to play too. He brought an *n*<=×<=*m* chessboard, a very tasty candy and two numbers *a* and *...
```python n,m,i,j,a,b = map(int,input().split()) cor = [[1,1],[1,m],[n,1],[n,m]] flag = 0 dis = 1000001 for k in cor: x1 = abs(k[0] - i) y1 = abs(k[1] - j) if((x1 % a != 0) and (y1 % b != 0)): continue x1 = int(x1 / a) y1 = int(y1 / b) if((x1 % 2) != (y1 % 2)): contin...
0
239
A
Two Bags of Potatoes
PROGRAMMING
1,200
[ "greedy", "implementation", "math" ]
null
null
Valera had two bags of potatoes, the first of these bags contains *x* (*x*<=≥<=1) potatoes, and the second — *y* (*y*<=≥<=1) potatoes. Valera — very scattered boy, so the first bag of potatoes (it contains *x* potatoes) Valera lost. Valera remembers that the total amount of potatoes (*x*<=+<=*y*) in the two bags, first...
The first line of input contains three integers *y*, *k*, *n* (1<=≤<=*y*,<=*k*,<=*n*<=≤<=109; <=≤<=105).
Print the list of whitespace-separated integers — all possible values of *x* in ascending order. You should print each possible value of *x* exactly once. If there are no such values of *x* print a single integer -1.
[ "10 1 10\n", "10 6 40\n" ]
[ "-1\n", "2 8 14 20 26 \n" ]
none
500
[ { "input": "10 1 10", "output": "-1" }, { "input": "10 6 40", "output": "2 8 14 20 26 " }, { "input": "10 1 20", "output": "1 2 3 4 5 6 7 8 9 10 " }, { "input": "1 10000 1000000000", "output": "9999 19999 29999 39999 49999 59999 69999 79999 89999 99999 109999 119999 12999...
1,602,961,152
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
216
0
def readInput(): s = input().split() return list(map(int, s)) def solution(y,k,n): lista = [] t = 2 while y+t <= n: if (y+t)%k == 0: lista.append(t) t+=2 else: t+=2 for i in lista: print(str(i), end= " ") a = readInput() ...
Title: Two Bags of Potatoes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera had two bags of potatoes, the first of these bags contains *x* (*x*<=≥<=1) potatoes, and the second — *y* (*y*<=≥<=1) potatoes. Valera — very scattered boy, so the first bag of potatoes (it contains *x* pota...
```python def readInput(): s = input().split() return list(map(int, s)) def solution(y,k,n): lista = [] t = 2 while y+t <= n: if (y+t)%k == 0: lista.append(t) t+=2 else: t+=2 for i in lista: print(str(i), end= " ") a = rea...
0
686
A
Free Ice Cream
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, people start standing in the queue before Kay and Gerda's house even in the night. Each person in the...
The first line contains two space-separated integers *n* and *x* (1<=≤<=*n*<=≤<=1000, 0<=≤<=*x*<=≤<=109). Each of the next *n* lines contains a character '+' or '-', and an integer *d**i*, separated by a space (1<=≤<=*d**i*<=≤<=109). Record "+ *d**i*" in *i*-th line means that a carrier with *d**i* ice cream packs occ...
Print two space-separated integers — number of ice cream packs left after all operations, and number of kids that left the house in distress.
[ "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20\n", "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98\n" ]
[ "22 1\n", "3 2\n" ]
Consider the first sample. 1. Initially Kay and Gerda have 7 packs of ice cream. 1. Carrier brings 5 more, so now they have 12 packs. 1. A kid asks for 10 packs and receives them. There are only 2 packs remaining. 1. Another kid asks for 20 packs. Kay and Gerda do not have them, so the kid goes away distressed. 1....
500
[ { "input": "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20", "output": "22 1" }, { "input": "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98", "output": "3 2" }, { "input": "6 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000", "output": "7000000000 0" }, { ...
1,685,566,079
2,147,483,647
PyPy 3
OK
TESTS
34
109
1,433,600
n, total = map(int, input().split()) ans = 0 for _ in range(n): a, b = input().split() if a == '+': total += int(b) else: if int(b) <= total: total -= int(b) else: ans += 1 print(total, ans)
Title: Free Ice Cream Time Limit: None seconds Memory Limit: None megabytes Problem Description: After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, p...
```python n, total = map(int, input().split()) ans = 0 for _ in range(n): a, b = input().split() if a == '+': total += int(b) else: if int(b) <= total: total -= int(b) else: ans += 1 print(total, ans) ```
3
989
B
A Tide of Riverscape
PROGRAMMING
1,200
[ "constructive algorithms", "strings" ]
null
null
"Time," Mino thinks aloud. "What?" "Time and tide wait for no man," explains Mino. "My name, taken from the river, always reminds me of this." "And what are you recording?" "You see it, tide. Everything has its own period, and I think I've figured out this one," says Mino with confidence. Doubtfully, Kanno peeks a...
The first line contains two space-separated integers $n$ and $p$ ($1 \leq p \leq n \leq 2000$) — the length of the given string and the supposed period, respectively. The second line contains a string $s$ of $n$ characters — Mino's records. $s$ only contains characters '0', '1' and '.', and contains at least one '.' c...
Output one line — if it's possible that $p$ is not a period of the resulting string, output any one of such strings; otherwise output "No" (without quotes, you can print letters in any case (upper or lower)).
[ "10 7\n1.0.1.0.1.\n", "10 6\n1.0.1.1000\n", "10 9\n1........1\n" ]
[ "1000100010\n", "1001101000\n", "No\n" ]
In the first example, $7$ is not a period of the resulting string because the $1$-st and $8$-th characters of it are different. In the second example, $6$ is not a period of the resulting string because the $4$-th and $10$-th characters of it are different. In the third example, $9$ is always a period because the onl...
1,000
[ { "input": "10 7\n1.0.1.0.1.", "output": "1000100010" }, { "input": "10 6\n1.0.1.1000", "output": "1001101000" }, { "input": "10 9\n1........1", "output": "No" }, { "input": "1 1\n.", "output": "No" }, { "input": "5 1\n0...1", "output": "00001" }, { "i...
1,528,729,058
4,958
Python 3
WRONG_ANSWER
PRETESTS
1
77
0
n , p = map(int, input().strip().split()) def conv(ch): if ch == '.': return -1 else: return int(ch) def _str(s): new_str = '' for i in range(len(s)): if s[i] == '.': new_str += '0' else: new_str += s[i] return new_str if n == p: print("No") else: st = input() vec = st[:p] i = 0 for j in ran...
Title: A Tide of Riverscape Time Limit: None seconds Memory Limit: None megabytes Problem Description: "Time," Mino thinks aloud. "What?" "Time and tide wait for no man," explains Mino. "My name, taken from the river, always reminds me of this." "And what are you recording?" "You see it, tide. Everything has its...
```python n , p = map(int, input().strip().split()) def conv(ch): if ch == '.': return -1 else: return int(ch) def _str(s): new_str = '' for i in range(len(s)): if s[i] == '.': new_str += '0' else: new_str += s[i] return new_str if n == p: print("No") else: st = input() vec = st[:p] i = 0 fo...
0