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
602
A
Two Bases
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
After seeing the "ALL YOUR BASE ARE BELONG TO US" meme for the first time, numbers *X* and *Y* realised that they have different bases, which complicated their relations. You're given a number *X* represented in base *b**x* and a number *Y* represented in base *b**y*. Compare those two numbers.
The first line of the input contains two space-separated integers *n* and *b**x* (1<=≤<=*n*<=≤<=10, 2<=≤<=*b**x*<=≤<=40), where *n* is the number of digits in the *b**x*-based representation of *X*. The second line contains *n* space-separated integers *x*1,<=*x*2,<=...,<=*x**n* (0<=≤<=*x**i*<=&lt;<=*b**x*) — the dig...
Output a single character (quotes for clarity): - '&lt;' if *X*<=&lt;<=*Y* - '&gt;' if *X*<=&gt;<=*Y* - '=' if *X*<==<=*Y*
[ "6 2\n1 0 1 1 1 1\n2 10\n4 7\n", "3 3\n1 0 2\n2 5\n2 4\n", "7 16\n15 15 4 0 0 7 10\n7 9\n4 8 0 3 1 5 0\n" ]
[ "=\n", "&lt;\n", "&gt;\n" ]
In the first sample, *X* = 101111<sub class="lower-index">2</sub> = 47<sub class="lower-index">10</sub> = *Y*. In the second sample, *X* = 102<sub class="lower-index">3</sub> = 21<sub class="lower-index">5</sub> and *Y* = 24<sub class="lower-index">5</sub> = 112<sub class="lower-index">3</sub>, thus *X* &lt; *Y*. In ...
500
[ { "input": "6 2\n1 0 1 1 1 1\n2 10\n4 7", "output": "=" }, { "input": "3 3\n1 0 2\n2 5\n2 4", "output": "<" }, { "input": "7 16\n15 15 4 0 0 7 10\n7 9\n4 8 0 3 1 5 0", "output": ">" }, { "input": "2 2\n1 0\n2 3\n1 0", "output": "<" }, { "input": "2 2\n1 0\n1 3\n1"...
1,470,302,550
2,147,483,647
Python 3
OK
TESTS
118
78
819,200
from functools import reduce BX = int( input().split()[1] ) X = [ int(x) for x in input().split() ] X = reduce( lambda a,b: a*BX+b, X ) BY = int( input().split()[1] ) Y = [ int(x) for x in input().split() ] Y = reduce( lambda a,b: a*BY+b, Y ) print( '=<>'[(X<Y)+2*(X>Y)] )
Title: Two Bases Time Limit: None seconds Memory Limit: None megabytes Problem Description: After seeing the "ALL YOUR BASE ARE BELONG TO US" meme for the first time, numbers *X* and *Y* realised that they have different bases, which complicated their relations. You're given a number *X* represented in base *b**x* ...
```python from functools import reduce BX = int( input().split()[1] ) X = [ int(x) for x in input().split() ] X = reduce( lambda a,b: a*BX+b, X ) BY = int( input().split()[1] ) Y = [ int(x) for x in input().split() ] Y = reduce( lambda a,b: a*BY+b, Y ) print( '=<>'[(X<Y)+2*(X>Y)] ) ```
3
114
A
Cifera
PROGRAMMING
1,000
[ "math" ]
null
null
When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousand and "tma tmyschaya" (which literally means "the tma of tmas") used to stand for a million...
The first input line contains integer number *k*, the second line contains integer number *l* (2<=≤<=*k*,<=*l*<=≤<=231<=-<=1).
You should print in the first line of the output "YES", if the number belongs to the set petriciumus cifera and otherwise print "NO". If the number belongs to the set, then print on the seconds line the only number — the importance of number *l*.
[ "5\n25\n", "3\n8\n" ]
[ "YES\n1\n", "NO\n" ]
none
500
[ { "input": "5\n25", "output": "YES\n1" }, { "input": "3\n8", "output": "NO" }, { "input": "123\n123", "output": "YES\n0" }, { "input": "99\n970300", "output": "NO" }, { "input": "1000\n6666666", "output": "NO" }, { "input": "59\n3571", "output": "N...
1,619,545,687
2,147,483,647
PyPy 3
OK
TESTS
64
186
0
k = int(input()) l = int(input()) c = 0 b = k while k < l: k *= b c += 1 if k == l: print('YES') print(c) else: print('NO')
Title: Cifera Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousa...
```python k = int(input()) l = int(input()) c = 0 b = k while k < l: k *= b c += 1 if k == l: print('YES') print(c) else: print('NO') ```
3
847
B
Preparing for Merge Sort
PROGRAMMING
1,600
[ "binary search", "data structures" ]
null
null
Ivan has an array consisting of *n* different integers. He decided to reorder all elements in increasing order. Ivan loves merge sort so he decided to represent his array with one or several increasing sequences which he then plans to merge into one sorted array. Ivan represent his array with increasing sequences with...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=2·105) — the number of elements in Ivan's array. The second line contains a sequence consisting of distinct integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — Ivan's array.
Print representation of the given array in the form of one or more increasing sequences in accordance with the algorithm described above. Each sequence must be printed on a new line.
[ "5\n1 3 2 5 4\n", "4\n4 3 2 1\n", "4\n10 30 50 101\n" ]
[ "1 3 5 \n2 4 \n", "4 \n3 \n2 \n1 \n", "10 30 50 101 \n" ]
none
0
[ { "input": "5\n1 3 2 5 4", "output": "1 3 5 \n2 4 " }, { "input": "4\n4 3 2 1", "output": "4 \n3 \n2 \n1 " }, { "input": "4\n10 30 50 101", "output": "10 30 50 101 " }, { "input": "1\n1", "output": "1 " }, { "input": "1\n200000", "output": "200000 " }, { ...
1,505,755,203
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
13
2,000
5,222,400
n = int(input()) arr= list(map(int,input().split())) arr2 = [] m =arr[0] while len(arr) >len(arr2): m = -50 for i in range(0,len(arr)): if arr[i] in arr2 : continue if (m<arr[i]): print(arr[i],end=' ') arr2.append(arr[i]) m = arr[i] ...
Title: Preparing for Merge Sort Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ivan has an array consisting of *n* different integers. He decided to reorder all elements in increasing order. Ivan loves merge sort so he decided to represent his array with one or several increasing sequence...
```python n = int(input()) arr= list(map(int,input().split())) arr2 = [] m =arr[0] while len(arr) >len(arr2): m = -50 for i in range(0,len(arr)): if arr[i] in arr2 : continue if (m<arr[i]): print(arr[i],end=' ') arr2.append(arr[i]) m = ...
0
758
A
Holiday Of Equality
PROGRAMMING
800
[ "implementation", "math" ]
null
null
In Berland it is the holiday of equality. In honor of the holiday the king decided to equalize the welfare of all citizens in Berland by the expense of the state treasury. Totally in Berland there are *n* citizens, the welfare of each of them is estimated as the integer in *a**i* burles (burle is the currency in Berl...
The first line contains the integer *n* (1<=≤<=*n*<=≤<=100) — the number of citizens in the kingdom. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n*, where *a**i* (0<=≤<=*a**i*<=≤<=106) — the welfare of the *i*-th citizen.
In the only line print the integer *S* — the minimum number of burles which are had to spend.
[ "5\n0 1 2 3 4\n", "5\n1 1 0 1 1\n", "3\n1 3 1\n", "1\n12\n" ]
[ "10", "1", "4", "0" ]
In the first example if we add to the first citizen 4 burles, to the second 3, to the third 2 and to the fourth 1, then the welfare of all citizens will equal 4. In the second example it is enough to give one burle to the third citizen. In the third example it is necessary to give two burles to the first and the thi...
500
[ { "input": "5\n0 1 2 3 4", "output": "10" }, { "input": "5\n1 1 0 1 1", "output": "1" }, { "input": "3\n1 3 1", "output": "4" }, { "input": "1\n12", "output": "0" }, { "input": "3\n1 2 3", "output": "3" }, { "input": "14\n52518 718438 358883 462189 853...
1,658,772,361
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
77
0
n= int(input()) arr = list(map(int,input().split())) sum = 0 if(len(arr)==1): print(arr) for i in range(len(arr)): sum+=max(arr)-arr[i] print(sum)
Title: Holiday Of Equality Time Limit: None seconds Memory Limit: None megabytes Problem Description: In Berland it is the holiday of equality. In honor of the holiday the king decided to equalize the welfare of all citizens in Berland by the expense of the state treasury. Totally in Berland there are *n* citizens...
```python n= int(input()) arr = list(map(int,input().split())) sum = 0 if(len(arr)==1): print(arr) for i in range(len(arr)): sum+=max(arr)-arr[i] print(sum) ```
0
978
B
File Name
PROGRAMMING
800
[ "greedy", "strings" ]
null
null
You can not just take the file and send it. When Polycarp trying to send a file in the social network "Codehorses", he encountered an unexpected problem. If the name of the file contains three or more "x" (lowercase Latin letters "x") in a row, the system considers that the file content does not correspond to the socia...
The first line contains integer $n$ $(3 \le n \le 100)$ — the length of the file name. The second line contains a string of length $n$ consisting of lowercase Latin letters only — the file name.
Print the minimum number of characters to remove from the file name so after that the name does not contain "xxx" as a substring. If initially the file name dost not contain a forbidden substring "xxx", print 0.
[ "6\nxxxiii\n", "5\nxxoxx\n", "10\nxxxxxxxxxx\n" ]
[ "1\n", "0\n", "8\n" ]
In the first example Polycarp tried to send a file with name contains number $33$, written in Roman numerals. But he can not just send the file, because it name contains three letters "x" in a row. To send the file he needs to remove any one of this letters.
0
[ { "input": "6\nxxxiii", "output": "1" }, { "input": "5\nxxoxx", "output": "0" }, { "input": "10\nxxxxxxxxxx", "output": "8" }, { "input": "100\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "output": "98" }, { ...
1,656,237,157
2,147,483,647
Python 3
OK
TESTS
13
46
4,505,600
n = int(input()) s = input() s += 'a' c = 0 d = 0 for i in range(len(s)): if s[i] == 'x': d += 1 else: if d >= 3: c += (d - 2) d = 0 print(c)
Title: File Name Time Limit: None seconds Memory Limit: None megabytes Problem Description: You can not just take the file and send it. When Polycarp trying to send a file in the social network "Codehorses", he encountered an unexpected problem. If the name of the file contains three or more "x" (lowercase Latin let...
```python n = int(input()) s = input() s += 'a' c = 0 d = 0 for i in range(len(s)): if s[i] == 'x': d += 1 else: if d >= 3: c += (d - 2) d = 0 print(c) ```
3
0
none
none
none
0
[ "none" ]
null
null
Vlad likes to eat in cafes very much. During his life, he has visited cafes *n* times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research. First of all, Vlad assigned individual indices to all cafes. Then, he wrote down indices of cafes...
In first line there is one integer *n* (1<=≤<=*n*<=≤<=2·105) — number of cafes indices written by Vlad. In second line, *n* numbers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=2·105) are written — indices of cafes in order of being visited by Vlad. Vlad could visit some cafes more than once. Note that in numeration, ...
Print one integer — index of the cafe that Vlad hasn't visited for as long as possible.
[ "5\n1 3 2 1 2\n", "6\n2 1 2 2 4 1\n" ]
[ "3\n", "2\n" ]
In first test, there are three cafes, and the last visits to cafes with indices 1 and 2 were after the last visit to cafe with index 3; so this cafe is the answer. In second test case, there are also three cafes, but with indices 1, 2 and 4. Cafes with indices 1 and 4 were visited after the last visit of cafe with in...
0
[ { "input": "5\n1 3 2 1 2", "output": "3" }, { "input": "6\n2 1 2 2 4 1", "output": "2" }, { "input": "1\n0", "output": "0" }, { "input": "1\n200000", "output": "200000" }, { "input": "2\n2018 2017", "output": "2018" }, { "input": "5\n100 1000 1000 1000...
1,510,503,116
416
Python 3
OK
TESTS
33
234
24,268,800
k = int(input()) arr = list(map(int, input().split())) last = dict() for index in range(k): item = arr[index] last[item] = index print(min(list(last.items()), key= lambda x: x[1])[0])
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vlad likes to eat in cafes very much. During his life, he has visited cafes *n* times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research. First o...
```python k = int(input()) arr = list(map(int, input().split())) last = dict() for index in range(k): item = arr[index] last[item] = index print(min(list(last.items()), key= lambda x: x[1])[0]) ```
3
587
A
Duff and Weight Lifting
PROGRAMMING
1,500
[ "greedy" ]
null
null
Recently, Duff has been practicing weight lifting. As a hard practice, Malek gave her a task. He gave her a sequence of weights. Weight of *i*-th of them is 2*w**i* pounds. In each step, Duff can lift some of the remaining weights and throw them away. She does this until there's no more weight left. Malek asked her to ...
The first line of input contains integer *n* (1<=≤<=*n*<=≤<=106), the number of weights. The second line contains *n* integers *w*1,<=...,<=*w**n* separated by spaces (0<=≤<=*w**i*<=≤<=106 for each 1<=≤<=*i*<=≤<=*n*), the powers of two forming the weights values.
Print the minimum number of steps in a single line.
[ "5\n1 1 2 3 3\n", "4\n0 1 2 3\n" ]
[ "2\n", "4\n" ]
In the first sample case: One optimal way would be to throw away the first three in the first step and the rest in the second step. Also, it's not possible to do it in one step because their sum is not a power of two. In the second sample case: The only optimal way is to throw away one weight in each step. It's not po...
500
[ { "input": "5\n1 1 2 3 3", "output": "2" }, { "input": "4\n0 1 2 3", "output": "4" }, { "input": "1\n120287", "output": "1" }, { "input": "2\n28288 0", "output": "2" }, { "input": "2\n95745 95745", "output": "1" }, { "input": "13\n92 194 580495 0 10855...
1,446,167,284
2,147,483,647
Python 3
OK
TESTS
46
951
63,283,200
n = int(input()) a = [int(x) for x in input().split()] l = [0] * (10**6 + 100) for x in a: l[x] += 1 cur = 0 ans = 0 for x in l: cur += x if cur % 2: ans += 1 cur //= 2 print(ans)
Title: Duff and Weight Lifting Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently, Duff has been practicing weight lifting. As a hard practice, Malek gave her a task. He gave her a sequence of weights. Weight of *i*-th of them is 2*w**i* pounds. In each step, Duff can lift some of th...
```python n = int(input()) a = [int(x) for x in input().split()] l = [0] * (10**6 + 100) for x in a: l[x] += 1 cur = 0 ans = 0 for x in l: cur += x if cur % 2: ans += 1 cur //= 2 print(ans) ```
3
337
A
Puzzles
PROGRAMMING
900
[ "greedy" ]
null
null
The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, as wikipedia states, is a tiling puzzle that requires the assembly of numerous small, often od...
The first line contains space-separated integers *n* and *m* (2<=≤<=*n*<=≤<=*m*<=≤<=50). The second line contains *m* space-separated integers *f*1,<=*f*2,<=...,<=*f**m* (4<=≤<=*f**i*<=≤<=1000) — the quantities of pieces in the puzzles sold in the shop.
Print a single integer — the least possible difference the teacher can obtain.
[ "4 6\n10 12 10 7 5 22\n" ]
[ "5\n" ]
Sample 1. The class has 4 students. The shop sells 6 puzzles. If Ms. Manana buys the first four puzzles consisting of 10, 12, 10 and 7 pieces correspondingly, then the difference between the sizes of the largest and the smallest puzzle will be equal to 5. It is impossible to obtain a smaller difference. Note that the t...
500
[ { "input": "4 6\n10 12 10 7 5 22", "output": "5" }, { "input": "2 2\n4 4", "output": "0" }, { "input": "2 10\n4 5 6 7 8 9 10 11 12 12", "output": "0" }, { "input": "4 5\n818 136 713 59 946", "output": "759" }, { "input": "3 20\n446 852 783 313 549 965 40 88 86 617...
1,686,025,514
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
122
0
n,p=map(int,input().split()) l=list(map(int,input().split())) l.sort() ll=[] for i in range(n): ll.append(l[i]) l=min(ll) m=max(ll) d=m-l print(d)
Title: Puzzles Time Limit: None seconds Memory Limit: None megabytes Problem Description: The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, a...
```python n,p=map(int,input().split()) l=list(map(int,input().split())) l.sort() ll=[] for i in range(n): ll.append(l[i]) l=min(ll) m=max(ll) d=m-l print(d) ```
0
131
A
cAPS lOCK
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in the first passage. Let's consider that a word has been typed with the Caps lock key accidentall...
The first line of the input data contains a word consisting of uppercase and lowercase Latin letters. The word's length is from 1 to 100 characters, inclusive.
Print the result of the given word's processing.
[ "cAPS\n", "Lock\n" ]
[ "Caps", "Lock\n" ]
none
500
[ { "input": "cAPS", "output": "Caps" }, { "input": "Lock", "output": "Lock" }, { "input": "cAPSlOCK", "output": "cAPSlOCK" }, { "input": "CAPs", "output": "CAPs" }, { "input": "LoCK", "output": "LoCK" }, { "input": "OOPS", "output": "oops" }, { ...
1,694,595,640
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
s = input() if len(s)>=1 and len(s) <= 100: if s[0].isUpperCase(): print(s[0]) else: if s[1:].isUpperCase(): print(s[1:].toLowerCase()) else: print(s)
Title: cAPS lOCK Time Limit: None seconds Memory Limit: None megabytes Problem Description: wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in th...
```python s = input() if len(s)>=1 and len(s) <= 100: if s[0].isUpperCase(): print(s[0]) else: if s[1:].isUpperCase(): print(s[1:].toLowerCase()) else: print(s) ```
-1
99
A
Help Far Away Kingdom
PROGRAMMING
800
[ "strings" ]
A. Help Far Away Kingdom
2
256
In a far away kingdom lived the King, the Prince, the Shoemaker, the Dressmaker and many other citizens. They lived happily until great trouble came into the Kingdom. The ACMers settled there. Most damage those strange creatures inflicted upon the kingdom was that they loved high precision numbers. As a result, the Ki...
The first line contains a single number to round up — the integer part (a non-empty set of decimal digits that do not start with 0 — with the exception of a case when the set consists of a single digit — in this case 0 can go first), then follows character «.» (a dot), and then follows the fractional part (any non-empt...
If the last number of the integer part is not equal to 9, print the rounded-up number without leading zeroes. Otherwise, print the message "GOTO Vasilisa." (without the quotes).
[ "0.0\n", "1.49\n", "1.50\n", "2.71828182845904523536\n", "3.14159265358979323846\n", "12345678901234567890.1\n", "123456789123456789.999\n" ]
[ "0", "1", "2", "3", "3", "12345678901234567890", "GOTO Vasilisa." ]
none
500
[ { "input": "0.0", "output": "0" }, { "input": "1.49", "output": "1" }, { "input": "1.50", "output": "2" }, { "input": "2.71828182845904523536", "output": "3" }, { "input": "3.14159265358979323846", "output": "3" }, { "input": "12345678901234567890.1", ...
1,651,681,961
2,147,483,647
PyPy 3
OK
TESTS
150
186
0
s = input() if s[s.find('.') - 1] == '9': print('GOTO Vasilisa.') else: if s[s.find('.') + 1] == '5' or s[s.find('.') + 1] == '6' or s[s.find('.') + 1] == '7' or s[s.find('.') + 1] == '8' or s[s.find('.') + 1] == '9': print(int(s[:s.find('.')]) + 1) else: print(s[:s.find('.')])
Title: Help Far Away Kingdom Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: In a far away kingdom lived the King, the Prince, the Shoemaker, the Dressmaker and many other citizens. They lived happily until great trouble came into the Kingdom. The ACMers settled there. Most damage those stran...
```python s = input() if s[s.find('.') - 1] == '9': print('GOTO Vasilisa.') else: if s[s.find('.') + 1] == '5' or s[s.find('.') + 1] == '6' or s[s.find('.') + 1] == '7' or s[s.find('.') + 1] == '8' or s[s.find('.') + 1] == '9': print(int(s[:s.find('.')]) + 1) else: print(s[:s.find('.'...
3.9535
652
B
z-sort
PROGRAMMING
1,000
[ "sortings" ]
null
null
A student of *z*-school found a kind of sorting called *z*-sort. The array *a* with *n* elements are *z*-sorted if two conditions hold: 1. *a**i*<=≥<=*a**i*<=-<=1 for all even *i*, 1. *a**i*<=≤<=*a**i*<=-<=1 for all odd *i*<=&gt;<=1. For example the arrays [1,2,1,2] and [1,1,1,1] are *z*-sorted while the array [1,2...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of elements in the array *a*. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=109) — the elements of the array *a*.
If it's possible to make the array *a* *z*-sorted print *n* space separated integers *a**i* — the elements after *z*-sort. Otherwise print the only word "Impossible".
[ "4\n1 2 2 1\n", "5\n1 3 2 2 5\n" ]
[ "1 2 1 2\n", "1 5 2 3 2\n" ]
none
0
[ { "input": "4\n1 2 2 1", "output": "1 2 1 2" }, { "input": "5\n1 3 2 2 5", "output": "1 5 2 3 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 1", "output": "1 1 1 1 1 1 1 1 1 1" }, { "input": "10\n1 9 7 6 2 4 7 8 1 3", "output": "1 ...
1,598,064,198
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
93
6,963,200
a = [int(x) for x in input().split(" ")] for i in range (len(a)): if i%2 == 0: firval = a[i] secval = a[i-1] if firval == 0: continue elif firval < secval: a[i],a[i-1] = a[i-1],a[i] elif secval < firval: continue elif i%2 !...
Title: z-sort Time Limit: None seconds Memory Limit: None megabytes Problem Description: A student of *z*-school found a kind of sorting called *z*-sort. The array *a* with *n* elements are *z*-sorted if two conditions hold: 1. *a**i*<=≥<=*a**i*<=-<=1 for all even *i*, 1. *a**i*<=≤<=*a**i*<=-<=1 for all odd *i*<=...
```python a = [int(x) for x in input().split(" ")] for i in range (len(a)): if i%2 == 0: firval = a[i] secval = a[i-1] if firval == 0: continue elif firval < secval: a[i],a[i-1] = a[i-1],a[i] elif secval < firval: continue ...
0
888
A
Local Extrema
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
You are given an array *a*. Some element of this array *a**i* is a local minimum iff it is strictly less than both of its neighbours (that is, *a**i*<=&lt;<=*a**i*<=-<=1 and *a**i*<=&lt;<=*a**i*<=+<=1). Also the element can be called local maximum iff it is strictly greater than its neighbours (that is, *a**i*<=&gt;<=*...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=1000) — the number of elements in array *a*. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=1000) — the elements of array *a*.
Print the number of local extrema in the given array.
[ "3\n1 2 3\n", "4\n1 5 2 5\n" ]
[ "0\n", "2\n" ]
none
0
[ { "input": "3\n1 2 3", "output": "0" }, { "input": "4\n1 5 2 5", "output": "2" }, { "input": "1\n1", "output": "0" }, { "input": "1\n548", "output": "0" }, { "input": "2\n1 1", "output": "0" }, { "input": "3\n3 2 3", "output": "1" }, { "inp...
1,564,911,058
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
5
139
0
def le(v,n): t=0 for c in range(1,n-1): if v[c-1]<=v[c]<=v[c+1]: continue t+=1 return t n=int(input()) v=[int(c) for c in input().split()] print(le(v,n))
Title: Local Extrema Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array *a*. Some element of this array *a**i* is a local minimum iff it is strictly less than both of its neighbours (that is, *a**i*<=&lt;<=*a**i*<=-<=1 and *a**i*<=&lt;<=*a**i*<=+<=1). Also the element c...
```python def le(v,n): t=0 for c in range(1,n-1): if v[c-1]<=v[c]<=v[c+1]: continue t+=1 return t n=int(input()) v=[int(c) for c in input().split()] print(le(v,n)) ```
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,626,111,977
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
77
7,475,200
import re s=input() if re.findall('h.*o' ,s): print("YES") else: print("No")
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python import re s=input() if re.findall('h.*o' ,s): print("YES") else: print("No") ```
0
21
D
Traveling Graph
PROGRAMMING
2,400
[ "bitmasks", "graph matchings", "graphs" ]
D. Traveling Graph
0
64
You are given undirected weighted graph. Find the length of the shortest cycle which starts from the vertex 1 and passes throught all the edges at least once. Graph may contain multiply edges between a pair of vertices and loops (edges from the vertex to itself).
The first line of the input contains two integers *n* and *m* (1<=≤<=*n*<=≤<=15,<=0<=≤<=*m*<=≤<=2000), *n* is the amount of vertices, and *m* is the amount of edges. Following *m* lines contain edges as a triples *x*,<=*y*,<=*w* (1<=≤<=*x*,<=*y*<=≤<=*n*,<=1<=≤<=*w*<=≤<=10000), *x*,<=*y* are edge endpoints, and *w* is t...
Output minimal cycle length or -1 if it doesn't exists.
[ "3 3\n1 2 1\n2 3 1\n3 1 1\n", "3 2\n1 2 3\n2 3 4\n" ]
[ "3\n", "14\n" ]
none
2,000
[ { "input": "4 6\n1 2 10\n2 3 1000\n3 4 10\n4 1 1000\n4 2 5000\n1 3 2", "output": "7042" }, { "input": "2 9\n1 2 9\n1 2 9\n2 1 9\n1 2 8\n2 1 9\n1 2 9\n1 2 9\n1 2 11\n1 2 9", "output": "90" }, { "input": "2 10\n1 2 9\n1 2 9\n2 1 9\n1 2 8\n2 1 9\n1 2 9\n1 2 9\n1 2 11\n1 2 9\n1 2 9", "ou...
1,605,218,370
2,147,483,647
PyPy 3
OK
TESTS
60
434
5,120,000
import math N = 15 mat = 0 inf = 1000000000 answer = inf def Get_Cycle_Length(v,graph): global mat global answer if len(v) == 0: answer = min(answer,mat) return end = v.pop() i = 0 while i<len(v): se = v.pop(i) mat += graph[se][end] ...
Title: Traveling Graph Time Limit: 0 seconds Memory Limit: 64 megabytes Problem Description: You are given undirected weighted graph. Find the length of the shortest cycle which starts from the vertex 1 and passes throught all the edges at least once. Graph may contain multiply edges between a pair of vertices and l...
```python import math N = 15 mat = 0 inf = 1000000000 answer = inf def Get_Cycle_Length(v,graph): global mat global answer if len(v) == 0: answer = min(answer,mat) return end = v.pop() i = 0 while i<len(v): se = v.pop(i) mat += graph[...
3
581
A
Vasya the Hipster
PROGRAMMING
800
[ "implementation", "math" ]
null
null
One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red one on the left foot, a blue one on the right foot. Every day Vasya puts on new socks in the morning ...
The single line of the input contains two positive integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=100) — the number of red and blue socks that Vasya's got.
Print two space-separated integers — the maximum number of days when Vasya can wear different socks and the number of days when he can wear the same socks until he either runs out of socks or cannot make a single pair from the socks he's got. Keep in mind that at the end of the day Vasya throws away the socks that he'...
[ "3 1\n", "2 3\n", "7 3\n" ]
[ "1 1\n", "2 0\n", "3 2\n" ]
In the first sample Vasya can first put on one pair of different socks, after that he has two red socks left to wear on the second day.
500
[ { "input": "3 1", "output": "1 1" }, { "input": "2 3", "output": "2 0" }, { "input": "7 3", "output": "3 2" }, { "input": "100 100", "output": "100 0" }, { "input": "4 10", "output": "4 3" }, { "input": "6 10", "output": "6 2" }, { "input":...
1,691,089,503
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
31
0
a,b = map(int,input().split()) x = min(a,b) y = (a-b)//2 if y <= -1: y=0 print(x,y)
Title: Vasya the Hipster Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red...
```python a,b = map(int,input().split()) x = min(a,b) y = (a-b)//2 if y <= -1: y=0 print(x,y) ```
0
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,954,079
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
60
0
s = {"H","Q","9","+"} a = set(input()) print(a) if s.intersection(a): 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 s = {"H","Q","9","+"} a = set(input()) print(a) if s.intersection(a): print("YES") else: print("NO") ```
0
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,694,526,873
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
18
92
0
import math p=0 q=0 w=0 a=int(input()) for x in range(1,int(math.sqrt(a))+1): if a%x==0: m=list(str(x)) n=list(str(a//x)) for i in m: if i=='4' or i=='7': p+=1 if p==len(m): w=1 break for j in n: ...
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 import math p=0 q=0 w=0 a=int(input()) for x in range(1,int(math.sqrt(a))+1): if a%x==0: m=list(str(x)) n=list(str(a//x)) for i in m: if i=='4' or i=='7': p+=1 if p==len(m): w=1 break for j in n: ...
0
265
B
Roadside Trees (Simplified Edition)
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
Squirrel Liss loves nuts. There are *n* trees (numbered 1 to *n* from west to east) along a street and there is a delicious nut on the top of each tree. The height of the tree *i* is *h**i*. Liss wants to eat all nuts. Now Liss is on the root of the tree with the number 1. In one second Liss can perform one of the fol...
The first line contains an integer *n* (1<=<=≤<=<=*n*<=≤<=105) — the number of trees. Next *n* lines contains the height of trees: *i*-th line contains an integer *h**i* (1<=≤<=*h**i*<=≤<=104) — the height of the tree with the number *i*.
Print a single integer — the minimal time required to eat all nuts in seconds.
[ "2\n1\n2\n", "5\n2\n1\n2\n1\n1\n" ]
[ "5\n", "14\n" ]
none
1,000
[ { "input": "2\n1\n2", "output": "5" }, { "input": "5\n2\n1\n2\n1\n1", "output": "14" }, { "input": "1\n1", "output": "2" } ]
1,684,295,693
2,147,483,647
PyPy 3-64
OK
TESTS
15
1,122
5,427,200
n = int(input()) l = [] a = 0 su = 0 for ofa in range(0,n): b = int(input()) su += abs(a-b) a = b print(su+2*n-1)
Title: Roadside Trees (Simplified Edition) Time Limit: None seconds Memory Limit: None megabytes Problem Description: Squirrel Liss loves nuts. There are *n* trees (numbered 1 to *n* from west to east) along a street and there is a delicious nut on the top of each tree. The height of the tree *i* is *h**i*. Liss wan...
```python n = int(input()) l = [] a = 0 su = 0 for ofa in range(0,n): b = int(input()) su += abs(a-b) a = b print(su+2*n-1) ```
3
899
B
Months and Years
PROGRAMMING
1,200
[ "implementation" ]
null
null
Everybody in Russia uses Gregorian calendar. In this calendar there are 31 days in January, 28 or 29 days in February (depending on whether the year is leap or not), 31 days in March, 30 days in April, 31 days in May, 30 in June, 31 in July, 31 in August, 30 in September, 31 in October, 30 in November, 31 in December. ...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=24) — the number of integers. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (28<=≤<=*a**i*<=≤<=31) — the numbers you are to check.
If there are several consecutive months that fit the sequence, print "YES" (without quotes). Otherwise, print "NO" (without quotes). You can print each letter in arbitrary case (small or large).
[ "4\n31 31 30 31\n", "2\n30 30\n", "5\n29 31 30 31 30\n", "3\n31 28 30\n", "3\n31 31 28\n" ]
[ "Yes\n\n", "No\n\n", "Yes\n\n", "No\n\n", "Yes\n\n" ]
In the first example the integers can denote months July, August, September and October. In the second example the answer is no, because there are no two consecutive months each having 30 days. In the third example the months are: February (leap year) — March — April – May — June. In the fourth example the number of...
1,000
[ { "input": "4\n31 31 30 31", "output": "Yes" }, { "input": "2\n30 30", "output": "No" }, { "input": "5\n29 31 30 31 30", "output": "Yes" }, { "input": "3\n31 28 30", "output": "No" }, { "input": "3\n31 31 28", "output": "Yes" }, { "input": "24\n29 28 3...
1,513,514,514
2,147,483,647
Python 3
OK
TESTS
62
62
5,529,600
a1 = '31 28 31 30 31 30 31 31 30 31 30 31 ' a2 = '31 29 31 30 31 30 31 31 30 31 30 31 ' s = a1+a1+a1+a2+a1+a1 t = int(input()) a = input().strip() ans = 'NO' if a in s: ans = 'YES' print(ans)
Title: Months and Years Time Limit: None seconds Memory Limit: None megabytes Problem Description: Everybody in Russia uses Gregorian calendar. In this calendar there are 31 days in January, 28 or 29 days in February (depending on whether the year is leap or not), 31 days in March, 30 days in April, 31 days in May, ...
```python a1 = '31 28 31 30 31 30 31 31 30 31 30 31 ' a2 = '31 29 31 30 31 30 31 31 30 31 30 31 ' s = a1+a1+a1+a2+a1+a1 t = int(input()) a = input().strip() ans = 'NO' if a in s: ans = 'YES' print(ans) ```
3
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,617,883,184
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
92
0
s=input() x=[] for i in range(len(s)): x.append(s[i]) for j in range(len(x)): for k in range(len(x)): if x[j]==x[j].lower() and x[k]==x[k].upper(): if count(x[j])>=count(x[k]): x[k]=x[k].lower() elif count(x[j]) < count(x[k]): x[j]=x[j]...
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python s=input() x=[] for i in range(len(s)): x.append(s[i]) for j in range(len(x)): for k in range(len(x)): if x[j]==x[j].lower() and x[k]==x[k].upper(): if count(x[j])>=count(x[k]): x[k]=x[k].lower() elif count(x[j]) < count(x[k]): ...
-1
215
A
Bicycle Chain
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
Vasya's bicycle chain drive consists of two parts: *n* stars are attached to the pedal axle, *m* stars are attached to the rear wheel axle. The chain helps to rotate the rear wheel by transmitting the pedal rotation. We know that the *i*-th star on the pedal axle has *a**i* (0<=&lt;<=*a*1<=&lt;<=*a*2<=&lt;<=...<=&lt;<...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=50) — the number of stars on the bicycle's pedal axle. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=104) in the order of strict increasing. The third input line contains integer *m* (1<=≤<=*m*<=≤<=50) — the number of stars o...
Print the number of "integer" gears with the maximum ratio among all "integer" gears.
[ "2\n4 5\n3\n12 13 15\n", "4\n1 2 3 4\n5\n10 11 12 13 14\n" ]
[ "2\n", "1\n" ]
In the first sample the maximum "integer" gear ratio equals 3. There are two gears that have such gear ratio. For one of them *a*<sub class="lower-index">1</sub> = 4, *b*<sub class="lower-index">1</sub> = 12, and for the other *a*<sub class="lower-index">2</sub> = 5, *b*<sub class="lower-index">3</sub> = 15.
500
[ { "input": "2\n4 5\n3\n12 13 15", "output": "2" }, { "input": "4\n1 2 3 4\n5\n10 11 12 13 14", "output": "1" }, { "input": "1\n1\n1\n1", "output": "1" }, { "input": "2\n1 2\n1\n1", "output": "1" }, { "input": "1\n1\n2\n1 2", "output": "1" }, { "input":...
1,594,002,000
2,147,483,647
Python 3
OK
TESTS
57
218
6,758,400
n = int(input()) a = [int(x) for x in input().split()] m = int(input()) b = [int(x) for x in input().split()] div = [] for i in b: for j in a: if i/j%1==0: div.append(i//j) print(div.count(max(div)))
Title: Bicycle Chain Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya's bicycle chain drive consists of two parts: *n* stars are attached to the pedal axle, *m* stars are attached to the rear wheel axle. The chain helps to rotate the rear wheel by transmitting the pedal rotation. We ...
```python n = int(input()) a = [int(x) for x in input().split()] m = int(input()) b = [int(x) for x in input().split()] div = [] for i in b: for j in a: if i/j%1==0: div.append(i//j) print(div.count(max(div))) ```
3
873
D
Merge Sort
PROGRAMMING
1,800
[ "constructive algorithms", "divide and conquer" ]
null
null
Merge sort is a well-known sorting algorithm. The main function that sorts the elements of array *a* with indices from [*l*,<=*r*) can be implemented as follows: 1. If the segment [*l*,<=*r*) is already sorted in non-descending order (that is, for any *i* such that *l*<=≤<=*i*<=&lt;<=*r*<=-<=1 *a*[*i*]<=≤<=*a*[*i*<=+...
The first line contains two numbers *n* and *k* (1<=≤<=*n*<=≤<=100000, 1<=≤<=*k*<=≤<=200000) — the size of a desired permutation and the number of *mergesort* calls required to sort it.
If a permutation of size *n* such that there will be exactly *k* calls of *mergesort* while sorting it doesn't exist, output <=-<=1. Otherwise output *n* integer numbers *a*[0],<=*a*[1],<=...,<=*a*[*n*<=-<=1] — the elements of a permutation that would meet the required conditions. If there are multiple answers, print a...
[ "3 3\n", "4 1\n", "5 6\n" ]
[ "2 1 3 ", "1 2 3 4 ", "-1\n" ]
none
0
[ { "input": "3 3", "output": "2 1 3 " }, { "input": "4 1", "output": "1 2 3 4 " }, { "input": "5 6", "output": "-1" }, { "input": "100 100", "output": "-1" }, { "input": "10000 10001", "output": "3 1 5 2 7 4 8 10 6 12 9 13 15 11 17 14 18 20 16 22 19 23 25 21 27...
1,689,369,539
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
30
0
print("_RANDOM_GUESS_1689369539.4169312")# 1689369539.416951
Title: Merge Sort Time Limit: None seconds Memory Limit: None megabytes Problem Description: Merge sort is a well-known sorting algorithm. The main function that sorts the elements of array *a* with indices from [*l*,<=*r*) can be implemented as follows: 1. If the segment [*l*,<=*r*) is already sorted in non-desce...
```python print("_RANDOM_GUESS_1689369539.4169312")# 1689369539.416951 ```
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,644,258,405
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
1
77
2,150,400
import math def main(): a, b = map(int, input().split()) print(math.gcd(*list(range(a, b + 1)))) 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 import math def main(): a, b = map(int, input().split()) print(math.gcd(*list(range(a, b + 1)))) if __name__ == "__main__": main() ```
-1
578
C
Weakness and Poorness
PROGRAMMING
2,000
[ "ternary search" ]
null
null
You are given a sequence of n integers *a*1,<=*a*2,<=...,<=*a**n*. Determine a real number *x* such that the weakness of the sequence *a*1<=-<=*x*,<=*a*2<=-<=*x*,<=...,<=*a**n*<=-<=*x* is as small as possible. The weakness of a sequence is defined as the maximum value of the poorness over all segments (contiguous su...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=200<=000), the length of a sequence. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (|*a**i*|<=≤<=10<=000).
Output a real number denoting the minimum possible weakness of *a*1<=-<=*x*,<=*a*2<=-<=*x*,<=...,<=*a**n*<=-<=*x*. Your answer will be considered correct if its relative or absolute error doesn't exceed 10<=-<=6.
[ "3\n1 2 3\n", "4\n1 2 3 4\n", "10\n1 10 2 9 3 8 4 7 5 6\n" ]
[ "1.000000000000000\n", "2.000000000000000\n", "4.500000000000000\n" ]
For the first case, the optimal value of *x* is 2 so the sequence becomes  - 1, 0, 1 and the max poorness occurs at the segment "-1" or segment "1". The poorness value (answer) equals to 1 in this case. For the second sample the optimal value of *x* is 2.5 so the sequence becomes  - 1.5,  - 0.5, 0.5, 1.5 and the max ...
750
[ { "input": "3\n1 2 3", "output": "1.000000000000000" }, { "input": "4\n1 2 3 4", "output": "2.000000000000000" }, { "input": "10\n1 10 2 9 3 8 4 7 5 6", "output": "4.500000000000000" }, { "input": "1\n-10000", "output": "0.000000000000000" }, { "input": "3\n10000 ...
1,442,425,181
8,681
PyPy 3
WRONG_ANSWER
PRETESTS
0
92
0
n = int(input()) As = list(map(int, input().split())) def solve(n, As): if n == 1: return 0 if n == 2: return abs(As[0] - As[1]) / 2 left = min(As) right = max(As) eps = 0.5 * 10 ** -6 r = (1 + 5 ** 0.5) ** 0.5 r1 = 1 + r leftval = f((left * r + right)/r1, A...
Title: Weakness and Poorness Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a sequence of n integers *a*1,<=*a*2,<=...,<=*a**n*. Determine a real number *x* such that the weakness of the sequence *a*1<=-<=*x*,<=*a*2<=-<=*x*,<=...,<=*a**n*<=-<=*x* is as small as possible. ...
```python n = int(input()) As = list(map(int, input().split())) def solve(n, As): if n == 1: return 0 if n == 2: return abs(As[0] - As[1]) / 2 left = min(As) right = max(As) eps = 0.5 * 10 ** -6 r = (1 + 5 ** 0.5) ** 0.5 r1 = 1 + r leftval = f((left * r + ri...
0
106
A
Card Game
PROGRAMMING
1,000
[ "implementation" ]
A. Card Game
2
256
There is a card game called "Durak", which means "Fool" in Russian. The game is quite popular in the countries that used to form USSR. The problem does not state all the game's rules explicitly — you can find them later yourselves if you want. To play durak you need a pack of 36 cards. Each card has a suit ("S", "H", ...
The first line contains the tramp suit. It is "S", "H", "D" or "C". The second line contains the description of the two different cards. Each card is described by one word consisting of two symbols. The first symbol stands for the rank ("6", "7", "8", "9", "T", "J", "Q", "K" and "A"), and the second one stands for the...
Print "YES" (without the quotes) if the first cards beats the second one. Otherwise, print "NO" (also without the quotes).
[ "H\nQH 9S\n", "S\n8D 6D\n", "C\n7H AS\n" ]
[ "YES\n", "YES", "NO" ]
none
500
[ { "input": "H\nQH 9S", "output": "YES" }, { "input": "S\n8D 6D", "output": "YES" }, { "input": "C\n7H AS", "output": "NO" }, { "input": "C\nKC 9C", "output": "YES" }, { "input": "D\n7D KD", "output": "NO" }, { "input": "H\n7H KD", "output": "YES" ...
1,610,691,264
2,147,483,647
PyPy 3
OK
TESTS
78
216
0
trump = str(input()) first, second = input().split() priority = ['6', '7', '8', '9', 'T', 'J', 'Q', 'K', 'A'] if first[1] == second[1]: first_priority = priority.index(first[0]) second_priority = priority.index(second[0]) if first_priority > second_priority: print("YES") else: ...
Title: Card Game Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: There is a card game called "Durak", which means "Fool" in Russian. The game is quite popular in the countries that used to form USSR. The problem does not state all the game's rules explicitly — you can find them later yourselve...
```python trump = str(input()) first, second = input().split() priority = ['6', '7', '8', '9', 'T', 'J', 'Q', 'K', 'A'] if first[1] == second[1]: first_priority = priority.index(first[0]) second_priority = priority.index(second[0]) if first_priority > second_priority: print("YES") el...
3.946
753
A
Santa Claus and Candies
PROGRAMMING
1,000
[ "dp", "greedy", "math" ]
null
null
Santa Claus has *n* candies, he dreams to give them as gifts to children. What is the maximal number of children for whose he can give candies if Santa Claus want each kid should get distinct positive integer number of candies. Santa Class wants to give all *n* candies he has.
The only line contains positive integer number *n* (1<=≤<=*n*<=≤<=1000) — number of candies Santa Claus has.
Print to the first line integer number *k* — maximal number of kids which can get candies. Print to the second line *k* distinct integer numbers: number of candies for each of *k* kid. The sum of *k* printed numbers should be exactly *n*. If there are many solutions, print any of them.
[ "5\n", "9\n", "2\n" ]
[ "2\n2 3\n", "3\n3 5 1\n", "1\n2 \n" ]
none
500
[ { "input": "5", "output": "2\n1 4 " }, { "input": "9", "output": "3\n1 2 6 " }, { "input": "2", "output": "1\n2 " }, { "input": "1", "output": "1\n1 " }, { "input": "3", "output": "2\n1 2 " }, { "input": "1000", "output": "44\n1 2 3 4 5 6 7 8 9 10 ...
1,556,026,679
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
109
0
x=int(input()) c=0 i=1 while(c+i<x): c+=i i+=1 print(i-1) for y in range(i-2): print(y+1,end=" ") print(i+(x-c-1)) #in clasa riyazi mohandesi :)
Title: Santa Claus and Candies Time Limit: None seconds Memory Limit: None megabytes Problem Description: Santa Claus has *n* candies, he dreams to give them as gifts to children. What is the maximal number of children for whose he can give candies if Santa Claus want each kid should get distinct positive integer n...
```python x=int(input()) c=0 i=1 while(c+i<x): c+=i i+=1 print(i-1) for y in range(i-2): print(y+1,end=" ") print(i+(x-c-1)) #in clasa riyazi mohandesi :) ```
0
1,003
B
Binary String Constructing
PROGRAMMING
1,300
[ "constructive algorithms" ]
null
null
You are given three integers $a$, $b$ and $x$. Your task is to construct a binary string $s$ of length $n = a + b$ such that there are exactly $a$ zeroes, exactly $b$ ones and exactly $x$ indices $i$ (where $1 \le i &lt; n$) such that $s_i \ne s_{i + 1}$. It is guaranteed that the answer always exists. For example, fo...
The first line of the input contains three integers $a$, $b$ and $x$ ($1 \le a, b \le 100, 1 \le x &lt; a + b)$.
Print only one string $s$, where $s$ is any binary string satisfying conditions described above. It is guaranteed that the answer always exists.
[ "2 2 1\n", "3 3 3\n", "5 3 6\n" ]
[ "1100\n", "101100\n", "01010100\n" ]
All possible answers for the first example: - 1100; - 0011. All possible answers for the second example: - 110100; - 101100; - 110010; - 100110; - 011001; - 001101; - 010011; - 001011.
0
[ { "input": "2 2 1", "output": "1100" }, { "input": "3 3 3", "output": "101100" }, { "input": "5 3 6", "output": "01010100" }, { "input": "100 1 2", "output": "01000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" }, { ...
1,662,242,075
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
6
62
0
a,b,x = map(int,input().split()) s="" p="01" for i in range(int(0.5*(x))): s=s+p a1= a-list(s).count("0") b1=b-list(s).count("1") for i in range(a1): s=s+"0" for i in range(b1): s=s+"1" print(s)
Title: Binary String Constructing Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given three integers $a$, $b$ and $x$. Your task is to construct a binary string $s$ of length $n = a + b$ such that there are exactly $a$ zeroes, exactly $b$ ones and exactly $x$ indices $i$ (where $...
```python a,b,x = map(int,input().split()) s="" p="01" for i in range(int(0.5*(x))): s=s+p a1= a-list(s).count("0") b1=b-list(s).count("1") for i in range(a1): s=s+"0" for i in range(b1): s=s+"1" print(s) ```
0
425
C
Sereja and Two Sequences
PROGRAMMING
2,300
[ "data structures", "dp" ]
null
null
Sereja has two sequences *a*1,<=*a*2,<=...,<=*a**n* and *b*1,<=*b*2,<=...,<=*b**m*, consisting of integers. One day Sereja got bored and he decided two play with them. The rules of the game was very simple. Sereja makes several moves, in one move he can perform one of the following actions: 1. Choose several (at leas...
The first line contains integers *n*, *m*, *s*, *e* (1<=≤<=*n*,<=*m*<=≤<=105; 1<=≤<=*s*<=≤<=3·105; 103<=≤<=*e*<=≤<=104). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105). The third line contains *m* integers *b*1, *b*2, ..., *b**m* (1<=≤<=*b**i*<=≤<=105).
Print a single integer — maximum number of money in dollars that Sereja can get.
[ "5 5 100000 1000\n1 2 3 4 5\n3 2 4 5 1\n", "3 4 3006 1000\n1 2 3\n1 2 4 3\n" ]
[ "3\n", "2\n" ]
none
1,500
[]
1,689,286,534
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
30
0
print("_RANDOM_GUESS_1689286534.6541681")# 1689286534.6542022
Title: Sereja and Two Sequences Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja has two sequences *a*1,<=*a*2,<=...,<=*a**n* and *b*1,<=*b*2,<=...,<=*b**m*, consisting of integers. One day Sereja got bored and he decided two play with them. The rules of the game was very simple. Ser...
```python print("_RANDOM_GUESS_1689286534.6541681")# 1689286534.6542022 ```
0
920
C
Swap Adjacent Elements
PROGRAMMING
1,400
[ "dfs and similar", "greedy", "math", "sortings", "two pointers" ]
null
null
You have an array *a* consisting of *n* integers. Each integer from 1 to *n* appears exactly once in this array. For some indices *i* (1<=≤<=*i*<=≤<=*n*<=-<=1) it is possible to swap *i*-th element with (*i*<=+<=1)-th, for other indices it is not possible. You may perform any number of swapping operations any order. T...
The first line contains one integer *n* (2<=≤<=*n*<=≤<=200000) — the number of elements in the array. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=200000) — the elements of the array. Each integer from 1 to *n* appears exactly once. The third line contains a string of *n*<=-<=1 char...
If it is possible to sort the array in ascending order using any sequence of swaps you are allowed to make, print YES. Otherwise, print NO.
[ "6\n1 2 5 3 4 6\n01110\n", "6\n1 2 5 3 4 6\n01010\n" ]
[ "YES\n", "NO\n" ]
In the first example you may swap *a*<sub class="lower-index">3</sub> and *a*<sub class="lower-index">4</sub>, and then swap *a*<sub class="lower-index">4</sub> and *a*<sub class="lower-index">5</sub>.
0
[ { "input": "6\n1 2 5 3 4 6\n01110", "output": "YES" }, { "input": "6\n1 2 5 3 4 6\n01010", "output": "NO" }, { "input": "6\n1 6 3 4 5 2\n01101", "output": "NO" }, { "input": "6\n2 3 1 4 5 6\n01111", "output": "NO" }, { "input": "4\n2 3 1 4\n011", "output": "NO...
1,615,201,546
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
233
14,643,200
n=int(input()) l=list(map(int,input().split())) s=input() x=sorted(l) for i in range(n-1): if i!=n-1 and (s[i]=='1'): if l[i]>l[i+1]: l[i],l[i+1]=l[i+1],l[i] else: if s[i]=='1' and l[i]>l[i+1]: l[i],l[i+1]=l[i+1],l[i] if x==l: print('YES') else: prin...
Title: Swap Adjacent Elements Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have an array *a* consisting of *n* integers. Each integer from 1 to *n* appears exactly once in this array. For some indices *i* (1<=≤<=*i*<=≤<=*n*<=-<=1) it is possible to swap *i*-th element with (*i*<=+<...
```python n=int(input()) l=list(map(int,input().split())) s=input() x=sorted(l) for i in range(n-1): if i!=n-1 and (s[i]=='1'): if l[i]>l[i+1]: l[i],l[i+1]=l[i+1],l[i] else: if s[i]=='1' and l[i]>l[i+1]: l[i],l[i+1]=l[i+1],l[i] if x==l: print('YES') else:...
0
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,683,441,532
2,147,483,647
PyPy 3
OK
TESTS
20
77
0
import math n,m,a=map(int,input().split()) s= math.ceil(m/a) k= math.ceil(n/a) print(s*k)
Title: Theatre Square Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each ...
```python import math n,m,a=map(int,input().split()) s= math.ceil(m/a) k= math.ceil(n/a) print(s*k) ```
3.9615
82
A
Double Cola
PROGRAMMING
1,100
[ "implementation", "math" ]
A. Double Cola
1
256
Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resulting two Sheldons go to the end of the queue. Then the next in the queue (Leonard) buys a can, d...
The input data consist of a single integer *n* (1<=≤<=*n*<=≤<=109). It is guaranteed that the pretests check the spelling of all the five names, that is, that they contain all the five possible answers.
Print the single line — the name of the person who drinks the *n*-th can of cola. The cans are numbered starting from 1. Please note that you should spell the names like this: "Sheldon", "Leonard", "Penny", "Rajesh", "Howard" (without the quotes). In that order precisely the friends are in the queue initially.
[ "1\n", "6\n", "1802\n" ]
[ "Sheldon\n", "Sheldon\n", "Penny\n" ]
none
500
[ { "input": "1", "output": "Sheldon" }, { "input": "6", "output": "Sheldon" }, { "input": "1802", "output": "Penny" }, { "input": "1", "output": "Sheldon" }, { "input": "2", "output": "Leonard" }, { "input": "3", "output": "Penny" }, { "inpu...
1,463,508,634
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
12
1,000
5,529,600
l = ["Sheldon", "Leonard", "Penny", "Rajesh", "Howard"] result = "" for i in range(int(input())): result = l.pop(0) l.append(result) l.append(result) print(result)
Title: Double Cola Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resultin...
```python l = ["Sheldon", "Leonard", "Penny", "Rajesh", "Howard"] result = "" for i in range(int(input())): result = l.pop(0) l.append(result) l.append(result) print(result) ```
0
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,618,637,726
2,147,483,647
Python 3
OK
TESTS
34
154
0
s=int(input()) li={} for i in range(s): t=input() if t not in li.keys(): li[t]=1 else : li[t]=li[t]+1 for name, age in li.items(): if age == max(li.values()): print(name)
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python s=int(input()) li={} for i in range(s): t=input() if t not in li.keys(): li[t]=1 else : li[t]=li[t]+1 for name, age in li.items(): if age == max(li.values()): print(name) ```
3.9615
279
B
Books
PROGRAMMING
1,400
[ "binary search", "brute force", "implementation", "two pointers" ]
null
null
When Valera has got some free time, he goes to the library to read some books. Today he's got *t* free minutes to read. That's why Valera took *n* books in the library and for each book he estimated the time he is going to need to read it. Let's number the books by integers from 1 to *n*. Valera needs *a**i* minutes to...
The first line contains two integers *n* and *t* (1<=≤<=*n*<=≤<=105; 1<=≤<=*t*<=≤<=109) — the number of books and the number of free minutes Valera's got. The second line contains a sequence of *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=104), where number *a**i* shows the number of minutes that the boy n...
Print a single integer — the maximum number of books Valera can read.
[ "4 5\n3 1 2 1\n", "3 3\n2 2 3\n" ]
[ "3\n", "1\n" ]
none
1,000
[ { "input": "4 5\n3 1 2 1", "output": "3" }, { "input": "3 3\n2 2 3", "output": "1" }, { "input": "1 3\n5", "output": "0" }, { "input": "1 10\n4", "output": "1" }, { "input": "2 10\n6 4", "output": "2" }, { "input": "6 10\n2 3 4 2 1 1", "output": "4...
1,699,094,290
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
8
2,000
12,697,600
nBooks, time = map(int, input().split()) books = list(map(int, input().split())) Best = 0 low = 0 high = 0 while high < nBooks: snippet = books[low:high + 1] if sum(snippet) > time: low += 1 else: snippetLength = len(snippet) if snippetLength > Best: Best = sn...
Title: Books Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Valera has got some free time, he goes to the library to read some books. Today he's got *t* free minutes to read. That's why Valera took *n* books in the library and for each book he estimated the time he is going to need t...
```python nBooks, time = map(int, input().split()) books = list(map(int, input().split())) Best = 0 low = 0 high = 0 while high < nBooks: snippet = books[low:high + 1] if sum(snippet) > time: low += 1 else: snippetLength = len(snippet) if snippetLength > Best: ...
0
96
A
Football
PROGRAMMING
900
[ "implementation", "strings" ]
A. Football
2
256
Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A zero corresponds to players of one team; a one corresponds to players of another team. If...
The first input line contains a non-empty string consisting of characters "0" and "1", which represents players. The length of the string does not exceed 100 characters. There's at least one player from each team present on the field.
Print "YES" if the situation is dangerous. Otherwise, print "NO".
[ "001001\n", "1000000001\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "001001", "output": "NO" }, { "input": "1000000001", "output": "YES" }, { "input": "00100110111111101", "output": "YES" }, { "input": "11110111111111111", "output": "YES" }, { "input": "01", "output": "NO" }, { "input": "10100101", "outp...
1,665,041,518
2,147,483,647
Python 3
OK
TESTS
44
92
0
s=input() n=len(s) num=1 a=s[0] for i in range(1,n): if s[i]==a: num+=1 a=s[i] else: num=1 a=s[i] if num==7: print('YES') break else: print('NO')
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A...
```python s=input() n=len(s) num=1 a=s[0] for i in range(1,n): if s[i]==a: num+=1 a=s[i] else: num=1 a=s[i] if num==7: print('YES') break else: print('NO') ```
3.977
976
A
Minimum Binary Number
PROGRAMMING
800
[ "implementation" ]
null
null
String can be called correct if it consists of characters "0" and "1" and there are no redundant leading zeroes. Here are some examples: "0", "10", "1001". You are given a correct string *s*. You can perform two different operations on this string: 1. swap any pair of adjacent characters (for example, "101" "110"...
The first line contains integer number *n* (1<=≤<=*n*<=≤<=100) — the length of string *s*. The second line contains the string *s* consisting of characters "0" and "1". It is guaranteed that the string *s* is correct.
Print one string — the minimum correct string that you can obtain from the given one.
[ "4\n1001\n", "1\n1\n" ]
[ "100\n", "1\n" ]
In the first example you can obtain the answer by the following sequence of operations: "1001" <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> "1010" <img align="middle" class="tex-formula" src="ht...
0
[ { "input": "4\n1001", "output": "100" }, { "input": "1\n1", "output": "1" }, { "input": "100\n1110111100001111011111111010110011111111011110000111101101011100110110001011000000101010110101011100", "output": "1000000000000000000000000000000000000000" }, { "input": "100\n100000...
1,543,527,890
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <stdio.h> #include <stdlib.h> #include<math.h> typedef long long ll; ll power(int p,int q) { int i; ll r=1; for(i=0;i<q;i++) r*=p; return r; } int main() {int i,n,nb=0; scanf("%d",&n); char t[n]; scanf("%s",t); for(i=0;i<n;i++) if (t[i]=='0') nb++; if (nb!=0) printf(...
Title: Minimum Binary Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: String can be called correct if it consists of characters "0" and "1" and there are no redundant leading zeroes. Here are some examples: "0", "10", "1001". You are given a correct string *s*. You can perform two...
```python #include <stdio.h> #include <stdlib.h> #include<math.h> typedef long long ll; ll power(int p,int q) { int i; ll r=1; for(i=0;i<q;i++) r*=p; return r; } int main() {int i,n,nb=0; scanf("%d",&n); char t[n]; scanf("%s",t); for(i=0;i<n;i++) if (t[i]=='0') nb++; if (nb!=...
-1
822
A
I'm bored with life
PROGRAMMING
800
[ "implementation", "math", "number theory" ]
null
null
Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormitory for the period of university studies. Consequently Noora had to leave Vičkopolis and move to Pavlopo...
The first and single line contains two integers *A* and *B* (1<=≤<=*A*,<=*B*<=≤<=109,<=*min*(*A*,<=*B*)<=≤<=12).
Print a single integer denoting the greatest common divisor of integers *A*! and *B*!.
[ "4 3\n" ]
[ "6\n" ]
Consider the sample. 4! = 1·2·3·4 = 24. 3! = 1·2·3 = 6. The greatest common divisor of integers 24 and 6 is exactly 6.
500
[ { "input": "4 3", "output": "6" }, { "input": "10 399603090", "output": "3628800" }, { "input": "6 973151934", "output": "720" }, { "input": "2 841668075", "output": "2" }, { "input": "7 415216919", "output": "5040" }, { "input": "3 283733059", "ou...
1,663,938,506
506
Python 3
TIME_LIMIT_EXCEEDED
TESTS
1
1,000
1,536,000
import math a,b= map(int, input().split()) print(math.gcd(math.factorial(a),math.factorial(b)))
Title: I'm bored with life Time Limit: None seconds Memory Limit: None megabytes Problem Description: Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormi...
```python import math a,b= map(int, input().split()) print(math.gcd(math.factorial(a),math.factorial(b))) ```
0
61
A
Ultra-Fast Mathematician
PROGRAMMING
800
[ "implementation" ]
A. Ultra-Fast Mathematician
2
256
Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 1018 numbers in a single second. One day in 230 AD Shapur was trying to find out if any one can possibly do...
There are two lines in each input. Each of them contains a single number. It is guaranteed that the numbers are made from 0 and 1 only and that their length is same. The numbers may start with 0. The length of each number doesn't exceed 100.
Write one line — the corresponding answer. Do not omit the leading 0s.
[ "1010100\n0100101\n", "000\n111\n", "1110\n1010\n", "01110\n01100\n" ]
[ "1110001\n", "111\n", "0100\n", "00010\n" ]
none
500
[ { "input": "1010100\n0100101", "output": "1110001" }, { "input": "000\n111", "output": "111" }, { "input": "1110\n1010", "output": "0100" }, { "input": "01110\n01100", "output": "00010" }, { "input": "011101\n000001", "output": "011100" }, { "input": "...
1,591,358,975
2,147,483,647
Python 3
OK
TESTS
102
124
0
# Problem 61 A - Ultra-Fast Mathematician # input n_1 = list(input()) n_2 = list(input()) # initialization n_r = ['']*(len(n_1)) # clac for i in range(len(n_1)): n_1_tmp = int(n_1[i]) n_2_tmp = int(n_2[i]) n_r_tmp = (n_1_tmp + n_2_tmp)&1 n_r[i] = str(n_r_tmp) # output print("".join(...
Title: Ultra-Fast Mathematician Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 10...
```python # Problem 61 A - Ultra-Fast Mathematician # input n_1 = list(input()) n_2 = list(input()) # initialization n_r = ['']*(len(n_1)) # clac for i in range(len(n_1)): n_1_tmp = int(n_1[i]) n_2_tmp = int(n_2[i]) n_r_tmp = (n_1_tmp + n_2_tmp)&1 n_r[i] = str(n_r_tmp) # output prin...
3.969
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,610,386,908
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
46
307,200
n = int(input()) if n % 10 == 0: print(n) else: n1 = str(n) ln = len(n1) if ln > 1: m1 = '1' + '0' * (ln - 2) m = int(m1) l = n % m else: m = 10 l = n % m if l > 5: n = n // 10 n = (n + 1) * 10 else: n = n...
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 == 0: print(n) else: n1 = str(n) ln = len(n1) if ln > 1: m1 = '1' + '0' * (ln - 2) m = int(m1) l = n % m else: m = 10 l = n % m if l > 5: n = n // 10 n = (n + 1) * 10 else: ...
0
287
B
Pipeline
PROGRAMMING
1,700
[ "binary search", "math" ]
null
null
Vova, the Ultimate Thule new shaman, wants to build a pipeline. As there are exactly *n* houses in Ultimate Thule, Vova wants the city to have exactly *n* pipes, each such pipe should be connected to the water supply. A pipe can be connected to the water supply if there's water flowing out of it. Initially Vova has onl...
The first line contains two space-separated integers *n* and *k* (1<=≤<=*n*<=≤<=1018, 2<=≤<=*k*<=≤<=109). Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.
Print a single integer — the minimum number of splitters needed to build the pipeline. If it is impossible to build a pipeline with the given splitters, print -1.
[ "4 3\n", "5 5\n", "8 4\n" ]
[ "2\n", "1\n", "-1\n" ]
none
1,500
[ { "input": "4 3", "output": "2" }, { "input": "5 5", "output": "1" }, { "input": "8 4", "output": "-1" }, { "input": "1000000000000000000 1000000000", "output": "-1" }, { "input": "499999998500000001 1000000000", "output": "999955279" }, { "input": "49...
1,645,382,506
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
3
400
0
n, k = map(int, input().split()) def binary(n, k): low = 1 high = k - 1 min = 0 ans = 0 while low <= high: pocet = 0 mid = (low + high)//2 suma = 0 for i in range(mid, k): pocet += 1 suma += i if suma >= n-1: l...
Title: Pipeline Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vova, the Ultimate Thule new shaman, wants to build a pipeline. As there are exactly *n* houses in Ultimate Thule, Vova wants the city to have exactly *n* pipes, each such pipe should be connected to the water supply. A pipe c...
```python n, k = map(int, input().split()) def binary(n, k): low = 1 high = k - 1 min = 0 ans = 0 while low <= high: pocet = 0 mid = (low + high)//2 suma = 0 for i in range(mid, k): pocet += 1 suma += i if suma >= n-1: ...
0
765
C
Table Tennis Game 2
PROGRAMMING
1,200
[ "math" ]
null
null
Misha and Vanya have played several table tennis sets. Each set consists of several serves, each serve is won by one of the players, he receives one point and the loser receives nothing. Once one of the players scores exactly *k* points, the score is reset and a new set begins. Across all the sets Misha scored *a* poi...
The first line contains three space-separated integers *k*, *a* and *b* (1<=≤<=*k*<=≤<=109, 0<=≤<=*a*,<=*b*<=≤<=109, *a*<=+<=*b*<=&gt;<=0).
If the situation is impossible, print a single number -1. Otherwise, print the maximum possible number of sets.
[ "11 11 5\n", "11 2 3\n" ]
[ "1\n", "-1\n" ]
Note that the rules of the game in this problem differ from the real table tennis game, for example, the rule of "balance" (the winning player has to be at least two points ahead to win a set) has no power within the present problem.
1,250
[ { "input": "11 11 5", "output": "1" }, { "input": "11 2 3", "output": "-1" }, { "input": "1 5 9", "output": "14" }, { "input": "2 3 3", "output": "2" }, { "input": "1 1000000000 1000000000", "output": "2000000000" }, { "input": "2 3 5", "output": "...
1,490,547,082
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
13
62
4,608,000
k, a, b = map(int, input().split(' ')) def main(): if (a % k != 0 and b % k != 0) or (k > a and k > b): if (a + b) % k != 0: return -1 return (a // k) + (b // k) print(main())
Title: Table Tennis Game 2 Time Limit: None seconds Memory Limit: None megabytes Problem Description: Misha and Vanya have played several table tennis sets. Each set consists of several serves, each serve is won by one of the players, he receives one point and the loser receives nothing. Once one of the players scor...
```python k, a, b = map(int, input().split(' ')) def main(): if (a % k != 0 and b % k != 0) or (k > a and k > b): if (a + b) % k != 0: return -1 return (a // k) + (b // k) print(main()) ```
0
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,685,755,695
2,147,483,647
PyPy 3
OK
TESTS
40
186
307,200
def inp(): return(int(input())) def inlt(): return(list(map(int,input().split()))) def insr(): s = input() return(list(s[:len(s)])) def invr(): return(map(int,input().split())) import math from collections import deque s1 = insr() s2 = insr() s2.reverse() if s1==s2: print("YES")...
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 def inp(): return(int(input())) def inlt(): return(list(map(int,input().split()))) def insr(): s = input() return(list(s[:len(s)])) def invr(): return(map(int,input().split())) import math from collections import deque s1 = insr() s2 = insr() s2.reverse() if s1==s2: pr...
3.952928
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,560,008,970
2,147,483,647
Python 3
OK
TESTS
64
109
0
n = int(input()) k=n%10 h=0 if k<=5: h= n-k else: h = n+10-k print(h)
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()) k=n%10 h=0 if k<=5: h= n-k else: h = n+10-k print(h) ```
3
344
A
Magnets
PROGRAMMING
800
[ "implementation" ]
null
null
Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets are put together at a close distance, then the like poles will repel each other and the oppo...
The first line of the input contains an integer *n* (1<=≤<=*n*<=≤<=100000) — the number of magnets. Then *n* lines follow. The *i*-th line (1<=≤<=*i*<=≤<=*n*) contains either characters "01", if Mike put the *i*-th magnet in the "plus-minus" position, or characters "10", if Mike put the magnet in the "minus-plus" posit...
On the single line of the output print the number of groups of magnets.
[ "6\n10\n10\n10\n01\n10\n10\n", "4\n01\n01\n10\n10\n" ]
[ "3\n", "2\n" ]
The first testcase corresponds to the figure. The testcase has three groups consisting of three, one and two magnets. The second testcase has two groups, each consisting of two magnets.
500
[ { "input": "6\n10\n10\n10\n01\n10\n10", "output": "3" }, { "input": "4\n01\n01\n10\n10", "output": "2" }, { "input": "1\n10", "output": "1" }, { "input": "2\n01\n10", "output": "2" }, { "input": "2\n10\n10", "output": "1" }, { "input": "3\n10\n01\n10",...
1,694,773,547
2,147,483,647
Python 3
OK
TESTS
31
280
8,499,200
n = int(input()) x = '' for i in range(n): m = input() x += m a = x.split('11') b = x.split('00') print(len(a)+len(b)-1)
Title: Magnets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets...
```python n = int(input()) x = '' for i in range(n): m = input() x += m a = x.split('11') b = x.split('00') print(len(a)+len(b)-1) ```
3
910
A
The Way to Home
PROGRAMMING
800
[ "dfs and similar", "dp", "greedy", "implementation" ]
null
null
A frog lives on the axis *Ox* and needs to reach home which is in the point *n*. She starts from the point 1. The frog can jump to the right at a distance not more than *d*. So, after she jumped from the point *x* she can reach the point *x*<=+<=*a*, where *a* is an integer from 1 to *d*. For each point from 1 to *n* ...
The first line contains two integers *n* and *d* (2<=≤<=*n*<=≤<=100, 1<=≤<=*d*<=≤<=*n*<=-<=1) — the point, which the frog wants to reach, and the maximal length of the frog jump. The second line contains a string *s* of length *n*, consisting of zeros and ones. If a character of the string *s* equals to zero, then in ...
If the frog can not reach the home, print -1. In the other case, print the minimal number of jumps that the frog needs to reach the home which is in the point *n* from the point 1.
[ "8 4\n10010101\n", "4 2\n1001\n", "8 4\n11100101\n", "12 3\n101111100101\n" ]
[ "2\n", "-1\n", "3\n", "4\n" ]
In the first example the from can reach home in two jumps: the first jump from the point 1 to the point 4 (the length of the jump is three), and the second jump from the point 4 to the point 8 (the length of the jump is four). In the second example the frog can not reach home, because to make it she need to jump on a ...
500
[ { "input": "8 4\n10010101", "output": "2" }, { "input": "4 2\n1001", "output": "-1" }, { "input": "8 4\n11100101", "output": "3" }, { "input": "12 3\n101111100101", "output": "4" }, { "input": "5 4\n11011", "output": "1" }, { "input": "5 4\n10001", ...
1,698,250,654
2,147,483,647
PyPy 3-64
OK
TESTS
63
77
0
n, d = map(int, input().split()) s = input() dp = [float('inf')] * n dp[0] = 0 for i in range(1, n): if s[i] == '1': for j in range(i - 1, max(i - d - 1, -1), -1): dp[i] = min(dp[i], dp[j] + 1) if dp[n - 1] == float('inf'): print(-1) else: print(dp[n - 1]) ...
Title: The Way to Home Time Limit: None seconds Memory Limit: None megabytes Problem Description: A frog lives on the axis *Ox* and needs to reach home which is in the point *n*. She starts from the point 1. The frog can jump to the right at a distance not more than *d*. So, after she jumped from the point *x* she c...
```python n, d = map(int, input().split()) s = input() dp = [float('inf')] * n dp[0] = 0 for i in range(1, n): if s[i] == '1': for j in range(i - 1, max(i - d - 1, -1), -1): dp[i] = min(dp[i], dp[j] + 1) if dp[n - 1] == float('inf'): print(-1) else: print(dp[n - 1]) ...
3
405
A
Gravity Flip
PROGRAMMING
900
[ "greedy", "implementation", "sortings" ]
null
null
Little Chris is bored during his physics lessons (too easy), so he has built a toy box to keep himself occupied. The box is special, since it has the ability to change gravity. There are *n* columns of toy cubes in the box arranged in a line. The *i*-th column contains *a**i* cubes. At first, the gravity in the box is...
The first line of input contains an integer *n* (1<=≤<=*n*<=≤<=100), the number of the columns in the box. The next line contains *n* space-separated integer numbers. The *i*-th number *a**i* (1<=≤<=*a**i*<=≤<=100) denotes the number of cubes in the *i*-th column.
Output *n* integer numbers separated by spaces, where the *i*-th number is the amount of cubes in the *i*-th column after the gravity switch.
[ "4\n3 2 1 2\n", "3\n2 3 8\n" ]
[ "1 2 2 3 \n", "2 3 8 \n" ]
The first example case is shown on the figure. The top cube of the first column falls to the top of the last column; the top cube of the second column falls to the top of the third column; the middle cube of the first column falls to the top of the second column. In the second example case the gravity switch does not ...
500
[ { "input": "4\n3 2 1 2", "output": "1 2 2 3 " }, { "input": "3\n2 3 8", "output": "2 3 8 " }, { "input": "5\n2 1 2 1 2", "output": "1 1 2 2 2 " }, { "input": "1\n1", "output": "1 " }, { "input": "2\n4 3", "output": "3 4 " }, { "input": "6\n100 40 60 20...
1,692,107,613
2,147,483,647
Python 3
OK
TESTS
32
46
0
a=int(input()) tab=[] c=map(int,input().split(" ")) lista=list(c) k=True while k: k=False for i in range(len(lista)-1): if lista[i]>lista[i+1]: lista[i],lista[i+1]=lista[i+1],lista[i] k=True res="" for i in lista: res+=str(i) res+=" " print(res)
Title: Gravity Flip Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Chris is bored during his physics lessons (too easy), so he has built a toy box to keep himself occupied. The box is special, since it has the ability to change gravity. There are *n* columns of toy cubes in the bo...
```python a=int(input()) tab=[] c=map(int,input().split(" ")) lista=list(c) k=True while k: k=False for i in range(len(lista)-1): if lista[i]>lista[i+1]: lista[i],lista[i+1]=lista[i+1],lista[i] k=True res="" for i in lista: res+=str(i) res+=" " print(re...
3
789
A
Anastasia and pebbles
PROGRAMMING
1,100
[ "implementation", "math" ]
null
null
Anastasia loves going for a walk in Central Uzhlyandian Park. But she became uninterested in simple walking, so she began to collect Uzhlyandian pebbles. At first, she decided to collect all the pebbles she could find in the park. She has only two pockets. She can put at most *k* pebbles in each pocket at the same tim...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=105, 1<=≤<=*k*<=≤<=109) — the number of different pebble types and number of pebbles Anastasia can place in one pocket. The second line contains *n* integers *w*1,<=*w*2,<=...,<=*w**n* (1<=≤<=*w**i*<=≤<=104) — number of pebbles of each type.
The only line of output contains one integer — the minimum number of days Anastasia needs to collect all the pebbles.
[ "3 2\n2 3 4\n", "5 4\n3 1 8 9 7\n" ]
[ "3\n", "5\n" ]
In the first sample case, Anastasia can collect all pebbles of the first type on the first day, of second type — on the second day, and of third type — on the third day. Optimal sequence of actions in the second sample case: - In the first day Anastasia collects 8 pebbles of the third type. - In the second day she...
500
[ { "input": "3 2\n2 3 4", "output": "3" }, { "input": "5 4\n3 1 8 9 7", "output": "5" }, { "input": "1 22\n1", "output": "1" }, { "input": "3 57\n78 165 54", "output": "3" }, { "input": "5 72\n74 10 146 189 184", "output": "6" }, { "input": "9 13\n132 8...
1,495,571,736
2,147,483,647
Python 3
OK
TESTS
31
187
7,270,400
n, k=map(int,input().split()) a=[int(i) for i in input().split()] i=0 p=0 for u in a: if u//(2*k)>=1: i+=u//(2*k) if u%(2*k)<=k and u%(2*k)!=0 and p==0: p+=1 elif u%(2*k)!=0 and u%(2*k)<=k and p==1: i+=1 p=0 elif u%(2*k)>k: ...
Title: Anastasia and pebbles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anastasia loves going for a walk in Central Uzhlyandian Park. But she became uninterested in simple walking, so she began to collect Uzhlyandian pebbles. At first, she decided to collect all the pebbles she could ...
```python n, k=map(int,input().split()) a=[int(i) for i in input().split()] i=0 p=0 for u in a: if u//(2*k)>=1: i+=u//(2*k) if u%(2*k)<=k and u%(2*k)!=0 and p==0: p+=1 elif u%(2*k)!=0 and u%(2*k)<=k and p==1: i+=1 p=0 elif u%(2*k)>k: ...
3
878
A
Short Program
PROGRAMMING
1,600
[ "bitmasks", "constructive algorithms" ]
null
null
Petya learned a new programming language CALPAS. A program in this language always takes one non-negative integer and returns one non-negative integer as well. In the language, there are only three commands: apply a bitwise operation AND, OR or XOR with a given constant to the current integer. A program can contain an...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=5·105) — the number of lines. Next *n* lines contain commands. A command consists of a character that represents the operation ("&amp;", "|" or "^" for AND, OR or XOR respectively), and the constant *x**i* 0<=≤<=*x**i*<=≤<=1023.
Output an integer *k* (0<=≤<=*k*<=≤<=5) — the length of your program. Next *k* lines must contain commands in the same format as in the input.
[ "3\n| 3\n^ 2\n| 1\n", "3\n&amp; 1\n&amp; 3\n&amp; 5\n", "3\n^ 1\n^ 2\n^ 3\n" ]
[ "2\n| 3\n^ 2\n", "1\n&amp; 1\n", "0\n" ]
You can read about bitwise operations in [https://en.wikipedia.org/wiki/Bitwise_operation](https://en.wikipedia.org/wiki/Bitwise_operation). Second sample: Let *x* be an input of the Petya's program. It's output is ((*x*&amp;1)&amp;3)&amp;5 = *x*&amp;(1&amp;3&amp;5) = *x*&amp;1. So these two programs always give the ...
500
[ { "input": "3\n| 3\n^ 2\n| 1", "output": "2\n| 3\n^ 2" }, { "input": "3\n& 1\n& 3\n& 5", "output": "1\n& 1" }, { "input": "3\n^ 1\n^ 2\n^ 3", "output": "0" }, { "input": "2\n| 999\n^ 689", "output": "2\n| 999\n^ 689" }, { "input": "3\n& 242\n^ 506\n^ 522", "ou...
1,509,304,245
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
62
0
t= int(input()) aa=0b1111111111 o=0 e=0 for i in range(t): k=input().split() a=k[0][0] b=int(k[1]) if a=='|': o=o|b elif a=='&': aa=aa&b else: e=e^b print("3") print("| "+str(o)) print("& "+str(aa)) print("^ "+str(e))
Title: Short Program Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya learned a new programming language CALPAS. A program in this language always takes one non-negative integer and returns one non-negative integer as well. In the language, there are only three commands: apply a bitw...
```python t= int(input()) aa=0b1111111111 o=0 e=0 for i in range(t): k=input().split() a=k[0][0] b=int(k[1]) if a=='|': o=o|b elif a=='&': aa=aa&b else: e=e^b print("3") print("| "+str(o)) print("& "+str(aa)) print("^ "+str(e)) ```
0
353
A
Domino
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
Valera has got *n* domino pieces in a row. Each piece consists of two halves — the upper one and the lower one. Each of the halves contains a number from 1 to 6. Valera loves even integers very much, so he wants the sum of the numbers on the upper halves and the sum of the numbers on the lower halves to be even. To do...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100), denoting the number of dominoes Valera has. Next *n* lines contain two space-separated integers *x**i*,<=*y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<=6). Number *x**i* is initially written on the upper half of the *i*-th domino, *y**i* is initially written on the lower half...
Print a single number — the minimum required number of seconds. If Valera can't do the task in any time, print <=-<=1.
[ "2\n4 2\n6 4\n", "1\n2 3\n", "3\n1 4\n2 3\n4 4\n" ]
[ "0\n", "-1\n", "1\n" ]
In the first test case the sum of the numbers on the upper halves equals 10 and the sum of the numbers on the lower halves equals 6. Both numbers are even, so Valera doesn't required to do anything. In the second sample Valera has only one piece of domino. It is written 3 on the one of its halves, therefore one of the...
500
[ { "input": "2\n4 2\n6 4", "output": "0" }, { "input": "1\n2 3", "output": "-1" }, { "input": "3\n1 4\n2 3\n4 4", "output": "1" }, { "input": "5\n5 4\n5 4\n1 5\n5 5\n3 3", "output": "1" }, { "input": "20\n1 3\n5 2\n5 2\n2 6\n2 4\n1 1\n1 3\n1 4\n2 6\n4 2\n5 6\n2 2\n...
1,381,420,983
1,983
Python 3
WRONG_ANSWER
TESTS
7
124
0
#odd numbers on top #odd numbers on bottom #if total number of odd is not even then -1 #if total number on top or bottom is not even then 1 else 0 def minflips(topodds,bottomodds): if (topodds+bottomodds)%2 != 0: return -1 elif (topodds%2 != 0) or (bottomodds%2 != 0): return 1 else: return 0 if...
Title: Domino Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera has got *n* domino pieces in a row. Each piece consists of two halves — the upper one and the lower one. Each of the halves contains a number from 1 to 6. Valera loves even integers very much, so he wants the sum of the n...
```python #odd numbers on top #odd numbers on bottom #if total number of odd is not even then -1 #if total number on top or bottom is not even then 1 else 0 def minflips(topodds,bottomodds): if (topodds+bottomodds)%2 != 0: return -1 elif (topodds%2 != 0) or (bottomodds%2 != 0): return 1 else: retur...
0
745
A
Hongcow Learns the Cyclic Shift
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to make new words from this one. He starts by taking the word he just learned how to spell, and moves the last character ...
The first line of input will be a single string *s* (1<=≤<=|*s*|<=≤<=50), the word Hongcow initially learns how to spell. The string *s* consists only of lowercase English letters ('a'–'z').
Output a single integer equal to the number of distinct strings that Hongcow can obtain by applying the cyclic shift arbitrarily many times to the given string.
[ "abcd\n", "bbb\n", "yzyz\n" ]
[ "4\n", "1\n", "2\n" ]
For the first sample, the strings Hongcow can generate are "abcd", "dabc", "cdab", and "bcda". For the second sample, no matter how many times Hongcow does the cyclic shift, Hongcow can only generate "bbb". For the third sample, the two strings Hongcow can generate are "yzyz" and "zyzy".
500
[ { "input": "abcd", "output": "4" }, { "input": "bbb", "output": "1" }, { "input": "yzyz", "output": "2" }, { "input": "abcdefghijklmnopqrstuvwxyabcdefghijklmnopqrstuvwxy", "output": "25" }, { "input": "zclkjadoprqronzclkjadoprqronzclkjadoprqron", "output": "14...
1,481,994,493
1,993
Python 3
OK
TESTS
28
61
4,608,000
a = input() b = [] k = 0 t = False n = len(a) temp = "" for i in range(n): for j in b: if j == a: t = True if not t: k += 1 b.append(a) temp = a a = "" + temp[n-1] + temp[0:n-1] t = False print(k)
Title: Hongcow Learns the Cyclic Shift Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to m...
```python a = input() b = [] k = 0 t = False n = len(a) temp = "" for i in range(n): for j in b: if j == a: t = True if not t: k += 1 b.append(a) temp = a a = "" + temp[n-1] + temp[0:n-1] t = False print(k) ```
3
610
A
Pasha and Stick
PROGRAMMING
1,000
[ "combinatorics", "math" ]
null
null
Pasha has a wooden stick of some positive integer length *n*. He wants to perform exactly three cuts to get four parts of the stick. Each part must have some positive integer length and the sum of these lengths will obviously be *n*. Pasha likes rectangles but hates squares, so he wonders, how many ways are there to ...
The first line of the input contains a positive integer *n* (1<=≤<=*n*<=≤<=2·109) — the length of Pasha's stick.
The output should contain a single integer — the number of ways to split Pasha's stick into four parts of positive integer length so that it's possible to make a rectangle by connecting the ends of these parts, but is impossible to form a square.
[ "6\n", "20\n" ]
[ "1\n", "4\n" ]
There is only one way to divide the stick in the first sample {1, 1, 2, 2}. Four ways to divide the stick in the second sample are {1, 1, 9, 9}, {2, 2, 8, 8}, {3, 3, 7, 7} and {4, 4, 6, 6}. Note that {5, 5, 5, 5} doesn't work.
500
[ { "input": "6", "output": "1" }, { "input": "20", "output": "4" }, { "input": "1", "output": "0" }, { "input": "2", "output": "0" }, { "input": "3", "output": "0" }, { "input": "4", "output": "0" }, { "input": "2000000000", "output": "4...
1,634,241,366
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
6
1,000
0
n = int(input()) ans = 0 for i in range(1, n): if ((n - i * 2)/2).is_integer() and (n - i * 2) > 0 and i * 2 < n\ and (n - i * 2)/2 != i: ans += 1 print(ans // 2)
Title: Pasha and Stick Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha has a wooden stick of some positive integer length *n*. He wants to perform exactly three cuts to get four parts of the stick. Each part must have some positive integer length and the sum of these lengths will obv...
```python n = int(input()) ans = 0 for i in range(1, n): if ((n - i * 2)/2).is_integer() and (n - i * 2) > 0 and i * 2 < n\ and (n - i * 2)/2 != i: ans += 1 print(ans // 2) ```
0
910
A
The Way to Home
PROGRAMMING
800
[ "dfs and similar", "dp", "greedy", "implementation" ]
null
null
A frog lives on the axis *Ox* and needs to reach home which is in the point *n*. She starts from the point 1. The frog can jump to the right at a distance not more than *d*. So, after she jumped from the point *x* she can reach the point *x*<=+<=*a*, where *a* is an integer from 1 to *d*. For each point from 1 to *n* ...
The first line contains two integers *n* and *d* (2<=≤<=*n*<=≤<=100, 1<=≤<=*d*<=≤<=*n*<=-<=1) — the point, which the frog wants to reach, and the maximal length of the frog jump. The second line contains a string *s* of length *n*, consisting of zeros and ones. If a character of the string *s* equals to zero, then in ...
If the frog can not reach the home, print -1. In the other case, print the minimal number of jumps that the frog needs to reach the home which is in the point *n* from the point 1.
[ "8 4\n10010101\n", "4 2\n1001\n", "8 4\n11100101\n", "12 3\n101111100101\n" ]
[ "2\n", "-1\n", "3\n", "4\n" ]
In the first example the from can reach home in two jumps: the first jump from the point 1 to the point 4 (the length of the jump is three), and the second jump from the point 4 to the point 8 (the length of the jump is four). In the second example the frog can not reach home, because to make it she need to jump on a ...
500
[ { "input": "8 4\n10010101", "output": "2" }, { "input": "4 2\n1001", "output": "-1" }, { "input": "8 4\n11100101", "output": "3" }, { "input": "12 3\n101111100101", "output": "4" }, { "input": "5 4\n11011", "output": "1" }, { "input": "5 4\n10001", ...
1,599,417,657
2,147,483,647
Python 3
OK
TESTS
63
109
307,200
n, d = list(map(int, input().split())) s = input() dp = [1000] * 105 dp[0] = 0 for i in range(n): if (s[i] == '0'): continue for j in range(min(d + 1, i + 1)): if (s[i - j] == '1'): dp[i] = min(dp[i - j] + 1, dp[i]) if (dp[n - 1] == 1000): print(-1) else: print(dp[n - 1])
Title: The Way to Home Time Limit: None seconds Memory Limit: None megabytes Problem Description: A frog lives on the axis *Ox* and needs to reach home which is in the point *n*. She starts from the point 1. The frog can jump to the right at a distance not more than *d*. So, after she jumped from the point *x* she c...
```python n, d = list(map(int, input().split())) s = input() dp = [1000] * 105 dp[0] = 0 for i in range(n): if (s[i] == '0'): continue for j in range(min(d + 1, i + 1)): if (s[i - j] == '1'): dp[i] = min(dp[i - j] + 1, dp[i]) if (dp[n - 1] == 1000): print(-1) else: print(dp[n...
3
754
A
Lesha and array splitting
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "implementation" ]
null
null
One spring day on his way to university Lesha found an array *A*. Lesha likes to split arrays into several parts. This time Lesha decided to split the array *A* into several, possibly one, new arrays so that the sum of elements in each of the new arrays is not zero. One more condition is that if we place the new arrays...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in the array *A*. The next line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=103<=≤<=*a**i*<=≤<=103) — the elements of the array *A*.
If it is not possible to split the array *A* and satisfy all the constraints, print single line containing "NO" (without quotes). Otherwise in the first line print "YES" (without quotes). In the next line print single integer *k* — the number of new arrays. In each of the next *k* lines print two integers *l**i* and *...
[ "3\n1 2 -3\n", "8\n9 -12 3 4 -4 -10 7 3\n", "1\n0\n", "4\n1 2 3 -5\n" ]
[ "YES\n2\n1 2\n3 3\n", "YES\n2\n1 2\n3 8\n", "NO\n", "YES\n4\n1 1\n2 2\n3 3\n4 4\n" ]
none
500
[ { "input": "3\n1 2 -3", "output": "YES\n3\n1 1\n2 2\n3 3" }, { "input": "8\n9 -12 3 4 -4 -10 7 3", "output": "YES\n8\n1 1\n2 2\n3 3\n4 4\n5 5\n6 6\n7 7\n8 8" }, { "input": "1\n0", "output": "NO" }, { "input": "4\n1 2 3 -5", "output": "YES\n4\n1 1\n2 2\n3 3\n4 4" }, { ...
1,641,036,421
2,147,483,647
Python 3
OK
TESTS
80
62
0
a=int(input()) x=list(map(int, input().split())) z=x.count(0) if z!=a: print('YES') s=sum(x) if s==0: print(2) for i in x: if s-i!=0: print(1, x.index(i) + 1) print(x.index(i) + 2, a) break else: print(1) print(1, a) else: prin...
Title: Lesha and array splitting Time Limit: None seconds Memory Limit: None megabytes Problem Description: One spring day on his way to university Lesha found an array *A*. Lesha likes to split arrays into several parts. This time Lesha decided to split the array *A* into several, possibly one, new arrays so that t...
```python a=int(input()) x=list(map(int, input().split())) z=x.count(0) if z!=a: print('YES') s=sum(x) if s==0: print(2) for i in x: if s-i!=0: print(1, x.index(i) + 1) print(x.index(i) + 2, a) break else: print(1) print(1, a) else:...
3
300
A
Array
PROGRAMMING
1,100
[ "brute force", "constructive algorithms", "implementation" ]
null
null
Vitaly has an array of *n* distinct integers. Vitaly wants to divide this array into three non-empty sets so as the following conditions hold: 1. The product of all numbers in the first set is less than zero (<=&lt;<=0). 1. The product of all numbers in the second set is greater than zero (<=&gt;<=0). 1. The produ...
The first line of the input contains integer *n* (3<=≤<=*n*<=≤<=100). The second line contains *n* space-separated distinct integers *a*1,<=*a*2,<=...,<=*a**n* (|*a**i*|<=≤<=103) — the array elements.
In the first line print integer *n*1 (*n*1<=&gt;<=0) — the number of elements in the first set. Then print *n*1 numbers — the elements that got to the first set. In the next line print integer *n*2 (*n*2<=&gt;<=0) — the number of elements in the second set. Then print *n*2 numbers — the elements that got to the second...
[ "3\n-1 2 0\n", "4\n-1 -2 -3 0\n" ]
[ "1 -1\n1 2\n1 0\n", "1 -1\n2 -3 -2\n1 0\n" ]
none
500
[ { "input": "3\n-1 2 0", "output": "1 -1\n1 2\n1 0" }, { "input": "4\n-1 -2 -3 0", "output": "1 -1\n2 -3 -2\n1 0" }, { "input": "5\n-1 -2 1 2 0", "output": "1 -1\n2 1 2\n2 0 -2" }, { "input": "100\n-64 -51 -75 -98 74 -26 -1 -8 -99 -76 -53 -80 -43 -22 -100 -62 -34 -5 -65 -81 -1...
1,625,271,134
2,147,483,647
Python 3
OK
TESTS
20
124
0
n=int(input()) a=list(map(int,input().split())) a=sorted(a) p=[] q=[] r=[] for i in a: if i<0: p.append(i) if i>0: q.append(i) if i==0: r.append(i) if len(p)%2==0: t=p[0] p.remove(t) r.append(t) if len(q)==0: m=p[len(p)-1] p.remove(m) q.append(m) n=p[len(p...
Title: Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vitaly has an array of *n* distinct integers. Vitaly wants to divide this array into three non-empty sets so as the following conditions hold: 1. The product of all numbers in the first set is less than zero (<=&lt;<=0). 1. T...
```python n=int(input()) a=list(map(int,input().split())) a=sorted(a) p=[] q=[] r=[] for i in a: if i<0: p.append(i) if i>0: q.append(i) if i==0: r.append(i) if len(p)%2==0: t=p[0] p.remove(t) r.append(t) if len(q)==0: m=p[len(p)-1] p.remove(m) q.append(m) ...
3
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,637,668,710
2,147,483,647
Python 3
OK
TESTS
32
124
0
n = int(input()) E = list(map(int, input().split())) e0 = e1 = o0 = o1 = 0 for i in range(0, len(E)): if(E[i] % 2 == 0): e0 += 1 e1 = i else: o0 += 1 o1 = i if(o0 == 1): print(o1 + 1) else: print(e1 + 1)
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python n = int(input()) E = list(map(int, input().split())) e0 = e1 = o0 = o1 = 0 for i in range(0, len(E)): if(E[i] % 2 == 0): e0 += 1 e1 = i else: o0 += 1 o1 = i if(o0 == 1): print(o1 + 1) else: print(e1 + 1) ```
3.969
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,634,556,664
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
62
0
st=input() l=st.split(" ") for i in range(len(l)): l[i]=int(l[i]) if l[0]==1: dom=int(l[0])+(int(l[1])%2) print(dom) elif l[1]==1: dom=int(l[1])+(int(l[0])%2) print(dom) if int(l[0])>int(l[1]) and l[0]!=1 and l[1]!=1: dom=int(l[0])+(int(l[1])%2) print(dom) elif int(l[0])<int(l...
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python st=input() l=st.split(" ") for i in range(len(l)): l[i]=int(l[i]) if l[0]==1: dom=int(l[0])+(int(l[1])%2) print(dom) elif l[1]==1: dom=int(l[1])+(int(l[0])%2) print(dom) if int(l[0])>int(l[1]) and l[0]!=1 and l[1]!=1: dom=int(l[0])+(int(l[1])%2) print(dom) elif int(l...
0
96
A
Football
PROGRAMMING
900
[ "implementation", "strings" ]
A. Football
2
256
Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A zero corresponds to players of one team; a one corresponds to players of another team. If...
The first input line contains a non-empty string consisting of characters "0" and "1", which represents players. The length of the string does not exceed 100 characters. There's at least one player from each team present on the field.
Print "YES" if the situation is dangerous. Otherwise, print "NO".
[ "001001\n", "1000000001\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "001001", "output": "NO" }, { "input": "1000000001", "output": "YES" }, { "input": "00100110111111101", "output": "YES" }, { "input": "11110111111111111", "output": "YES" }, { "input": "01", "output": "NO" }, { "input": "10100101", "outp...
1,679,325,603
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
5
92
0
t = input() conta = 0 contb = 0 sol = "NO" if len(t) < 7: print("NO") else: while len(t) >= 0: if contb >= 7 or conta >= 7: sol = "YES" break if t[0] == "0": contb = 0 conta += 1 t = t[1:] elif t[0] == "1": ...
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A...
```python t = input() conta = 0 contb = 0 sol = "NO" if len(t) < 7: print("NO") else: while len(t) >= 0: if contb >= 7 or conta >= 7: sol = "YES" break if t[0] == "0": contb = 0 conta += 1 t = t[1:] elif t[0] ...
-1
358
A
Dima and Continuous Line
PROGRAMMING
1,400
[ "brute force", "implementation" ]
null
null
Dima and Seryozha live in an ordinary dormitory room for two. One day Dima had a date with his girl and he asked Seryozha to leave the room. As a compensation, Seryozha made Dima do his homework. The teacher gave Seryozha the coordinates of *n* distinct points on the abscissa axis and asked to consecutively connect th...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=103). The second line contains *n* distinct integers *x*1,<=*x*2,<=...,<=*x**n* (<=-<=106<=≤<=*x**i*<=≤<=106) — the *i*-th point has coordinates (*x**i*,<=0). The points are not necessarily sorted by their *x* coordinate.
In the single line print "yes" (without the quotes), if the line has self-intersections. Otherwise, print "no" (without the quotes).
[ "4\n0 10 5 15\n", "4\n0 15 5 10\n" ]
[ "yes\n", "no\n" ]
The first test from the statement is on the picture to the left, the second test is on the picture to the right.
500
[ { "input": "4\n0 10 5 15", "output": "yes" }, { "input": "4\n0 15 5 10", "output": "no" }, { "input": "5\n0 1000 2000 3000 1500", "output": "yes" }, { "input": "5\n-724093 710736 -383722 -359011 439613", "output": "no" }, { "input": "50\n384672 661179 -775591 -989...
1,638,498,109
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
77
3,379,200
import bisect n=int(input()) a=list(map(int,input().split())) s=min(a) s=bisect.bisect_right(a,x) print(s)
Title: Dima and Continuous Line Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dima and Seryozha live in an ordinary dormitory room for two. One day Dima had a date with his girl and he asked Seryozha to leave the room. As a compensation, Seryozha made Dima do his homework. The teacher g...
```python import bisect n=int(input()) a=list(map(int,input().split())) s=min(a) s=bisect.bisect_right(a,x) print(s) ```
-1
151
A
Soft Drinking
PROGRAMMING
800
[ "implementation", "math" ]
null
null
This winter is so cold in Nvodsk! A group of *n* friends decided to buy *k* bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has *l* milliliters of the drink. Also they bought *c* limes and cut each of them into *d* slices. After that they found *p* grams of salt. To make a toast, each frie...
The first and only line contains positive integers *n*, *k*, *l*, *c*, *d*, *p*, *nl*, *np*, not exceeding 1000 and no less than 1. The numbers are separated by exactly one space.
Print a single integer — the number of toasts each friend can make.
[ "3 4 5 10 8 100 3 1\n", "5 100 10 1 19 90 4 3\n", "10 1000 1000 25 23 1 50 1\n" ]
[ "2\n", "3\n", "0\n" ]
A comment to the first sample: Overall the friends have 4 * 5 = 20 milliliters of the drink, it is enough to make 20 / 3 = 6 toasts. The limes are enough for 10 * 8 = 80 toasts and the salt is enough for 100 / 1 = 100 toasts. However, there are 3 friends in the group, so the answer is *min*(6, 80, 100) / 3 = 2.
500
[ { "input": "3 4 5 10 8 100 3 1", "output": "2" }, { "input": "5 100 10 1 19 90 4 3", "output": "3" }, { "input": "10 1000 1000 25 23 1 50 1", "output": "0" }, { "input": "1 7 4 5 5 8 3 2", "output": "4" }, { "input": "2 3 3 5 5 10 1 3", "output": "1" }, { ...
1,670,974,853
2,147,483,647
PyPy 3-64
OK
TESTS
27
122
0
n, k, l, c, d, p, nl, np = map(int, input().split()) ml_drink = k*l/n lime_slice = c*d sal = p/n if (ml_drink < nl) or (lime_slice < n) or (sal<np) : print(0) else : nb = ml_drink/nl print(int(min(nb,lime_slice/n,sal/np)))
Title: Soft Drinking Time Limit: None seconds Memory Limit: None megabytes Problem Description: This winter is so cold in Nvodsk! A group of *n* friends decided to buy *k* bottles of a soft drink called "Take-It-Light" to warm up a bit. Each bottle has *l* milliliters of the drink. Also they bought *c* limes and cut...
```python n, k, l, c, d, p, nl, np = map(int, input().split()) ml_drink = k*l/n lime_slice = c*d sal = p/n if (ml_drink < nl) or (lime_slice < n) or (sal<np) : print(0) else : nb = ml_drink/nl print(int(min(nb,lime_slice/n,sal/np))) ```
3
448
A
Rewards
PROGRAMMING
800
[ "implementation" ]
null
null
Bizon the Champion is called the Champion for a reason. Bizon the Champion has recently got a present — a new glass cupboard with *n* shelves and he decided to put all his presents there. All the presents can be divided into two types: medals and cups. Bizon the Champion has *a*1 first prize cups, *a*2 second prize c...
The first line contains integers *a*1, *a*2 and *a*3 (0<=≤<=*a*1,<=*a*2,<=*a*3<=≤<=100). The second line contains integers *b*1, *b*2 and *b*3 (0<=≤<=*b*1,<=*b*2,<=*b*3<=≤<=100). The third line contains integer *n* (1<=≤<=*n*<=≤<=100). The numbers in the lines are separated by single spaces.
Print "YES" (without the quotes) if all the rewards can be put on the shelves in the described manner. Otherwise, print "NO" (without the quotes).
[ "1 1 1\n1 1 1\n4\n", "1 1 3\n2 3 4\n2\n", "1 0 0\n1 0 0\n1\n" ]
[ "YES\n", "YES\n", "NO\n" ]
none
500
[ { "input": "1 1 1\n1 1 1\n4", "output": "YES" }, { "input": "1 1 3\n2 3 4\n2", "output": "YES" }, { "input": "1 0 0\n1 0 0\n1", "output": "NO" }, { "input": "0 0 0\n0 0 0\n1", "output": "YES" }, { "input": "100 100 100\n100 100 100\n100", "output": "YES" }, ...
1,658,475,133
2,147,483,647
Python 3
OK
TESTS
25
46
0
c=list(map(int,input().split())) m=list(map(int,input().split())) n=int(input()) c=sum(c) m=sum(m) total=0 if c%5==0: total+=c//5 else: total+=c//5+1 if m%10==0: total+=m//10 else: total+=m//10+1 if total<=n: print("YES") else: print("NO")
Title: Rewards Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bizon the Champion is called the Champion for a reason. Bizon the Champion has recently got a present — a new glass cupboard with *n* shelves and he decided to put all his presents there. All the presents can be divided into ...
```python c=list(map(int,input().split())) m=list(map(int,input().split())) n=int(input()) c=sum(c) m=sum(m) total=0 if c%5==0: total+=c//5 else: total+=c//5+1 if m%10==0: total+=m//10 else: total+=m//10+1 if total<=n: print("YES") else: print("NO") ```
3
599
A
Patrick and Shopping
PROGRAMMING
800
[ "implementation" ]
null
null
Today Patrick waits for a visit from his friend Spongebob. To prepare for the visit, Patrick needs to buy some goodies in two stores located near his house. There is a *d*1 meter long road between his house and the first shop and a *d*2 meter long road between his house and the second shop. Also, there is a road of len...
The first line of the input contains three integers *d*1, *d*2, *d*3 (1<=≤<=*d*1,<=*d*2,<=*d*3<=≤<=108) — the lengths of the paths. - *d*1 is the length of the path connecting Patrick's house and the first shop; - *d*2 is the length of the path connecting Patrick's house and the second shop; - *d*3 is the length o...
Print the minimum distance that Patrick will have to walk in order to visit both shops and return to his house.
[ "10 20 30\n", "1 1 5\n" ]
[ "60\n", "4\n" ]
The first sample is shown on the picture in the problem statement. One of the optimal routes is: house <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> first shop <img align="middle" class="tex-form...
500
[ { "input": "10 20 30", "output": "60" }, { "input": "1 1 5", "output": "4" }, { "input": "100 33 34", "output": "134" }, { "input": "777 777 777", "output": "2331" }, { "input": "2 2 8", "output": "8" }, { "input": "12 34 56", "output": "92" }, ...
1,662,188,836
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
30
0
d1, d2, d3 = map(int, input().split()) print(min(((d1+d2)*2),(d1+d2+d3)))
Title: Patrick and Shopping Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today Patrick waits for a visit from his friend Spongebob. To prepare for the visit, Patrick needs to buy some goodies in two stores located near his house. There is a *d*1 meter long road between his house and the...
```python d1, d2, d3 = map(int, input().split()) print(min(((d1+d2)*2),(d1+d2+d3))) ```
0
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,689,858,115
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
def anton_polyhedrons(n, p): polyhedron_faces = { "Tetrahedron": 4, "Cube": 6, "Octahedron": 8, "Dodecahedron": 12, "Icosahedron": 20, } total_faces = 0 for polyhedron in polyhedrons: total_faces += polyhedron_faces[p] return total_faces n ...
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 def anton_polyhedrons(n, p): polyhedron_faces = { "Tetrahedron": 4, "Cube": 6, "Octahedron": 8, "Dodecahedron": 12, "Icosahedron": 20, } total_faces = 0 for polyhedron in polyhedrons: total_faces += polyhedron_faces[p] return total...
-1
20
B
Equation
PROGRAMMING
2,000
[ "math" ]
B. Equation
1
256
You are given an equation: Your task is to find the number of distinct roots of the equation and print all of them in ascending order.
The first line contains three integer numbers *A*,<=*B* and *C* (<=-<=105<=≤<=*A*,<=*B*,<=*C*<=≤<=105). Any coefficient may be equal to 0.
In case of infinite root count print the only integer -1. In case of no roots print the only integer 0. In other cases print the number of root on the first line and the roots on the following lines in the ascending order. Print roots with at least 5 digits after the decimal point.
[ "1 -5 6\n" ]
[ "2\n2.0000000000\n3.0000000000" ]
none
1,000
[ { "input": "1 -5 6", "output": "2\n2.0000000000\n3.0000000000" }, { "input": "1 1 1", "output": "0" }, { "input": "1 2 1", "output": "1\n-1.0000000000" }, { "input": "0 0 0", "output": "-1" }, { "input": "0 -2 1", "output": "1\n0.5000000000" }, { "inpu...
1,631,419,340
2,147,483,647
PyPy 3
OK
TESTS
34
109
20,172,800
from math import sqrt a,b,c=map(int,input().split()) if a==0: if b==0: print(-1 if c==0 else 0) else: print(1) print((c/b)*(-1)) else: d=b*b-4*a*c if d<0: print(0) elif d==0: print(1) print((b/a)*(1/2)*(-1)) else: print(2) ...
Title: Equation Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: You are given an equation: Your task is to find the number of distinct roots of the equation and print all of them in ascending order. Input Specification: The first line contains three integer numbers *A*,<=*B* and *C* (<=-<=1...
```python from math import sqrt a,b,c=map(int,input().split()) if a==0: if b==0: print(-1 if c==0 else 0) else: print(1) print((c/b)*(-1)) else: d=b*b-4*a*c if d<0: print(0) elif d==0: print(1) print((b/a)*(1/2)*(-1)) else: ...
3.907925
78
B
Easter Eggs
PROGRAMMING
1,200
[ "constructive algorithms", "implementation" ]
B. Easter Eggs
2
256
The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: - Each of the seven colors should be used to paint at least one egg. - Any four eggs lying s...
The only line contains an integer *n* — the amount of eggs (7<=≤<=*n*<=≤<=100).
Print one line consisting of *n* characters. The *i*-th character should describe the color of the *i*-th egg in the order they lie in the circle. The colors should be represented as follows: "R" stands for red, "O" stands for orange, "Y" stands for yellow, "G" stands for green, "B" stands for blue, "I" stands for indi...
[ "8\n", "13\n" ]
[ "ROYGRBIV\n", "ROYGBIVGBIVYG\n" ]
The way the eggs will be painted in the first sample is shown on the picture:
1,000
[ { "input": "8", "output": "ROYGBIVG" }, { "input": "13", "output": "ROYGBIVOYGBIV" }, { "input": "7", "output": "ROYGBIV" }, { "input": "10", "output": "ROYGBIVYGB" }, { "input": "14", "output": "ROYGBIVROYGBIV" }, { "input": "50", "output": "ROYGB...
1,673,705,746
2,147,483,647
Python 3
OK
TESTS
34
92
0
l = ["", "G", "GB", "YGB", "YGBI", "OYGBI","OYGBIV"] n = int(input()) print("ROYGBIV"*int(n/7.0)+l[n%7])
Title: Easter Eggs Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: -...
```python l = ["", "G", "GB", "YGB", "YGBI", "OYGBI","OYGBIV"] n = int(input()) print("ROYGBIV"*int(n/7.0)+l[n%7]) ```
3.977
686
B
Little Robber Girl's Zoo
PROGRAMMING
1,100
[ "constructive algorithms", "implementation", "sortings" ]
null
null
Little Robber Girl likes to scare animals in her zoo for fun. She decided to arrange the animals in a row in the order of non-decreasing height. However, the animals were so scared that they couldn't stay in the right places. The robber girl was angry at first, but then she decided to arrange the animals herself. She ...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — number of animals in the robber girl's zoo. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109), where *a**i* is the height of the animal occupying the *i*-th place.
Print the sequence of operations that will rearrange the animals by non-decreasing height. The output should contain several lines, *i*-th of the lines should contain two space-separated integers *l**i* and *r**i* (1<=≤<=*l**i*<=&lt;<=*r**i*<=≤<=*n*) — descriptions of segments the robber girl should name. The segments...
[ "4\n2 1 4 3\n", "7\n36 28 57 39 66 69 68\n", "5\n1 2 1 2 1\n" ]
[ "1 4\n", "1 4\n6 7\n", "2 5\n3 4\n1 4\n1 4\n" ]
Note that you don't have to minimize the number of operations. Any solution that performs at most 20 000 operations is allowed.
1,000
[ { "input": "4\n2 1 4 3", "output": "1 2\n3 4" }, { "input": "7\n36 28 57 39 66 69 68", "output": "1 2\n3 4\n6 7" }, { "input": "5\n1 2 1 2 1", "output": "2 3\n4 5\n3 4" }, { "input": "78\n7 3 8 8 9 8 10 9 12 11 16 14 17 17 18 18 20 20 25 22 27 26 29 27 35 35 36 36 37 37 38 38...
1,640,631,806
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
31
0
n=int(input()) a=list(map(int,input().split())) if n%2==0: print(1,n) else: print(1,n-1) print(2,n)
Title: Little Robber Girl's Zoo Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Robber Girl likes to scare animals in her zoo for fun. She decided to arrange the animals in a row in the order of non-decreasing height. However, the animals were so scared that they couldn't stay in th...
```python n=int(input()) a=list(map(int,input().split())) if n%2==0: print(1,n) else: print(1,n-1) print(2,n) ```
0
431
A
Black Square
PROGRAMMING
800
[ "implementation" ]
null
null
Quite recently, a very smart student named Jury decided that lectures are boring, so he downloaded a game called "Black Square" on his super cool touchscreen phone. In this game, the phone's screen is divided into four vertical strips. Each second, a black square appears on some of the strips. According to the rules o...
The first line contains four space-separated integers *a*1, *a*2, *a*3, *a*4 (0<=≤<=*a*1,<=*a*2,<=*a*3,<=*a*4<=≤<=104). The second line contains string *s* (1<=≤<=|*s*|<=≤<=105), where the *і*-th character of the string equals "1", if on the *i*-th second of the game the square appears on the first strip, "2", if it a...
Print a single integer — the total number of calories that Jury wastes.
[ "1 2 3 4\n123214\n", "1 5 3 2\n11221\n" ]
[ "13\n", "13\n" ]
none
500
[ { "input": "1 2 3 4\n123214", "output": "13" }, { "input": "1 5 3 2\n11221", "output": "13" }, { "input": "5 5 5 1\n3422", "output": "16" }, { "input": "4 3 2 1\n2", "output": "3" }, { "input": "5651 6882 6954 4733\n2442313421", "output": "60055" }, { ...
1,692,106,450
2,147,483,647
Python 3
OK
TESTS
49
62
204,800
a=input().split(maxsplit=4) b=[] summ=0 for i in a: b.append(int(i)) n=str(input()) for i in n: if i == '1': summ+=b[0] if i == '2': summ+=b[1] if i == '3': summ+=b[2] if i == '4': summ+=b[3] print(summ)
Title: Black Square Time Limit: None seconds Memory Limit: None megabytes Problem Description: Quite recently, a very smart student named Jury decided that lectures are boring, so he downloaded a game called "Black Square" on his super cool touchscreen phone. In this game, the phone's screen is divided into four ve...
```python a=input().split(maxsplit=4) b=[] summ=0 for i in a: b.append(int(i)) n=str(input()) for i in n: if i == '1': summ+=b[0] if i == '2': summ+=b[1] if i == '3': summ+=b[2] if i == '4': summ+=b[3] print(summ) ```
3
679
A
Bear and Prime 100
PROGRAMMING
1,400
[ "constructive algorithms", "interactive", "math" ]
null
null
This is an interactive problem. In the output section below you will see the information about flushing the output. Bear Limak thinks of some hidden number — an integer from interval [2,<=100]. Your task is to say if the hidden number is prime or composite. Integer *x*<=&gt;<=1 is called prime if it has exactly two d...
After each query you should read one string from the input. It will be "yes" if the printed integer is a divisor of the hidden number, and "no" otherwise.
Up to 20 times you can ask a query — print an integer from interval [2,<=100] in one line. You have to both print the end-of-line character and flush the output. After flushing you should read a response from the input. In any moment you can print the answer "prime" or "composite" (without the quotes). After that, flu...
[ "yes\nno\nyes\n", "no\nyes\nno\nno\nno\n" ]
[ "2\n80\n5\ncomposite\n", "58\n59\n78\n78\n2\nprime\n" ]
The hidden number in the first query is 30. In a table below you can see a better form of the provided example of the communication process. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/ea790051c34ea7d2761cd9b096412ca7c647a173.png" style="max-width: 100.0%;max-height: 100.0%;"/> The hi...
750
[ { "input": "30", "output": "composite 4" }, { "input": "59", "output": "prime 15" }, { "input": "2", "output": "prime 16" }, { "input": "7", "output": "prime 16" }, { "input": "9", "output": "composite 3" }, { "input": "13", "output": "prime 15" ...
1,466,271,380
2,147,483,647
Python 3
OK
TESTS
59
62
0
m = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 4, 9, 25, 49] ans = 0; for i in m: print(i) if input() == 'yes': ans += 1 if ans > 1: print('composite') exit() print('prime')
Title: Bear and Prime 100 Time Limit: None seconds Memory Limit: None megabytes Problem Description: This is an interactive problem. In the output section below you will see the information about flushing the output. Bear Limak thinks of some hidden number — an integer from interval [2,<=100]. Your task is to say i...
```python m = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 4, 9, 25, 49] ans = 0; for i in m: print(i) if input() == 'yes': ans += 1 if ans > 1: print('composite') exit() print('prime') ```
3
472
A
Design Tutorial: Learn from Math
PROGRAMMING
800
[ "math", "number theory" ]
null
null
One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statement called the "Goldbach's conjecture". It says: "each even number no less than four can be expressed as the sum of two ...
The only line contains an integer *n* (12<=≤<=*n*<=≤<=106).
Output two composite integers *x* and *y* (1<=&lt;<=*x*,<=*y*<=&lt;<=*n*) such that *x*<=+<=*y*<==<=*n*. If there are multiple solutions, you can output any of them.
[ "12\n", "15\n", "23\n", "1000000\n" ]
[ "4 8\n", "6 9\n", "8 15\n", "500000 500000\n" ]
In the first example, 12 = 4 + 8 and both 4, 8 are composite numbers. You can output "6 6" or "8 4" as well. In the second example, 15 = 6 + 9. Note that you can't output "1 14" because 1 is not a composite number.
500
[ { "input": "12", "output": "4 8" }, { "input": "15", "output": "6 9" }, { "input": "23", "output": "8 15" }, { "input": "1000000", "output": "500000 500000" }, { "input": "63874", "output": "4 63870" }, { "input": "14568", "output": "4 14564" }, ...
1,665,941,489
2,147,483,647
Python 3
OK
TESTS
33
93
4,505,600
m = int(input()) def prime_test(j): b = True for k in range(2, int(j**1/2)): if j % k == 0: b = False return b return b if m%2 == 0: print(m-4,4) else: for i in range(4,m,2): if m-i % 2 == 0: print(m-i,i) break ...
Title: Design Tutorial: Learn from Math Time Limit: None seconds Memory Limit: None megabytes Problem Description: One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statemen...
```python m = int(input()) def prime_test(j): b = True for k in range(2, int(j**1/2)): if j % k == 0: b = False return b return b if m%2 == 0: print(m-4,4) else: for i in range(4,m,2): if m-i % 2 == 0: print(m-i,i) break...
3
572
A
Arrays
PROGRAMMING
900
[ "sortings" ]
null
null
You are given two arrays *A* and *B* consisting of integers, sorted in non-decreasing order. Check whether it is possible to choose *k* numbers in array *A* and choose *m* numbers in array *B* so that any number chosen in the first array is strictly less than any number chosen in the second array.
The first line contains two integers *n**A*,<=*n**B* (1<=≤<=*n**A*,<=*n**B*<=≤<=105), separated by a space — the sizes of arrays *A* and *B*, correspondingly. The second line contains two integers *k* and *m* (1<=≤<=*k*<=≤<=*n**A*,<=1<=≤<=*m*<=≤<=*n**B*), separated by a space. The third line contains *n**A* numbers *...
Print "YES" (without the quotes), if you can choose *k* numbers in array *A* and *m* numbers in array *B* so that any number chosen in array *A* was strictly less than any number chosen in array *B*. Otherwise, print "NO" (without the quotes).
[ "3 3\n2 1\n1 2 3\n3 4 5\n", "3 3\n3 3\n1 2 3\n3 4 5\n", "5 2\n3 1\n1 1 1 1 1\n2 2\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first sample test you can, for example, choose numbers 1 and 2 from array *A* and number 3 from array *B* (1 &lt; 3 and 2 &lt; 3). In the second sample test the only way to choose *k* elements in the first array and *m* elements in the second one is to choose all numbers in both arrays, but then not all the num...
500
[ { "input": "3 3\n2 1\n1 2 3\n3 4 5", "output": "YES" }, { "input": "3 3\n3 3\n1 2 3\n3 4 5", "output": "NO" }, { "input": "5 2\n3 1\n1 1 1 1 1\n2 2", "output": "YES" }, { "input": "3 5\n1 1\n5 5 5\n5 5 5 5 5", "output": "NO" }, { "input": "1 1\n1 1\n1\n1", "ou...
1,619,297,685
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
8
2,000
8,294,400
na, nb = map(int, input().split()) k, m = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) a.sort() b.sort() b.reverse() for i1 in a[:k]: for i2 in b[:m]: if i1 < i2: pass else: print("NO") exit() print("YES")
Title: Arrays Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two arrays *A* and *B* consisting of integers, sorted in non-decreasing order. Check whether it is possible to choose *k* numbers in array *A* and choose *m* numbers in array *B* so that any number chosen in the fi...
```python na, nb = map(int, input().split()) k, m = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) a.sort() b.sort() b.reverse() for i1 in a[:k]: for i2 in b[:m]: if i1 < i2: pass else: print("NO") exit() print("YES") ```
0
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,662,986,941
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
from fractions import gcd y, w = map(int,raw_input().split()) d = 6-max(y,w)+1 f = gcd(d,6) d = d/f a = 6/f print str(d)+"/"+str(a)
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python from fractions import gcd y, w = map(int,raw_input().split()) d = 6-max(y,w)+1 f = gcd(d,6) d = d/f a = 6/f print str(d)+"/"+str(a) ```
-1
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,615,426,075
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
93
0
s=input() def remover(s): news="" i=0 while(i<len(s)): letter=s[i] news=news+letter i+=1 while(i<len(s) and s[i]==letter): i+=1 return news s=remover(s) if("helo" in s): print("YES") else: print("NO")
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s=input() def remover(s): news="" i=0 while(i<len(s)): letter=s[i] news=news+letter i+=1 while(i<len(s) and s[i]==letter): i+=1 return news s=remover(s) if("helo" in s): print("YES") else: print("NO") ```
0
761
A
Dasha and Stairs
PROGRAMMING
1,000
[ "brute force", "constructive algorithms", "implementation", "math" ]
null
null
On her way to programming school tiger Dasha faced her first test — a huge staircase! The steps were numbered from one to infinity. As we know, tigers are very fond of all striped things, it is possible that it has something to do with their color. So on some interval of her way she calculated two values — the number ...
In the only line you are given two integers *a*, *b* (0<=≤<=*a*,<=*b*<=≤<=100) — the number of even and odd steps, accordingly.
In the only line print "YES", if the interval of steps described above exists, and "NO" otherwise.
[ "2 3\n", "3 1\n" ]
[ "YES\n", "NO\n" ]
In the first example one of suitable intervals is from 1 to 5. The interval contains two even steps — 2 and 4, and three odd: 1, 3 and 5.
500
[ { "input": "2 3", "output": "YES" }, { "input": "3 1", "output": "NO" }, { "input": "5 4", "output": "YES" }, { "input": "9 9", "output": "YES" }, { "input": "85 95", "output": "NO" }, { "input": "0 1", "output": "YES" }, { "input": "89 25"...
1,637,250,473
2,147,483,647
PyPy 3-64
OK
TESTS
21
62
0
n,m=map(int,input().split()) if n==0 and m==0: print("NO") elif n==m-1 or n==m or n==m+1 or m==n-1 or m==n+1: print("YES") else: print("NO")
Title: Dasha and Stairs Time Limit: None seconds Memory Limit: None megabytes Problem Description: On her way to programming school tiger Dasha faced her first test — a huge staircase! The steps were numbered from one to infinity. As we know, tigers are very fond of all striped things, it is possible that it has so...
```python n,m=map(int,input().split()) if n==0 and m==0: print("NO") elif n==m-1 or n==m or n==m+1 or m==n-1 or m==n+1: print("YES") else: print("NO") ```
3
148
A
Insomnia cure
PROGRAMMING
800
[ "constructive algorithms", "implementation", "math" ]
null
null
«One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entertained herself at best she could. Tonight she imagined that all dragons were here to steal her, and ...
Input data contains integer numbers *k*,<=*l*,<=*m*,<=*n* and *d*, each number in a separate line (1<=≤<=*k*,<=*l*,<=*m*,<=*n*<=≤<=10, 1<=≤<=*d*<=≤<=105).
Output the number of damaged dragons.
[ "1\n2\n3\n4\n12\n", "2\n3\n4\n5\n24\n" ]
[ "12\n", "17\n" ]
In the first case every first dragon got punched with a frying pan. Some of the dragons suffered from other reasons as well, but the pan alone would be enough. In the second case dragons 1, 7, 11, 13, 17, 19 and 23 escaped unharmed.
1,000
[ { "input": "1\n2\n3\n4\n12", "output": "12" }, { "input": "2\n3\n4\n5\n24", "output": "17" }, { "input": "1\n1\n1\n1\n100000", "output": "100000" }, { "input": "10\n9\n8\n7\n6", "output": "0" }, { "input": "8\n4\n4\n3\n65437", "output": "32718" }, { "i...
1,696,564,574
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
62
102,400
damage1 = int(input()) damage2 = int(input()) damage3 = int(input()) damage4 = int(input()) totalDragons = int(input()) # List of the damaged positions so we can loop through it. damagedPosition = [damage1, damage2, damage3, damage4] # Loop will remove duplicate numbers c = 0 goAhead = True while(goAhead...
Title: Insomnia cure Time Limit: None seconds Memory Limit: None megabytes Problem Description: «One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entert...
```python damage1 = int(input()) damage2 = int(input()) damage3 = int(input()) damage4 = int(input()) totalDragons = int(input()) # List of the damaged positions so we can loop through it. damagedPosition = [damage1, damage2, damage3, damage4] # Loop will remove duplicate numbers c = 0 goAhead = True whi...
-1
687
C
The Values You Can Make
PROGRAMMING
1,900
[ "dp" ]
null
null
Pari wants to buy an expensive chocolate from Arya. She has *n* coins, the value of the *i*-th coin is *c**i*. The price of the chocolate is *k*, so Pari will take a subset of her coins with sum equal to *k* and give it to Arya. Looking at her coins, a question came to her mind: after giving the coins to Arya, what va...
The first line contains two integers *n* and *k* (1<=<=≤<=<=*n*,<=*k*<=<=≤<=<=500) — the number of coins and the price of the chocolate, respectively. Next line will contain *n* integers *c*1,<=*c*2,<=...,<=*c**n* (1<=≤<=*c**i*<=≤<=500) — the values of Pari's coins. It's guaranteed that one can make value *k* using t...
First line of the output must contain a single integer *q*— the number of suitable values *x*. Then print *q* integers in ascending order — the values that Arya can make for some subset of coins of Pari that pays for the chocolate.
[ "6 18\n5 6 1 10 12 2\n", "3 50\n25 25 50\n" ]
[ "16\n0 1 2 3 5 6 7 8 10 11 12 13 15 16 17 18 \n", "3\n0 25 50 \n" ]
none
1,500
[ { "input": "6 18\n5 6 1 10 12 2", "output": "16\n0 1 2 3 5 6 7 8 10 11 12 13 15 16 17 18 " }, { "input": "3 50\n25 25 50", "output": "3\n0 25 50 " }, { "input": "1 79\n79", "output": "2\n0 79 " }, { "input": "1 114\n114", "output": "2\n0 114 " }, { "input": "5 1\n...
1,472,565,479
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
46
204,800
def preproc(maximum, numbers): mem = [[[0,]]] + [[] for i in range(maximum)] for number in numbers: for i in range(maximum-number, -1, -1): if len(mem[i]) != 0: mem[i+number].extend(list(map((lambda x: x+[number,]), mem[i]))) return mem[maximum] def proc(maximum, numbers): flags = [True] + [Fals...
Title: The Values You Can Make Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pari wants to buy an expensive chocolate from Arya. She has *n* coins, the value of the *i*-th coin is *c**i*. The price of the chocolate is *k*, so Pari will take a subset of her coins with sum equal to *k* and...
```python def preproc(maximum, numbers): mem = [[[0,]]] + [[] for i in range(maximum)] for number in numbers: for i in range(maximum-number, -1, -1): if len(mem[i]) != 0: mem[i+number].extend(list(map((lambda x: x+[number,]), mem[i]))) return mem[maximum] def proc(maximum, numbers): flags = [Tru...
0
919
A
Supermarket
PROGRAMMING
800
[ "brute force", "greedy", "implementation" ]
null
null
We often go to supermarkets to buy some fruits or vegetables, and on the tag there prints the price for a kilo. But in some supermarkets, when asked how much the items are, the clerk will say that $a$ yuan for $b$ kilos (You don't need to care about what "yuan" is), the same as $a/b$ yuan for a kilo. Now imagine you'd...
The first line contains two positive integers $n$ and $m$ ($1 \leq n \leq 5\,000$, $1 \leq m \leq 100$), denoting that there are $n$ supermarkets and you want to buy $m$ kilos of apples. The following $n$ lines describe the information of the supermarkets. Each line contains two positive integers $a, b$ ($1 \leq a, b ...
The only line, denoting the minimum cost for $m$ kilos of apples. Please make sure that the absolute or relative error between your answer and the correct answer won't exceed $10^{-6}$. Formally, let your answer be $x$, and the jury's answer be $y$. Your answer is considered correct if $\frac{|x - y|}{\max{(1, |y|)}} ...
[ "3 5\n1 2\n3 4\n1 3\n", "2 1\n99 100\n98 99\n" ]
[ "1.66666667\n", "0.98989899\n" ]
In the first sample, you are supposed to buy $5$ kilos of apples in supermarket $3$. The cost is $5/3$ yuan. In the second sample, you are supposed to buy $1$ kilo of apples in supermarket $2$. The cost is $98/99$ yuan.
500
[ { "input": "3 5\n1 2\n3 4\n1 3", "output": "1.66666667" }, { "input": "2 1\n99 100\n98 99", "output": "0.98989899" }, { "input": "50 37\n78 49\n96 4\n86 62\n28 4\n19 2\n79 43\n79 92\n95 35\n33 60\n54 84\n90 25\n2 25\n53 21\n86 52\n72 25\n6 78\n41 46\n3 68\n42 89\n33 35\n57 43\n99 45\n1 8...
1,636,058,391
171
PyPy 3-64
OK
TESTS
43
155
30,720,000
import sys input = sys.stdin.readline n,m = map(int,input().split()) ans = 10**18 for i in range(n): a,b = map(int,input().split()) ans = min(ans,(a/b)*m) print(ans)
Title: Supermarket Time Limit: None seconds Memory Limit: None megabytes Problem Description: We often go to supermarkets to buy some fruits or vegetables, and on the tag there prints the price for a kilo. But in some supermarkets, when asked how much the items are, the clerk will say that $a$ yuan for $b$ kilos (Yo...
```python import sys input = sys.stdin.readline n,m = map(int,input().split()) ans = 10**18 for i in range(n): a,b = map(int,input().split()) ans = min(ans,(a/b)*m) print(ans) ```
3
500
A
New Year Transportation
PROGRAMMING
1,000
[ "dfs and similar", "graphs", "implementation" ]
null
null
New Year is coming in Line World! In this world, there are *n* cells numbered by integers from 1 to *n*, as a 1<=×<=*n* board. People live in cells. However, it was hard to move between distinct cells, because of the difficulty of escaping the cell. People wanted to meet people who live in other cells. So, user tncks0...
The first line contains two space-separated integers *n* (3<=≤<=*n*<=≤<=3<=×<=104) and *t* (2<=≤<=*t*<=≤<=*n*) — the number of cells, and the index of the cell which I want to go to. The second line contains *n*<=-<=1 space-separated integers *a*1,<=*a*2,<=...,<=*a**n*<=-<=1 (1<=≤<=*a**i*<=≤<=*n*<=-<=*i*). It is guara...
If I can go to cell *t* using the transportation system, print "YES". Otherwise, print "NO".
[ "8 4\n1 2 1 2 1 2 1\n", "8 5\n1 2 1 2 1 1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample, the visited cells are: 1, 2, 4; so we can successfully visit the cell 4. In the second sample, the possible cells to visit are: 1, 2, 4, 6, 7, 8; so we can't visit the cell 5, which we want to visit.
500
[ { "input": "8 4\n1 2 1 2 1 2 1", "output": "YES" }, { "input": "8 5\n1 2 1 2 1 1 1", "output": "NO" }, { "input": "20 19\n13 16 7 6 12 1 5 7 8 6 5 7 5 5 3 3 2 2 1", "output": "YES" }, { "input": "50 49\n11 7 1 41 26 36 19 16 38 14 36 35 37 27 20 27 3 6 21 2 27 11 18 17 19 16 ...
1,689,781,417
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
1
2,000
1,228,800
n, t = map(int, input().split()) lst = list(map(int, input().split())) flag = False pos = 0 i = 1 while (pos <= t): pos = lst[i-1] + i if pos == t: flag = True break if pos > t: flag = False break i = lst[pos-1] if (flag): print("YES") else: print...
Title: New Year Transportation Time Limit: None seconds Memory Limit: None megabytes Problem Description: New Year is coming in Line World! In this world, there are *n* cells numbered by integers from 1 to *n*, as a 1<=×<=*n* board. People live in cells. However, it was hard to move between distinct cells, because o...
```python n, t = map(int, input().split()) lst = list(map(int, input().split())) flag = False pos = 0 i = 1 while (pos <= t): pos = lst[i-1] + i if pos == t: flag = True break if pos > t: flag = False break i = lst[pos-1] if (flag): print("YES") else: ...
0
621
A
Wet Shark and Odd and Even
PROGRAMMING
900
[ "implementation" ]
null
null
Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, that if Wet Shark uses no integers from the *n* integers, the sum is an even integer 0.
The first line of the input contains one integer, *n* (1<=≤<=*n*<=≤<=100<=000). The next line contains *n* space separated integers given to Wet Shark. Each of these integers is in range from 1 to 109, inclusive.
Print the maximum possible even sum that can be obtained if we use some of the given integers.
[ "3\n1 2 3\n", "5\n999999999 999999999 999999999 999999999 999999999\n" ]
[ "6", "3999999996" ]
In the first sample, we can simply take all three integers for a total sum of 6. In the second sample Wet Shark should take any four out of five integers 999 999 999.
500
[ { "input": "3\n1 2 3", "output": "6" }, { "input": "5\n999999999 999999999 999999999 999999999 999999999", "output": "3999999996" }, { "input": "1\n1", "output": "0" }, { "input": "15\n39 52 88 78 46 95 84 98 55 3 68 42 6 18 98", "output": "870" }, { "input": "15\...
1,647,051,215
2,147,483,647
PyPy 3-64
OK
TESTS
87
171
16,179,200
bob=int(input()) l=input() l=l.split() amount=0 big=0 little=999999999 for i in range(len(l)): l[i]=int(l[i]) amount+=l[i] if l[i]%2==1 and l[i]<little: little=l[i] if amount%2==0: big=amount else: big=amount-little print(big)
Title: Wet Shark and Odd and Even Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, th...
```python bob=int(input()) l=input() l=l.split() amount=0 big=0 little=999999999 for i in range(len(l)): l[i]=int(l[i]) amount+=l[i] if l[i]%2==1 and l[i]<little: little=l[i] if amount%2==0: big=amount else: big=amount-little print(big) ```
3
18
E
Flag 2
PROGRAMMING
2,000
[ "dp" ]
E. Flag 2
2
128
According to a new ISO standard, a flag of every country should have, strangely enough, a chequered field *n*<=×<=*m*, each square should be wholly painted one of 26 colours. The following restrictions are set: - In each row at most two different colours can be used. - No two adjacent squares can be painted the sam...
The first input line contains 2 integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=500) — amount of rows and columns in Berland's flag respectively. Then there follows the flag's description: each of the following *n* lines contains *m* characters. Each character is a letter from a to z, and it stands for the colour of the corr...
In the first line output the minimum amount of squares that need to be repainted to make the flag meet the new ISO standard. The following *n* lines should contain one of the possible variants of the new flag. Don't forget that the variant of the flag, proposed by you, should be derived from the old flag with the minim...
[ "3 4\naaaa\nbbbb\ncccc\n", "3 3\naba\naba\nzzz\n" ]
[ "6\nabab\nbaba\nacac\n", "4\naba\nbab\nzbz\n" ]
none
0
[ { "input": "3 4\naaaa\nbbbb\ncccc", "output": "6\nabab\nbaba\nacac" }, { "input": "3 3\naba\naba\nzzz", "output": "4\naba\nbab\nzbz" }, { "input": "5 6\nababab\nbababa\nbbbbbb\nbababa\nababab", "output": "3\nababab\nbababa\nababab\nbababa\nababab" }, { "input": "1 1\nq", ...
1,668,825,172
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
import itertools n, m = map(int, input().split()) lines = [] for _ in range(m): lines.append(list(input())) def cost(line, color1, color2): return (m + 1) // 2 - line[::2].count(color1) + m // 2 - line[1::2].count(color2) colors = 'abcdefghijklmnopqrstuvwxyz' perms = list(itertools.permutations(co...
Title: Flag 2 Time Limit: 2 seconds Memory Limit: 128 megabytes Problem Description: According to a new ISO standard, a flag of every country should have, strangely enough, a chequered field *n*<=×<=*m*, each square should be wholly painted one of 26 colours. The following restrictions are set: - In each row at m...
```python import itertools n, m = map(int, input().split()) lines = [] for _ in range(m): lines.append(list(input())) def cost(line, color1, color2): return (m + 1) // 2 - line[::2].count(color1) + m // 2 - line[1::2].count(color2) colors = 'abcdefghijklmnopqrstuvwxyz' perms = list(itertools.permu...
-1
37
A
Towers
PROGRAMMING
1,000
[ "sortings" ]
A. Towers
2
256
Little Vasya has received a young builder’s kit. The kit consists of several wooden bars, the lengths of all of them are known. The bars can be put one on the top of the other if their lengths are the same. Vasya wants to construct the minimal number of towers from the bars. Help Vasya to use the bars in the best way ...
The first line contains an integer *N* (1<=≤<=*N*<=≤<=1000) — the number of bars at Vasya’s disposal. The second line contains *N* space-separated integers *l**i* — the lengths of the bars. All the lengths are natural numbers not exceeding 1000.
In one line output two numbers — the height of the largest tower and their total number. Remember that Vasya should use all the bars.
[ "3\n1 2 3\n", "4\n6 5 6 7\n" ]
[ "1 3\n", "2 3\n" ]
none
500
[ { "input": "3\n1 2 3", "output": "1 3" }, { "input": "4\n6 5 6 7", "output": "2 3" }, { "input": "4\n3 2 1 1", "output": "2 3" }, { "input": "4\n1 2 3 3", "output": "2 3" }, { "input": "3\n20 22 36", "output": "1 3" }, { "input": "25\n47 30 94 41 45 20...
1,584,901,229
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
186
0
N = int(input()) a = list(map(int, input().split())) b = [] for i in a: if i not in b: b.append(i) c = len(a) - len(b) if c == 0: print(c + 1, len(b)) else: print(c, len(b))
Title: Towers Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Vasya has received a young builder’s kit. The kit consists of several wooden bars, the lengths of all of them are known. The bars can be put one on the top of the other if their lengths are the same. Vasya wants to construct...
```python N = int(input()) a = list(map(int, input().split())) b = [] for i in a: if i not in b: b.append(i) c = len(a) - len(b) if c == 0: print(c + 1, len(b)) else: print(c, len(b)) ```
0
363
B
Fence
PROGRAMMING
1,100
[ "brute force", "dp" ]
null
null
There is a fence in front of Polycarpus's home. The fence consists of *n* planks of the same width which go one after another from left to right. The height of the *i*-th plank is *h**i* meters, distinct planks can have distinct heights. Polycarpus has bought a posh piano and is thinking about how to get it into the h...
The first line of the input contains integers *n* and *k* (1<=≤<=*n*<=≤<=1.5·105,<=1<=≤<=*k*<=≤<=*n*) — the number of planks in the fence and the width of the hole for the piano. The second line contains the sequence of integers *h*1,<=*h*2,<=...,<=*h**n* (1<=≤<=*h**i*<=≤<=100), where *h**i* is the height of the *i*-th...
Print such integer *j* that the sum of the heights of planks *j*, *j*<=+<=1, ..., *j*<=+<=*k*<=-<=1 is the minimum possible. If there are multiple such *j*'s, print any of them.
[ "7 3\n1 2 6 1 1 7 1\n" ]
[ "3\n" ]
In the sample, your task is to find three consecutive planks with the minimum sum of heights. In the given case three planks with indexes 3, 4 and 5 have the required attribute, their total height is 8.
1,000
[ { "input": "7 3\n1 2 6 1 1 7 1", "output": "3" }, { "input": "1 1\n100", "output": "1" }, { "input": "2 1\n10 20", "output": "1" }, { "input": "10 5\n1 2 3 1 2 2 3 1 4 5", "output": "1" }, { "input": "10 2\n3 1 4 1 4 6 2 1 4 6", "output": "7" }, { "inp...
1,698,411,127
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
6
1,000
21,094,400
n,k = list(map(int,input().split(' '))) h = list(map(int,input().split(' '))) s = [] p = [] m = 9999999999999999999999 d = 0 for i in range(n-k+1): s = sum(h[i:i+k]) if s < m: m = s d = i print(d+1)
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,k = list(map(int,input().split(' '))) h = list(map(int,input().split(' '))) s = [] p = [] m = 9999999999999999999999 d = 0 for i in range(n-k+1): s = sum(h[i:i+k]) if s < m: m = s d = i print(d+1) ```
0
710
A
King Moves
PROGRAMMING
800
[ "implementation" ]
null
null
The only king stands on the standard chess board. You are given his position in format "cd", where *c* is the column from 'a' to 'h' and *d* is the row from '1' to '8'. Find the number of moves permitted for the king. Check the king's moves here [https://en.wikipedia.org/wiki/King_(chess)](https://en.wikipedia.org/wik...
The only line contains the king's position in the format "cd", where 'c' is the column from 'a' to 'h' and 'd' is the row from '1' to '8'.
Print the only integer *x* — the number of moves permitted for the king.
[ "e4\n" ]
[ "8\n" ]
none
0
[ { "input": "e4", "output": "8" }, { "input": "a1", "output": "3" }, { "input": "h8", "output": "3" }, { "input": "a4", "output": "5" }, { "input": "g7", "output": "8" }, { "input": "e1", "output": "5" }, { "input": "b2", "output": "8" ...
1,644,140,355
2,147,483,647
Python 3
OK
TESTS
24
31
0
c = input() if "a8" == c or "a1" == c or "h8" == c or "h1" == c: print(3) elif "a" in c or "1" in c or "8" in c or "h" in c: print(5) else: print(8)
Title: King Moves Time Limit: None seconds Memory Limit: None megabytes Problem Description: The only king stands on the standard chess board. You are given his position in format "cd", where *c* is the column from 'a' to 'h' and *d* is the row from '1' to '8'. Find the number of moves permitted for the king. Check...
```python c = input() if "a8" == c or "a1" == c or "h8" == c or "h1" == c: print(3) elif "a" in c or "1" in c or "8" in c or "h" in c: print(5) else: print(8) ```
3
450
B
Jzzhu and Sequences
PROGRAMMING
1,300
[ "implementation", "math" ]
null
null
Jzzhu has invented a kind of sequences, they meet the following property: You are given *x* and *y*, please calculate *f**n* modulo 1000000007 (109<=+<=7).
The first line contains two integers *x* and *y* (|*x*|,<=|*y*|<=≤<=109). The second line contains a single integer *n* (1<=≤<=*n*<=≤<=2·109).
Output a single integer representing *f**n* modulo 1000000007 (109<=+<=7).
[ "2 3\n3\n", "0 -1\n2\n" ]
[ "1\n", "1000000006\n" ]
In the first sample, *f*<sub class="lower-index">2</sub> = *f*<sub class="lower-index">1</sub> + *f*<sub class="lower-index">3</sub>, 3 = 2 + *f*<sub class="lower-index">3</sub>, *f*<sub class="lower-index">3</sub> = 1. In the second sample, *f*<sub class="lower-index">2</sub> =  - 1;  - 1 modulo (10<sup class="upper-...
1,000
[ { "input": "2 3\n3", "output": "1" }, { "input": "0 -1\n2", "output": "1000000006" }, { "input": "-9 -11\n12345", "output": "1000000005" }, { "input": "0 0\n1000000000", "output": "0" }, { "input": "-1000000000 1000000000\n2000000000", "output": "1000000000" ...
1,678,227,799
2,147,483,647
PyPy 3-64
OK
TESTS
74
77
0
def solve(x,y,n): dp=[x,y,0,0,0,0] for i in range(2,6): dp[i]=dp[i-1]-dp[i-2] print(dp[(n-1)%6]%1000000007) x,y=[int(x) for x in input().split()] n=int(input()) solve(x,y,n)
Title: Jzzhu and Sequences Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jzzhu has invented a kind of sequences, they meet the following property: You are given *x* and *y*, please calculate *f**n* modulo 1000000007 (109<=+<=7). Input Specification: The first line contains two integers...
```python def solve(x,y,n): dp=[x,y,0,0,0,0] for i in range(2,6): dp[i]=dp[i-1]-dp[i-2] print(dp[(n-1)%6]%1000000007) x,y=[int(x) for x in input().split()] n=int(input()) solve(x,y,n) ```
3
899
D
Shovel Sale
PROGRAMMING
1,800
[ "constructive algorithms", "math" ]
null
null
There are *n* shovels in Polycarp's shop. The *i*-th shovel costs *i* burles, that is, the first shovel costs 1 burle, the second shovel costs 2 burles, the third shovel costs 3 burles, and so on. Polycarps wants to sell shovels in pairs. Visitors are more likely to buy a pair of shovels if their total cost ends with ...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=109) — the number of shovels in Polycarp's shop.
Print the number of pairs of shovels such that their total cost ends with maximum possible number of nines. Note that it is possible that the largest number of 9s at the end is 0, then you should count all such ways. It is guaranteed that for every *n*<=≤<=109 the answer doesn't exceed 2·109.
[ "7\n", "14\n", "50\n" ]
[ "3\n", "9\n", "1\n" ]
In the first example the maximum possible number of nines at the end is one. Polycarp cah choose the following pairs of shovels for that purpose: - 2 and 7; - 3 and 6; - 4 and 5. In the second example the maximum number of nines at the end of total cost of two shovels is one. The following pairs of shovels suit Po...
1,750
[ { "input": "7", "output": "3" }, { "input": "14", "output": "9" }, { "input": "50", "output": "1" }, { "input": "999999999", "output": "499999999" }, { "input": "15", "output": "11" }, { "input": "3", "output": "3" }, { "input": "6500", ...
1,513,934,176
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
61
5,529,600
'''input 50 ''' def list_input(): return list(map(int,input().split())) def map_input(): return map(int,input().split()) def map_string(): return input().split() n = int(input()) mx = len(str(n+n))-1 ad = 10**mx cur = ad-1 ans = 0 for i in range(10): # print(cur," --") lol = n+...
Title: Shovel Sale Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* shovels in Polycarp's shop. The *i*-th shovel costs *i* burles, that is, the first shovel costs 1 burle, the second shovel costs 2 burles, the third shovel costs 3 burles, and so on. Polycarps wants to sell sh...
```python '''input 50 ''' def list_input(): return list(map(int,input().split())) def map_input(): return map(int,input().split()) def map_string(): return input().split() n = int(input()) mx = len(str(n+n))-1 ad = 10**mx cur = ad-1 ans = 0 for i in range(10): # print(cur," --") ...
0
769
D
k-Interesting Pairs Of Integers
PROGRAMMING
1,700
[ "*special", "bitmasks", "brute force", "meet-in-the-middle" ]
null
null
Vasya has the sequence consisting of *n* integers. Vasya consider the pair of integers *x* and *y* k-interesting, if their binary representation differs from each other exactly in *k* bits. For example, if *k*<==<=2, the pair of integers *x*<==<=5 and *y*<==<=3 is k-interesting, because their binary representation *x*=...
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=105, 0<=≤<=*k*<=≤<=14) — the number of integers in Vasya's sequence and the number of bits in which integers in k-interesting pair should differ. The second line contains the sequence *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=104), which Vasya has.
Print the number of pairs (*i*, *j*) so that *i*<=&lt;<=*j* and the pair of integers *a**i* and *a**j* is k-interesting.
[ "4 1\n0 3 2 1\n", "6 0\n200 100 100 100 200 200\n" ]
[ "4\n", "6\n" ]
In the first test there are 4 k-interesting pairs: - (1, 3), - (1, 4), - (2, 3), - (2, 4). In the second test *k* = 0. Consequently, integers in any k-interesting pair should be equal to themselves. Thus, for the second test there are 6 k-interesting pairs: - (1, 5), - (1, 6), - (2, 3), - (2, 4), - (3, 4), ...
2,000
[ { "input": "4 1\n0 3 2 1", "output": "4" }, { "input": "6 0\n200 100 100 100 200 200", "output": "6" }, { "input": "2 0\n1 1", "output": "1" }, { "input": "2 0\n0 0", "output": "1" }, { "input": "2 0\n10000 10000", "output": "1" }, { "input": "2 0\n0 1...
1,488,702,476
73,676
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
12
2,000
9,625,600
def Trg(l): return l*(l+1)//2 def calcBits(n): i = 1 s = 0 while(i <= n): if(i & n != 0): s += 1 i *= 2 return s n, k = list(map(int, input().split())) a = list(map(int, input().split())) b = list() s = 0 #print('n: ' + str(n)) for i in range(n-1): # print('i: ' + s...
Title: k-Interesting Pairs Of Integers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has the sequence consisting of *n* integers. Vasya consider the pair of integers *x* and *y* k-interesting, if their binary representation differs from each other exactly in *k* bits. For example, ...
```python def Trg(l): return l*(l+1)//2 def calcBits(n): i = 1 s = 0 while(i <= n): if(i & n != 0): s += 1 i *= 2 return s n, k = list(map(int, input().split())) a = list(map(int, input().split())) b = list() s = 0 #print('n: ' + str(n)) for i in range(n-1): # print...
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,518,715,952
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
92
5,632,000
n=int(input()) a=[] x=y=0 for i in range(n): a.append(list(map(int,input().split()))) for i in range(n): if a[i][0]==0: x+=1 if a[i][1]==1: x+=1 if a[i][0]==1: y+=1 if a[i][1]==0: y+=1 if x<y: print(x) else: print(y)
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=[] x=y=0 for i in range(n): a.append(list(map(int,input().split()))) for i in range(n): if a[i][0]==0: x+=1 if a[i][1]==1: x+=1 if a[i][0]==1: y+=1 if a[i][1]==0: y+=1 if x<y: print(x) else: print(y) ```
0
792
C
Divide by Three
PROGRAMMING
2,000
[ "dp", "greedy", "math", "number theory" ]
null
null
A positive integer number *n* is written on a blackboard. It consists of not more than 105 digits. You have to transform it into a beautiful number by erasing some of the digits, and you want to erase as few digits as possible. The number is called beautiful if it consists of at least one digit, doesn't have leading z...
The first line of input contains *n* — a positive integer number without leading zeroes (1<=≤<=*n*<=&lt;<=10100000).
Print one number — any beautiful number obtained by erasing as few as possible digits. If there is no answer, print <=-<=1.
[ "1033\n", "10\n", "11\n" ]
[ "33\n", "0\n", "-1\n" ]
In the first example it is enough to erase only the first digit to obtain a multiple of 3. But if we erase the first digit, then we obtain a number with a leading zero. So the minimum number of digits to be erased is two.
0
[ { "input": "1033", "output": "33" }, { "input": "10", "output": "0" }, { "input": "11", "output": "-1" }, { "input": "3", "output": "3" }, { "input": "1", "output": "-1" }, { "input": "117", "output": "117" }, { "input": "518", "output"...
1,490,698,133
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
19
1,000
5,324,800
from collections import Counter c = input() L = len(c) #print(Counter(int(x) % 3 for x in c)) p0 = [] p1 = [] p2 = [] P0 = ['0', '3', '6', '9'] P1 = ['1', '4', '7'] P2 = ['2', '5', '8'] k0 = 0 k1 = 0 k2 = 0 if len(c) == 1: if int(c) % 3 == 0: print(c) else: print(-1) ...
Title: Divide by Three Time Limit: None seconds Memory Limit: None megabytes Problem Description: A positive integer number *n* is written on a blackboard. It consists of not more than 105 digits. You have to transform it into a beautiful number by erasing some of the digits, and you want to erase as few digits as p...
```python from collections import Counter c = input() L = len(c) #print(Counter(int(x) % 3 for x in c)) p0 = [] p1 = [] p2 = [] P0 = ['0', '3', '6', '9'] P1 = ['1', '4', '7'] P2 = ['2', '5', '8'] k0 = 0 k1 = 0 k2 = 0 if len(c) == 1: if int(c) % 3 == 0: print(c) else: print...
0
34
B
Sale
PROGRAMMING
900
[ "greedy", "sortings" ]
B. Sale
2
256
Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can «buy» any TV sets he wants. Though he's very strong, Bob can carry at most *m* TV set...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*m*<=≤<=*n*<=≤<=100) — amount of TV sets at the sale, and amount of TV sets that Bob can carry. The following line contains *n* space-separated integers *a**i* (<=-<=1000<=≤<=*a**i*<=≤<=1000) — prices of the TV sets.
Output the only number — the maximum sum of money that Bob can earn, given that he can carry at most *m* TV sets.
[ "5 3\n-6 0 35 -2 4\n", "4 2\n7 0 0 -7\n" ]
[ "8\n", "7\n" ]
none
1,000
[ { "input": "5 3\n-6 0 35 -2 4", "output": "8" }, { "input": "4 2\n7 0 0 -7", "output": "7" }, { "input": "6 6\n756 -611 251 -66 572 -818", "output": "1495" }, { "input": "5 5\n976 437 937 788 518", "output": "0" }, { "input": "5 3\n-2 -2 -2 -2 -2", "output": "...
1,689,357,558
2,147,483,647
Python 3
OK
TESTS
25
92
0
n, m = map(int, input().split()) l = sorted(list(map(int, input().split()))) count = 0 for i in range(n): if l[i] < 0: count += abs(l[i]); m -= 1 else: break if m == 0: break print(count)
Title: Sale Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can...
```python n, m = map(int, input().split()) l = sorted(list(map(int, input().split()))) count = 0 for i in range(n): if l[i] < 0: count += abs(l[i]); m -= 1 else: break if m == 0: break print(count) ```
3.977
916
A
Jamie and Alarm Snooze
PROGRAMMING
900
[ "brute force", "implementation", "math" ]
null
null
Jamie loves sleeping. One day, he decides that he needs to wake up at exactly *hh*:<=*mm*. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will then press the snooze button every *x* minutes until *hh*:<=*mm* is reached, and only then he will wake up. He ...
The first line contains a single integer *x* (1<=≤<=*x*<=≤<=60). The second line contains two two-digit integers, *hh* and *mm* (00<=≤<=*hh*<=≤<=23,<=00<=≤<=*mm*<=≤<=59).
Print the minimum number of times he needs to press the button.
[ "3\n11 23\n", "5\n01 07\n" ]
[ "2\n", "0\n" ]
In the first sample, Jamie needs to wake up at 11:23. So, he can set his alarm at 11:17. He would press the snooze button when the alarm rings at 11:17 and at 11:20. In the second sample, Jamie can set his alarm at exactly at 01:07 which is lucky.
500
[ { "input": "3\n11 23", "output": "2" }, { "input": "5\n01 07", "output": "0" }, { "input": "34\n09 24", "output": "3" }, { "input": "2\n14 37", "output": "0" }, { "input": "14\n19 54", "output": "9" }, { "input": "42\n15 44", "output": "12" }, ...
1,516,374,246
1,746
Python 3
OK
TESTS
254
77
5,632,000
import sys if __name__ == "__main__": x = int(input()) hh,mm = input().split(' ') hh = int(hh) mm = int(mm) cnt = 0 while(1): s = set(str(str(hh)+str(mm))) #print(s) if('7' in s): break; else: if(mm<x): r = x-mm mm = 60-r if(hh == 00): hh = 23 else: hh-=1 else: mm-=x...
Title: Jamie and Alarm Snooze Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jamie loves sleeping. One day, he decides that he needs to wake up at exactly *hh*:<=*mm*. However, he hates waking up, so he wants to make waking up less painful by setting the alarm at a lucky time. He will the...
```python import sys if __name__ == "__main__": x = int(input()) hh,mm = input().split(' ') hh = int(hh) mm = int(mm) cnt = 0 while(1): s = set(str(str(hh)+str(mm))) #print(s) if('7' in s): break; else: if(mm<x): r = x-mm mm = 60-r if(hh == 00): hh = 23 else: hh-=1 else:...
3
791
A
Bear and Big Brother
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or equal to his brother's weight. Limak eats a lot and his weight is tripled after every year, while Bob's we...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10) — the weight of Limak and the weight of Bob respectively.
Print one integer, denoting the integer number of years after which Limak will become strictly larger than Bob.
[ "4 7\n", "4 9\n", "1 1\n" ]
[ "2\n", "3\n", "1\n" ]
In the first sample, Limak weighs 4 and Bob weighs 7 initially. After one year their weights are 4·3 = 12 and 7·2 = 14 respectively (one weight is tripled while the other one is doubled). Limak isn't larger than Bob yet. After the second year weights are 36 and 28, so the first weight is greater than the second one. Li...
500
[ { "input": "4 7", "output": "2" }, { "input": "4 9", "output": "3" }, { "input": "1 1", "output": "1" }, { "input": "4 6", "output": "2" }, { "input": "1 10", "output": "6" }, { "input": "1 1", "output": "1" }, { "input": "1 2", "output...
1,699,232,327
2,147,483,647
PyPy 3-64
OK
TESTS
62
62
0
weights = input() whitespace = weights.index(" ") lil_weight = "" big_weight = "" for i in range(0, len(weights)): if i < whitespace: lil_weight += weights[i] elif i > whitespace: big_weight += weights[i] lil_weight = int(lil_weight) big_weight = int(big_weight) ye...
Title: Bear and Big Brother Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or e...
```python weights = input() whitespace = weights.index(" ") lil_weight = "" big_weight = "" for i in range(0, len(weights)): if i < whitespace: lil_weight += weights[i] elif i > whitespace: big_weight += weights[i] lil_weight = int(lil_weight) big_weight = int(big_weigh...
3
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,591,088,896
2,147,483,647
PyPy 3
OK
TESTS
30
280
0
s=input() lower_count = sum(map(str.islower, s)) upper_count = sum(map(str.isupper, s)) if lower_count>upper_count: s=s.lower() elif lower_count<upper_count: s=s.upper() else: s=s.lower() print(s)
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python s=input() lower_count = sum(map(str.islower, s)) upper_count = sum(map(str.isupper, s)) if lower_count>upper_count: s=s.lower() elif lower_count<upper_count: s=s.upper() else: s=s.lower() print(s) ```
3.93
831
A
Unimodal Array
PROGRAMMING
1,000
[ "implementation" ]
null
null
Array of integers is unimodal, if: - it is strictly increasing in the beginning; - after that it is constant; - after that it is strictly decreasing. The first block (increasing) and the last block (decreasing) may be absent. It is allowed that both of this blocks are absent. For example, the following three arra...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in the array. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1<=000) — the elements of the array.
Print "YES" if the given array is unimodal. Otherwise, print "NO". You can output each letter in any case (upper or lower).
[ "6\n1 5 5 5 4 2\n", "5\n10 20 30 20 10\n", "4\n1 2 1 2\n", "7\n3 3 3 3 3 3 3\n" ]
[ "YES\n", "YES\n", "NO\n", "YES\n" ]
In the first example the array is unimodal, because it is strictly increasing in the beginning (from position 1 to position 2, inclusively), that it is constant (from position 2 to position 4, inclusively) and then it is strictly decreasing (from position 4 to position 6, inclusively).
500
[ { "input": "6\n1 5 5 5 4 2", "output": "YES" }, { "input": "5\n10 20 30 20 10", "output": "YES" }, { "input": "4\n1 2 1 2", "output": "NO" }, { "input": "7\n3 3 3 3 3 3 3", "output": "YES" }, { "input": "6\n5 7 11 11 2 1", "output": "YES" }, { "input":...
1,641,793,499
2,147,483,647
Python 3
OK
TESTS
101
46
0
n = int(input()) s = list(map(int,input().split())) i = 1 while i < n and s[i - 1] < s[i]: i += 1 while i < n and s[i - 1] == s[i]: i += 1 while i < n and s[i - 1] > s[i]: i += 1 if i == n: print("YES") else: print("NO")
Title: Unimodal Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Array of integers is unimodal, if: - it is strictly increasing in the beginning; - after that it is constant; - after that it is strictly decreasing. The first block (increasing) and the last block (decreasing) may ...
```python n = int(input()) s = list(map(int,input().split())) i = 1 while i < n and s[i - 1] < s[i]: i += 1 while i < n and s[i - 1] == s[i]: i += 1 while i < n and s[i - 1] > s[i]: i += 1 if i == n: print("YES") else: print("NO") ```
3
672
A
Summer Camp
PROGRAMMING
800
[ "implementation" ]
null
null
Every year, hundreds of people come to summer camps, they learn new algorithms and solve hard problems. This is your first year at summer camp, and you are asked to solve the following problem. All integers starting with 1 are written in one line. The prefix of these line is "123456789101112131415...". Your task is to...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the position of the digit you need to print.
Print the *n*-th digit of the line.
[ "3\n", "11\n" ]
[ "3\n", "0\n" ]
In the first sample the digit at position 3 is '3', as both integers 1 and 2 consist on one digit. In the second sample, the digit at position 11 is '0', it belongs to the integer 10.
500
[ { "input": "3", "output": "3" }, { "input": "11", "output": "0" }, { "input": "12", "output": "1" }, { "input": "13", "output": "1" }, { "input": "29", "output": "9" }, { "input": "30", "output": "2" }, { "input": "1000", "output": "3" ...
1,646,556,502
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
class Solution: def getDigit(self, index: int) -> int: length = 1 count = 9 while index > length * count: index = index - (length * count) length += 1 count *= 10 start_number = 10 ** (length - 1) number, reminder = divmod...
Title: Summer Camp Time Limit: None seconds Memory Limit: None megabytes Problem Description: Every year, hundreds of people come to summer camps, they learn new algorithms and solve hard problems. This is your first year at summer camp, and you are asked to solve the following problem. All integers starting with 1...
```python class Solution: def getDigit(self, index: int) -> int: length = 1 count = 9 while index > length * count: index = index - (length * count) length += 1 count *= 10 start_number = 10 ** (length - 1) number, reminde...
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,544,613,221
2,147,483,647
Python 3
OK
TESTS
40
109
0
#CF802G s = input() h = s.find("h") e = s.find("e",h) i1 = s.find("l",e) d = s.find("l",i1+1) i2 = s.find("o",d) #print(h,e,i1,d,i2) if -1 < h < e <i1 < d < i2: print("YES") else:print("NO")
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python #CF802G s = input() h = s.find("h") e = s.find("e",h) i1 = s.find("l",e) d = s.find("l",i1+1) i2 = s.find("o",d) #print(h,e,i1,d,i2) if -1 < h < e <i1 < d < i2: print("YES") else:print("NO") ```
3.9455
625
B
War of the Corporations
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "strings" ]
null
null
A long time ago, in a galaxy far far away two giant IT-corporations Pineapple and Gogol continue their fierce competition. Crucial moment is just around the corner: Gogol is ready to release it's new tablet Lastus 3000. This new device is equipped with specially designed artificial intelligence (AI). Employees of Pine...
The first line of the input contains the name of AI designed by Gogol, its length doesn't exceed 100<=000 characters. Second line contains the name of the phone released by Pineapple 200 years ago, its length doesn't exceed 30. Both string are non-empty and consist of only small English letters.
Print the minimum number of characters that must be replaced with "#" in order to obtain that the name of the phone doesn't occur in the name of AI as a substring.
[ "intellect\ntell\n", "google\napple\n", "sirisiri\nsir\n" ]
[ "1", "0", "2" ]
In the first sample AI's name may be replaced with "int#llect". In the second sample Gogol can just keep things as they are. In the third sample one of the new possible names of AI may be "s#ris#ri".
750
[ { "input": "intellect\ntell", "output": "1" }, { "input": "google\napple", "output": "0" }, { "input": "sirisiri\nsir", "output": "2" }, { "input": "sirisiri\nsiri", "output": "2" }, { "input": "aaaaaaa\naaaa", "output": "1" }, { "input": "bbbbbb\nbb",...
1,547,532,890
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
108
0
a = input() b = input() count = 0 while True: n = a.find(b) if n==-1: break else: count+=1 a = a.replace(b, b[:len(b)-1]+"0", 1) print(a, n) print(count)
Title: War of the Corporations Time Limit: None seconds Memory Limit: None megabytes Problem Description: A long time ago, in a galaxy far far away two giant IT-corporations Pineapple and Gogol continue their fierce competition. Crucial moment is just around the corner: Gogol is ready to release it's new tablet Last...
```python a = input() b = input() count = 0 while True: n = a.find(b) if n==-1: break else: count+=1 a = a.replace(b, b[:len(b)-1]+"0", 1) print(a, n) print(count) ```
0
474
A
Keyboard
PROGRAMMING
900
[ "implementation" ]
null
null
Our good friend Mole is trying to code a big message. He is typing on an unusual keyboard with characters arranged in following way: Unfortunately Mole is blind, so sometimes it is problem for him to put his hands accurately. He accidentally moved both his hands with one position to the left or to the right. That mean...
First line of the input contains one letter describing direction of shifting ('L' or 'R' respectively for left or right). Second line contains a sequence of characters written by Mole. The size of this sequence will be no more than 100. Sequence contains only symbols that appear on Mole's keyboard. It doesn't contain ...
Print a line that contains the original message.
[ "R\ns;;upimrrfod;pbr\n" ]
[ "allyouneedislove\n" ]
none
500
[ { "input": "R\ns;;upimrrfod;pbr", "output": "allyouneedislove" }, { "input": "R\nwertyuiop;lkjhgfdsxcvbnm,.", "output": "qwertyuiolkjhgfdsazxcvbnm," }, { "input": "L\nzxcvbnm,kjhgfdsaqwertyuio", "output": "xcvbnm,.lkjhgfdswertyuiop" }, { "input": "R\nbubbuduppudup", "outp...
1,700,063,387
2,147,483,647
PyPy 3-64
OK
TESTS
31
62
0
s = input() ss = input() k = "qwertyuiopasdfghjkl;zxcvbnm,./" for i in ss: print(k[k.index(i)-(1 if s=='R' else -1)],end='')
Title: Keyboard Time Limit: None seconds Memory Limit: None megabytes Problem Description: Our good friend Mole is trying to code a big message. He is typing on an unusual keyboard with characters arranged in following way: Unfortunately Mole is blind, so sometimes it is problem for him to put his hands accurately....
```python s = input() ss = input() k = "qwertyuiopasdfghjkl;zxcvbnm,./" for i in ss: print(k[k.index(i)-(1 if s=='R' else -1)],end='') ```
3
669
A
Little Artem and Presents
PROGRAMMING
800
[ "math" ]
null
null
Little Artem got *n* stones on his birthday and now wants to give some of them to Masha. He knows that Masha cares more about the fact of receiving the present, rather than the value of that present, so he wants to give her stones as many times as possible. However, Masha remembers the last present she received, so Art...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=109) — number of stones Artem received on his birthday.
Print the maximum possible number of times Artem can give presents to Masha.
[ "1\n", "2\n", "3\n", "4\n" ]
[ "1\n", "1\n", "2\n", "3\n" ]
In the first sample, Artem can only give 1 stone to Masha. In the second sample, Atrem can give Masha 1 or 2 stones, though he can't give her 1 stone two times. In the third sample, Atrem can first give Masha 2 stones, a then 1 more stone. In the fourth sample, Atrem can first give Masha 1 stone, then 2 stones, and ...
500
[ { "input": "1", "output": "1" }, { "input": "2", "output": "1" }, { "input": "3", "output": "2" }, { "input": "4", "output": "3" }, { "input": "100", "output": "67" }, { "input": "101", "output": "67" }, { "input": "102", "output": "68"...
1,618,210,297
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
61
0
n=int(input()) maxstones=(n-(n-1)//3) print(maxstones)
Title: Little Artem and Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Artem got *n* stones on his birthday and now wants to give some of them to Masha. He knows that Masha cares more about the fact of receiving the present, rather than the value of that present, so he wan...
```python n=int(input()) maxstones=(n-(n-1)//3) print(maxstones) ```
0
1,009
B
Minimum Ternary String
PROGRAMMING
1,400
[ "greedy", "implementation" ]
null
null
You are given a ternary string (it is a string which consists only of characters '0', '1' and '2'). You can swap any two adjacent (consecutive) characters '0' and '1' (i.e. replace "01" with "10" or vice versa) or any two adjacent (consecutive) characters '1' and '2' (i.e. replace "12" with "21" or vice versa). For e...
The first line of the input contains the string $s$ consisting only of characters '0', '1' and '2', its length is between $1$ and $10^5$ (inclusive).
Print a single string — the minimum possible (lexicographically) string you can obtain by using the swaps described above arbitrary number of times (possibly, zero).
[ "100210\n", "11222121\n", "20\n" ]
[ "001120\n", "11112222\n", "20\n" ]
none
0
[ { "input": "100210", "output": "001120" }, { "input": "11222121", "output": "11112222" }, { "input": "20", "output": "20" }, { "input": "1002", "output": "0012" }, { "input": "10", "output": "01" }, { "input": "000021", "output": "000012" }, { ...
1,640,110,829
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
x=input() m = len(x) - 1 for i in range(m): if (int(x[i]) - int(x[i+1])) == 1: y=x[i] x = x.replace(x[i],x[i+1],1) x = x.replace(x[i+1],y,1) print(x)
Title: Minimum Ternary String Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a ternary string (it is a string which consists only of characters '0', '1' and '2'). You can swap any two adjacent (consecutive) characters '0' and '1' (i.e. replace "01" with "10" or vice versa) ...
```python x=input() m = len(x) - 1 for i in range(m): if (int(x[i]) - int(x[i+1])) == 1: y=x[i] x = x.replace(x[i],x[i+1],1) x = x.replace(x[i+1],y,1) print(x) ```
0
710
E
Generate a String
PROGRAMMING
2,000
[ "dfs and similar", "dp" ]
null
null
zscoder wants to generate an input file for some programming competition problem. His input is a string consisting of *n* letters 'a'. He is too lazy to write a generator so he will manually generate the input in a text editor. Initially, the text editor is empty. It takes him *x* seconds to insert or delete a letter...
The only line contains three integers *n*, *x* and *y* (1<=≤<=*n*<=≤<=107, 1<=≤<=*x*,<=*y*<=≤<=109) — the number of letters 'a' in the input file and the parameters from the problem statement.
Print the only integer *t* — the minimum amount of time needed to generate the input file.
[ "8 1 1\n", "8 1 10\n" ]
[ "4\n", "8\n" ]
none
0
[ { "input": "8 1 1", "output": "4" }, { "input": "8 1 10", "output": "8" }, { "input": "10 62 99", "output": "384" }, { "input": "88 417 591", "output": "4623" }, { "input": "57 5289 8444", "output": "60221" }, { "input": "382 81437847 324871127", "...
1,533,811,415
3,515
Python 3
WRONG_ANSWER
TESTS
2
108
0
a, b, c = input().split() a = int(a) add = int(b) copy = int(c) time = 0 str = 0 while a != 0: if a < 0: time += add a += 1 elif int(copy / add) >= str: time += add a -= 1 str += 1 elif int(copy / add) < str: if str <= a: time += co...
Title: Generate a String Time Limit: None seconds Memory Limit: None megabytes Problem Description: zscoder wants to generate an input file for some programming competition problem. His input is a string consisting of *n* letters 'a'. He is too lazy to write a generator so he will manually generate the input in a t...
```python a, b, c = input().split() a = int(a) add = int(b) copy = int(c) time = 0 str = 0 while a != 0: if a < 0: time += add a += 1 elif int(copy / add) >= str: time += add a -= 1 str += 1 elif int(copy / add) < str: if str <= a: ...
0
740
B
Alyona and flowers
PROGRAMMING
1,200
[ "constructive algorithms" ]
null
null
Little Alyona is celebrating Happy Birthday! Her mother has an array of *n* flowers. Each flower has some mood, the mood of *i*-th flower is *a**i*. The mood can be positive, zero or negative. Let's define a subarray as a segment of consecutive flowers. The mother suggested some set of subarrays. Alyona wants to choos...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of flowers and the number of subarrays suggested by the mother. The second line contains the flowers moods — *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=100<=≤<=*a**i*<=≤<=100). The next *m* lines contain the description of the ...
Print single integer — the maximum possible value added to the Alyona's happiness.
[ "5 4\n1 -2 1 3 -4\n1 2\n4 5\n3 4\n1 4\n", "4 3\n1 2 3 4\n1 3\n2 4\n1 1\n", "2 2\n-1 -2\n1 1\n1 2\n" ]
[ "7\n", "16\n", "0\n" ]
The first example is the situation described in the statements. In the second example Alyona should choose all subarrays. The third example has answer 0 because Alyona can choose none of the subarrays.
1,000
[ { "input": "5 4\n1 -2 1 3 -4\n1 2\n4 5\n3 4\n1 4", "output": "7" }, { "input": "4 3\n1 2 3 4\n1 3\n2 4\n1 1", "output": "16" }, { "input": "2 2\n-1 -2\n1 1\n1 2", "output": "0" }, { "input": "5 6\n1 1 1 -1 0\n2 4\n1 3\n4 5\n1 5\n1 4\n4 5", "output": "8" }, { "inpu...
1,620,843,032
2,147,483,647
Python 3
OK
TESTS
53
62
6,963,200
n, m = list(map(int, input().split(' '))) nums = list(map(int, input().split(' '))) # find the prefix sum of the array, to calculate the happiness prefix_sum = [0] for num in nums: prefix_sum.append(num + prefix_sum[-1]) # print(prefix_sum) res = 0 for i in range(m): s, e = list(map(int, input().split(' '))) temp...
Title: Alyona and flowers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Alyona is celebrating Happy Birthday! Her mother has an array of *n* flowers. Each flower has some mood, the mood of *i*-th flower is *a**i*. The mood can be positive, zero or negative. Let's define a subarra...
```python n, m = list(map(int, input().split(' '))) nums = list(map(int, input().split(' '))) # find the prefix sum of the array, to calculate the happiness prefix_sum = [0] for num in nums: prefix_sum.append(num + prefix_sum[-1]) # print(prefix_sum) res = 0 for i in range(m): s, e = list(map(int, input().split(' ...
3
248
B
Chilly Willy
PROGRAMMING
1,400
[ "math", "number theory" ]
null
null
Chilly Willy loves playing with numbers. He only knows prime numbers that are digits yet. These numbers are 2, 3, 5 and 7. But Willy grew rather bored of such numbers, so he came up with a few games that were connected with them. Chilly Willy wants to find the minimum number of length *n*, such that it is simultaneous...
A single input line contains a single integer *n* (1<=≤<=*n*<=≤<=105).
Print a single integer — the answer to the problem without leading zeroes, or "-1" (without the quotes), if the number that meet the problem condition does not exist.
[ "1\n", "5\n" ]
[ "-1\n", "10080" ]
none
1,000
[ { "input": "1", "output": "-1" }, { "input": "5", "output": "10080" }, { "input": "6", "output": "100170" }, { "input": "4", "output": "1050" }, { "input": "15", "output": "100000000000110" }, { "input": "16", "output": "1000000000000050" }, { ...
1,613,995,708
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
216
0
a=int(input()) if a>3: s=['1']+['0']*(a-1) for i in range(a-2,0,-1): z=s.copy() for x in ['2','5','8']: z[i]=x num=int(''.join(z)) if num%7==0: print(num) exit() else: print(210 if a>2 else -1)
Title: Chilly Willy Time Limit: None seconds Memory Limit: None megabytes Problem Description: Chilly Willy loves playing with numbers. He only knows prime numbers that are digits yet. These numbers are 2, 3, 5 and 7. But Willy grew rather bored of such numbers, so he came up with a few games that were connected wit...
```python a=int(input()) if a>3: s=['1']+['0']*(a-1) for i in range(a-2,0,-1): z=s.copy() for x in ['2','5','8']: z[i]=x num=int(''.join(z)) if num%7==0: print(num) exit() else: print(210 if a>2 else -1) ```
0
31
A
Worms Evolution
PROGRAMMING
1,200
[ "implementation" ]
A. Worms Evolution
2
256
Professor Vasechkin is studying evolution of worms. Recently he put forward hypotheses that all worms evolve by division. There are *n* forms of worms. Worms of these forms have lengths *a*1, *a*2, ..., *a**n*. To prove his theory, professor needs to find 3 different forms that the length of the first form is equal to ...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of worm's forms. The second line contains *n* space-separated integers *a**i* (1<=≤<=*a**i*<=≤<=1000) — lengths of worms of each form.
Output 3 distinct integers *i* *j* *k* (1<=≤<=*i*,<=*j*,<=*k*<=≤<=*n*) — such indexes of worm's forms that *a**i*<==<=*a**j*<=+<=*a**k*. If there is no such triple, output -1. If there are several solutions, output any of them. It possible that *a**j*<==<=*a**k*.
[ "5\n1 2 3 5 7\n", "5\n1 8 1 5 1\n" ]
[ "3 2 1\n", "-1\n" ]
none
500
[ { "input": "5\n1 2 3 5 7", "output": "3 2 1" }, { "input": "5\n1 8 1 5 1", "output": "-1" }, { "input": "4\n303 872 764 401", "output": "-1" }, { "input": "6\n86 402 133 524 405 610", "output": "6 4 1" }, { "input": "8\n217 779 418 895 996 473 3 22", "output":...
1,494,165,189
2,147,483,647
Python 3
OK
TESTS
39
124
0
'''input 5 1 2 3 5 7 ''' n = int(input()) a = list(map(int, input().split())) for x in range(n): for y in range(x+1, n): if a[x] + a[y] in a: print(a.index(a[x]+a[y])+1, x+1, y+1) quit() print(-1)
Title: Worms Evolution Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Professor Vasechkin is studying evolution of worms. Recently he put forward hypotheses that all worms evolve by division. There are *n* forms of worms. Worms of these forms have lengths *a*1, *a*2, ..., *a**n*. To prove his...
```python '''input 5 1 2 3 5 7 ''' n = int(input()) a = list(map(int, input().split())) for x in range(n): for y in range(x+1, n): if a[x] + a[y] in a: print(a.index(a[x]+a[y])+1, x+1, y+1) quit() print(-1) ```
3.969