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
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,594,482,470
2,147,483,647
PyPy 3
OK
TESTS
40
140
20,172,800
s = input() searchChar = ['h','e','l','l','o'] searchChar = searchChar[::-1] startIndex = len(s) - 1 charIndex = 0 ans = "YES" def search(item, startIndex): i = startIndex while i >= 0: if s[i] == item: return i i -= 1 return -1 for item in searchChar: ...
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() searchChar = ['h','e','l','l','o'] searchChar = searchChar[::-1] startIndex = len(s) - 1 charIndex = 0 ans = "YES" def search(item, startIndex): i = startIndex while i >= 0: if s[i] == item: return i i -= 1 return -1 for item in se...
3.892425
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,617,532,997
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
62
0
n=int(input()) s=input() d={} for i in s: if(i in d): d[i]+=1 else: d[i]=1 if(len(d)==2): s1='1'*1+'0'*d['0'] print(s1) else: print('1'*1)
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 n=int(input()) s=input() d={} for i in s: if(i in d): d[i]+=1 else: d[i]=1 if(len(d)==2): s1='1'*1+'0'*d['0'] print(s1) else: print('1'*1) ```
0
139
A
Petr and Book
PROGRAMMING
1,000
[ "implementation" ]
null
null
One Sunday Petr went to a bookshop and bought a new book on sports programming. The book had exactly *n* pages. Petr decided to start reading it starting from the next day, that is, from Monday. Petr's got a very tight schedule and for each day of the week he knows how many pages he will be able to read on that day. S...
The first input line contains the single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of pages in the book. The second line contains seven non-negative space-separated integers that do not exceed 1000 — those integers represent how many pages Petr can read on Monday, Tuesday, Wednesday, Thursday, Friday, Saturday and...
Print a single number — the number of the day of the week, when Petr will finish reading the book. The days of the week are numbered starting with one in the natural order: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
[ "100\n15 20 20 15 10 30 45\n", "2\n1 0 0 0 0 0 0\n" ]
[ "6\n", "1\n" ]
Note to the first sample: By the end of Monday and therefore, by the beginning of Tuesday Petr has 85 pages left. He has 65 pages left by Wednesday, 45 by Thursday, 30 by Friday, 20 by Saturday and on Saturday Petr finishes reading the book (and he also has time to read 10 pages of something else). Note to the second...
500
[ { "input": "100\n15 20 20 15 10 30 45", "output": "6" }, { "input": "2\n1 0 0 0 0 0 0", "output": "1" }, { "input": "100\n100 200 100 200 300 400 500", "output": "1" }, { "input": "3\n1 1 1 1 1 1 1", "output": "3" }, { "input": "1\n1 1 1 1 1 1 1", "output": "1...
1,663,584,177
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
n=int(input()) arr=list(map(int,input().split())) s=sum(arr) if s!=n: n=n%s for i in range(len(arr)): n-=arr[i] if n<=0: print(i+1) else: print(7)
Title: Petr and Book Time Limit: None seconds Memory Limit: None megabytes Problem Description: One Sunday Petr went to a bookshop and bought a new book on sports programming. The book had exactly *n* pages. Petr decided to start reading it starting from the next day, that is, from Monday. Petr's got a very tight s...
```python n=int(input()) arr=list(map(int,input().split())) s=sum(arr) if s!=n: n=n%s for i in range(len(arr)): n-=arr[i] if n<=0: print(i+1) else: print(7) ```
0
803
A
Maximal Binary Matrix
PROGRAMMING
1,400
[ "constructive algorithms" ]
null
null
You are given matrix with *n* rows and *n* columns filled with zeroes. You should put *k* ones in it in such a way that the resulting matrix is symmetrical with respect to the main diagonal (the diagonal that goes from the top left to the bottom right corner) and is lexicographically maximal. One matrix is lexicograph...
The first line consists of two numbers *n* and *k* (1<=≤<=*n*<=≤<=100, 0<=≤<=*k*<=≤<=106).
If the answer exists then output resulting matrix. Otherwise output -1.
[ "2 1\n", "3 2\n", "2 5\n" ]
[ "1 0 \n0 0 \n", "1 0 0 \n0 1 0 \n0 0 0 \n", "-1\n" ]
none
0
[ { "input": "2 1", "output": "1 0 \n0 0 " }, { "input": "3 2", "output": "1 0 0 \n0 1 0 \n0 0 0 " }, { "input": "2 5", "output": "-1" }, { "input": "1 0", "output": "0 " }, { "input": "1 1", "output": "1 " }, { "input": "20 398", "output": "1 1 1 1 ...
1,698,136,853
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
n,k = map(int,input().split()) if k > n: if k > n**2: test = 0 if n % 2 == 0 and k % 2 != 0: test = 0 if n % 2 != 0 and k % 2 == 0: test = 0 if test != 0: matrix = [[0 for _ in range(n)]for _ in range(n)] count = 0 f...
Title: Maximal Binary Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given matrix with *n* rows and *n* columns filled with zeroes. You should put *k* ones in it in such a way that the resulting matrix is symmetrical with respect to the main diagonal (the diagonal that goes...
```python n,k = map(int,input().split()) if k > n: if k > n**2: test = 0 if n % 2 == 0 and k % 2 != 0: test = 0 if n % 2 != 0 and k % 2 == 0: test = 0 if test != 0: matrix = [[0 for _ in range(n)]for _ in range(n)] count = 0 ...
-1
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,766,240
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
60
4,198,400
arr = input().strip().split(' ') area = int(arr[0]) * int(arr[1]) ans = arr // 2 print(ans)
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 arr = input().strip().split(' ') area = int(arr[0]) * int(arr[1]) ans = arr // 2 print(ans) ```
-1
844
A
Diversity
PROGRAMMING
1,000
[ "greedy", "implementation", "strings" ]
null
null
Calculate the minimum number of characters you need to change in the string *s*, so that it contains at least *k* different letters, or print that it is impossible. String *s* consists only of lowercase Latin letters, and it is allowed to change characters only to lowercase Latin letters too.
First line of input contains string *s*, consisting only of lowercase Latin letters (1<=≤<=|*s*|<=≤<=1000, |*s*| denotes the length of *s*). Second line of input contains integer *k* (1<=≤<=*k*<=≤<=26).
Print single line with a minimum number of necessary changes, or the word «impossible» (without quotes) if it is impossible.
[ "yandex\n6\n", "yahoo\n5\n", "google\n7\n" ]
[ "0\n", "1\n", "impossible\n" ]
In the first test case string contains 6 different letters, so we don't need to change anything. In the second test case string contains 4 different letters: {'*a*', '*h*', '*o*', '*y*'}. To get 5 different letters it is necessary to change one occurrence of '*o*' to some letter, which doesn't occur in the string, for...
500
[ { "input": "yandex\n6", "output": "0" }, { "input": "yahoo\n5", "output": "1" }, { "input": "google\n7", "output": "impossible" }, { "input": "a\n1", "output": "0" }, { "input": "z\n2", "output": "impossible" }, { "input": "fwgfrwgkuwghfiruhewgirueguhe...
1,650,509,736
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
# coding=utf-8 s=input() n=int(input()) a={} x=0 if n>len(s): print('impossible') else: b=len(s)-n for t in s: c=s.count(t) if c>1: x+=c print(x)
Title: Diversity Time Limit: None seconds Memory Limit: None megabytes Problem Description: Calculate the minimum number of characters you need to change in the string *s*, so that it contains at least *k* different letters, or print that it is impossible. String *s* consists only of lowercase Latin letters, and it...
```python # coding=utf-8 s=input() n=int(input()) a={} x=0 if n>len(s): print('impossible') else: b=len(s)-n for t in s: c=s.count(t) if c>1: x+=c print(x) ```
0
22
A
Second Order Statistics
PROGRAMMING
800
[ "brute force" ]
A. Second Order Statistics
2
256
Once Bob needed to find the second order statistics of a sequence of integer numbers. Lets choose each number from the sequence exactly once and sort them. The value on the second position is the second order statistics of the given sequence. In other words it is the smallest element strictly greater than the minimum. ...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=100) — amount of numbers in the sequence. The second line contains *n* space-separated integer numbers — elements of the sequence. These numbers don't exceed 100 in absolute value.
If the given sequence has the second order statistics, output this order statistics, otherwise output NO.
[ "4\n1 2 2 -4\n", "5\n1 2 3 1 1\n" ]
[ "1\n", "2\n" ]
none
0
[ { "input": "4\n1 2 2 -4", "output": "1" }, { "input": "5\n1 2 3 1 1", "output": "2" }, { "input": "1\n28", "output": "NO" }, { "input": "2\n-28 12", "output": "12" }, { "input": "3\n-83 40 -80", "output": "-80" }, { "input": "8\n93 77 -92 26 21 -48 53 ...
1,647,774,457
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
n= int(input()) a= list(map(int,str.split(input()))) a= list(set(a)) print(a[-2])
Title: Second Order Statistics Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once Bob needed to find the second order statistics of a sequence of integer numbers. Lets choose each number from the sequence exactly once and sort them. The value on the second position is the second order statis...
```python n= int(input()) a= list(map(int,str.split(input()))) a= list(set(a)) print(a[-2]) ```
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,448,126,849
2,147,483,647
Python 3
OK
TESTS
39
124
0
n = int(input()) a = list(map(int, input().split())) for i in range(n): for j in range(n): for k in range(n): if j != k and a[j] + a[k] == a[i]: print(i + 1, j + 1, k + 1) exit() 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 n = int(input()) a = list(map(int, input().split())) for i in range(n): for j in range(n): for k in range(n): if j != k and a[j] + a[k] == a[i]: print(i + 1, j + 1, k + 1) exit() print(-1) ```
3.969
11
A
Increasing Sequence
PROGRAMMING
900
[ "constructive algorithms", "implementation", "math" ]
A. Increasing Sequence
1
64
A sequence *a*0,<=*a*1,<=...,<=*a**t*<=-<=1 is called increasing if *a**i*<=-<=1<=&lt;<=*a**i* for each *i*:<=0<=&lt;<=*i*<=&lt;<=*t*. You are given a sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 and a positive integer *d*. In each move you may choose one element of the given sequence and add *d* to it. What is the least...
The first line of the input contains two integer numbers *n* and *d* (2<=≤<=*n*<=≤<=2000,<=1<=≤<=*d*<=≤<=106). The second line contains space separated sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 (1<=≤<=*b**i*<=≤<=106).
Output the minimal number of moves needed to make the sequence increasing.
[ "4 2\n1 3 3 2\n" ]
[ "3\n" ]
none
0
[ { "input": "4 2\n1 3 3 2", "output": "3" }, { "input": "2 1\n1 1", "output": "1" }, { "input": "2 1\n2 5", "output": "0" }, { "input": "2 1\n1 2", "output": "0" }, { "input": "2 1\n1 1", "output": "1" }, { "input": "2 7\n10 20", "output": "0" }, ...
1,694,457,433
2,147,483,647
PyPy 3-64
OK
TESTS
25
124
1,843,200
n, d = map(int, input().split()) b = list(map(int, input().split())) moves = 0 for i in range(1, n): if b[i]<=b[i-1]: nm = (b[i-1]-b[i])//d + 1 moves+=nm b[i] += d*nm print(moves)
Title: Increasing Sequence Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: A sequence *a*0,<=*a*1,<=...,<=*a**t*<=-<=1 is called increasing if *a**i*<=-<=1<=&lt;<=*a**i* for each *i*:<=0<=&lt;<=*i*<=&lt;<=*t*. You are given a sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 and a positive integer *d*...
```python n, d = map(int, input().split()) b = list(map(int, input().split())) moves = 0 for i in range(1, n): if b[i]<=b[i-1]: nm = (b[i-1]-b[i])//d + 1 moves+=nm b[i] += d*nm print(moves) ```
3.924267
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,631,829,124
2,147,483,647
Python 3
OK
TESTS
57
186
7,577,600
n = int(input()) cupboards_list = [] for i in range(n): temp = list(map(int, input().split())) cupboards_list.append(temp) left_open = 0 left_closed = 0 right_open = 0 right_closed = 0 total_seconds = 0 for cupboard in cupboards_list: if cupboard[0] == 0: left_closed += 1 if cupboard[0] == 1: ...
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()) cupboards_list = [] for i in range(n): temp = list(map(int, input().split())) cupboards_list.append(temp) left_open = 0 left_closed = 0 right_open = 0 right_closed = 0 total_seconds = 0 for cupboard in cupboards_list: if cupboard[0] == 0: left_closed += 1 if cupboard[...
3
230
B
T-primes
PROGRAMMING
1,300
[ "binary search", "implementation", "math", "number theory" ]
null
null
We know that prime numbers are positive integers that have exactly two distinct positive divisors. Similarly, we'll call a positive integer *t* Т-prime, if *t* has exactly three distinct positive divisors. You are given an array of *n* positive integers. For each of them determine whether it is Т-prime or not.
The first line contains a single positive integer, *n* (1<=≤<=*n*<=≤<=105), showing how many numbers are in the array. The next line contains *n* space-separated integers *x**i* (1<=≤<=*x**i*<=≤<=1012). Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is advised to use the cin, cout st...
Print *n* lines: the *i*-th line should contain "YES" (without the quotes), if number *x**i* is Т-prime, and "NO" (without the quotes), if it isn't.
[ "3\n4 5 6\n" ]
[ "YES\nNO\nNO\n" ]
The given test has three numbers. The first number 4 has exactly three divisors — 1, 2 and 4, thus the answer for this number is "YES". The second number 5 has two divisors (1 and 5), and the third number 6 has four divisors (1, 2, 3, 6), hence the answer for them is "NO".
500
[ { "input": "3\n4 5 6", "output": "YES\nNO\nNO" }, { "input": "2\n48 49", "output": "NO\nYES" }, { "input": "10\n10 9 8 7 6 5 4 3 2 1", "output": "NO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO" }, { "input": "1\n36", "output": "NO" }, { "input": "1\n999966000289", "...
1,697,533,811
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
35
2,000
14,336,000
n=int(input()) x_set=list(map(int,input().split())) def is_t_prime(number): x=number**0.5 if x<=1: return False elif x!=int(x): return False for i in range(2,int(x**0.5)+1): if x%i==0: return False else: return True for i in range(n): if...
Title: T-primes Time Limit: None seconds Memory Limit: None megabytes Problem Description: We know that prime numbers are positive integers that have exactly two distinct positive divisors. Similarly, we'll call a positive integer *t* Т-prime, if *t* has exactly three distinct positive divisors. You are given an ar...
```python n=int(input()) x_set=list(map(int,input().split())) def is_t_prime(number): x=number**0.5 if x<=1: return False elif x!=int(x): return False for i in range(2,int(x**0.5)+1): if x%i==0: return False else: return True for i in range(n...
0
831
A
Unimodal Array
PROGRAMMING
1,000
[ "implementation" ]
null
null
Array of integers is unimodal, if: - it is strictly increasing in the beginning; - after that it is constant; - after that it is strictly decreasing. The first block (increasing) and the last block (decreasing) may be absent. It is allowed that both of this blocks are absent. For example, the following three arra...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in the array. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1<=000) — the elements of the array.
Print "YES" if the given array is unimodal. Otherwise, print "NO". You can output each letter in any case (upper or lower).
[ "6\n1 5 5 5 4 2\n", "5\n10 20 30 20 10\n", "4\n1 2 1 2\n", "7\n3 3 3 3 3 3 3\n" ]
[ "YES\n", "YES\n", "NO\n", "YES\n" ]
In the first example the array is unimodal, because it is strictly increasing in the beginning (from position 1 to position 2, inclusively), that it is constant (from position 2 to position 4, inclusively) and then it is strictly decreasing (from position 4 to position 6, inclusively).
500
[ { "input": "6\n1 5 5 5 4 2", "output": "YES" }, { "input": "5\n10 20 30 20 10", "output": "YES" }, { "input": "4\n1 2 1 2", "output": "NO" }, { "input": "7\n3 3 3 3 3 3 3", "output": "YES" }, { "input": "6\n5 7 11 11 2 1", "output": "YES" }, { "input":...
1,690,484,182
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
41
77
0
n = int(input()) arr = list(map(int, input().split())) def main(): max_ = arr.index(max(arr)) if len(set(arr)) == 1: print('YES') return for i in range(max_): if arr[i] < arr[i + 1]: continue print('NO') return for i in range(max_...
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()) arr = list(map(int, input().split())) def main(): max_ = arr.index(max(arr)) if len(set(arr)) == 1: print('YES') return for i in range(max_): if arr[i] < arr[i + 1]: continue print('NO') return for i in ...
0
935
A
Fafa and his Company
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Fafa owns a company that works on huge projects. There are *n* employees in Fafa's company. Whenever the company has a new project to start working on, Fafa has to divide the tasks of this project among all the employees. Fafa finds doing this every time is very tiring for him. So, he decided to choose the best *l* em...
The input consists of a single line containing a positive integer *n* (2<=≤<=*n*<=≤<=105) — the number of employees in Fafa's company.
Print a single integer representing the answer to the problem.
[ "2\n", "10\n" ]
[ "1\n", "3\n" ]
In the second sample Fafa has 3 ways: - choose only 1 employee as a team leader with 9 employees under his responsibility. - choose 2 employees as team leaders with 4 employees under the responsibility of each of them. - choose 5 employees as team leaders with 1 employee under the responsibility of each of them.
500
[ { "input": "2", "output": "1" }, { "input": "10", "output": "3" }, { "input": "3", "output": "1" }, { "input": "4", "output": "2" }, { "input": "6", "output": "3" }, { "input": "13", "output": "1" }, { "input": "100000", "output": "35" ...
1,656,569,632
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
93
512,000
import math a=int(input()) print(math.floor(a**0.5))
Title: Fafa and his Company Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fafa owns a company that works on huge projects. There are *n* employees in Fafa's company. Whenever the company has a new project to start working on, Fafa has to divide the tasks of this project among all the emp...
```python import math a=int(input()) print(math.floor(a**0.5)) ```
0
66
A
Petya and Java
PROGRAMMING
1,300
[ "implementation", "strings" ]
A. Petya and Java
2
256
Little Petya has recently started attending a programming club. Naturally he is facing the problem of choosing a programming language. After long considerations he realized that Java is the best choice. The main argument in favor of choosing Java was that it has a very large integer data type, called BigInteger. But h...
The first line contains a positive number *n*. It consists of no more than 100 digits and doesn't contain any leading zeros. The number *n* can't be represented as an empty string. Please, do not use %lld specificator to read or write 64-bit integers in C++. It is preffered to use cout (also you may use %I64d).
Print the first type from the list "byte, short, int, long, BigInteger", that can store the natural number *n*, in accordance with the data given above.
[ "127\n", "130\n", "123456789101112131415161718192021222324\n" ]
[ "byte\n", "short\n", "BigInteger\n" ]
none
500
[ { "input": "127", "output": "byte" }, { "input": "130", "output": "short" }, { "input": "123456789101112131415161718192021222324", "output": "BigInteger" }, { "input": "6", "output": "byte" }, { "input": "16", "output": "byte" }, { "input": "126", ...
1,673,786,402
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
# LUOGU_RID: 99907972 #include<iostream> using namespace std; int main() { long double n; cin>>n; if(n<=127) { cout<<"byte"<<endl; } else if(n<=32767) { cout<<"short"<<endl; } else if(n<=2147483647) { cout<<"int"<<endl; } else if(n<=92233720368547...
Title: Petya and Java Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya has recently started attending a programming club. Naturally he is facing the problem of choosing a programming language. After long considerations he realized that Java is the best choice. The main argument in ...
```python # LUOGU_RID: 99907972 #include<iostream> using namespace std; int main() { long double n; cin>>n; if(n<=127) { cout<<"byte"<<endl; } else if(n<=32767) { cout<<"short"<<endl; } else if(n<=2147483647) { cout<<"int"<<endl; } else if(n<=9223...
-1
981
A
Antipalindrome
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" are not. A substring $s[l \ldots r]$ ($1<=\leq<=l<=\leq<=r<=\leq<=|s|$) of a string $s<==<=s_{1}s_{2}...
The first line contains a non-empty string $s$ with length at most $50$ characters, containing lowercase English letters only.
If there is such a substring in $s$ that is not a palindrome, print the maximum length of such a substring. Otherwise print $0$. Note that there can be multiple longest substrings that are not palindromes, but their length is unique.
[ "mew\n", "wuffuw\n", "qqqqqqqq\n" ]
[ "3\n", "5\n", "0\n" ]
"mew" is not a palindrome, so the longest substring of it that is not a palindrome, is the string "mew" itself. Thus, the answer for the first example is $3$. The string "uffuw" is one of the longest non-palindrome substrings (of length $5$) of the string "wuffuw", so the answer for the second example is $5$. All sub...
500
[ { "input": "mew", "output": "3" }, { "input": "wuffuw", "output": "5" }, { "input": "qqqqqqqq", "output": "0" }, { "input": "ijvji", "output": "4" }, { "input": "iiiiiii", "output": "0" }, { "input": "wobervhvvkihcuyjtmqhaaigvvgiaahqmtjyuchikvvhvrebow"...
1,527,436,940
4,340
Python 3
RUNTIME_ERROR
PRETESTS
2
77
0
s=input() a=list(s) for i in range(len(a)): if a[i]!=a[-(i+1)]: print(len(a)) break else: del a[i]
Title: Antipalindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" ar...
```python s=input() a=list(s) for i in range(len(a)): if a[i]!=a[-(i+1)]: print(len(a)) break else: del a[i] ```
-1
160
C
Find Pair
PROGRAMMING
1,700
[ "implementation", "math", "sortings" ]
null
null
You've got another problem dealing with arrays. Let's consider an arbitrary sequence containing *n* (not necessarily different) integers *a*1, *a*2, ..., *a**n*. We are interested in all possible pairs of numbers (*a**i*, *a**j*), (1<=≤<=*i*,<=*j*<=≤<=*n*). In other words, let's consider all *n*2 pairs of numbers, pick...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=105,<=1<=≤<=*k*<=≤<=*n*2). The second line contains the array containing *n* integers *a*1, *a*2, ..., *a**n* (<=-<=109<=≤<=*a**i*<=≤<=109). The numbers in the array can coincide. All numbers are separated with spaces. Please do not use the %lld specifica...
In the single line print two numbers — the sought *k*-th pair.
[ "2 4\n2 1\n", "3 2\n3 1 5\n" ]
[ "2 2\n", "1 3\n" ]
In the first sample the sorted sequence for the given array looks as: (1, 1), (1, 2), (2, 1), (2, 2). The 4-th of them is pair (2, 2). The sorted sequence for the array from the second sample is given in the statement. The 2-nd pair there is (1, 3).
1,500
[ { "input": "2 4\n2 1", "output": "2 2" }, { "input": "3 2\n3 1 5", "output": "1 3" }, { "input": "3 3\n1 1 2", "output": "1 1" }, { "input": "1 1\n-4", "output": "-4 -4" }, { "input": "3 7\n5 4 3", "output": "5 3" }, { "input": "3 6\n10 1 3", "outp...
1,692,126,584
2,147,483,647
PyPy 3-64
OK
TESTS
98
216
16,076,800
import sys input = lambda: sys.stdin.readline().rstrip() from collections import deque,defaultdict,Counter from itertools import permutations,combinations from bisect import * from heapq import * from math import ceil,gcd,lcm,floor,comb alph = 'abcdefghijklmnopqrstuvwxyz' #pow(x,mod-2,mod) N,K = map(int,input().split(...
Title: Find Pair Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got another problem dealing with arrays. Let's consider an arbitrary sequence containing *n* (not necessarily different) integers *a*1, *a*2, ..., *a**n*. We are interested in all possible pairs of numbers (*a**i*, *a*...
```python import sys input = lambda: sys.stdin.readline().rstrip() from collections import deque,defaultdict,Counter from itertools import permutations,combinations from bisect import * from heapq import * from math import ceil,gcd,lcm,floor,comb alph = 'abcdefghijklmnopqrstuvwxyz' #pow(x,mod-2,mod) N,K = map(int,inpu...
3
218
A
Mountain Scenery
PROGRAMMING
1,100
[ "brute force", "constructive algorithms", "implementation" ]
null
null
Little Bolek has found a picture with *n* mountain peaks painted on it. The *n* painted peaks are represented by a non-closed polyline, consisting of 2*n* segments. The segments go through 2*n*<=+<=1 points with coordinates (1,<=*y*1), (2,<=*y*2), ..., (2*n*<=+<=1,<=*y*2*n*<=+<=1), with the *i*-th segment connecting th...
The first line contains two space-separated integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=100). The next line contains 2*n*<=+<=1 space-separated integers *r*1,<=*r*2,<=...,<=*r*2*n*<=+<=1 (0<=≤<=*r**i*<=≤<=100) — the *y* coordinates of the polyline vertices on Bolek's picture. It is guaranteed that we can obtain the gi...
Print 2*n*<=+<=1 integers *y*1,<=*y*2,<=...,<=*y*2*n*<=+<=1 — the *y* coordinates of the vertices of the polyline on the initial picture. If there are multiple answers, output any one of them.
[ "3 2\n0 5 3 5 1 5 2\n", "1 1\n0 2 0\n" ]
[ "0 5 3 4 1 4 2 \n", "0 1 0 \n" ]
none
500
[ { "input": "3 2\n0 5 3 5 1 5 2", "output": "0 5 3 4 1 4 2 " }, { "input": "1 1\n0 2 0", "output": "0 1 0 " }, { "input": "1 1\n1 100 0", "output": "1 99 0 " }, { "input": "3 1\n0 1 0 1 0 2 0", "output": "0 1 0 1 0 1 0 " }, { "input": "3 1\n0 1 0 2 0 1 0", "out...
1,560,012,164
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
216
0
n,k=map(int,input().split()) a=list(map(int,input().split())) j=1 for i in range(k): a[j]-=1 j=j+2 for i in range(len(a)): print(a[i],end=" ")
Title: Mountain Scenery Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Bolek has found a picture with *n* mountain peaks painted on it. The *n* painted peaks are represented by a non-closed polyline, consisting of 2*n* segments. The segments go through 2*n*<=+<=1 points with coordi...
```python n,k=map(int,input().split()) a=list(map(int,input().split())) j=1 for i in range(k): a[j]-=1 j=j+2 for i in range(len(a)): print(a[i],end=" ") ```
0
981
A
Antipalindrome
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" are not. A substring $s[l \ldots r]$ ($1<=\leq<=l<=\leq<=r<=\leq<=|s|$) of a string $s<==<=s_{1}s_{2}...
The first line contains a non-empty string $s$ with length at most $50$ characters, containing lowercase English letters only.
If there is such a substring in $s$ that is not a palindrome, print the maximum length of such a substring. Otherwise print $0$. Note that there can be multiple longest substrings that are not palindromes, but their length is unique.
[ "mew\n", "wuffuw\n", "qqqqqqqq\n" ]
[ "3\n", "5\n", "0\n" ]
"mew" is not a palindrome, so the longest substring of it that is not a palindrome, is the string "mew" itself. Thus, the answer for the first example is $3$. The string "uffuw" is one of the longest non-palindrome substrings (of length $5$) of the string "wuffuw", so the answer for the second example is $5$. All sub...
500
[ { "input": "mew", "output": "3" }, { "input": "wuffuw", "output": "5" }, { "input": "qqqqqqqq", "output": "0" }, { "input": "ijvji", "output": "4" }, { "input": "iiiiiii", "output": "0" }, { "input": "wobervhvvkihcuyjtmqhaaigvvgiaahqmtjyuchikvvhvrebow"...
1,585,886,095
2,147,483,647
Python 3
OK
TESTS
133
124
0
a=input() b=len(a) c=a[::-1] if a!=c: print(b) elif a.count(a[0])==b: print("0") else: print(b-1)
Title: Antipalindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" ar...
```python a=input() b=len(a) c=a[::-1] if a!=c: print(b) elif a.count(a[0])==b: print("0") else: print(b-1) ```
3
2
A
Winner
PROGRAMMING
1,500
[ "hashing", "implementation" ]
A. Winner
1
64
The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes more difficult if the number of such players is more than one. During each round a pla...
The first line contains an integer number *n* (1<=<=≤<=<=*n*<=<=≤<=<=1000), *n* is the number of rounds played. Then follow *n* lines, containing the information about the rounds in "name score" format in chronological order, where name is a string of lower-case Latin letters with the length from 1 to 32, and score is ...
Print the name of the winner.
[ "3\nmike 3\nandrew 5\nmike 2\n", "3\nandrew 3\nandrew 2\nmike 5\n" ]
[ "andrew\n", "andrew\n" ]
none
0
[ { "input": "3\nmike 3\nandrew 5\nmike 2", "output": "andrew" }, { "input": "3\nandrew 3\nandrew 2\nmike 5", "output": "andrew" }, { "input": "5\nkaxqybeultn -352\nmgochgrmeyieyskhuourfg -910\nkaxqybeultn 691\nmgochgrmeyieyskhuourfg -76\nkaxqybeultn -303", "output": "kaxqybeultn" },...
1,601,546,597
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
5
340
307,200
from sys import stdin from collections import defaultdict input=lambda:stdin.readline().strip() dict1=defaultdict(int) max1=-1 s='' lst1=[] lst2=[] for _ in range(int(input())): a,b=input().split() dict1[a]+=int(b) lst1.append(a) lst2.append(int(b)) lst3=[] for i in dict1: if max1<=di...
Title: Winner Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes...
```python from sys import stdin from collections import defaultdict input=lambda:stdin.readline().strip() dict1=defaultdict(int) max1=-1 s='' lst1=[] lst2=[] for _ in range(int(input())): a,b=input().split() dict1[a]+=int(b) lst1.append(a) lst2.append(int(b)) lst3=[] for i in dict1: i...
0
200
B
Drinks
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Little Vasya loves orange juice very much. That's why any food and drink in his kitchen necessarily contains orange juice. There are *n* drinks in his fridge, the volume fraction of orange juice in the *i*-th drink equals *p**i* percent. One day Vasya decided to make himself an orange cocktail. He took equal proportio...
The first input line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of orange-containing drinks in Vasya's fridge. The second line contains *n* integers *p**i* (0<=≤<=*p**i*<=≤<=100) — the volume fraction of orange juice in the *i*-th drink, in percent. The numbers are separated by a space.
Print the volume fraction in percent of orange juice in Vasya's cocktail. The answer will be considered correct if the absolute or relative error does not exceed 10<=<=-<=4.
[ "3\n50 50 100\n", "4\n0 25 50 75\n" ]
[ "66.666666666667\n", "37.500000000000\n" ]
Note to the first sample: let's assume that Vasya takes *x* milliliters of each drink from the fridge. Then the volume of pure juice in the cocktail will equal <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/c1fac6e64d3a8ee6a5ac138cbe51e60039b22473.png" style="max-width: 100.0%;max-height: ...
500
[ { "input": "3\n50 50 100", "output": "66.666666666667" }, { "input": "4\n0 25 50 75", "output": "37.500000000000" }, { "input": "3\n0 1 8", "output": "3.000000000000" }, { "input": "5\n96 89 93 95 70", "output": "88.600000000000" }, { "input": "7\n62 41 78 4 38 39...
1,694,244,151
2,147,483,647
Python 3
OK
TESTS
31
62
0
n = int(input()) ln = list(map(int, input().split(' '))) summ = 0 for i in ln: summ += i/100 print((summ/n) * 100)
Title: Drinks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Vasya loves orange juice very much. That's why any food and drink in his kitchen necessarily contains orange juice. There are *n* drinks in his fridge, the volume fraction of orange juice in the *i*-th drink equals *p**i*...
```python n = int(input()) ln = list(map(int, input().split(' '))) summ = 0 for i in ln: summ += i/100 print((summ/n) * 100) ```
3
931
C
Laboratory Work
PROGRAMMING
1,700
[ "implementation", "math" ]
null
null
Anya and Kirill are doing a physics laboratory work. In one of the tasks they have to measure some value *n* times, and then compute the average value to lower the error. Kirill has already made his measurements, and has got the following integer values: *x*1, *x*2, ..., *x**n*. It is important that the values are clo...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the numeber of measurements made by Kirill. The second line contains a sequence of integers *x*1,<=*x*2,<=...,<=*x**n* (<=-<=100<=000<=≤<=*x**i*<=≤<=100<=000) — the measurements made by Kirill. It is guaranteed that the difference between the maxi...
In the first line print the minimum possible number of equal measurements. In the second line print *n* integers *y*1,<=*y*2,<=...,<=*y**n* — the values Anya should write. You can print the integers in arbitrary order. Keep in mind that the minimum value among Anya's values should be not less that the minimum among Ki...
[ "6\n-1 1 1 0 0 -1\n", "3\n100 100 101\n", "7\n-10 -9 -10 -8 -10 -9 -9\n" ]
[ "2\n0 0 0 0 0 0 \n", "3\n101 100 100 \n", "5\n-10 -10 -9 -9 -9 -9 -9 \n" ]
In the first example Anya can write zeros as here measurements results. The average value is then equal to the average value of Kirill's values, and there are only two equal measurements. In the second example Anya should write two values 100 and one value 101 (in any order), because it is the only possibility to make...
1,750
[ { "input": "6\n-1 1 1 0 0 -1", "output": "2\n0 0 0 0 0 0 " }, { "input": "3\n100 100 101", "output": "3\n101 100 100 " }, { "input": "7\n-10 -9 -10 -8 -10 -9 -9", "output": "5\n-10 -10 -9 -9 -9 -9 -9 " }, { "input": "60\n-8536 -8536 -8536 -8535 -8536 -8536 -8536 -8536 -8536 -...
1,520,182,553
4,853
Python 3
WRONG_ANSWER
PRETESTS
0
46
5,632,000
n = int(input()) a = list(map(int,input().split())) m = min(a) a = list(map(lambda x: x-m, a)) if max(a)==1: print (n) for i in a: print (i+m, end = ' ') else: c0,c1,c2 = [0,0,0] for i in a: if i==0: c0+=1 elif i==1: c1+=1 else: c2+=1 ac0,ac1,ac2 = c0,c1,c2 bc0,bc1,bc2 = c0,c1...
Title: Laboratory Work Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anya and Kirill are doing a physics laboratory work. In one of the tasks they have to measure some value *n* times, and then compute the average value to lower the error. Kirill has already made his measurements, and h...
```python n = int(input()) a = list(map(int,input().split())) m = min(a) a = list(map(lambda x: x-m, a)) if max(a)==1: print (n) for i in a: print (i+m, end = ' ') else: c0,c1,c2 = [0,0,0] for i in a: if i==0: c0+=1 elif i==1: c1+=1 else: c2+=1 ac0,ac1,ac2 = c0,c1,c2 bc0,bc1,b...
0
490
C
Hacking Cypher
PROGRAMMING
1,700
[ "brute force", "math", "number theory", "strings" ]
null
null
Polycarpus participates in a competition for hacking into a new secure messenger. He's almost won. Having carefully studied the interaction protocol, Polycarpus came to the conclusion that the secret key can be obtained if he properly cuts the public key of the application into two parts. The public key is a long inte...
The first line of the input contains the public key of the messenger — an integer without leading zeroes, its length is in range from 1 to 106 digits. The second line contains a pair of space-separated positive integers *a*, *b* (1<=≤<=*a*,<=*b*<=≤<=108).
In the first line print "YES" (without the quotes), if the method satisfying conditions above exists. In this case, next print two lines — the left and right parts after the cut. These two parts, being concatenated, must be exactly identical to the public key. The left part must be divisible by *a*, and the right part ...
[ "116401024\n97 1024\n", "284254589153928171911281811000\n1009 1000\n", "120\n12 1\n" ]
[ "YES\n11640\n1024\n", "YES\n2842545891539\n28171911281811000\n", "NO\n" ]
none
1,500
[ { "input": "116401024\n97 1024", "output": "YES\n11640\n1024" }, { "input": "284254589153928171911281811000\n1009 1000", "output": "YES\n2842545891539\n28171911281811000" }, { "input": "120\n12 1", "output": "NO" }, { "input": "604\n6 4", "output": "YES\n60\n4" }, { ...
1,688,975,449
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
35
1,000
3,481,600
def clc(): n = input() a,b = map(int,input().split()) for i in range(1,len(n)): if n[i] == "0":continue curr = int(n[:i]) next = int(n[i:]) if curr%a == 0 and next%b == 0: print("YES") print(curr) print(next) retur...
Title: Hacking Cypher Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus participates in a competition for hacking into a new secure messenger. He's almost won. Having carefully studied the interaction protocol, Polycarpus came to the conclusion that the secret key can be obtained...
```python def clc(): n = input() a,b = map(int,input().split()) for i in range(1,len(n)): if n[i] == "0":continue curr = int(n[:i]) next = int(n[i:]) if curr%a == 0 and next%b == 0: print("YES") print(curr) print(next) ...
0
202
A
LLPS
PROGRAMMING
800
[ "binary search", "bitmasks", "brute force", "greedy", "implementation", "strings" ]
null
null
This problem's actual name, "Lexicographically Largest Palindromic Subsequence" is too long to fit into the page headline. You are given string *s* consisting of lowercase English letters only. Find its lexicographically largest palindromic subsequence. We'll call a non-empty string *s*[*p*1*p*2... *p**k*] = *s**p*1*...
The only input line contains a non-empty string *s* consisting of lowercase English letters only. Its length does not exceed 10.
Print the lexicographically largest palindromic subsequence of string *s*.
[ "radar\n", "bowwowwow\n", "codeforces\n", "mississipp\n" ]
[ "rr\n", "wwwww\n", "s\n", "ssss\n" ]
Among all distinct subsequences of string "radar" the following ones are palindromes: "a", "d", "r", "aa", "rr", "ada", "rar", "rdr", "raar" and "radar". The lexicographically largest of them is "rr".
500
[ { "input": "radar", "output": "rr" }, { "input": "bowwowwow", "output": "wwwww" }, { "input": "codeforces", "output": "s" }, { "input": "mississipp", "output": "ssss" }, { "input": "tourist", "output": "u" }, { "input": "romka", "output": "r" }, ...
1,610,273,472
2,147,483,647
Python 3
OK
TESTS
54
124
0
s=input() mx=max(s) cnt=s.count(mx) print(mx*cnt)
Title: LLPS Time Limit: None seconds Memory Limit: None megabytes Problem Description: This problem's actual name, "Lexicographically Largest Palindromic Subsequence" is too long to fit into the page headline. You are given string *s* consisting of lowercase English letters only. Find its lexicographically largest ...
```python s=input() mx=max(s) cnt=s.count(mx) print(mx*cnt) ```
3
218
A
Mountain Scenery
PROGRAMMING
1,100
[ "brute force", "constructive algorithms", "implementation" ]
null
null
Little Bolek has found a picture with *n* mountain peaks painted on it. The *n* painted peaks are represented by a non-closed polyline, consisting of 2*n* segments. The segments go through 2*n*<=+<=1 points with coordinates (1,<=*y*1), (2,<=*y*2), ..., (2*n*<=+<=1,<=*y*2*n*<=+<=1), with the *i*-th segment connecting th...
The first line contains two space-separated integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=100). The next line contains 2*n*<=+<=1 space-separated integers *r*1,<=*r*2,<=...,<=*r*2*n*<=+<=1 (0<=≤<=*r**i*<=≤<=100) — the *y* coordinates of the polyline vertices on Bolek's picture. It is guaranteed that we can obtain the gi...
Print 2*n*<=+<=1 integers *y*1,<=*y*2,<=...,<=*y*2*n*<=+<=1 — the *y* coordinates of the vertices of the polyline on the initial picture. If there are multiple answers, output any one of them.
[ "3 2\n0 5 3 5 1 5 2\n", "1 1\n0 2 0\n" ]
[ "0 5 3 4 1 4 2 \n", "0 1 0 \n" ]
none
500
[ { "input": "3 2\n0 5 3 5 1 5 2", "output": "0 5 3 4 1 4 2 " }, { "input": "1 1\n0 2 0", "output": "0 1 0 " }, { "input": "1 1\n1 100 0", "output": "1 99 0 " }, { "input": "3 1\n0 1 0 1 0 2 0", "output": "0 1 0 1 0 1 0 " }, { "input": "3 1\n0 1 0 2 0 1 0", "out...
1,578,967,184
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
218
307,200
x,y=map(int,input().split()) l=list(map(int,input().split())) r=[] for i in range(1,len(l)): if l[i] >l[i-1] and l[i] >l[i+1]: r.append( [l[i],i]) r=sorted(r ,reverse= True) for i in range(y): #print(l[r[i][1]]) l[r[i][1]]-=1 print(*l)
Title: Mountain Scenery Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Bolek has found a picture with *n* mountain peaks painted on it. The *n* painted peaks are represented by a non-closed polyline, consisting of 2*n* segments. The segments go through 2*n*<=+<=1 points with coordi...
```python x,y=map(int,input().split()) l=list(map(int,input().split())) r=[] for i in range(1,len(l)): if l[i] >l[i-1] and l[i] >l[i+1]: r.append( [l[i],i]) r=sorted(r ,reverse= True) for i in range(y): #print(l[r[i][1]]) l[r[i][1]]-=1 print(*l) ```
0
459
B
Pashmak and Flowers
PROGRAMMING
1,300
[ "combinatorics", "implementation", "sortings" ]
null
null
Pashmak decided to give Parmida a pair of flowers from the garden. There are *n* flowers in the garden and the *i*-th of them has a beauty number *b**i*. Parmida is a very strange girl so she doesn't want to have the two most beautiful flowers necessarily. She wants to have those pairs of flowers that their beauty diff...
The first line of the input contains *n* (2<=≤<=*n*<=≤<=2·105). In the next line there are *n* space-separated integers *b*1, *b*2, ..., *b**n* (1<=≤<=*b**i*<=≤<=109).
The only line of output should contain two integers. The maximum beauty difference and the number of ways this may happen, respectively.
[ "2\n1 2\n", "3\n1 4 5\n", "5\n3 1 2 3 1\n" ]
[ "1 1", "4 1", "2 4" ]
In the third sample the maximum beauty difference is 2 and there are 4 ways to do this: 1. choosing the first and the second flowers; 1. choosing the first and the fifth flowers; 1. choosing the fourth and the second flowers; 1. choosing the fourth and the fifth flowers.
500
[ { "input": "2\n1 2", "output": "1 1" }, { "input": "3\n1 4 5", "output": "4 1" }, { "input": "5\n3 1 2 3 1", "output": "2 4" }, { "input": "2\n1 1", "output": "0 1" }, { "input": "3\n1 1 1", "output": "0 3" }, { "input": "4\n1 1 1 1", "output": "0 ...
1,688,769,211
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
93
20,070,400
n = int(input()) flowers = list(map(int, input().split())) ma = max(flowers) mi = min(flowers) ma_count = 0 mi_count = 0 for f in flowers: if f == ma: ma_count += 1 if f == mi: mi_count += 1 print(ma-mi, ma_count * mi_count)
Title: Pashmak and Flowers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pashmak decided to give Parmida a pair of flowers from the garden. There are *n* flowers in the garden and the *i*-th of them has a beauty number *b**i*. Parmida is a very strange girl so she doesn't want to have th...
```python n = int(input()) flowers = list(map(int, input().split())) ma = max(flowers) mi = min(flowers) ma_count = 0 mi_count = 0 for f in flowers: if f == ma: ma_count += 1 if f == mi: mi_count += 1 print(ma-mi, ma_count * mi_count) ```
0
766
B
Mahmoud and a Triangle
PROGRAMMING
1,000
[ "constructive algorithms", "geometry", "greedy", "math", "number theory", "sortings" ]
null
null
Mahmoud has *n* line segments, the *i*-th of them has length *a**i*. Ehab challenged him to use exactly 3 line segments to form a non-degenerate triangle. Mahmoud doesn't accept challenges unless he is sure he can win, so he asked you to tell him if he should accept the challenge. Given the lengths of the line segments...
The first line contains single integer *n* (3<=≤<=*n*<=≤<=105) — the number of line segments Mahmoud has. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the lengths of line segments Mahmoud has.
In the only line print "YES" if he can choose exactly three line segments and form a non-degenerate triangle with them, and "NO" otherwise.
[ "5\n1 5 3 2 4\n", "3\n4 1 2\n" ]
[ "YES\n", "NO\n" ]
For the first example, he can use line segments with lengths 2, 4 and 5 to form a non-degenerate triangle.
1,000
[ { "input": "5\n1 5 3 2 4", "output": "YES" }, { "input": "3\n4 1 2", "output": "NO" }, { "input": "30\n197 75 517 39724 7906061 1153471 3 15166 168284 3019844 272293 316 16 24548 42 118 5792 5 9373 1866366 4886214 24 2206 712886 104005 1363 836 64273 440585 3576", "output": "NO" },...
1,675,697,123
2,147,483,647
PyPy 3-64
OK
TESTS
87
93
13,721,600
import bisect import os, sys, io # switch to fastio fast_mode = 0 # local file test -> 1, remote test --> 0 local_mode = 0 if local_mode: fin = open("./data/input.txt", "r") fout = open("./data/output.txt", "w") sys.stdin = fin sys.stdout = fout if fast_mode: input = io.BytesIO(os....
Title: Mahmoud and a Triangle Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mahmoud has *n* line segments, the *i*-th of them has length *a**i*. Ehab challenged him to use exactly 3 line segments to form a non-degenerate triangle. Mahmoud doesn't accept challenges unless he is sure he ca...
```python import bisect import os, sys, io # switch to fastio fast_mode = 0 # local file test -> 1, remote test --> 0 local_mode = 0 if local_mode: fin = open("./data/input.txt", "r") fout = open("./data/output.txt", "w") sys.stdin = fin sys.stdout = fout if fast_mode: input = io.B...
3
727
A
Transformation: from A to B
PROGRAMMING
1,000
[ "brute force", "dfs and similar", "math" ]
null
null
Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2·*x*); - append the digit 1 to the right of current number (that is, replace the number *x* by 10·*x*<=+<=1). You need to he...
The first line contains two positive integers *a* and *b* (1<=≤<=*a*<=&lt;<=*b*<=≤<=109) — the number which Vasily has and the number he wants to have.
If there is no way to get *b* from *a*, print "NO" (without quotes). Otherwise print three lines. On the first line print "YES" (without quotes). The second line should contain single integer *k* — the length of the transformation sequence. On the third line print the sequence of transformations *x*1,<=*x*2,<=...,<=*x...
[ "2 162\n", "4 42\n", "100 40021\n" ]
[ "YES\n5\n2 4 8 81 162 \n", "NO\n", "YES\n5\n100 200 2001 4002 40021 \n" ]
none
1,000
[ { "input": "2 162", "output": "YES\n5\n2 4 8 81 162 " }, { "input": "4 42", "output": "NO" }, { "input": "100 40021", "output": "YES\n5\n100 200 2001 4002 40021 " }, { "input": "1 111111111", "output": "YES\n9\n1 11 111 1111 11111 111111 1111111 11111111 111111111 " }, ...
1,612,648,703
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
109
2,048,000
a, b = map(int, input().split()) ans = [] while(b%10==1 or b%2==0): ans.addFirst(b) if(b%10==1): b //= 10 else: b //= 2 if(a == b): print(a, end='') print(*ans) else: print('NO')
Title: Transformation: from A to B Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily has a number *a*, which he wants to turn into a number *b*. For this purpose, he can do two types of operations: - multiply the current number by 2 (that is, replace the number *x* by 2·*x*); - app...
```python a, b = map(int, input().split()) ans = [] while(b%10==1 or b%2==0): ans.addFirst(b) if(b%10==1): b //= 10 else: b //= 2 if(a == b): print(a, end='') print(*ans) else: print('NO') ```
-1
369
A
Valera and Plates
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Valera is a lazy student. He has *m* clean bowls and *k* clean plates. Valera has made an eating plan for the next *n* days. As Valera is lazy, he will eat exactly one dish per day. At that, in order to eat a dish, he needs exactly one clean plate or bowl. We know that Valera can cook only two types of dishes. He can...
The first line of the input contains three integers *n*, *m*, *k* (1<=≤<=*n*,<=*m*,<=*k*<=≤<=1000) — the number of the planned days, the number of clean bowls and the number of clean plates. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=2). If *a**i* equals one, then on day *i* Val...
Print a single integer — the minimum number of times Valera will need to wash a plate/bowl.
[ "3 1 1\n1 2 1\n", "4 3 1\n1 1 1 1\n", "3 1 2\n2 2 2\n", "8 2 2\n1 2 1 2 1 2 1 2\n" ]
[ "1\n", "1\n", "0\n", "4\n" ]
In the first sample Valera will wash a bowl only on the third day, so the answer is one. In the second sample, Valera will have the first type of the dish during all four days, and since there are only three bowls, he will wash a bowl exactly once. In the third sample, Valera will have the second type of dish for all...
500
[ { "input": "3 1 1\n1 2 1", "output": "1" }, { "input": "4 3 1\n1 1 1 1", "output": "1" }, { "input": "3 1 2\n2 2 2", "output": "0" }, { "input": "8 2 2\n1 2 1 2 1 2 1 2", "output": "4" }, { "input": "2 100 100\n2 2", "output": "0" }, { "input": "1 1 1\...
1,650,034,331
2,147,483,647
PyPy 3-64
OK
TESTS
63
62
0
n,m,k=map(int,input().split()) arr=list(map(int,input().split())) ans=0 for el in arr: if el==1: if m==0: ans+=1 else : m-=1 else : if k: k-=1 else : if m: m-=1 else : ans+...
Title: Valera and Plates Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera is a lazy student. He has *m* clean bowls and *k* clean plates. Valera has made an eating plan for the next *n* days. As Valera is lazy, he will eat exactly one dish per day. At that, in order to eat a dish, ...
```python n,m,k=map(int,input().split()) arr=list(map(int,input().split())) ans=0 for el in arr: if el==1: if m==0: ans+=1 else : m-=1 else : if k: k-=1 else : if m: m-=1 else : ...
3
897
A
Scarborough Fair
PROGRAMMING
800
[ "implementation" ]
null
null
Parsley, sage, rosemary and thyme. Remember me to one who lives there. He once was the true love of mine. Willem is taking the girl to the highest building in island No.28, however, neither of them knows how to get there. Willem asks his friend, Grick for directions, Grick helped them, and gave them a task. Althou...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). The second line contains a string *s* of length *n*, consisting of lowercase English letters. Each of the next *m* lines contains four parameters *l*,<=*r*,<=*c*1,<=*c*2 (1<=≤<=*l*<=≤<=*r*<=≤<=*n*, *c*1,<=*c*2 are lowercase English letters), ...
Output string *s* after performing *m* operations described above.
[ "3 1\nioi\n1 1 i n\n", "5 3\nwxhak\n3 3 h x\n1 5 x a\n1 3 w g\n" ]
[ "noi", "gaaak" ]
For the second example: After the first operation, the string is wxxak. After the second operation, the string is waaak. After the third operation, the string is gaaak.
500
[ { "input": "3 1\nioi\n1 1 i n", "output": "noi" }, { "input": "5 3\nwxhak\n3 3 h x\n1 5 x a\n1 3 w g", "output": "gaaak" }, { "input": "9 51\nbhfbdcgff\n2 3 b b\n2 8 e f\n3 8 g f\n5 7 d a\n1 5 e b\n3 4 g b\n6 7 c d\n3 6 e g\n3 6 e h\n5 6 a e\n7 9 a c\n4 9 a h\n3 7 c b\n6 9 b g\n1 7 h b\n...
1,656,755,762
2,147,483,647
Python 3
OK
TESTS
47
46
0
n, m = list(map(int, input().split())) s = list(input()) for a in range(m): frm, to, l1, l2 = input().split() frm = int(frm) - 1 to = int(to) for b in range(frm, to): if s[b] == l1: s[b] = l2 print(''.join(s))
Title: Scarborough Fair Time Limit: None seconds Memory Limit: None megabytes Problem Description: Parsley, sage, rosemary and thyme. Remember me to one who lives there. He once was the true love of mine. Willem is taking the girl to the highest building in island No.28, however, neither of them knows how to get ...
```python n, m = list(map(int, input().split())) s = list(input()) for a in range(m): frm, to, l1, l2 = input().split() frm = int(frm) - 1 to = int(to) for b in range(frm, to): if s[b] == l1: s[b] = l2 print(''.join(s)) ```
3
208
A
Dubstep
PROGRAMMING
900
[ "strings" ]
null
null
Vasya works as a DJ in the best Berland nightclub, and he often uses dubstep music in his performance. Recently, he has decided to take a couple of old songs and make dubstep remixes from them. Let's assume that a song consists of some number of words. To make the dubstep remix of this song, Vasya inserts a certain nu...
The input consists of a single non-empty string, consisting only of uppercase English letters, the string's length doesn't exceed 200 characters. It is guaranteed that before Vasya remixed the song, no word contained substring "WUB" in it; Vasya didn't change the word order. It is also guaranteed that initially the son...
Print the words of the initial song that Vasya used to make a dubsteb remix. Separate the words with a space.
[ "WUBWUBABCWUB\n", "WUBWEWUBAREWUBWUBTHEWUBCHAMPIONSWUBMYWUBFRIENDWUB\n" ]
[ "ABC ", "WE ARE THE CHAMPIONS MY FRIEND " ]
In the first sample: "WUBWUBABCWUB" = "WUB" + "WUB" + "ABC" + "WUB". That means that the song originally consisted of a single word "ABC", and all words "WUB" were added by Vasya. In the second sample Vasya added a single word "WUB" between all neighbouring words, in the beginning and in the end, except for words "ARE...
500
[ { "input": "WUBWUBABCWUB", "output": "ABC " }, { "input": "WUBWEWUBAREWUBWUBTHEWUBCHAMPIONSWUBMYWUBFRIENDWUB", "output": "WE ARE THE CHAMPIONS MY FRIEND " }, { "input": "WUBWUBWUBSR", "output": "SR " }, { "input": "RWUBWUBWUBLWUB", "output": "R L " }, { "input": "...
1,683,191,585
2,147,483,647
PyPy 3-64
OK
TESTS
71
124
0
#------------------------------------------------------------------------------- # Name: module1 # Purpose: # # Author: vkiefner # # Created: 04.05.2023 # Copyright: (c) vkiefner 2023 # Licence: <your licence> #------------------------------------------------------------------------------...
Title: Dubstep Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya works as a DJ in the best Berland nightclub, and he often uses dubstep music in his performance. Recently, he has decided to take a couple of old songs and make dubstep remixes from them. Let's assume that a song consist...
```python #------------------------------------------------------------------------------- # Name: module1 # Purpose: # # Author: vkiefner # # Created: 04.05.2023 # Copyright: (c) vkiefner 2023 # Licence: <your licence> #--------------------------------------------------------------------...
3
918
B
Radio Station
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
As the guys fried the radio station facilities, the school principal gave them tasks as a punishment. Dustin's task was to add comments to nginx configuration for school's website. The school has *n* servers. Each server has a name and an ip (names aren't necessarily unique, but ips are). Dustin knows the ip and name o...
The first line of input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000). The next *n* lines contain the names and ips of the servers. Each line contains a string name, name of the server and a string ip, ip of the server, separated by space (1<=≤<=|*name*|<=≤<=10, *name* only consists of English lowercase...
Print *m* lines, the commands in the configuration file after Dustin did his task.
[ "2 2\nmain 192.168.0.2\nreplica 192.168.0.1\nblock 192.168.0.1;\nproxy 192.168.0.2;\n", "3 5\ngoogle 8.8.8.8\ncodeforces 212.193.33.27\nserver 138.197.64.57\nredirect 138.197.64.57;\nblock 8.8.8.8;\ncf 212.193.33.27;\nunblock 8.8.8.8;\ncheck 138.197.64.57;\n" ]
[ "block 192.168.0.1; #replica\nproxy 192.168.0.2; #main\n", "redirect 138.197.64.57; #server\nblock 8.8.8.8; #google\ncf 212.193.33.27; #codeforces\nunblock 8.8.8.8; #google\ncheck 138.197.64.57; #server\n" ]
none
1,000
[ { "input": "2 2\nmain 192.168.0.2\nreplica 192.168.0.1\nblock 192.168.0.1;\nproxy 192.168.0.2;", "output": "block 192.168.0.1; #replica\nproxy 192.168.0.2; #main" }, { "input": "3 5\ngoogle 8.8.8.8\ncodeforces 212.193.33.27\nserver 138.197.64.57\nredirect 138.197.64.57;\nblock 8.8.8.8;\ncf 212.193.3...
1,534,340,358
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
5
109
0
F=lambda:input().split() d={} n,m=list(map(int,F())) for p in range(n):i,j=F();d[i]=j+';' for p in range(m):i,j=F();print(i+' '+j+' #'+list(d.keys())[list(d.values()).index(j)])
Title: Radio Station Time Limit: None seconds Memory Limit: None megabytes Problem Description: As the guys fried the radio station facilities, the school principal gave them tasks as a punishment. Dustin's task was to add comments to nginx configuration for school's website. The school has *n* servers. Each server ...
```python F=lambda:input().split() d={} n,m=list(map(int,F())) for p in range(n):i,j=F();d[i]=j+';' for p in range(m):i,j=F();print(i+' '+j+' #'+list(d.keys())[list(d.values()).index(j)]) ```
-1
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,677,168,616
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
62
0
m, n = input().split() m = int(m) n = int(n) up = 6 - max(m, n) + 1 down = 6 if up % 2 == 0: up //= 2 down //= 2 elif up % 3 == 0: up //= 3 down //= 3 print(str(up) + "/" + str(down))
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 m, n = input().split() m = int(m) n = int(n) up = 6 - max(m, n) + 1 down = 6 if up % 2 == 0: up //= 2 down //= 2 elif up % 3 == 0: up //= 3 down //= 3 print(str(up) + "/" + str(down)) ```
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,671,404,335
2,147,483,647
Python 3
OK
TESTS
44
92
0
n = input() if n.__contains__('0000000') or n.__contains__('1111111'): print('YES') else: print('NO')
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A...
```python n = input() if n.__contains__('0000000') or n.__contains__('1111111'): print('YES') else: print('NO') ```
3.977
492
A
Vanya and Cubes
PROGRAMMING
800
[ "implementation" ]
null
null
Vanya got *n* cubes. He decided to build a pyramid from them. Vanya wants to build the pyramid as follows: the top level of the pyramid must consist of 1 cube, the second level must consist of 1<=+<=2<==<=3 cubes, the third level must have 1<=+<=2<=+<=3<==<=6 cubes, and so on. Thus, the *i*-th level of the pyramid must...
The first line contains integer *n* (1<=≤<=*n*<=≤<=104) — the number of cubes given to Vanya.
Print the maximum possible height of the pyramid in the single line.
[ "1\n", "25\n" ]
[ "1\n", "4\n" ]
Illustration to the second sample:
500
[ { "input": "1", "output": "1" }, { "input": "25", "output": "4" }, { "input": "2", "output": "1" }, { "input": "4115", "output": "28" }, { "input": "9894", "output": "38" }, { "input": "7969", "output": "35" }, { "input": "6560", "outpu...
1,688,268,463
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
# i**3 + 3*i**2 + 2*i - 6*n = 0 n = int(input()) a = 1 b = 3 c = 2 delta = b**2 - 3*a*c k=(9*a*b*c - 2*(b**3) - 27*(a**2)*(-6*n)) / ((2*abs(delta)**3)**0.5) i = ((delta**0.5)*abs(k))/(3*a*k) * ((abs(k) + (k**2 - 1)**0.5)**(1/3) + (abs(k) - (k**2 - 1)**0.5)**(1/3)) - (b/(3*a)) print(int(i)- 1)
Title: Vanya and Cubes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya got *n* cubes. He decided to build a pyramid from them. Vanya wants to build the pyramid as follows: the top level of the pyramid must consist of 1 cube, the second level must consist of 1<=+<=2<==<=3 cubes, the t...
```python # i**3 + 3*i**2 + 2*i - 6*n = 0 n = int(input()) a = 1 b = 3 c = 2 delta = b**2 - 3*a*c k=(9*a*b*c - 2*(b**3) - 27*(a**2)*(-6*n)) / ((2*abs(delta)**3)**0.5) i = ((delta**0.5)*abs(k))/(3*a*k) * ((abs(k) + (k**2 - 1)**0.5)**(1/3) + (abs(k) - (k**2 - 1)**0.5)**(1/3)) - (b/(3*a)) print(int(i)-...
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,679,924,751
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
a=input() b=input() print(a[::-1]) if a[::-1]==b: print("yes") else: print("no")
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python a=input() b=input() print(a[::-1]) if a[::-1]==b: print("yes") else: print("no") ```
0
245
A
System Administrator
PROGRAMMING
800
[ "implementation" ]
null
null
Polycarpus is a system administrator. There are two servers under his strict guidance — *a* and *b*. To stay informed about the servers' performance, Polycarpus executes commands "ping a" and "ping b". Each ping command sends exactly ten packets to the server specified in the argument of the command. Executing a progra...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=1000) — the number of commands Polycarpus has fulfilled. Each of the following *n* lines contains three integers — the description of the commands. The *i*-th of these lines contains three space-separated integers *t**i*, *x**i*, *y**i* (1<=≤<=*t**i*<=≤<=2; *x...
In the first line print string "LIVE" (without the quotes) if server *a* is "alive", otherwise print "DEAD" (without the quotes). In the second line print the state of server *b* in the similar format.
[ "2\n1 5 5\n2 6 4\n", "3\n1 0 10\n2 0 10\n1 10 0\n" ]
[ "LIVE\nLIVE\n", "LIVE\nDEAD\n" ]
Consider the first test case. There 10 packets were sent to server *a*, 5 of them reached it. Therefore, at least half of all packets sent to this server successfully reached it through the network. Overall there were 10 packets sent to server *b*, 6 of them reached it. Therefore, at least half of all packets sent to t...
0
[ { "input": "2\n1 5 5\n2 6 4", "output": "LIVE\nLIVE" }, { "input": "3\n1 0 10\n2 0 10\n1 10 0", "output": "LIVE\nDEAD" }, { "input": "10\n1 3 7\n2 4 6\n1 2 8\n2 5 5\n2 10 0\n2 10 0\n1 8 2\n2 2 8\n2 10 0\n1 1 9", "output": "DEAD\nLIVE" }, { "input": "11\n1 8 2\n1 6 4\n1 9 1\n1...
1,625,986,759
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n = int(input()) a = [0]*2 b = [0]*2 t = [] for _ in range(n): t.append(map(int,input().split()) for i in range(n): if t[i][0] == 1: a[0] += t[i][1] a[1] += t[i][2] else: b[0] += t[i][1] b[1] += t[i][2] if a[0] >= a[1]: print('LIVE') if b[0] >= b[1]: print('DEAD'...
Title: System Administrator Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus is a system administrator. There are two servers under his strict guidance — *a* and *b*. To stay informed about the servers' performance, Polycarpus executes commands "ping a" and "ping b". Each ping co...
```python n = int(input()) a = [0]*2 b = [0]*2 t = [] for _ in range(n): t.append(map(int,input().split()) for i in range(n): if t[i][0] == 1: a[0] += t[i][1] a[1] += t[i][2] else: b[0] += t[i][1] b[1] += t[i][2] if a[0] >= a[1]: print('LIVE') if b[0] >= b[1]: pr...
-1
538
B
Quasi Binary
PROGRAMMING
1,400
[ "constructive algorithms", "dp", "greedy", "implementation" ]
null
null
A number is called quasibinary if its decimal representation contains only digits 0 or 1. For example, numbers 0, 1, 101, 110011 — are quasibinary and numbers 2, 12, 900 are not. You are given a positive integer *n*. Represent it as a sum of minimum number of quasibinary numbers.
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=106).
In the first line print a single integer *k* — the minimum number of numbers in the representation of number *n* as a sum of quasibinary numbers. In the second line print *k* numbers — the elements of the sum. All these numbers should be quasibinary according to the definition above, their sum should equal *n*. Do not...
[ "9\n", "32\n" ]
[ "9\n1 1 1 1 1 1 1 1 1 \n", "3\n10 11 11 \n" ]
none
1,000
[ { "input": "9", "output": "9\n1 1 1 1 1 1 1 1 1 " }, { "input": "32", "output": "3\n10 11 11 " }, { "input": "1", "output": "1\n1 " }, { "input": "415", "output": "5\n1 101 101 101 111 " }, { "input": "10011", "output": "1\n10011 " }, { "input": "10201...
1,537,095,545
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include<bits/stdc++.h> using namespace std; #define ll long long #define rep(n) for(int i=0;i<n;i++) #define fori(i,a,b) for(int i=a;i<=b;i++) #define endl "\n" #define len(s) long(s.length()) bool f(ll n){ while(n){ if(n%10!=0&&n%10!=1){ return false; } n/=10;...
Title: Quasi Binary Time Limit: None seconds Memory Limit: None megabytes Problem Description: A number is called quasibinary if its decimal representation contains only digits 0 or 1. For example, numbers 0, 1, 101, 110011 — are quasibinary and numbers 2, 12, 900 are not. You are given a positive integer *n*. Repr...
```python #include<bits/stdc++.h> using namespace std; #define ll long long #define rep(n) for(int i=0;i<n;i++) #define fori(i,a,b) for(int i=a;i<=b;i++) #define endl "\n" #define len(s) long(s.length()) bool f(ll n){ while(n){ if(n%10!=0&&n%10!=1){ return false; } ...
-1
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,508,334,032
2,147,483,647
Python 3
OK
TESTS
36
216
6,656,000
from sys import stdin,stdout from fractions import gcd def sin(): return stdin.readline().rstrip() def listInput(): return list(map(int,sin().split())) def printBS(li): if not li: return for i in range(len(li)-1): stdout.write("%d "%(li[i])) stdout.write("%d\n"%(li[-1])) a,b=listInput() c = max(a,b)...
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 sys import stdin,stdout from fractions import gcd def sin(): return stdin.readline().rstrip() def listInput(): return list(map(int,sin().split())) def printBS(li): if not li: return for i in range(len(li)-1): stdout.write("%d "%(li[i])) stdout.write("%d\n"%(li[-1])) a,b=listInput() c ...
3.842409
992
C
Nastya and a Wardrobe
PROGRAMMING
1,600
[ "math" ]
null
null
Nastya received a gift on New Year — a magic wardrobe. It is magic because in the end of each month the number of dresses in it doubles (i.e. the number of dresses becomes twice as large as it is in the beginning of the month). Unfortunately, right after the doubling the wardrobe eats one of the dresses (if any) with ...
The only line contains two integers *x* and *k* (0<=≤<=*x*,<=*k*<=≤<=1018), where *x* is the initial number of dresses and *k*<=+<=1 is the number of months in a year in Byteland.
In the only line print a single integer — the expected number of dresses Nastya will own one year later modulo 109<=+<=7.
[ "2 0\n", "2 1\n", "3 2\n" ]
[ "4\n", "7\n", "21\n" ]
In the first example a year consists on only one month, so the wardrobe does not eat dresses at all. In the second example after the first month there are 3 dresses with 50% probability and 4 dresses with 50% probability. Thus, in the end of the year there are 6 dresses with 50% probability and 8 dresses with 50% prob...
1,500
[ { "input": "2 0", "output": "4" }, { "input": "2 1", "output": "7" }, { "input": "3 2", "output": "21" }, { "input": "1 411", "output": "485514976" }, { "input": "1 692", "output": "860080936" }, { "input": "16 8", "output": "7937" }, { "in...
1,535,795,251
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
124
0
def f(a, n): if n == 0: return 1 if n == 1: return a if n % 2 == 0: t = f(a, n / 2) return t * t return a * f(a, n - 1) x, k = map(int, input().split()) n = f(2, k) print(2 * n * x - n + 1)
Title: Nastya and a Wardrobe Time Limit: None seconds Memory Limit: None megabytes Problem Description: Nastya received a gift on New Year — a magic wardrobe. It is magic because in the end of each month the number of dresses in it doubles (i.e. the number of dresses becomes twice as large as it is in the beginning ...
```python def f(a, n): if n == 0: return 1 if n == 1: return a if n % 2 == 0: t = f(a, n / 2) return t * t return a * f(a, n - 1) x, k = map(int, input().split()) n = f(2, k) print(2 * n * x - n + 1) ```
0
999
A
Mishka and Contest
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Mishka started participating in a programming contest. There are $n$ problems in the contest. Mishka's problem-solving skill is equal to $k$. Mishka arranges all problems from the contest into a list. Because of his weird principles, Mishka only solves problems from one of the ends of the list. Every time, he chooses ...
The first line of input contains two integers $n$ and $k$ ($1 \le n, k \le 100$) — the number of problems in the contest and Mishka's problem-solving skill. The second line of input contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 100$), where $a_i$ is the difficulty of the $i$-th problem. The problems are...
Print one integer — the maximum number of problems Mishka can solve.
[ "8 4\n4 2 3 1 5 1 6 4\n", "5 2\n3 1 2 1 3\n", "5 100\n12 34 55 43 21\n" ]
[ "5\n", "0\n", "5\n" ]
In the first example, Mishka can solve problems in the following order: $[4, 2, 3, 1, 5, 1, 6, 4] \rightarrow [2, 3, 1, 5, 1, 6, 4] \rightarrow [2, 3, 1, 5, 1, 6] \rightarrow [3, 1, 5, 1, 6] \rightarrow [1, 5, 1, 6] \rightarrow [5, 1, 6]$, so the number of solved problems will be equal to $5$. In the second example, M...
0
[ { "input": "8 4\n4 2 3 1 5 1 6 4", "output": "5" }, { "input": "5 2\n3 1 2 1 3", "output": "0" }, { "input": "5 100\n12 34 55 43 21", "output": "5" }, { "input": "100 100\n44 47 36 83 76 94 86 69 31 2 22 77 37 51 10 19 25 78 53 25 1 29 48 95 35 53 22 72 49 86 60 38 13 91 89 1...
1,608,825,515
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
77
307,200
n=int(input()) k=int(input()) c=0 u=0 lis=[] for i in range(n): lis.append(int(input())) if(lis[i]<k): u+=1 if u==n: print(n) else: for x in range(n): if(k>=lis[x]): c+=1 else: break for x in range(n): if(k>=lis[...
Title: Mishka and Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mishka started participating in a programming contest. There are $n$ problems in the contest. Mishka's problem-solving skill is equal to $k$. Mishka arranges all problems from the contest into a list. Because of his...
```python n=int(input()) k=int(input()) c=0 u=0 lis=[] for i in range(n): lis.append(int(input())) if(lis[i]<k): u+=1 if u==n: print(n) else: for x in range(n): if(k>=lis[x]): c+=1 else: break for x in range(n): ...
-1
691
C
Exponential notation
PROGRAMMING
1,800
[ "implementation", "strings" ]
null
null
You are given a positive decimal number *x*. Your task is to convert it to the "simple exponential notation". Let *x*<==<=*a*·10*b*, where 1<=≤<=*a*<=&lt;<=10, then in general case the "simple exponential notation" looks like "aEb". If *b* equals to zero, the part "Eb" should be skipped. If *a* is an integer, it shou...
The only line contains the positive decimal number *x*. The length of the line will not exceed 106. Note that you are given too large number, so you can't use standard built-in data types "float", "double" and other.
Print the only line — the "simple exponential notation" of the given number *x*.
[ "16\n", "01.23400\n", ".100\n", "100.\n" ]
[ "1.6E1\n", "1.234\n", "1E-1\n", "1E2\n" ]
none
0
[ { "input": "16", "output": "1.6E1" }, { "input": "01.23400", "output": "1.234" }, { "input": ".100", "output": "1E-1" }, { "input": "100.", "output": "1E2" }, { "input": "9000", "output": "9E3" }, { "input": "0.0012", "output": "1.2E-3" }, { ...
1,671,738,935
2,147,483,647
PyPy 3-64
OK
TESTS
44
62
9,216,000
x = input().strip() def only_l_number(num): if not num: print(0) elif len(num) == 1: print(num) else: fst, rest = num[0], num[1:] old_rest_size = len(rest) rest = rest.rstrip("0") if rest: print(fst + "." + rest + "E" + str(old_rest_size)) ...
Title: Exponential notation Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a positive decimal number *x*. Your task is to convert it to the "simple exponential notation". Let *x*<==<=*a*·10*b*, where 1<=≤<=*a*<=&lt;<=10, then in general case the "simple exponential notatio...
```python x = input().strip() def only_l_number(num): if not num: print(0) elif len(num) == 1: print(num) else: fst, rest = num[0], num[1:] old_rest_size = len(rest) rest = rest.rstrip("0") if rest: print(fst + "." + rest + "E" + str(old_rest_siz...
3
950
A
Left-handers, Right-handers and Ambidexters
PROGRAMMING
800
[ "implementation", "math" ]
null
null
You are at a water bowling training. There are *l* people who play with their left hand, *r* people, who play with their right hand, and *a* ambidexters, who can play with left or right hand. The coach decided to form a team of even number of players, exactly half of the players should play with their right hand, and ...
The only line contains three integers *l*, *r* and *a* (0<=≤<=*l*,<=*r*,<=*a*<=≤<=100) — the number of left-handers, the number of right-handers and the number of ambidexters at the training.
Print a single even integer — the maximum number of players in the team. It is possible that the team can only have zero number of players.
[ "1 4 2\n", "5 5 5\n", "0 2 0\n" ]
[ "6\n", "14\n", "0\n" ]
In the first example you can form a team of 6 players. You should take the only left-hander and two ambidexters to play with left hand, and three right-handers to play with right hand. The only person left can't be taken into the team. In the second example you can form a team of 14 people. You have to take all five l...
500
[ { "input": "1 4 2", "output": "6" }, { "input": "5 5 5", "output": "14" }, { "input": "0 2 0", "output": "0" }, { "input": "30 70 34", "output": "128" }, { "input": "89 32 24", "output": "112" }, { "input": "89 44 77", "output": "210" }, { ...
1,545,754,708
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
22
109
0
n = [int(n) for n in input().split()] lef = n[0]*[1] ri = n[1]*[1] ax = n[2]*[1] team = [] i = 0 j = 0 counterA = 0 counterB = 0 w = 0 while(i < len(lef) and j < len(ri)): team = team + [(lef[i] + ri[j])] i += 1 j += 1 counterA += 1 k = counterA if(i == len(lef) and j != len(ri)): while(k...
Title: Left-handers, Right-handers and Ambidexters Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are at a water bowling training. There are *l* people who play with their left hand, *r* people, who play with their right hand, and *a* ambidexters, who can play with left or right hand....
```python n = [int(n) for n in input().split()] lef = n[0]*[1] ri = n[1]*[1] ax = n[2]*[1] team = [] i = 0 j = 0 counterA = 0 counterB = 0 w = 0 while(i < len(lef) and j < len(ri)): team = team + [(lef[i] + ri[j])] i += 1 j += 1 counterA += 1 k = counterA if(i == len(lef) and j != len(ri)): ...
0
569
A
Music
PROGRAMMING
1,500
[ "implementation", "math" ]
null
null
Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk. Unfortunately, internet is not that fast in the city of Ekaterinozavodsk and the song takes a lot of time to download. But Lesha is quite ...
The single line contains three integers *T*,<=*S*,<=*q* (2<=≤<=*q*<=≤<=104, 1<=≤<=*S*<=&lt;<=*T*<=≤<=105).
Print a single integer — the number of times the song will be restarted.
[ "5 2 2\n", "5 4 7\n", "6 2 3\n" ]
[ "2\n", "1\n", "1\n" ]
In the first test, the song is played twice faster than it is downloaded, which means that during four first seconds Lesha reaches the moment that has not been downloaded, and starts the song again. After another two seconds, the song is downloaded completely, and thus, Lesha starts the song twice. In the second test,...
500
[ { "input": "5 2 2", "output": "2" }, { "input": "5 4 7", "output": "1" }, { "input": "6 2 3", "output": "1" }, { "input": "2 1 2", "output": "1" }, { "input": "2 1 3", "output": "1" }, { "input": "2 1 10000", "output": "1" }, { "input": "12...
1,439,381,838
2,147,483,647
Python 3
OK
TESTS
33
62
0
t, s, q = map(int, input().split()) i = 0 while(s < t): s *= q; i += 1 print(i)
Title: Music Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk. Unfortunately, internet is not that fast in the...
```python t, s, q = map(int, input().split()) i = 0 while(s < t): s *= q; i += 1 print(i) ```
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,661,450,216
2,147,483,647
Python 3
OK
TESTS
30
92
0
st = input() lc = 0 uc = 0 for c in st: if(c.islower()): lc+=1 else: uc+=1 if(lc >= uc): print(st.lower()) else: print(st.upper())
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 st = input() lc = 0 uc = 0 for c in st: if(c.islower()): lc+=1 else: uc+=1 if(lc >= uc): print(st.lower()) else: print(st.upper()) ```
3.977
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,575,781,599
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
t, s = input(), input() for
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 t, s = input(), input() for ```
-1
182
D
Common Divisors
PROGRAMMING
1,400
[ "brute force", "hashing", "implementation", "math", "strings" ]
null
null
Vasya has recently learned at school what a number's divisor is and decided to determine a string's divisor. Here is what he came up with. String *a* is the divisor of string *b* if and only if there exists a positive integer *x* such that if we write out string *a* consecutively *x* times, we get string *b*. For exam...
The first input line contains a non-empty string *s*1. The second input line contains a non-empty string *s*2. Lengths of strings *s*1 and *s*2 are positive and do not exceed 105. The strings only consist of lowercase Latin letters.
Print the number of common divisors of strings *s*1 and *s*2.
[ "abcdabcd\nabcdabcdabcdabcd\n", "aaa\naa\n" ]
[ "2\n", "1\n" ]
In first sample the common divisors are strings "abcd" and "abcdabcd". In the second sample the common divisor is a single string "a". String "aa" isn't included in the answer as it isn't a divisor of string "aaa".
1,000
[ { "input": "abcdabcd\nabcdabcdabcdabcd", "output": "2" }, { "input": "aaa\naa", "output": "1" }, { "input": "aaaaaaaaaaaaaaaaaaaaaaaaa\naaaaaaaaaaaaaaaaaaaaaaaaa", "output": "3" }, { "input": "aaaaaaaaaaaaaa\naaaaaaaaaaaaaa", "output": "4" }, { "input": "a\nb", ...
1,675,791,121
2,147,483,647
Python 3
OK
TESTS
75
810
1,126,400
from math import gcd def divider(s1,s2): tmp="" while(len(tmp)<=len(s2)): if (tmp==s2): return 1 tmp+=s1 return 0 s1=str(input()) s2=str(input()) if (s1+s2!=s2+s1): print(0) else: gcd_str=s1[0:gcd(len(s1),len(s2))] unit="" length=0 for ...
Title: Common Divisors Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has recently learned at school what a number's divisor is and decided to determine a string's divisor. Here is what he came up with. String *a* is the divisor of string *b* if and only if there exists a positive ...
```python from math import gcd def divider(s1,s2): tmp="" while(len(tmp)<=len(s2)): if (tmp==s2): return 1 tmp+=s1 return 0 s1=str(input()) s2=str(input()) if (s1+s2!=s2+s1): print(0) else: gcd_str=s1[0:gcd(len(s1),len(s2))] unit="" length=0...
3
182
D
Common Divisors
PROGRAMMING
1,400
[ "brute force", "hashing", "implementation", "math", "strings" ]
null
null
Vasya has recently learned at school what a number's divisor is and decided to determine a string's divisor. Here is what he came up with. String *a* is the divisor of string *b* if and only if there exists a positive integer *x* such that if we write out string *a* consecutively *x* times, we get string *b*. For exam...
The first input line contains a non-empty string *s*1. The second input line contains a non-empty string *s*2. Lengths of strings *s*1 and *s*2 are positive and do not exceed 105. The strings only consist of lowercase Latin letters.
Print the number of common divisors of strings *s*1 and *s*2.
[ "abcdabcd\nabcdabcdabcdabcd\n", "aaa\naa\n" ]
[ "2\n", "1\n" ]
In first sample the common divisors are strings "abcd" and "abcdabcd". In the second sample the common divisor is a single string "a". String "aa" isn't included in the answer as it isn't a divisor of string "aaa".
1,000
[ { "input": "abcdabcd\nabcdabcdabcdabcd", "output": "2" }, { "input": "aaa\naa", "output": "1" }, { "input": "aaaaaaaaaaaaaaaaaaaaaaaaa\naaaaaaaaaaaaaaaaaaaaaaaaa", "output": "3" }, { "input": "aaaaaaaaaaaaaa\naaaaaaaaaaaaaa", "output": "4" }, { "input": "a\nb", ...
1,608,878,318
2,147,483,647
PyPy 3
OK
TESTS
75
372
9,011,200
a=input() b=input() list1=[] for x in range(1, len(a)+1): if len(a)%x==0 and a[:x]*(len(a)//x)==a: list1.append(a[:x]) ans=0 for x in range(1, len(b)+1): if len(b)%x==0 and b[:x]*(len(b)//x)==b and b[:x] in list1: ans+=1 print(ans)
Title: Common Divisors Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has recently learned at school what a number's divisor is and decided to determine a string's divisor. Here is what he came up with. String *a* is the divisor of string *b* if and only if there exists a positive ...
```python a=input() b=input() list1=[] for x in range(1, len(a)+1): if len(a)%x==0 and a[:x]*(len(a)//x)==a: list1.append(a[:x]) ans=0 for x in range(1, len(b)+1): if len(b)%x==0 and b[:x]*(len(b)//x)==b and b[:x] in list1: ans+=1 print(ans) ```
3
144
B
Meeting
PROGRAMMING
1,300
[ "implementation" ]
null
null
The Super Duper Secret Meeting of the Super Duper Secret Military Squad takes place in a Super Duper Secret Place. The place is an infinite plane with introduced Cartesian coordinate system. The meeting table is represented as a rectangle whose sides are parallel to the coordinate axes and whose vertexes are located at...
The first input line contains coordinates of two opposite table corners *x**a*, *y**a*, *x**b*, *y**b* (*x**a*<=≠<=*x**b*,<=*y**a*<=≠<=*y**b*). The second line contains integer *n* — the number of radiators (1<=≤<=*n*<=≤<=103). Then *n* lines contain the heaters' coordinates as "*x**i* *y**i* *r**i*", the numbers are s...
Print the only number — the number of blankets you should bring.
[ "2 5 4 2\n3\n3 1 2\n5 3 1\n1 3 2\n", "5 2 6 3\n2\n6 2 2\n6 5 3\n" ]
[ "4\n", "0\n" ]
In the first sample the generals are sitting at points: (2, 2), (2, 3), (2, 4), (2, 5), (3, 2), (3, 5), (4, 2), (4, 3), (4, 4), (4, 5). Among them, 4 generals are located outside the heating range. They are the generals at points: (2, 5), (3, 5), (4, 4), (4, 5). In the second sample the generals are sitting at points:...
1,000
[ { "input": "2 5 4 2\n3\n3 1 2\n5 3 1\n1 3 2", "output": "4" }, { "input": "5 2 6 3\n2\n6 2 2\n6 5 3", "output": "0" }, { "input": "-705 595 -702 600\n1\n-589 365 261", "output": "4" }, { "input": "-555 674 -553 774\n5\n-656 128 631\n597 -220 999\n-399 793 155\n-293 -363 1000\...
1,692,778,823
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
17
2,000
204,800
xa,ya,xb,yb=map(int,input().split()) g=[[xa,ya],[xa,yb],[xb,yb],[xb,ya]] if xa<xb: for i in range(xa+1,xb): g.append([i,ya]) g.append([i,yb]) else: for i in range(xb+1,xa): g.append([i,ya]) g.append([i,yb]) if ya<yb: for i in range(ya+1,yb): g.append([xa,i...
Title: Meeting Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Super Duper Secret Meeting of the Super Duper Secret Military Squad takes place in a Super Duper Secret Place. The place is an infinite plane with introduced Cartesian coordinate system. The meeting table is represented as ...
```python xa,ya,xb,yb=map(int,input().split()) g=[[xa,ya],[xa,yb],[xb,yb],[xb,ya]] if xa<xb: for i in range(xa+1,xb): g.append([i,ya]) g.append([i,yb]) else: for i in range(xb+1,xa): g.append([i,ya]) g.append([i,yb]) if ya<yb: for i in range(ya+1,yb): g.ap...
0
869
A
The Artful Expedient
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
Rock... Paper! After Karen have found the deterministic winning (losing?) strategy for rock-paper-scissors, her brother, Koyomi, comes up with a new game as a substitute. The game works as follows. A positive integer *n* is decided first. Both Koyomi and Karen independently choose *n* distinct positive integers, deno...
The first line of input contains a positive integer *n* (1<=≤<=*n*<=≤<=2<=000) — the length of both sequences. The second line contains *n* space-separated integers *x*1,<=*x*2,<=...,<=*x**n* (1<=≤<=*x**i*<=≤<=2·106) — the integers finally chosen by Koyomi. The third line contains *n* space-separated integers *y*1,<=...
Output one line — the name of the winner, that is, "Koyomi" or "Karen" (without quotes). Please be aware of the capitalization.
[ "3\n1 2 3\n4 5 6\n", "5\n2 4 6 8 10\n9 7 5 3 1\n" ]
[ "Karen\n", "Karen\n" ]
In the first example, there are 6 pairs satisfying the constraint: (1, 1), (1, 2), (2, 1), (2, 3), (3, 2) and (3, 3). Thus, Karen wins since 6 is an even number. In the second example, there are 16 such pairs, and Karen wins again.
500
[ { "input": "3\n1 2 3\n4 5 6", "output": "Karen" }, { "input": "5\n2 4 6 8 10\n9 7 5 3 1", "output": "Karen" }, { "input": "1\n1\n2000000", "output": "Karen" }, { "input": "2\n97153 2000000\n1999998 254", "output": "Karen" }, { "input": "15\n31 30 29 28 27 26 25 24...
1,507,494,467
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include<bits/stdc++.h> int main() { puts("Karen"); return 0; }
Title: The Artful Expedient Time Limit: None seconds Memory Limit: None megabytes Problem Description: Rock... Paper! After Karen have found the deterministic winning (losing?) strategy for rock-paper-scissors, her brother, Koyomi, comes up with a new game as a substitute. The game works as follows. A positive int...
```python #include<bits/stdc++.h> int main() { puts("Karen"); return 0; } ```
-1
940
B
Our Tanya is Crying Out Loud
PROGRAMMING
1,400
[ "dp", "greedy" ]
null
null
Right now she actually isn't. But she will be, if you don't solve this problem. You are given integers *n*, *k*, *A* and *B*. There is a number *x*, which is initially equal to *n*. You are allowed to perform two types of operations: 1. Subtract 1 from *x*. This operation costs you *A* coins. 1. Divide *x* by *k*....
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=2·109). The second line contains a single integer *k* (1<=≤<=*k*<=≤<=2·109). The third line contains a single integer *A* (1<=≤<=*A*<=≤<=2·109). The fourth line contains a single integer *B* (1<=≤<=*B*<=≤<=2·109).
Output a single integer — the minimum amount of coins you have to pay to make *x* equal to 1.
[ "9\n2\n3\n1\n", "5\n5\n2\n20\n", "19\n3\n4\n2\n" ]
[ "6\n", "8\n", "12\n" ]
In the first testcase, the optimal strategy is as follows: - Subtract 1 from *x* (9 → 8) paying 3 coins. - Divide *x* by 2 (8 → 4) paying 1 coin. - Divide *x* by 2 (4 → 2) paying 1 coin. - Divide *x* by 2 (2 → 1) paying 1 coin. The total cost is 6 coins. In the second test case the optimal strategy is to subtra...
1,250
[ { "input": "9\n2\n3\n1", "output": "6" }, { "input": "5\n5\n2\n20", "output": "8" }, { "input": "19\n3\n4\n2", "output": "12" }, { "input": "1845999546\n999435865\n1234234\n2323423", "output": "1044857680578777" }, { "input": "1604353664\n1604353665\n9993432\n1", ...
1,561,619,368
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
3
1,000
0
x,k,a,b=int(input()),int(input()),int(input()),int(input()) res=0 while x!=1: if x%k==0: y=x//k c=a*(x-y) if b>c:res+=c else:res+=b x=y else:x-=1;res+=a print(res)
Title: Our Tanya is Crying Out Loud Time Limit: None seconds Memory Limit: None megabytes Problem Description: Right now she actually isn't. But she will be, if you don't solve this problem. You are given integers *n*, *k*, *A* and *B*. There is a number *x*, which is initially equal to *n*. You are allowed to perf...
```python x,k,a,b=int(input()),int(input()),int(input()),int(input()) res=0 while x!=1: if x%k==0: y=x//k c=a*(x-y) if b>c:res+=c else:res+=b x=y else:x-=1;res+=a print(res) ```
0
141
A
Amusing Joke
PROGRAMMING
800
[ "implementation", "sortings", "strings" ]
null
null
So, the New Year holidays are over. Santa Claus and his colleagues can take a rest and have guests at last. When two "New Year and Christmas Men" meet, thear assistants cut out of cardboard the letters from the guest's name and the host's name in honor of this event. Then the hung the letters above the main entrance. O...
The input file consists of three lines: the first line contains the guest's name, the second line contains the name of the residence host and the third line contains letters in a pile that were found at the door in the morning. All lines are not empty and contain only uppercase Latin letters. The length of each line do...
Print "YES" without the quotes, if the letters in the pile could be permuted to make the names of the "New Year and Christmas Men". Otherwise, print "NO" without the quotes.
[ "SANTACLAUS\nDEDMOROZ\nSANTAMOROZDEDCLAUS\n", "PAPAINOEL\nJOULUPUKKI\nJOULNAPAOILELUPUKKI\n", "BABBONATALE\nFATHERCHRISTMAS\nBABCHRISTMASBONATALLEFATHER\n" ]
[ "YES\n", "NO\n", "NO\n" ]
In the first sample the letters written in the last line can be used to write the names and there won't be any extra letters left. In the second sample letter "P" is missing from the pile and there's an extra letter "L". In the third sample there's an extra letter "L".
500
[ { "input": "SANTACLAUS\nDEDMOROZ\nSANTAMOROZDEDCLAUS", "output": "YES" }, { "input": "PAPAINOEL\nJOULUPUKKI\nJOULNAPAOILELUPUKKI", "output": "NO" }, { "input": "BABBONATALE\nFATHERCHRISTMAS\nBABCHRISTMASBONATALLEFATHER", "output": "NO" }, { "input": "B\nA\nAB", "output": ...
1,685,726,698
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
92
307,200
from collections import Counter s=input() nexts=input() full=input() full_let=s+nexts full_let=Counter(full_let) full=Counter(full) c=0 for i,j in full_let.items(): for m,n in full.items(): if i==m: if j!=n: print("NO") c+=1 b...
Title: Amusing Joke Time Limit: None seconds Memory Limit: None megabytes Problem Description: So, the New Year holidays are over. Santa Claus and his colleagues can take a rest and have guests at last. When two "New Year and Christmas Men" meet, thear assistants cut out of cardboard the letters from the guest's nam...
```python from collections import Counter s=input() nexts=input() full=input() full_let=s+nexts full_let=Counter(full_let) full=Counter(full) c=0 for i,j in full_let.items(): for m,n in full.items(): if i==m: if j!=n: print("NO") c+=1 ...
0
876
B
Divisiblity of Differences
PROGRAMMING
1,300
[ "implementation", "math", "number theory" ]
null
null
You are given a multiset of *n* integers. You should select exactly *k* of them in a such way that the difference between any two of them is divisible by *m*, or tell that it is impossible. Numbers can be repeated in the original multiset and in the multiset of selected numbers, but number of occurrences of any number...
First line contains three integers *n*, *k* and *m* (2<=≤<=*k*<=≤<=*n*<=≤<=100<=000, 1<=≤<=*m*<=≤<=100<=000) — number of integers in the multiset, number of integers you should select and the required divisor of any pair of selected integers. Second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=...
If it is not possible to select *k* numbers in the desired way, output «No» (without the quotes). Otherwise, in the first line of output print «Yes» (without the quotes). In the second line print *k* integers *b*1,<=*b*2,<=...,<=*b**k* — the selected numbers. If there are multiple possible solutions, print any of them...
[ "3 2 3\n1 8 4\n", "3 3 3\n1 8 4\n", "4 3 5\n2 7 7 7\n" ]
[ "Yes\n1 4 ", "No", "Yes\n2 7 7 " ]
none
1,000
[ { "input": "3 2 3\n1 8 4", "output": "Yes\n1 4 " }, { "input": "3 3 3\n1 8 4", "output": "No" }, { "input": "4 3 5\n2 7 7 7", "output": "Yes\n2 7 7 " }, { "input": "9 9 5\n389149775 833127990 969340400 364457730 48649145 316121525 640054660 924273385 973207825", "output":...
1,521,736,810
2,147,483,647
Python 3
OK
TESTS
63
451
15,872,000
n,k,m=map(int,input().split()) a=list(map(int,input().split())) b=[] c=[0]*m for i in a: c[i%m]+=1 y=max(c) if y<k: print("No") else: print("Yes") x=c.index(y) for i in a: if len(b)<k and i%m==x: b.append(i) if len(b)==k: break print(*b) ...
Title: Divisiblity of Differences Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a multiset of *n* integers. You should select exactly *k* of them in a such way that the difference between any two of them is divisible by *m*, or tell that it is impossible. Numbers can be re...
```python n,k,m=map(int,input().split()) a=list(map(int,input().split())) b=[] c=[0]*m for i in a: c[i%m]+=1 y=max(c) if y<k: print("No") else: print("Yes") x=c.index(y) for i in a: if len(b)<k and i%m==x: b.append(i) if len(b)==k: break p...
3
90
B
African Crossword
PROGRAMMING
1,100
[ "implementation", "strings" ]
B. African Crossword
2
256
An African crossword is a rectangular table *n*<=×<=*m* in size. Each cell of the table contains exactly one letter. This table (it is also referred to as grid) contains some encrypted word that needs to be decoded. To solve the crossword you should cross out all repeated letters in rows and columns. In other words, a...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). Next *n* lines contain *m* lowercase Latin letters each. That is the crossword grid.
Print the encrypted word on a single line. It is guaranteed that the answer consists of at least one letter.
[ "3 3\ncba\nbcd\ncbc\n", "5 5\nfcofd\nooedo\nafaoa\nrdcdf\neofsf\n" ]
[ "abcd", "codeforces" ]
none
1,000
[ { "input": "3 3\ncba\nbcd\ncbc", "output": "abcd" }, { "input": "5 5\nfcofd\nooedo\nafaoa\nrdcdf\neofsf", "output": "codeforces" }, { "input": "4 4\nusah\nusha\nhasu\nsuha", "output": "ahhasusu" }, { "input": "7 5\naabcd\neffgh\niijkk\nlmnoo\npqqrs\nttuvw\nxxyyz", "output...
1,695,397,591
2,147,483,647
Python 3
OK
TESTS
43
154
2,048,000
import math import sys def I(): return int(input()) def II(): return map(int, input().split()) def IL(): return list(map(int, input().split())) def SIL(): return sorted(map(int, input().split())) def RSIL(): return sorted(map(int, input().split()), reverse=True) from collections import defaultdict from collec...
Title: African Crossword Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: An African crossword is a rectangular table *n*<=×<=*m* in size. Each cell of the table contains exactly one letter. This table (it is also referred to as grid) contains some encrypted word that needs to be decoded. To s...
```python import math import sys def I(): return int(input()) def II(): return map(int, input().split()) def IL(): return list(map(int, input().split())) def SIL(): return sorted(map(int, input().split())) def RSIL(): return sorted(map(int, input().split()), reverse=True) from collections import defaultdict f...
3.957685
514
A
Chewbaсca and Number
PROGRAMMING
1,200
[ "greedy", "implementation" ]
null
null
Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform the initial number *x* to the minimum possible positive number by inverting some (possibly, zero) digits....
The first line contains a single integer *x* (1<=≤<=*x*<=≤<=1018) — the number that Luke Skywalker gave to Chewbacca.
Print the minimum possible positive number that Chewbacca can obtain after inverting some digits. The number shouldn't contain leading zeroes.
[ "27\n", "4545\n" ]
[ "22\n", "4444\n" ]
none
500
[ { "input": "27", "output": "22" }, { "input": "4545", "output": "4444" }, { "input": "1", "output": "1" }, { "input": "9", "output": "9" }, { "input": "8772", "output": "1222" }, { "input": "81", "output": "11" }, { "input": "71723447", ...
1,686,015,090
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
3
46
0
def main(): x = input() result = "" for i, digit in enumerate(x): complement = min(int(digit), 9 - int(digit)) result += str(complement) print(result) main()
Title: Chewbaсca and Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform...
```python def main(): x = input() result = "" for i, digit in enumerate(x): complement = min(int(digit), 9 - int(digit)) result += str(complement) print(result) main() ```
0
237
A
Free Cash
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera runs a 24/7 fast food cafe. He magically learned that next day *n* people will visit his cafe. For each person we know the arrival time: the *i*-th person comes exactly at *h**i* hours *m**i* minutes. The cafe spends less than a minute to serve each client, but if a client comes in and sees that there is no free...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105), that is the number of cafe visitors. Each of the following *n* lines has two space-separated integers *h**i* and *m**i* (0<=≤<=*h**i*<=≤<=23; 0<=≤<=*m**i*<=≤<=59), representing the time when the *i*-th person comes into the cafe. Note that the time is...
Print a single integer — the minimum number of cashes, needed to serve all clients next day.
[ "4\n8 0\n8 10\n8 10\n8 45\n", "3\n0 12\n10 11\n22 22\n" ]
[ "2\n", "1\n" ]
In the first sample it is not enough one cash to serve all clients, because two visitors will come into cafe in 8:10. Therefore, if there will be one cash in cafe, then one customer will be served by it, and another one will not wait and will go away. In the second sample all visitors will come in different times, so ...
500
[ { "input": "4\n8 0\n8 10\n8 10\n8 45", "output": "2" }, { "input": "3\n0 12\n10 11\n22 22", "output": "1" }, { "input": "5\n12 8\n15 27\n15 27\n16 2\n19 52", "output": "2" }, { "input": "7\n5 6\n7 34\n7 34\n7 34\n12 29\n15 19\n20 23", "output": "3" }, { "input": "...
1,692,536,707
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
8
312
5,734,400
n = int(input()) l = [] for i in range(n): a, b = map(str, input().split(" ")) a = a+b l.append(a) count = 1 d = {} for i in l: if i not in d: d[i] = 1 else: d[i] = d[i]+1 print(max(d.values()))
Title: Free Cash Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera runs a 24/7 fast food cafe. He magically learned that next day *n* people will visit his cafe. For each person we know the arrival time: the *i*-th person comes exactly at *h**i* hours *m**i* minutes. The cafe spends l...
```python n = int(input()) l = [] for i in range(n): a, b = map(str, input().split(" ")) a = a+b l.append(a) count = 1 d = {} for i in l: if i not in d: d[i] = 1 else: d[i] = d[i]+1 print(max(d.values())) ```
0
743
C
Vladik and fractions
PROGRAMMING
1,500
[ "brute force", "constructive algorithms", "math", "number theory" ]
null
null
Vladik and Chloe decided to determine who of them is better at math. Vladik claimed that for any positive integer *n* he can represent fraction as a sum of three distinct positive fractions in form . Help Vladik with that, i.e for a given *n* find three distinct positive integers *x*, *y* and *z* such that . Because ...
The single line contains single integer *n* (1<=≤<=*n*<=≤<=104).
If the answer exists, print 3 distinct numbers *x*, *y* and *z* (1<=≤<=*x*,<=*y*,<=*z*<=≤<=109, *x*<=≠<=*y*, *x*<=≠<=*z*, *y*<=≠<=*z*). Otherwise print -1. If there are multiple answers, print any of them.
[ "3\n", "7\n" ]
[ "2 7 42\n", "7 8 56\n" ]
none
1,250
[ { "input": "3", "output": "2 7 42" }, { "input": "7", "output": "7 8 56" }, { "input": "2", "output": "2 3 6" }, { "input": "5", "output": "5 6 30" }, { "input": "4", "output": "4 5 20" }, { "input": "7", "output": "7 8 56" }, { "input": "8...
1,591,774,394
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
12
155
0
n=int(input()) print(n,n+1,(n+1)*n)
Title: Vladik and fractions Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vladik and Chloe decided to determine who of them is better at math. Vladik claimed that for any positive integer *n* he can represent fraction as a sum of three distinct positive fractions in form . Help Vladik ...
```python n=int(input()) print(n,n+1,(n+1)*n) ```
0
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,459,323,022
2,147,483,647
Python 3
OK
TESTS
30
124
5,120,000
s = input() t = len(s) a = 0 b = 0 for i in range(0,t): if s[i] == s[i].lower(): a = a+1 else:b = b+1 if a >=b: print(s.lower()) else: print(s.upper())
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() t = len(s) a = 0 b = 0 for i in range(0,t): if s[i] == s[i].lower(): a = a+1 else:b = b+1 if a >=b: print(s.lower()) else: print(s.upper()) ```
3.959463
0
none
none
none
0
[ "none" ]
null
null
An atom of element X can exist in *n* distinct states with energies *E*1<=&lt;<=*E*2<=&lt;<=...<=&lt;<=*E**n*. Arkady wants to build a laser on this element, using a three-level scheme. Here is a simplified description of the scheme. Three distinct states *i*, *j* and *k* are selected, where *i*<=&lt;<=*j*<=&lt;<=*k*...
The first line contains two integers *n* and *U* (3<=≤<=*n*<=≤<=105, 1<=≤<=*U*<=≤<=109) — the number of states and the maximum possible difference between *E**k* and *E**i*. The second line contains a sequence of integers *E*1,<=*E*2,<=...,<=*E**n* (1<=≤<=*E*1<=&lt;<=*E*2...<=&lt;<=*E**n*<=≤<=109). It is guaranteed th...
If it is not possible to choose three states that satisfy all constraints, print -1. Otherwise, print one real number η — the maximum possible energy conversion efficiency. Your answer is considered correct its absolute or relative error does not exceed 10<=-<=9. Formally, let your answer be *a*, and the jury's answe...
[ "4 4\n1 3 5 7\n", "10 8\n10 13 15 16 17 19 20 22 24 25\n", "3 1\n2 5 10\n" ]
[ "0.5\n", "0.875\n", "-1\n" ]
In the first example choose states 1, 2 and 3, so that the energy conversion efficiency becomes equal to <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/147ae7a830722917b0aa37d064df8eb74cfefb97.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second example choose states 4, 5 a...
0
[ { "input": "4 4\n1 3 5 7", "output": "0.5" }, { "input": "10 8\n10 13 15 16 17 19 20 22 24 25", "output": "0.875" }, { "input": "3 1\n2 5 10", "output": "-1" }, { "input": "5 3\n4 6 8 9 10", "output": "0.5" }, { "input": "10 128\n110 121 140 158 174 188 251 271 27...
1,521,910,156
4,456
Python 3
WRONG_ANSWER
PRETESTS
0
62
7,065,600
n, U = map(int, input().split()) l = list(map(int, input().split())) max = 0 for i in range(0, n - 2): for j in range(i + 1, n - 1): for k in range(j + 1, n): # print("{}:{}:{}".format(i,j,k)) energy = (l[k] - l[j]) / (l[k] - l[i]) if energy > max and (l[k] - l[i]) <= U:...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: An atom of element X can exist in *n* distinct states with energies *E*1<=&lt;<=*E*2<=&lt;<=...<=&lt;<=*E**n*. Arkady wants to build a laser on this element, using a three-level scheme. Here is a simplified description of the sche...
```python n, U = map(int, input().split()) l = list(map(int, input().split())) max = 0 for i in range(0, n - 2): for j in range(i + 1, n - 1): for k in range(j + 1, n): # print("{}:{}:{}".format(i,j,k)) energy = (l[k] - l[j]) / (l[k] - l[i]) if energy > max and (l[k] - l...
0
454
A
Little Pony and Crystal Mine
PROGRAMMING
800
[ "implementation" ]
null
null
Twilight Sparkle once got a crystal from the Crystal Mine. A crystal of size *n* (*n* is odd; *n*<=&gt;<=1) is an *n*<=×<=*n* matrix with a diamond inscribed into it. You are given an odd integer *n*. You need to draw a crystal of size *n*. The diamond cells of the matrix should be represented by character "D". All ot...
The only line contains an integer *n* (3<=≤<=*n*<=≤<=101; *n* is odd).
Output a crystal of size *n*.
[ "3\n", "5\n", "7\n" ]
[ "*D*\nDDD\n*D*\n", "**D**\n*DDD*\nDDDDD\n*DDD*\n**D**\n", "***D***\n**DDD**\n*DDDDD*\nDDDDDDD\n*DDDDD*\n**DDD**\n***D***\n" ]
none
500
[ { "input": "3", "output": "*D*\nDDD\n*D*" }, { "input": "5", "output": "**D**\n*DDD*\nDDDDD\n*DDD*\n**D**" }, { "input": "7", "output": "***D***\n**DDD**\n*DDDDD*\nDDDDDDD\n*DDDDD*\n**DDD**\n***D***" }, { "input": "11", "output": "*****D*****\n****DDD****\n***DDDDD***\n**...
1,630,173,831
2,147,483,647
PyPy 3
OK
TESTS
12
92
20,172,800
from sys import stdin, stdout def read(): return stdin.readline().rstrip() def read_int(): return int(read()) def read_ints(): return list(map(int, read().split())) def solve(): n=read_int() n//=2 for i in range(-n, n+1): print("*"*abs(i) + "D"*(2*n+1-2*abs(i)) + "*"*abs(i)) solve()
Title: Little Pony and Crystal Mine Time Limit: None seconds Memory Limit: None megabytes Problem Description: Twilight Sparkle once got a crystal from the Crystal Mine. A crystal of size *n* (*n* is odd; *n*<=&gt;<=1) is an *n*<=×<=*n* matrix with a diamond inscribed into it. You are given an odd integer *n*. You ...
```python from sys import stdin, stdout def read(): return stdin.readline().rstrip() def read_int(): return int(read()) def read_ints(): return list(map(int, read().split())) def solve(): n=read_int() n//=2 for i in range(-n, n+1): print("*"*abs(i) + "D"*(2*n+1-2*abs(i)) + "*"*abs(i)) solv...
3
427
A
Police Recruits
PROGRAMMING
800
[ "implementation" ]
null
null
The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of the police force can investigate only one crime during his/her lifetime. If there is no police offi...
The first line of input will contain an integer *n* (1<=≤<=*n*<=≤<=105), the number of events. The next line will contain *n* space-separated integers. If the integer is -1 then it means a crime has occurred. Otherwise, the integer will be positive, the number of officers recruited together at that time. No more than ...
Print a single integer, the number of crimes which will go untreated.
[ "3\n-1 -1 1\n", "8\n1 -1 1 -1 -1 1 1 1\n", "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1\n" ]
[ "2\n", "1\n", "8\n" ]
Lets consider the second example: 1. Firstly one person is hired. 1. Then crime appears, the last hired person will investigate this crime. 1. One more person is hired. 1. One more crime appears, the last hired person will investigate this crime. 1. Crime appears. There is no free policeman at the time, so this c...
500
[ { "input": "3\n-1 -1 1", "output": "2" }, { "input": "8\n1 -1 1 -1 -1 1 1 1", "output": "1" }, { "input": "11\n-1 -1 2 -1 -1 -1 -1 -1 -1 -1 -1", "output": "8" }, { "input": "7\n-1 -1 1 1 -1 -1 1", "output": "2" }, { "input": "21\n-1 -1 -1 -1 -1 3 2 -1 6 -1 -1 2 1 ...
1,696,506,753
2,147,483,647
Python 3
OK
TESTS
63
77
10,547,200
n =int(input()) recruits = list(map(int, input().split())) untreated = 0 police = 0 for i in range(n): if recruits[i] == -1: if police == 0: untreated += 1 else: police -= 1 else: police += recruits[i] print(untreated)
Title: Police Recruits Time Limit: None seconds Memory Limit: None megabytes Problem Description: The police department of your city has just started its journey. Initially, they don’t have any manpower. So, they started hiring new recruits in groups. Meanwhile, crimes keeps occurring within the city. One member of...
```python n =int(input()) recruits = list(map(int, input().split())) untreated = 0 police = 0 for i in range(n): if recruits[i] == -1: if police == 0: untreated += 1 else: police -= 1 else: police += recruits[i] print(untreated) ```
3
138
A
Literature Lesson
PROGRAMMING
1,600
[ "implementation" ]
null
null
Vera adores poems. All the poems Vera knows are divided into quatrains (groups of four lines) and in each quatrain some lines contain rhymes. Let's consider that all lines in the poems consist of lowercase Latin letters (without spaces). Letters "a", "e", "i", "o", "u" are considered vowels. Two lines rhyme if their ...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=2500, 1<=≤<=*k*<=≤<=5) — the number of quatrains in the poem and the vowel's number, correspondingly. Next 4*n* lines contain the poem. Each line is not empty and only consists of small Latin letters. The total length of the lines does not exceed 104. If ...
Print the rhyme scheme of the poem as "aabb", "abab", "abba", "aaaa"; or "NO" if the poem does not belong to any of the above mentioned schemes.
[ "1 1\nday\nmay\nsun\nfun\n", "1 1\nday\nmay\ngray\nway\n", "2 1\na\na\na\na\na\na\ne\ne\n", "2 1\nday\nmay\nsun\nfun\ntest\nhill\nfest\nthrill\n" ]
[ "aabb\n", "aaaa\n", "aabb\n", "NO\n" ]
In the last sample both quatrains have rhymes but finding the common scheme is impossible, so the answer is "NO".
500
[ { "input": "1 1\nday\nmay\nsun\nfun", "output": "aabb" }, { "input": "1 1\nday\nmay\ngray\nway", "output": "aaaa" }, { "input": "2 1\na\na\na\na\na\na\ne\ne", "output": "aabb" }, { "input": "2 1\nday\nmay\nsun\nfun\ntest\nhill\nfest\nthrill", "output": "NO" }, { "...
1,477,759,088
2,147,483,647
PyPy 3
COMPILATION_ERROR
TESTS
0
0
0
n,k=map(int,raw_input().split()) q=0 for i in [0]*n: t=[] for j in [0]*4: c=raw_input() v=0 for p,l in enumerate(c[::-1]): if l in "aeoiu": v+=1 if v==k:break if v<k:X() t.append(c[-p-1:]) if t[0]==t[1]==t[2]==t[3]: continue elif t[0]==t[1]and t[2]==t[3]: if q>1: print "...
Title: Literature Lesson Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vera adores poems. All the poems Vera knows are divided into quatrains (groups of four lines) and in each quatrain some lines contain rhymes. Let's consider that all lines in the poems consist of lowercase Latin lett...
```python n,k=map(int,raw_input().split()) q=0 for i in [0]*n: t=[] for j in [0]*4: c=raw_input() v=0 for p,l in enumerate(c[::-1]): if l in "aeoiu": v+=1 if v==k:break if v<k:X() t.append(c[-p-1:]) if t[0]==t[1]==t[2]==t[3]: continue elif t[0]==t[1]and t[2]==t[3]: if q>1: ...
-1
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,674,921,078
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
def main(): n,m,a=map(int,input().split()) ans=m/a*n/a print(int(ans)) if __name__ == '__main__': main()
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 def main(): n,m,a=map(int,input().split()) ans=m/a*n/a print(int(ans)) if __name__ == '__main__': main() ```
0
321
A
Ciel and Robot
PROGRAMMING
1,700
[ "binary search", "implementation", "math" ]
null
null
Fox Ciel has a robot on a 2D plane. Initially it is located in (0, 0). Fox Ciel code a command to it. The command was represented by string *s*. Each character of *s* is one move operation. There are four move operations at all: - 'U': go up, (x, y) <=→<= (x, y+1); - 'D': go down, (x, y) <=→<= (x, y-1); - 'L': go l...
The first line contains two integers *a* and *b*, (<=-<=109<=≤<=*a*,<=*b*<=≤<=109). The second line contains a string *s* (1<=≤<=|*s*|<=≤<=100, *s* only contains characters 'U', 'D', 'L', 'R') — the command.
Print "Yes" if the robot will be located at (*a*,<=*b*), and "No" otherwise.
[ "2 2\nRU\n", "1 2\nRU\n", "-1 1000000000\nLRRLU\n", "0 0\nD\n" ]
[ "Yes\n", "No\n", "Yes\n", "Yes\n" ]
In the first and second test case, command string is "RU", so the robot will go right, then go up, then right, and then up and so on. The locations of its moves are (0, 0)  →  (1, 0)  →  (1, 1)  →  (2, 1)  →  (2, 2)  →  ... So it can reach (2, 2) but not (1, 2).
500
[ { "input": "2 2\nRU", "output": "Yes" }, { "input": "1 2\nRU", "output": "No" }, { "input": "-1 1000000000\nLRRLU", "output": "Yes" }, { "input": "0 0\nD", "output": "Yes" }, { "input": "0 0\nUURRDL", "output": "Yes" }, { "input": "987654321 987654321\...
1,540,776,273
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
7
248
0
R = lambda: map(int, input().split()) a, b = R() cs = [[0, 0]] d = {'R': (1, 0), 'L': (-1, 0), 'U': (0, 1), 'D': (0, -1)} for c in input(): cs.append([cs[-1][0] + d[c][0], cs[-1][1] + d[c][1]]) px, py = cs[-1][0], cs[-1][1] if px: k = a / px print('Yes' if [a - k * px, b - k * py] in cs else 'No') ...
Title: Ciel and Robot Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel has a robot on a 2D plane. Initially it is located in (0, 0). Fox Ciel code a command to it. The command was represented by string *s*. Each character of *s* is one move operation. There are four move operations...
```python R = lambda: map(int, input().split()) a, b = R() cs = [[0, 0]] d = {'R': (1, 0), 'L': (-1, 0), 'U': (0, 1), 'D': (0, -1)} for c in input(): cs.append([cs[-1][0] + d[c][0], cs[-1][1] + d[c][1]]) px, py = cs[-1][0], cs[-1][1] if px: k = a / px print('Yes' if [a - k * px, b - k * py] in cs e...
0
556
A
Case of the Zeros and Ones
PROGRAMMING
900
[ "greedy" ]
null
null
Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Consider the following operation: we choose any two adjacent positions in the string, and if one them contains 0, an...
First line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=2·105), the length of the string that Andreid has. The second line contains the string of length *n* consisting only from zeros and ones.
Output the minimum length of the string that may remain after applying the described operations several times.
[ "4\n1100\n", "5\n01010\n", "8\n11101111\n" ]
[ "0\n", "1\n", "6\n" ]
In the first sample test it is possible to change the string like the following: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/10df55364c21c6e8d5da31b6ab6f6294c4fc26b3.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second sample test it is possible to change the string like...
250
[ { "input": "4\n1100", "output": "0" }, { "input": "5\n01010", "output": "1" }, { "input": "8\n11101111", "output": "6" }, { "input": "1\n0", "output": "1" }, { "input": "1\n1", "output": "1" }, { "input": "2\n00", "output": "2" }, { "input"...
1,612,497,524
2,147,483,647
Python 3
OK
TESTS
49
62
819,200
n=int(input()) s=input() print(abs(n-2*s.count("0")))
Title: Case of the Zeros and Ones Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Cons...
```python n=int(input()) s=input() print(abs(n-2*s.count("0"))) ```
3
1,004
B
Sonya and Exhibition
PROGRAMMING
1,300
[ "constructive algorithms", "greedy", "implementation", "math" ]
null
null
Sonya decided to organize an exhibition of flowers. Since the girl likes only roses and lilies, she decided that only these two kinds of flowers should be in this exhibition. There are $n$ flowers in a row in the exhibition. Sonya can put either a rose or a lily in the $i$-th position. Thus each of $n$ positions shoul...
The first line contains two integers $n$ and $m$ ($1\leq n, m\leq 10^3$) — the number of flowers and visitors respectively. Each of the next $m$ lines contains two integers $l_i$ and $r_i$ ($1\leq l_i\leq r_i\leq n$), meaning that $i$-th visitor will visit all flowers from $l_i$ to $r_i$ inclusive.
Print the string of $n$ characters. The $i$-th symbol should be «0» if you want to put a rose in the $i$-th position, otherwise «1» if you want to put a lily. If there are multiple answers, print any.
[ "5 3\n1 3\n2 4\n2 5\n", "6 3\n5 6\n1 4\n4 6\n" ]
[ "01100", "110010" ]
In the first example, Sonya can put roses in the first, fourth, and fifth positions, and lilies in the second and third positions; - in the segment $[1\ldots3]$, there are one rose and two lilies, so the beauty is equal to $1\cdot 2=2$; - in the segment $[2\ldots4]$, there are one rose and two lilies, so the beauty ...
1,000
[ { "input": "5 3\n1 3\n2 4\n2 5", "output": "01010" }, { "input": "6 3\n5 6\n1 4\n4 6", "output": "010101" }, { "input": "10 4\n3 3\n1 6\n9 9\n10 10", "output": "0101010101" }, { "input": "1 1\n1 1", "output": "0" }, { "input": "1000 10\n3 998\n2 1000\n1 999\n2 100...
1,530,814,675
6,175
Python 3
WRONG_ANSWER
PRETESTS
3
109
0
n, m = map(int, input().split()) ranges = [] cnt = 0 cnt_z = {} for i in range(m): l, r = map(int, input().split()) rang = (l - 1, r - 1, r - l + 1) ranges.append(rang) cnt_z[rang] = 0 a = [0] * n for i in range(n): need_one = 0 #print(i) for rang in ranges: l, r, len = rang ...
Title: Sonya and Exhibition Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sonya decided to organize an exhibition of flowers. Since the girl likes only roses and lilies, she decided that only these two kinds of flowers should be in this exhibition. There are $n$ flowers in a row in the ...
```python n, m = map(int, input().split()) ranges = [] cnt = 0 cnt_z = {} for i in range(m): l, r = map(int, input().split()) rang = (l - 1, r - 1, r - l + 1) ranges.append(rang) cnt_z[rang] = 0 a = [0] * n for i in range(n): need_one = 0 #print(i) for rang in ranges: l, r, len = r...
0
678
A
Johny Likes Numbers
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Johny likes numbers *n* and *k* very much. Now Johny wants to find the smallest integer *x* greater than *n*, so it is divisible by the number *k*.
The only line contains two integers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=109).
Print the smallest integer *x*<=&gt;<=*n*, so it is divisible by the number *k*.
[ "5 3\n", "25 13\n", "26 13\n" ]
[ "6\n", "26\n", "39\n" ]
none
0
[ { "input": "5 3", "output": "6" }, { "input": "25 13", "output": "26" }, { "input": "26 13", "output": "39" }, { "input": "1 1", "output": "2" }, { "input": "8 8", "output": "16" }, { "input": "14 15", "output": "15" }, { "input": "197 894"...
1,590,744,565
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
11
500
204,800
n,k=[int(x) for x in input().split()] t=n+1 while t%k!=0: t+=1 print(t)
Title: Johny Likes Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Johny likes numbers *n* and *k* very much. Now Johny wants to find the smallest integer *x* greater than *n*, so it is divisible by the number *k*. Input Specification: The only line contains two integers *n* and *...
```python n,k=[int(x) for x in input().split()] t=n+1 while t%k!=0: t+=1 print(t) ```
0
300
B
Coach
PROGRAMMING
1,500
[ "brute force", "dfs and similar", "graphs" ]
null
null
A programming coach has *n* students to teach. We know that *n* is divisible by 3. Let's assume that all students are numbered from 1 to *n*, inclusive. Before the university programming championship the coach wants to split all students into groups of three. For some pairs of students we know that they want to be on ...
The first line of the input contains integers *n* and *m* (3<=≤<=*n*<=≤<=48, . Then follow *m* lines, each contains a pair of integers *a**i*,<=*b**i* (1<=≤<=*a**i*<=&lt;<=*b**i*<=≤<=*n*) — the pair *a**i*,<=*b**i* means that students with numbers *a**i* and *b**i* want to be on the same team. It is guaranteed that *n...
If the required division into teams doesn't exist, print number -1. Otherwise, print lines. In each line print three integers *x**i*, *y**i*, *z**i* (1<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=*n*) — the *i*-th team. If there are multiple answers, you are allowed to print any of them.
[ "3 0\n", "6 4\n1 2\n2 3\n3 4\n5 6\n", "3 3\n1 2\n2 3\n1 3\n" ]
[ "3 2 1 \n", "-1\n", "3 2 1 \n" ]
none
1,000
[ { "input": "3 0", "output": "3 2 1 " }, { "input": "6 4\n1 2\n2 3\n3 4\n5 6", "output": "-1" }, { "input": "3 3\n1 2\n2 3\n1 3", "output": "3 2 1 " }, { "input": "6 3\n1 2\n3 4\n5 6", "output": "-1" }, { "input": "15 9\n1 4\n1 6\n2 7\n2 11\n4 6\n5 12\n7 11\n9 14\n...
1,695,289,894
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
92
0
mod = int(1e9+7) inf = int(1e10) def solve(): n,m = map(int,input().split()) adj = [[]for i in range(n+5)] visited = [False for i in range(n+5)] def dfs(s,par,ans): visited[s] = True ans.append(s) for i in adj[s]: if i!=par and not visited[i]: dfs(i,s,ans) for i in range(m): a,b = map(int,input()....
Title: Coach Time Limit: None seconds Memory Limit: None megabytes Problem Description: A programming coach has *n* students to teach. We know that *n* is divisible by 3. Let's assume that all students are numbered from 1 to *n*, inclusive. Before the university programming championship the coach wants to split all...
```python mod = int(1e9+7) inf = int(1e10) def solve(): n,m = map(int,input().split()) adj = [[]for i in range(n+5)] visited = [False for i in range(n+5)] def dfs(s,par,ans): visited[s] = True ans.append(s) for i in adj[s]: if i!=par and not visited[i]: dfs(i,s,ans) for i in range(m): a,b = map(in...
0
478
A
Initial Bet
PROGRAMMING
1,100
[ "implementation" ]
null
null
There are five people playing a game called "Generosity". Each person gives some non-zero number of coins *b* as an initial bet. After all players make their bets of *b* coins, the following operation is repeated for several times: a coin is passed from one player to some other player. Your task is to write a program ...
The input consists of a single line containing five integers *c*1,<=*c*2,<=*c*3,<=*c*4 and *c*5 — the number of coins that the first, second, third, fourth and fifth players respectively have at the end of the game (0<=≤<=*c*1,<=*c*2,<=*c*3,<=*c*4,<=*c*5<=≤<=100).
Print the only line containing a single positive integer *b* — the number of coins in the initial bet of each player. If there is no such value of *b*, then print the only value "-1" (quotes for clarity).
[ "2 5 4 0 4\n", "4 5 9 2 1\n" ]
[ "3\n", "-1\n" ]
In the first sample the following sequence of operations is possible: 1. One coin is passed from the fourth player to the second player; 1. One coin is passed from the fourth player to the fifth player; 1. One coin is passed from the first player to the third player; 1. One coin is passed from the fourth player to...
500
[ { "input": "2 5 4 0 4", "output": "3" }, { "input": "4 5 9 2 1", "output": "-1" }, { "input": "0 0 0 0 0", "output": "-1" }, { "input": "1 2 1 2 3", "output": "-1" }, { "input": "100 0 0 0 0", "output": "20" }, { "input": "2 3 4 5 6", "output": "4"...
1,693,734,030
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
0
c1, c2, c3, c4, c5 = map(int, input().split()) c = c1+c2+c3+c4+c5 if c % 5 != 0: print("-1") else: print(c // 5)
Title: Initial Bet Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are five people playing a game called "Generosity". Each person gives some non-zero number of coins *b* as an initial bet. After all players make their bets of *b* coins, the following operation is repeated for severa...
```python c1, c2, c3, c4, c5 = map(int, input().split()) c = c1+c2+c3+c4+c5 if c % 5 != 0: print("-1") else: print(c // 5) ```
0
519
B
A and B and Compilation Errors
PROGRAMMING
1,100
[ "data structures", "implementation", "sortings" ]
null
null
A and B are preparing themselves for programming contests. B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code. Initially, the compiler displayed *n* compilation errors, each of them is represented as a positive integer. After some effort, B managed to fix...
The first line of the input contains integer *n* (3<=≤<=*n*<=≤<=105) — the initial number of compilation errors. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the errors the compiler displayed for the first time. The third line contains *n*<=-<=1 space-sepa...
Print two numbers on a single line: the numbers of the compilation errors that disappeared after B made the first and the second correction, respectively.
[ "5\n1 5 8 123 7\n123 7 5 1\n5 1 7\n", "6\n1 4 3 3 5 7\n3 7 5 4 3\n4 3 7 5\n" ]
[ "8\n123\n", "1\n3\n" ]
In the first test sample B first corrects the error number 8, then the error number 123. In the second test sample B first corrects the error number 1, then the error number 3. Note that if there are multiple errors with the same number, B can correct only one of them in one step.
1,000
[ { "input": "5\n1 5 8 123 7\n123 7 5 1\n5 1 7", "output": "8\n123" }, { "input": "6\n1 4 3 3 5 7\n3 7 5 4 3\n4 3 7 5", "output": "1\n3" }, { "input": "3\n1 2 3\n3 2\n2", "output": "1\n3" }, { "input": "10\n460626451 802090732 277246428 661369649 388684428 784303821 376287098 6...
1,677,935,321
2,147,483,647
PyPy 3
OK
TESTS
33
452
20,480,000
from collections import Counter arr = [] arr2 = [] arr3 = [] n = int(input()) arr = list(map(int,input().split())) arr2 = list(map(int,input().split())) arr3 = list(map(int,input().split())) lst1 = list((Counter(arr) - Counter(arr2)).elements()) diff = [] diff.append(lst1) #print(lst1) lst2 = list((Counter(...
Title: A and B and Compilation Errors Time Limit: None seconds Memory Limit: None megabytes Problem Description: A and B are preparing themselves for programming contests. B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code. Initially, the compiler disp...
```python from collections import Counter arr = [] arr2 = [] arr3 = [] n = int(input()) arr = list(map(int,input().split())) arr2 = list(map(int,input().split())) arr3 = list(map(int,input().split())) lst1 = list((Counter(arr) - Counter(arr2)).elements()) diff = [] diff.append(lst1) #print(lst1) lst2 = list...
3
320
A
Magic Numbers
PROGRAMMING
900
[ "brute force", "greedy" ]
null
null
A magic number is a number formed by concatenation of numbers 1, 14 and 144. We can use each of these numbers any number of times. Therefore 14144, 141414 and 1411 are magic numbers but 1444, 514 and 414 are not. You're given a number. Determine if it is a magic number or not.
The first line of input contains an integer *n*, (1<=≤<=*n*<=≤<=109). This number doesn't contain leading zeros.
Print "YES" if *n* is a magic number or print "NO" if it's not.
[ "114114\n", "1111\n", "441231\n" ]
[ "YES\n", "YES\n", "NO\n" ]
none
500
[ { "input": "114114", "output": "YES" }, { "input": "1111", "output": "YES" }, { "input": "441231", "output": "NO" }, { "input": "1", "output": "YES" }, { "input": "14", "output": "YES" }, { "input": "114", "output": "YES" }, { "input": "9",...
1,687,461,010
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
62
0
number = input() check = True for i in range(len(number)): if number[i]=='1': pass elif number[i]=='4': if number[i-1]=='1': pass elif number[i-1]=='4' and number[i-2]=='1': pass else: check = False break else: ...
Title: Magic Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: A magic number is a number formed by concatenation of numbers 1, 14 and 144. We can use each of these numbers any number of times. Therefore 14144, 141414 and 1411 are magic numbers but 1444, 514 and 414 are not. You're ...
```python number = input() check = True for i in range(len(number)): if number[i]=='1': pass elif number[i]=='4': if number[i-1]=='1': pass elif number[i-1]=='4' and number[i-2]=='1': pass else: check = False break ...
0
569
A
Music
PROGRAMMING
1,500
[ "implementation", "math" ]
null
null
Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk. Unfortunately, internet is not that fast in the city of Ekaterinozavodsk and the song takes a lot of time to download. But Lesha is quite ...
The single line contains three integers *T*,<=*S*,<=*q* (2<=≤<=*q*<=≤<=104, 1<=≤<=*S*<=&lt;<=*T*<=≤<=105).
Print a single integer — the number of times the song will be restarted.
[ "5 2 2\n", "5 4 7\n", "6 2 3\n" ]
[ "2\n", "1\n", "1\n" ]
In the first test, the song is played twice faster than it is downloaded, which means that during four first seconds Lesha reaches the moment that has not been downloaded, and starts the song again. After another two seconds, the song is downloaded completely, and thus, Lesha starts the song twice. In the second test,...
500
[ { "input": "5 2 2", "output": "2" }, { "input": "5 4 7", "output": "1" }, { "input": "6 2 3", "output": "1" }, { "input": "2 1 2", "output": "1" }, { "input": "2 1 3", "output": "1" }, { "input": "2 1 10000", "output": "1" }, { "input": "12...
1,620,766,831
2,147,483,647
PyPy 3
OK
TESTS
33
93
20,172,800
t, s, q = list(map(int, input().split())) c = 0 while s < t: s *= q c += 1 print(c)
Title: Music Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk. Unfortunately, internet is not that fast in the...
```python t, s, q = list(map(int, input().split())) c = 0 while s < t: s *= q c += 1 print(c) ```
3
779
C
Dishonest Sellers
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "sortings" ]
null
null
Igor found out discounts in a shop and decided to buy *n* items. Discounts at the store will last for a week and Igor knows about each item that its price now is *a**i*, and after a week of discounts its price will be *b**i*. Not all of sellers are honest, so now some products could be more expensive than after a week...
In the first line there are two positive integer numbers *n* and *k* (1<=≤<=*n*<=≤<=2·105, 0<=≤<=*k*<=≤<=*n*) — total number of items to buy and minimal number of items Igor wants to by right now. The second line contains sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=104) — prices of items during d...
Print the minimal amount of money Igor will spend to buy all *n* items. Remember, he should buy at least *k* items right now.
[ "3 1\n5 4 6\n3 1 5\n", "5 3\n3 4 7 10 3\n4 5 5 12 5\n" ]
[ "10\n", "25\n" ]
In the first example Igor should buy item 3 paying 6. But items 1 and 2 he should buy after a week. He will pay 3 and 1 for them. So in total he will pay 6 + 3 + 1 = 10. In the second example Igor should buy right now items 1, 2, 4 and 5, paying for them 3, 4, 10 and 3, respectively. Item 3 he should buy after a week ...
1,000
[ { "input": "3 1\n5 4 6\n3 1 5", "output": "10" }, { "input": "5 3\n3 4 7 10 3\n4 5 5 12 5", "output": "25" }, { "input": "1 0\n9\n8", "output": "8" }, { "input": "2 0\n4 10\n1 2", "output": "3" }, { "input": "4 2\n19 5 17 13\n3 18 8 10", "output": "29" }, ...
1,623,240,844
2,147,483,647
Python 3
OK
TESTS
67
997
27,238,400
int_inp = lambda: int(input()) #integer input strng = lambda: input().strip() #string input strl = lambda: list(input().strip())#list of strings as input mul = lambda: map(int,input().split())#multiple integers as inpnut mulf = lambda: map(float,input().split())#multiple floats as ipnut seq ...
Title: Dishonest Sellers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Igor found out discounts in a shop and decided to buy *n* items. Discounts at the store will last for a week and Igor knows about each item that its price now is *a**i*, and after a week of discounts its price will be...
```python int_inp = lambda: int(input()) #integer input strng = lambda: input().strip() #string input strl = lambda: list(input().strip())#list of strings as input mul = lambda: map(int,input().split())#multiple integers as inpnut mulf = lambda: map(float,input().split())#multiple floats as ipnut ...
3
709
A
Juicer
PROGRAMMING
900
[ "implementation" ]
null
null
Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To be put in the juicer the orange must have size not exceeding *b*, so if Kolya sees an orange ...
The first line of the input contains three integers *n*, *b* and *d* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*b*<=≤<=*d*<=≤<=1<=000<=000) — the number of oranges, the maximum size of the orange that fits in the juicer and the value *d*, which determines the condition when the waste section should be emptied. The second line co...
Print one integer — the number of times Kolya will have to empty the waste section.
[ "2 7 10\n5 6\n", "1 5 10\n7\n", "3 10 10\n5 7 7\n", "1 1 1\n1\n" ]
[ "1\n", "0\n", "1\n", "0\n" ]
In the first sample, Kolya will squeeze the juice from two oranges and empty the waste section afterwards. In the second sample, the orange won't fit in the juicer so Kolya will have no juice at all.
500
[ { "input": "2 7 10\n5 6", "output": "1" }, { "input": "1 5 10\n7", "output": "0" }, { "input": "3 10 10\n5 7 7", "output": "1" }, { "input": "1 1 1\n1", "output": "0" }, { "input": "2 951637 951638\n44069 951637", "output": "1" }, { "input": "50 100 12...
1,687,840,031
2,147,483,647
Python 3
OK
TESTS
58
78
11,059,200
def main(): constraints=input() listOfConstraints=constraints.split() numberOranges=int(listOfConstraints[0]) maxSize=int(listOfConstraints[1]) capacity=int(listOfConstraints[2]) oranges=input() listOfOranges=oranges.split() flow=0 counter=0 for i in range (numberOrange...
Title: Juicer Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To b...
```python def main(): constraints=input() listOfConstraints=constraints.split() numberOranges=int(listOfConstraints[0]) maxSize=int(listOfConstraints[1]) capacity=int(listOfConstraints[2]) oranges=input() listOfOranges=oranges.split() flow=0 counter=0 for i in range (nu...
3
847
M
Weather Tomorrow
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Vasya came up with his own weather forecasting method. He knows the information about the average air temperature for each of the last *n* days. Assume that the average air temperature for each day is integral. Vasya believes that if the average temperatures over the last *n* days form an arithmetic progression, where...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=100) — the number of days for which the average air temperature is known. The second line contains a sequence of integers *t*1,<=*t*2,<=...,<=*t**n* (<=-<=1000<=≤<=*t**i*<=≤<=1000) — where *t**i* is the average temperature in the *i*-th day.
Print the average air temperature in the (*n*<=+<=1)-th day, which Vasya predicts according to his method. Note that the absolute value of the predicted temperature can exceed 1000.
[ "5\n10 5 0 -5 -10\n", "4\n1 1 1 1\n", "3\n5 1 -5\n", "2\n900 1000\n" ]
[ "-15\n", "1\n", "-5\n", "1100\n" ]
In the first example the sequence of the average temperatures is an arithmetic progression where the first term is 10 and each following terms decreases by 5. So the predicted average temperature for the sixth day is  - 10 - 5 =  - 15. In the second example the sequence of the average temperatures is an arithmetic pro...
0
[ { "input": "5\n10 5 0 -5 -10", "output": "-15" }, { "input": "4\n1 1 1 1", "output": "1" }, { "input": "3\n5 1 -5", "output": "-5" }, { "input": "2\n900 1000", "output": "1100" }, { "input": "2\n1 2", "output": "3" }, { "input": "3\n2 5 8", "output...
1,677,949,163
2,147,483,647
PyPy 3-64
OK
TESTS
26
77
0
n=int(input()) l=[*map(int,input().split())] s = set() for i in range(n-1): s.add(l[i+1]-l[i]) print(l[-1] + (0 if len(s) > 1 else s.pop()))
Title: Weather Tomorrow Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya came up with his own weather forecasting method. He knows the information about the average air temperature for each of the last *n* days. Assume that the average air temperature for each day is integral. Vasya ...
```python n=int(input()) l=[*map(int,input().split())] s = set() for i in range(n-1): s.add(l[i+1]-l[i]) print(l[-1] + (0 if len(s) > 1 else s.pop())) ```
3
677
A
Vanya and Fence
PROGRAMMING
800
[ "implementation" ]
null
null
Vanya and his friends are walking along the fence of height *h* and they do not want the guard to notice them. In order to achieve this the height of each of the friends should not exceed *h*. If the height of some person is greater than *h* he can bend down and then he surely won't be noticed by the guard. The height ...
The first line of the input contains two integers *n* and *h* (1<=≤<=*n*<=≤<=1000, 1<=≤<=*h*<=≤<=1000) — the number of friends and the height of the fence, respectively. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=2*h*), the *i*-th of them is equal to the height of the *i*-th person.
Print a single integer — the minimum possible valid width of the road.
[ "3 7\n4 5 14\n", "6 1\n1 1 1 1 1 1\n", "6 5\n7 6 8 9 10 5\n" ]
[ "4\n", "6\n", "11\n" ]
In the first sample, only person number 3 must bend down, so the required width is equal to 1 + 1 + 2 = 4. In the second sample, all friends are short enough and no one has to bend, so the width 1 + 1 + 1 + 1 + 1 + 1 = 6 is enough. In the third sample, all the persons have to bend, except the last one. The required m...
500
[ { "input": "3 7\n4 5 14", "output": "4" }, { "input": "6 1\n1 1 1 1 1 1", "output": "6" }, { "input": "6 5\n7 6 8 9 10 5", "output": "11" }, { "input": "10 420\n214 614 297 675 82 740 174 23 255 15", "output": "13" }, { "input": "10 561\n657 23 1096 487 785 66 481...
1,693,636,024
2,147,483,647
Python 3
OK
TESTS
29
46
0
# import sys # sys.stdin = open("/Users/swasti/Desktop/coding/cp/codeforces/input.txt", "r") # sys.stdout = open("/Users/swasti/Desktop/coding/cp/codeforces/output.txt", "w") n , h = map(int,input().split()) h1 = 0 h2 = 0 h_list = list(map(int,input().split())) for height in (h_list): if height <= h: h1 +=...
Title: Vanya and Fence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya and his friends are walking along the fence of height *h* and they do not want the guard to notice them. In order to achieve this the height of each of the friends should not exceed *h*. If the height of some pers...
```python # import sys # sys.stdin = open("/Users/swasti/Desktop/coding/cp/codeforces/input.txt", "r") # sys.stdout = open("/Users/swasti/Desktop/coding/cp/codeforces/output.txt", "w") n , h = map(int,input().split()) h1 = 0 h2 = 0 h_list = list(map(int,input().split())) for height in (h_list): if height <= h: ...
3
746
A
Compote
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Nikolay has *a* lemons, *b* apples and *c* pears. He decided to cook a compote. According to the recipe the fruits should be in the ratio 1:<=2:<=4. It means that for each lemon in the compote should be exactly 2 apples and exactly 4 pears. You can't crumble up, break up or cut these fruits into pieces. These fruits — ...
The first line contains the positive integer *a* (1<=≤<=*a*<=≤<=1000) — the number of lemons Nikolay has. The second line contains the positive integer *b* (1<=≤<=*b*<=≤<=1000) — the number of apples Nikolay has. The third line contains the positive integer *c* (1<=≤<=*c*<=≤<=1000) — the number of pears Nikolay has...
Print the maximum total number of lemons, apples and pears from which Nikolay can cook the compote.
[ "2\n5\n7\n", "4\n7\n13\n", "2\n3\n2\n" ]
[ "7\n", "21\n", "0\n" ]
In the first example Nikolay can use 1 lemon, 2 apples and 4 pears, so the answer is 1 + 2 + 4 = 7. In the second example Nikolay can use 3 lemons, 6 apples and 12 pears, so the answer is 3 + 6 + 12 = 21. In the third example Nikolay don't have enough pears to cook any compote, so the answer is 0.
500
[ { "input": "2\n5\n7", "output": "7" }, { "input": "4\n7\n13", "output": "21" }, { "input": "2\n3\n2", "output": "0" }, { "input": "1\n1\n1", "output": "0" }, { "input": "1\n2\n4", "output": "7" }, { "input": "1000\n1000\n1000", "output": "1750" }...
1,618,077,210
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
77
0
a=int(input()) b=int(input()) c=int(input()) d=2*a e=4*a if d<=b and e<=c: print(a+d+e) else: g=a-1 f=2*g h=4*g if f<=b and h<=c: print(g+f+h) else: print(0)
Title: Compote Time Limit: None seconds Memory Limit: None megabytes Problem Description: Nikolay has *a* lemons, *b* apples and *c* pears. He decided to cook a compote. According to the recipe the fruits should be in the ratio 1:<=2:<=4. It means that for each lemon in the compote should be exactly 2 apples and exa...
```python a=int(input()) b=int(input()) c=int(input()) d=2*a e=4*a if d<=b and e<=c: print(a+d+e) else: g=a-1 f=2*g h=4*g if f<=b and h<=c: print(g+f+h) else: print(0) ```
0
768
A
Oath of the Night's Watch
PROGRAMMING
900
[ "constructive algorithms", "sortings" ]
null
null
"Night gathers, and now my watch begins. It shall not end until my death. I shall take no wife, hold no lands, father no children. I shall wear no crowns and win no glory. I shall live and die at my post. I am the sword in the darkness. I am the watcher on the walls. I am the shield that guards the realms of men. I ple...
First line consists of a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of stewards with Jon Snow. Second line consists of *n* space separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109) representing the values assigned to the stewards.
Output a single integer representing the number of stewards which Jon will feed.
[ "2\n1 5\n", "3\n1 2 5\n" ]
[ "0", "1" ]
In the first sample, Jon Snow cannot support steward with strength 1 because there is no steward with strength less than 1 and he cannot support steward with strength 5 because there is no steward with strength greater than 5. In the second sample, Jon Snow can support steward with strength 2 because there are steward...
500
[ { "input": "2\n1 5", "output": "0" }, { "input": "3\n1 2 5", "output": "1" }, { "input": "4\n1 2 3 4", "output": "2" }, { "input": "8\n7 8 9 4 5 6 1 2", "output": "6" }, { "input": "1\n1", "output": "0" }, { "input": "1\n100", "output": "0" }, ...
1,681,547,537
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
109
10,035,200
num = int(input()) params = input().split() if num < 3: print(0) else: params.sort() params = list(dict.fromkeys(params)) print(len(params)-2)
Title: Oath of the Night's Watch Time Limit: None seconds Memory Limit: None megabytes Problem Description: "Night gathers, and now my watch begins. It shall not end until my death. I shall take no wife, hold no lands, father no children. I shall wear no crowns and win no glory. I shall live and die at my post. I am...
```python num = int(input()) params = input().split() if num < 3: print(0) else: params.sort() params = list(dict.fromkeys(params)) print(len(params)-2) ```
0
75
B
Facetook Priority Wall
PROGRAMMING
1,500
[ "expression parsing", "implementation", "strings" ]
B. Facetook Priority Wall
2
256
Facetook is a well known social network website, and it will launch a new feature called Facetook Priority Wall. This feature will sort all posts from your friends according to the priority factor (it will be described). This priority factor will be affected by three types of actions: - 1. "*X* posted on *Y*'s wall...
The first line contains your name. The second line contains an integer *n*, which is the number of actions (1<=≤<=*n*<=≤<=100). Then *n* lines follow, it is guaranteed that each one contains exactly 1 action in the format given above. There is exactly one space between each two words in a line, and there are no extra s...
Print *m* lines, where *m* is the number of distinct names in the input (excluding yourself). Each line should contain just 1 name. The names should be sorted according to the priority factor with you in the descending order (the highest priority factor should come first). If two or more names have the same priority fa...
[ "ahmed\n3\nahmed posted on fatma's wall\nfatma commented on ahmed's post\nmona likes ahmed's post\n", "aba\n1\nlikes likes posted's post\n" ]
[ "fatma\nmona\n", "likes\nposted\n" ]
none
1,000
[ { "input": "ahmed\n3\nahmed posted on fatma's wall\nfatma commented on ahmed's post\nmona likes ahmed's post", "output": "fatma\nmona" }, { "input": "aba\n1\nlikes likes posted's post", "output": "likes\nposted" }, { "input": "nu\n5\ng commented on pwyndmh's post\nqv posted on g's wall\n...
1,647,410,040
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
3
92
614,400
from collections import defaultdict d = defaultdict(int) name = input() t = int(input()) p={'posted': 15, 'likes': 5, 'commented': 10} for _ in range(t): act = input().split() sub = act[0] obj=act[-2][:-2] sc = p[act[1]] if sub == name: d[obj] += sc elif obj== name: ...
Title: Facetook Priority Wall Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Facetook is a well known social network website, and it will launch a new feature called Facetook Priority Wall. This feature will sort all posts from your friends according to the priority factor (it will be describ...
```python from collections import defaultdict d = defaultdict(int) name = input() t = int(input()) p={'posted': 15, 'likes': 5, 'commented': 10} for _ in range(t): act = input().split() sub = act[0] obj=act[-2][:-2] sc = p[act[1]] if sub == name: d[obj] += sc elif obj=...
0
899
C
Dividing the numbers
PROGRAMMING
1,300
[ "constructive algorithms", "graphs", "math" ]
null
null
Petya has *n* integers: 1,<=2,<=3,<=...,<=*n*. He wants to split these integers in two non-empty groups in such a way that the absolute difference of sums of integers in each group is as small as possible. Help Petya to split the integers. Each of *n* integers should be exactly in one group.
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=60<=000) — the number of integers Petya has.
Print the smallest possible absolute difference in the first line. In the second line print the size of the first group, followed by the integers in that group. You can print these integers in arbitrary order. If there are multiple answers, print any of them.
[ "4\n", "2\n" ]
[ "0\n2 1 4 \n", "1\n1 1 \n" ]
In the first example you have to put integers 1 and 4 in the first group, and 2 and 3 in the second. This way the sum in each group is 5, and the absolute difference is 0. In the second example there are only two integers, and since both groups should be non-empty, you have to put one integer in the first group and on...
1,500
[ { "input": "4", "output": "0\n2 1 4 " }, { "input": "2", "output": "1\n1 1 " }, { "input": "3", "output": "0\n1\n3 " }, { "input": "5", "output": "1\n3\n1 2 5 " }, { "input": "59998", "output": "1\n29999 1 4 5 8 9 12 13 16 17 20 21 24 25 28 29 32 33 36 37 40 4...
1,552,930,746
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
124
512,000
n = int(input()) if(n < 4): if(n == 2): print(1) print(1, 1) elif(n == 3): print(0) print(1, 3) elif(n%4 == 0): print(0) k = int(n/4) print(k + 1, end = ' ') for i in range(k): print(n - i, i + 1) elif(n%4 == 1): print(1) k = int(n/4) print(k + 1, end = ' ') for i in range(k): ...
Title: Dividing the numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya has *n* integers: 1,<=2,<=3,<=...,<=*n*. He wants to split these integers in two non-empty groups in such a way that the absolute difference of sums of integers in each group is as small as possible. Help P...
```python n = int(input()) if(n < 4): if(n == 2): print(1) print(1, 1) elif(n == 3): print(0) print(1, 3) elif(n%4 == 0): print(0) k = int(n/4) print(k + 1, end = ' ') for i in range(k): print(n - i, i + 1) elif(n%4 == 1): print(1) k = int(n/4) print(k + 1, end = ' ') for i in r...
0
471
D
MUH and Cube Walls
PROGRAMMING
1,800
[ "string suffix structures", "strings" ]
null
null
Polar bears Menshykov and Uslada from the zoo of St. Petersburg and elephant Horace from the zoo of Kiev got hold of lots of wooden cubes somewhere. They started making cube towers by placing the cubes one on top of the other. They defined multiple towers standing in a line as a wall. A wall can consist of towers of di...
The first line contains two integers *n* and *w* (1<=≤<=*n*,<=*w*<=≤<=2·105) — the number of towers in the bears' and the elephant's walls correspondingly. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=109) — the heights of the towers in the bears' wall. The third line contains *w* integers *b**i* (1<=...
Print the number of segments in the bears' wall where Horace can "see an elephant".
[ "13 5\n2 4 5 5 4 3 2 2 2 3 3 2 1\n3 4 4 3 2\n" ]
[ "2" ]
The picture to the left shows Horace's wall from the sample, the picture to the right shows the bears' wall. The segments where Horace can "see an elephant" are in gray.
2,000
[ { "input": "13 5\n2 4 5 5 4 3 2 2 2 3 3 2 1\n3 4 4 3 2", "output": "2" }, { "input": "5 1\n8 71 1 24 2\n31", "output": "5" }, { "input": "6 3\n2 2 2 2 2 2\n5 5 5", "output": "4" }, { "input": "1 1\n576560149\n691846236", "output": "1" }, { "input": "10 5\n5 10 8 1...
1,609,028,868
2,147,483,647
PyPy 3
OK
TESTS
30
686
34,406,400
n, k = map(int, input().split()) a = tuple(map(int, input().split())) b = tuple(map(int, input().split())) if k == 1: print(n) elif k > n: print(0) else: p = int(1e16 + 7) q = int(499) h1 = 0 hs = [0] * (n + 1) pw = [1] * (n + 1) z = 1 for i in range(1, n): hs[i] = (hs[i - ...
Title: MUH and Cube Walls Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polar bears Menshykov and Uslada from the zoo of St. Petersburg and elephant Horace from the zoo of Kiev got hold of lots of wooden cubes somewhere. They started making cube towers by placing the cubes one on top of ...
```python n, k = map(int, input().split()) a = tuple(map(int, input().split())) b = tuple(map(int, input().split())) if k == 1: print(n) elif k > n: print(0) else: p = int(1e16 + 7) q = int(499) h1 = 0 hs = [0] * (n + 1) pw = [1] * (n + 1) z = 1 for i in range(1, n): hs[i] ...
3
609
A
USB Flash Drives
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
Sean is trying to save a large file to a USB flash drive. He has *n* USB flash drives with capacities equal to *a*1,<=*a*2,<=...,<=*a**n* megabytes. The file size is equal to *m* megabytes. Find the minimum number of USB flash drives needed to write Sean's file, if he can split the file between drives.
The first line contains positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of USB flash drives. The second line contains positive integer *m* (1<=≤<=*m*<=≤<=105) — the size of Sean's file. Each of the next *n* lines contains positive integer *a**i* (1<=≤<=*a**i*<=≤<=1000) — the sizes of USB flash drives in megabyt...
Print the minimum number of USB flash drives to write Sean's file, if he can split the file between drives.
[ "3\n5\n2\n1\n3\n", "3\n6\n2\n3\n2\n", "2\n5\n5\n10\n" ]
[ "2\n", "3\n", "1\n" ]
In the first example Sean needs only two USB flash drives — the first and the third. In the second example Sean needs all three USB flash drives. In the third example Sean needs only one USB flash drive and he can use any available USB flash drive — the first or the second.
0
[ { "input": "3\n5\n2\n1\n3", "output": "2" }, { "input": "3\n6\n2\n3\n2", "output": "3" }, { "input": "2\n5\n5\n10", "output": "1" }, { "input": "5\n16\n8\n1\n3\n4\n9", "output": "2" }, { "input": "10\n121\n10\n37\n74\n56\n42\n39\n6\n68\n8\n100", "output": "2" ...
1,659,550,810
2,147,483,647
Python 3
OK
TESTS
34
46
0
n = int(input()) m = int(input()) usbs = [] for i in range(n): usbs.append(int(input())) usbs.sort(reverse = True) cont = 0 while m > 0: m -= usbs[cont] cont += 1 print(cont)
Title: USB Flash Drives Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sean is trying to save a large file to a USB flash drive. He has *n* USB flash drives with capacities equal to *a*1,<=*a*2,<=...,<=*a**n* megabytes. The file size is equal to *m* megabytes. Find the minimum number of...
```python n = int(input()) m = int(input()) usbs = [] for i in range(n): usbs.append(int(input())) usbs.sort(reverse = True) cont = 0 while m > 0: m -= usbs[cont] cont += 1 print(cont) ```
3
152
A
Marks
PROGRAMMING
900
[ "implementation" ]
null
null
Vasya, or Mr. Vasily Petrov is a dean of a department in a local university. After the winter exams he got his hands on a group's gradebook. Overall the group has *n* students. They received marks for *m* subjects. Each student got a mark from 1 to 9 (inclusive) for each subject. Let's consider a student the best at ...
The first input line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of students and the number of subjects, correspondingly. Next *n* lines each containing *m* characters describe the gradebook. Each character in the gradebook is a number from 1 to 9. Note that the marks in a rows are not sepa...
Print the single number — the number of successful students in the given group.
[ "3 3\n223\n232\n112\n", "3 5\n91728\n11828\n11111\n" ]
[ "2\n", "3\n" ]
In the first sample test the student number 1 is the best at subjects 1 and 3, student 2 is the best at subjects 1 and 2, but student 3 isn't the best at any subject. In the second sample test each student is the best at at least one subject.
500
[ { "input": "3 3\n223\n232\n112", "output": "2" }, { "input": "3 5\n91728\n11828\n11111", "output": "3" }, { "input": "2 2\n48\n27", "output": "1" }, { "input": "2 1\n4\n6", "output": "1" }, { "input": "1 2\n57", "output": "1" }, { "input": "1 1\n5", ...
1,623,491,355
2,147,483,647
Python 3
OK
TESTS
44
62
0
ans = [] best = [] cnt = 0 n, m = map(int, input().split()) for i in range(n): if i == 0: y = input() x = [int(f) for f in y] best = x[:] ans.append(x) else: y = input() x = [int(f) for f in y] for j in range(m): if x[j] >= best[j...
Title: Marks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya, or Mr. Vasily Petrov is a dean of a department in a local university. After the winter exams he got his hands on a group's gradebook. Overall the group has *n* students. They received marks for *m* subjects. Each student ...
```python ans = [] best = [] cnt = 0 n, m = map(int, input().split()) for i in range(n): if i == 0: y = input() x = [int(f) for f in y] best = x[:] ans.append(x) else: y = input() x = [int(f) for f in y] for j in range(m): if x[j]...
3
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,600,178,728
2,128
PyPy 3
OK
TESTS
162
187
9,625,600
import sys from itertools import compress s = input() n = len(s) mod = [0]*n for i, x in enumerate(map(int, s)): mod[i] = x % 3 total_mod = sum(mod) % 3 def remove_zeros(a): for i in range(n): if not a[i]: continue if s[i] == '0': a[i] = 0 el...
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 import sys from itertools import compress s = input() n = len(s) mod = [0]*n for i, x in enumerate(map(int, s)): mod[i] = x % 3 total_mod = sum(mod) % 3 def remove_zeros(a): for i in range(n): if not a[i]: continue if s[i] == '0': a[i] = 0 ...
3
580
C
Kefa and Park
PROGRAMMING
1,500
[ "dfs and similar", "graphs", "trees" ]
null
null
Kefa decided to celebrate his first big salary by going to the restaurant. He lives by an unusual park. The park is a rooted tree consisting of *n* vertices with the root at vertex 1. Vertex 1 also contains Kefa's house. Unfortunaely for our hero, the park also contains cats. Kefa has already found out what are the v...
The first line contains two integers, *n* and *m* (2<=≤<=*n*<=≤<=105, 1<=≤<=*m*<=≤<=*n*) — the number of vertices of the tree and the maximum number of consecutive vertices with cats that is still ok for Kefa. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n*, where each *a**i* either equals to 0 (then ...
A single integer — the number of distinct leaves of a tree the path to which from Kefa's home contains at most *m* consecutive vertices with cats.
[ "4 1\n1 1 0 0\n1 2\n1 3\n1 4\n", "7 1\n1 0 1 1 0 0 0\n1 2\n1 3\n2 4\n2 5\n3 6\n3 7\n" ]
[ "2\n", "2\n" ]
Let us remind you that a tree is a connected graph on *n* vertices and *n* - 1 edge. A rooted tree is a tree with a special vertex called root. In a rooted tree among any two vertices connected by an edge, one vertex is a parent (the one closer to the root), and the other one is a child. A vertex is called a leaf, if i...
1,500
[ { "input": "4 1\n1 1 0 0\n1 2\n1 3\n1 4", "output": "2" }, { "input": "7 1\n1 0 1 1 0 0 0\n1 2\n1 3\n2 4\n2 5\n3 6\n3 7", "output": "2" }, { "input": "3 2\n1 1 1\n1 2\n2 3", "output": "0" }, { "input": "5 2\n1 1 0 1 1\n1 2\n2 3\n3 4\n4 5", "output": "1" }, { "inpu...
1,685,448,555
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
34
326
25,600,000
from sys import stdin def solve(): def dfs(u, p, cur, mx): nonlocal res if u != 1 and len(graph[u]) == 1 and mx <= m: res += 1 for v in graph[u]: if v != p: cur_new = (cur + bad[v]) * bad[v] dfs(v, u, cur_new, max(mx, cur...
Title: Kefa and Park Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kefa decided to celebrate his first big salary by going to the restaurant. He lives by an unusual park. The park is a rooted tree consisting of *n* vertices with the root at vertex 1. Vertex 1 also contains Kefa's house...
```python from sys import stdin def solve(): def dfs(u, p, cur, mx): nonlocal res if u != 1 and len(graph[u]) == 1 and mx <= m: res += 1 for v in graph[u]: if v != p: cur_new = (cur + bad[v]) * bad[v] dfs(v, u, cur_new, m...
-1
899
A
Splitting in Teams
PROGRAMMING
800
[ "constructive algorithms", "greedy", "math" ]
null
null
There were *n* groups of students which came to write a training contest. A group is either one person who can write the contest with anyone else, or two people who want to write the contest in the same team. The coach decided to form teams of exactly three people for this training. Determine the maximum number of tea...
The first line contains single integer *n* (2<=≤<=*n*<=≤<=2·105) — the number of groups. The second line contains a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=2), where *a**i* is the number of people in group *i*.
Print the maximum number of teams of three people the coach can form.
[ "4\n1 1 2 1\n", "2\n2 2\n", "7\n2 2 2 1 1 1 1\n", "3\n1 1 1\n" ]
[ "1\n", "0\n", "3\n", "1\n" ]
In the first example the coach can form one team. For example, he can take students from the first, second and fourth groups. In the second example he can't make a single team. In the third example the coach can form three teams. For example, he can do this in the following way: - The first group (of two people) an...
500
[ { "input": "4\n1 1 2 1", "output": "1" }, { "input": "2\n2 2", "output": "0" }, { "input": "7\n2 2 2 1 1 1 1", "output": "3" }, { "input": "3\n1 1 1", "output": "1" }, { "input": "3\n2 2 2", "output": "0" }, { "input": "3\n1 2 1", "output": "1" }...
1,602,781,650
2,147,483,647
PyPy 3
OK
TESTS
67
155
2,150,400
n=int(input()) s=input() x=s.count('1') y=s.count('2') if x > y: print(y+(x-y)//3) else: print(x)
Title: Splitting in Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: There were *n* groups of students which came to write a training contest. A group is either one person who can write the contest with anyone else, or two people who want to write the contest in the same team. The co...
```python n=int(input()) s=input() x=s.count('1') y=s.count('2') if x > y: print(y+(x-y)//3) else: print(x) ```
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,608,122,582
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
576
4,915,200
a = input() b = input() a_1 = "" l_b = [] makz = 0 conter = 0 for i in range(len(b)): if b[i] != " ": a_1 = a_1 + b[i] else: if int(a_1) > makz: makz = int(a_1) l_b.append(int(a_1)) a_1 = "" if int(a_1) > makz: makz = int(a_1) l_b.append(int(a_1)) lst = [] for i i...
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 a = input() b = input() a_1 = "" l_b = [] makz = 0 conter = 0 for i in range(len(b)): if b[i] != " ": a_1 = a_1 + b[i] else: if int(a_1) > makz: makz = int(a_1) l_b.append(int(a_1)) a_1 = "" if int(a_1) > makz: makz = int(a_1) l_b.append(int(a_1)) lst = ...
0
0
none
none
none
0
[ "none" ]
null
null
You are given an array *a* with *n* distinct integers. Construct an array *b* by permuting *a* such that for every non-empty subset of indices *S*<==<={*x*1,<=*x*2,<=...,<=*x**k*} (1<=≤<=*x**i*<=≤<=*n*, 0<=&lt;<=*k*<=&lt;<=*n*) the sums of elements on that positions in *a* and *b* are different, i. e.
The first line contains one integer *n* (1<=≤<=*n*<=≤<=22) — the size of the array. The second line contains *n* space-separated distinct integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109) — the elements of the array.
If there is no such array *b*, print -1. Otherwise in the only line print *n* space-separated integers *b*1,<=*b*2,<=...,<=*b**n*. Note that *b* must be a permutation of *a*. If there are multiple answers, print any of them.
[ "2\n1 2\n", "4\n1000 100 10 1\n" ]
[ "2 1 \n", "100 1 1000 10\n" ]
An array *x* is a permutation of *y*, if we can shuffle elements of *y* such that it will coincide with *x*. Note that the empty subset and the subset containing all indices are not counted.
0
[ { "input": "2\n1 2", "output": "2 1 " }, { "input": "4\n1000 100 10 1", "output": "100 1 1000 10" }, { "input": "5\n1 3 4 5 2", "output": "5 2 3 4 1 " }, { "input": "1\n10000000", "output": "10000000 " }, { "input": "4\n1 5 8 4", "output": "8 4 5 1 " }, { ...
1,513,059,448
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
5,529,600
n=int(input()) a=list(map(int,input().split())) a.append(a[0]) print(' '.join([str(a[i]) for i in range(1,n+1)]))
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array *a* with *n* distinct integers. Construct an array *b* by permuting *a* such that for every non-empty subset of indices *S*<==<={*x*1,<=*x*2,<=...,<=*x**k*} (1<=≤<=*x**i*<=≤<=*n*, 0<=&lt;<=*k*<=&lt;<=*n*) th...
```python n=int(input()) a=list(map(int,input().split())) a.append(a[0]) print(' '.join([str(a[i]) for i in range(1,n+1)])) ```
0
492
B
Vanya and Lanterns
PROGRAMMING
1,200
[ "binary search", "implementation", "math", "sortings" ]
null
null
Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the point *l*. Then the *i*-th lantern is at the point *a**i*. The lantern lights all points of the street that...
The first line contains two integers *n*, *l* (1<=≤<=*n*<=≤<=1000, 1<=≤<=*l*<=≤<=109) — the number of lanterns and the length of the street respectively. The next line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=*l*). Multiple lanterns can be located at the same point. The lanterns may be located at the ends of th...
Print the minimum light radius *d*, needed to light the whole street. The answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=9.
[ "7 15\n15 5 3 7 9 14 0\n", "2 5\n2 5\n" ]
[ "2.5000000000\n", "2.0000000000\n" ]
Consider the second sample. At *d* = 2 the first lantern will light the segment [0, 4] of the street, and the second lantern will light segment [3, 5]. Thus, the whole street will be lit.
1,000
[ { "input": "7 15\n15 5 3 7 9 14 0", "output": "2.5000000000" }, { "input": "2 5\n2 5", "output": "2.0000000000" }, { "input": "46 615683844\n431749087 271781274 274974690 324606253 480870261 401650581 13285442 478090364 266585394 425024433 588791449 492057200 391293435 563090494 317950 1...
1,689,314,330
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
9
77
2,867,200
#!/usr/bin/env python3 n, l = map(int, input().split()) s = list(map(int, input().split())) s = sorted(s) ll = [] for i in range(len(s)-1): ll += [s[i+1] - s[i]] d = max(max(ll)/2, min(s), l - max(s)) print('{:.10f}'.format(d))
Title: Vanya and Lanterns Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the poi...
```python #!/usr/bin/env python3 n, l = map(int, input().split()) s = list(map(int, input().split())) s = sorted(s) ll = [] for i in range(len(s)-1): ll += [s[i+1] - s[i]] d = max(max(ll)/2, min(s), l - max(s)) print('{:.10f}'.format(d)) ```
-1
978
A
Remove Duplicates
PROGRAMMING
800
[ "implementation" ]
null
null
Petya has an array $a$ consisting of $n$ integers. He wants to remove duplicate (equal) elements. Petya wants to leave only the rightmost entry (occurrence) for each element of the array. The relative order of the remaining unique elements should not be changed.
The first line contains a single integer $n$ ($1 \le n \le 50$) — the number of elements in Petya's array. The following line contains a sequence $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 1\,000$) — the Petya's array.
In the first line print integer $x$ — the number of elements which will be left in Petya's array after he removed the duplicates. In the second line print $x$ integers separated with a space — Petya's array after he removed the duplicates. For each unique element only the rightmost entry should be left.
[ "6\n1 5 5 1 6 1\n", "5\n2 4 2 4 4\n", "5\n6 6 6 6 6\n" ]
[ "3\n5 6 1 \n", "2\n2 4 \n", "1\n6 \n" ]
In the first example you should remove two integers $1$, which are in the positions $1$ and $4$. Also you should remove the integer $5$, which is in the position $2$. In the second example you should remove integer $2$, which is in the position $1$, and two integers $4$, which are in the positions $2$ and $4$. In the...
0
[ { "input": "6\n1 5 5 1 6 1", "output": "3\n5 6 1 " }, { "input": "5\n2 4 2 4 4", "output": "2\n2 4 " }, { "input": "5\n6 6 6 6 6", "output": "1\n6 " }, { "input": "7\n1 2 3 4 2 2 3", "output": "4\n1 4 2 3 " }, { "input": "9\n100 100 100 99 99 99 100 100 100", ...
1,659,449,987
2,147,483,647
Python 3
OK
TESTS
28
46
0
n= int(input()) a = input().split()[::-1] print(len(set(a))) print(*sorted(set(a), key=a.index, reverse=True))
Title: Remove Duplicates Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya has an array $a$ consisting of $n$ integers. He wants to remove duplicate (equal) elements. Petya wants to leave only the rightmost entry (occurrence) for each element of the array. The relative order of the re...
```python n= int(input()) a = input().split()[::-1] print(len(set(a))) print(*sorted(set(a), key=a.index, reverse=True)) ```
3
689
A
Mike and Cellphone
PROGRAMMING
1,400
[ "brute force", "constructive algorithms", "implementation" ]
null
null
While swimming at the beach, Mike has accidentally dropped his cellphone into the water. There was no worry as he bought a cheap replacement phone with an old-fashioned keyboard. The keyboard has only ten digital equal-sized keys, located in the following way: Together with his old phone, he lost all his contacts and ...
The first line of the input contains the only integer *n* (1<=≤<=*n*<=≤<=9) — the number of digits in the phone number that Mike put in. The second line contains the string consisting of *n* digits (characters from '0' to '9') representing the number that Mike put in.
If there is no other phone number with the same finger movements and Mike can be sure he is calling the correct number, print "YES" (without quotes) in the only line. Otherwise print "NO" (without quotes) in the first line.
[ "3\n586\n", "2\n09\n", "9\n123456789\n", "3\n911\n" ]
[ "NO\n", "NO\n", "YES\n", "YES\n" ]
You can find the picture clarifying the first sample case in the statement above.
500
[ { "input": "3\n586", "output": "NO" }, { "input": "2\n09", "output": "NO" }, { "input": "9\n123456789", "output": "YES" }, { "input": "3\n911", "output": "YES" }, { "input": "3\n089", "output": "NO" }, { "input": "3\n159", "output": "YES" }, { ...
1,601,049,060
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
93
0
n = int(input()) s = list(input()) c = 0 for i in s: if i in ['1','2','3']: c+=1 if i in ['1','4','7']: c+=1 if i in ['3','6','9']: c+=1 if i in ['7','0','9']: c+=1 if c>=4: #or '0' in s: print("YES") exit(0) else: print(c) ...
Title: Mike and Cellphone Time Limit: None seconds Memory Limit: None megabytes Problem Description: While swimming at the beach, Mike has accidentally dropped his cellphone into the water. There was no worry as he bought a cheap replacement phone with an old-fashioned keyboard. The keyboard has only ten digital equ...
```python n = int(input()) s = list(input()) c = 0 for i in s: if i in ['1','2','3']: c+=1 if i in ['1','4','7']: c+=1 if i in ['3','6','9']: c+=1 if i in ['7','0','9']: c+=1 if c>=4: #or '0' in s: print("YES") exit(0) else: ...
0
0
none
none
none
0
[ "none" ]
null
null
You are given an array *a*1,<=*a*2,<=...,<=*a**n* consisting of *n* integers, and an integer *k*. You have to split the array into exactly *k* non-empty subsegments. You'll then compute the minimum integer on each subsegment, and take the maximum integer over the *k* obtained minimums. What is the maximum possible inte...
The first line contains two integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=<=105) — the size of the array *a* and the number of subsegments you have to split the array to. The second line contains *n* integers *a*1,<=<=*a*2,<=<=...,<=<=*a**n* (<=-<=109<=<=≤<=<=*a**i*<=≤<=<=109).
Print single integer — the maximum possible integer you can get if you split the array into *k* non-empty subsegments and take maximum of minimums on the subsegments.
[ "5 2\n1 2 3 4 5\n", "5 1\n-4 -5 -3 -2 -1\n" ]
[ "5\n", "-5\n" ]
A subsegment [*l*,  *r*] (*l* ≤ *r*) of array *a* is the sequence *a*<sub class="lower-index">*l*</sub>,  *a*<sub class="lower-index">*l* + 1</sub>,  ...,  *a*<sub class="lower-index">*r*</sub>. Splitting of array *a* of *n* elements into *k* subsegments [*l*<sub class="lower-index">1</sub>, *r*<sub class="lower-index...
0
[ { "input": "5 2\n1 2 3 4 5", "output": "5" }, { "input": "5 1\n-4 -5 -3 -2 -1", "output": "-5" }, { "input": "10 2\n10 9 1 -9 -7 -9 3 8 -10 5", "output": "10" }, { "input": "10 4\n-8 -1 2 -3 9 -8 4 -3 5 9", "output": "9" }, { "input": "1 1\n504262064", "output...
1,508,056,028
1,328
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
1,000
8,601,600
n,k=map(int,input().split()) a=list(map(int,input().split())) if k==1: print(min(a)) elif k==2: mai=-1 for i in range(1,n): t=max(min(a[:i]),min(a[i:])) if t>mai: mai=t print(mai) else: print(max(a))
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array *a*1,<=*a*2,<=...,<=*a**n* consisting of *n* integers, and an integer *k*. You have to split the array into exactly *k* non-empty subsegments. You'll then compute the minimum integer on each subsegment, and ...
```python n,k=map(int,input().split()) a=list(map(int,input().split())) if k==1: print(min(a)) elif k==2: mai=-1 for i in range(1,n): t=max(min(a[:i]),min(a[i:])) if t>mai: mai=t print(mai) else: print(max(a)) ```
0
368
B
Sereja and Suffixes
PROGRAMMING
1,100
[ "data structures", "dp" ]
null
null
Sereja has an array *a*, consisting of *n* integers *a*1, *a*2, ..., *a**n*. The boy cannot sit and do nothing, he decided to study an array. Sereja took a piece of paper and wrote out *m* integers *l*1,<=*l*2,<=...,<=*l**m* (1<=≤<=*l**i*<=≤<=*n*). For each number *l**i* he wants to know how many distinct numbers are s...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=105). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105) — the array elements. Next *m* lines contain integers *l*1,<=*l*2,<=...,<=*l**m*. The *i*-th line contains integer *l**i* (1<=≤<=*l**i*<=≤<=*n*).
Print *m* lines — on the *i*-th line print the answer to the number *l**i*.
[ "10 10\n1 2 3 4 1 2 3 4 100000 99999\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n" ]
[ "6\n6\n6\n6\n6\n5\n4\n3\n2\n1\n" ]
none
1,000
[ { "input": "10 10\n1 2 3 4 1 2 3 4 100000 99999\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10", "output": "6\n6\n6\n6\n6\n5\n4\n3\n2\n1" }, { "input": "8 3\n8 6 4 3 4 2 4 8\n6\n4\n2", "output": "3\n4\n5" }, { "input": "7 10\n1 3 8 6 2 2 7\n4\n2\n6\n3\n4\n4\n6\n2\n7\n4", "output": "3\n5\n2\n4\n3\n3\...
1,698,426,492
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
IN = lambda:list(map(int, input().split())) n, m = IN() arr = IN()[::-1] unique = {} for x in range(n): unique[n-x] = len(set(arr[:x+1])) for i in range(m): print("hi" ,unique[int(input())])
Title: Sereja and Suffixes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja has an array *a*, consisting of *n* integers *a*1, *a*2, ..., *a**n*. The boy cannot sit and do nothing, he decided to study an array. Sereja took a piece of paper and wrote out *m* integers *l*1,<=*l*2,<=......
```python IN = lambda:list(map(int, input().split())) n, m = IN() arr = IN()[::-1] unique = {} for x in range(n): unique[n-x] = len(set(arr[:x+1])) for i in range(m): print("hi" ,unique[int(input())]) ```
0
656
B
Scrambled
PROGRAMMING
1,700
[ "*special", "implementation" ]
null
null
Btoh yuo adn yuor roomatme lhoate wianshg disehs, btu stlil sdmoeboy msut peorrfm tihs cohre dialy. Oen dya yuo decdie to idourtcne smoe syestm. Yuor rmmotaoe sstgegus teh fooniwllg dael. Yuo argee on tow arayrs of ientgres M adn R, nmebur upmicnog dyas (induiclng teh cunrret oen) wtih sicsescuve irnegets (teh ceurrnt ...
The first line of input contains a single integer N (1<=≤<=*N*<=≤<=16). The second and third lines of input contain N integers each, all between 0 and 16, inclusive, and represent arrays M and R, respectively. All *M*[*i*] are positive, for each *i* *R*[*i*]<=&lt;<=*M*[*i*].
Output a single real number. The answer is considered to be correct if its absolute or relative error does not exceed 10<=-<=4.
[ "1\n2\n0\n", "2\n2 3\n1 0\n" ]
[ "0.500000\n", "0.666667\n" ]
none
0
[ { "input": "1\n2\n0", "output": "0.500000" }, { "input": "2\n2 3\n1 0", "output": "0.666667" }, { "input": "3\n2 4 4\n0 1 3", "output": "1.000000" }, { "input": "1\n16\n15", "output": "0.062500" }, { "input": "16\n1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16\n0 1 2 3 4 ...
1,489,511,581
2,147,483,647
Python 3
OK
TESTS
36
312
4,608,000
n = int(input()) m = list(map(int, input().split())) r = list(map(int, input().split())) days = 0 for i in range(pow(2, 17)): for j in range(n): if i % m[j] == r[j]: days += 1 break print(days / pow(2, 17))
Title: Scrambled Time Limit: None seconds Memory Limit: None megabytes Problem Description: Btoh yuo adn yuor roomatme lhoate wianshg disehs, btu stlil sdmoeboy msut peorrfm tihs cohre dialy. Oen dya yuo decdie to idourtcne smoe syestm. Yuor rmmotaoe sstgegus teh fooniwllg dael. Yuo argee on tow arayrs of ientgres M...
```python n = int(input()) m = list(map(int, input().split())) r = list(map(int, input().split())) days = 0 for i in range(pow(2, 17)): for j in range(n): if i % m[j] == r[j]: days += 1 break print(days / pow(2, 17)) ```
3
440
A
Forgotten Episode
PROGRAMMING
800
[ "implementation" ]
null
null
Polycarpus adores TV series. Right now he is ready to finish watching a season of a popular sitcom "Graph Theory". In total, the season has *n* episodes, numbered with integers from 1 to *n*. Polycarpus watches episodes not one by one but in a random order. He has already watched all the episodes except for one. Which...
The first line of the input contains integer *n* (2<=≤<=*n*<=≤<=100000) — the number of episodes in a season. Assume that the episodes are numbered by integers from 1 to *n*. The second line contains *n*<=-<=1 integer *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*n*) — the numbers of episodes that Polycarpus has watch...
Print the number of the episode that Polycarpus hasn't watched.
[ "10\n3 8 10 1 7 9 6 5 2\n" ]
[ "4\n" ]
none
500
[ { "input": "10\n3 8 10 1 7 9 6 5 2", "output": "4" }, { "input": "5\n4 3 2 1", "output": "5" }, { "input": "2\n1", "output": "2" }, { "input": "2\n2", "output": "1" }, { "input": "3\n1 2", "output": "3" }, { "input": "3\n1 3", "output": "2" }, ...
1,615,891,353
2,147,483,647
Python 3
OK
TESTS
35
140
10,137,600
a=int(input()) b=sorted(list(map(int, input().split()))) c=list(range(1,a+1)) b=set(b) c=set(c) f=c.difference(b) f=list(f) print(f[0])
Title: Forgotten Episode Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus adores TV series. Right now he is ready to finish watching a season of a popular sitcom "Graph Theory". In total, the season has *n* episodes, numbered with integers from 1 to *n*. Polycarpus watches episo...
```python a=int(input()) b=sorted(list(map(int, input().split()))) c=list(range(1,a+1)) b=set(b) c=set(c) f=c.difference(b) f=list(f) print(f[0]) ```
3
591
A
Wizards' Duel
PROGRAMMING
900
[ "implementation", "math" ]
null
null
Harry Potter and He-Who-Must-Not-Be-Named engaged in a fight to the death once again. This time they are located at opposite ends of the corridor of length *l*. Two opponents simultaneously charge a deadly spell in the enemy. We know that the impulse of Harry's magic spell flies at a speed of *p* meters per second, and...
The first line of the input contains a single integer *l* (1<=≤<=*l*<=≤<=1<=000) — the length of the corridor where the fight takes place. The second line contains integer *p*, the third line contains integer *q* (1<=≤<=*p*,<=*q*<=≤<=500) — the speeds of magical impulses for Harry Potter and He-Who-Must-Not-Be-Named, ...
Print a single real number — the distance from the end of the corridor, where Harry is located, to the place of the second meeting of the spell impulses. Your answer will be considered correct if its absolute or relative error will not exceed 10<=-<=4. Namely: let's assume that your answer equals *a*, and the answer ...
[ "100\n50\n50\n", "199\n60\n40\n" ]
[ "50\n", "119.4\n" ]
In the first sample the speeds of the impulses are equal, so both of their meetings occur exactly in the middle of the corridor.
500
[ { "input": "100\n50\n50", "output": "50" }, { "input": "199\n60\n40", "output": "119.4" }, { "input": "1\n1\n1", "output": "0.5" }, { "input": "1\n1\n500", "output": "0.001996007984" }, { "input": "1\n500\n1", "output": "0.998003992" }, { "input": "1\n...
1,561,539,775
2,147,483,647
Python 3
OK
TESTS
45
109
0
l, a, b = int(input()), int(input()), int(input()) print((a*l)/(a+b))
Title: Wizards' Duel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Harry Potter and He-Who-Must-Not-Be-Named engaged in a fight to the death once again. This time they are located at opposite ends of the corridor of length *l*. Two opponents simultaneously charge a deadly spell in the en...
```python l, a, b = int(input()), int(input()), int(input()) print((a*l)/(a+b)) ```
3
702
A
Maximum Increase
PROGRAMMING
800
[ "dp", "greedy", "implementation" ]
null
null
You are given array consisting of *n* integers. Your task is to find the maximum length of an increasing subarray of the given array. A subarray is the sequence of consecutive elements of the array. Subarray is called increasing if each element of this subarray strictly greater than previous.
The first line contains single positive integer *n* (1<=≤<=*n*<=≤<=105) — the number of integers. The second line contains *n* positive integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109).
Print the maximum length of an increasing subarray of the given array.
[ "5\n1 7 2 11 15\n", "6\n100 100 100 100 100 100\n", "3\n1 2 3\n" ]
[ "3\n", "1\n", "3\n" ]
none
0
[ { "input": "5\n1 7 2 11 15", "output": "3" }, { "input": "6\n100 100 100 100 100 100", "output": "1" }, { "input": "3\n1 2 3", "output": "3" }, { "input": "1\n1000000000", "output": "1" }, { "input": "10\n802030518 598196518 640274071 983359971 71550121 96204862 7...
1,689,193,534
2,147,483,647
PyPy 3-64
OK
TESTS
32
77
13,516,800
length = int(input()) nums = list(map(int,input().split())) count = 0 mincreasing = 0 for index in range(1 , length): if nums[index - 1] < nums[index] : count += 1 else : if count > mincreasing : mincreasing = count count = 0 print(count + 1 if count > mincreasing else mincreasing + 1)
Title: Maximum Increase Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given array consisting of *n* integers. Your task is to find the maximum length of an increasing subarray of the given array. A subarray is the sequence of consecutive elements of the array. Subarray is called...
```python length = int(input()) nums = list(map(int,input().split())) count = 0 mincreasing = 0 for index in range(1 , length): if nums[index - 1] < nums[index] : count += 1 else : if count > mincreasing : mincreasing = count count = 0 print(count + 1 if count > mincreasing else mincre...
3
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,663,065,886
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
s=input() t=input() b=len(s) a=s[b::-1] if(a==t): printf("YES") else: print("NO")
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python s=input() t=input() b=len(s) a=s[b::-1] if(a==t): printf("YES") else: print("NO") ```
-1
96
A
Football
PROGRAMMING
900
[ "implementation", "strings" ]
A. Football
2
256
Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A zero corresponds to players of one team; a one corresponds to players of another team. If...
The first input line contains a non-empty string consisting of characters "0" and "1", which represents players. The length of the string does not exceed 100 characters. There's at least one player from each team present on the field.
Print "YES" if the situation is dangerous. Otherwise, print "NO".
[ "001001\n", "1000000001\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "001001", "output": "NO" }, { "input": "1000000001", "output": "YES" }, { "input": "00100110111111101", "output": "YES" }, { "input": "11110111111111111", "output": "YES" }, { "input": "01", "output": "NO" }, { "input": "10100101", "outp...
1,667,189,992
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
li = list(map(int,input())) c=1 res=0 for i in range(1,len(li)): if li[i] != li[li-1]: c=1 else: c+=1 if c>=7: res=1 break if res==1: print("YES") else: print("NO)
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A...
```python li = list(map(int,input())) c=1 res=0 for i in range(1,len(li)): if li[i] != li[li-1]: c=1 else: c+=1 if c>=7: res=1 break if res==1: print("YES") else: print("NO) ```
-1
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,688,101,973
2,147,483,647
PyPy 3
OK
TESTS
20
93
0
import math N, M, a=map(int, input().split(' ')) print((math.ceil(N/a)*math.ceil(M/a)))
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(' ')) print((math.ceil(N/a)*math.ceil(M/a))) ```
3.9535
762
A
k-th divisor
PROGRAMMING
1,400
[ "math", "number theory" ]
null
null
You are given two integers *n* and *k*. Find *k*-th smallest divisor of *n*, or report that it doesn't exist. Divisor of *n* is any such natural number, that *n* can be divided by it without remainder.
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=1015, 1<=≤<=*k*<=≤<=109).
If *n* has less than *k* divisors, output -1. Otherwise, output the *k*-th smallest divisor of *n*.
[ "4 2\n", "5 3\n", "12 5\n" ]
[ "2\n", "-1\n", "6\n" ]
In the first example, number 4 has three divisors: 1, 2 and 4. The second one is 2. In the second example, number 5 has only two divisors: 1 and 5. The third divisor doesn't exist, so the answer is -1.
0
[ { "input": "4 2", "output": "2" }, { "input": "5 3", "output": "-1" }, { "input": "12 5", "output": "6" }, { "input": "1 1", "output": "1" }, { "input": "866421317361600 26880", "output": "866421317361600" }, { "input": "866421317361600 26881", "ou...
1,679,235,958
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
4
2,000
1,536,000
a, b = map(int, input().split()) li = set() for i in range(1, int(a**.5)+1): if (a / i) % 1 == 0: li.add(i) li.add(a // i) x=sorted(list(li)) if len(x) < b:print(-1) else:print(x[b-1])
Title: k-th divisor Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two integers *n* and *k*. Find *k*-th smallest divisor of *n*, or report that it doesn't exist. Divisor of *n* is any such natural number, that *n* can be divided by it without remainder. Input Specificatio...
```python a, b = map(int, input().split()) li = set() for i in range(1, int(a**.5)+1): if (a / i) % 1 == 0: li.add(i) li.add(a // i) x=sorted(list(li)) if len(x) < b:print(-1) else:print(x[b-1]) ```
0