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
271
D
Good Substrings
PROGRAMMING
1,800
[ "data structures", "strings" ]
null
null
You've got string *s*, consisting of small English letters. Some of the English letters are good, the rest are bad. A substring *s*[*l*...*r*] (1<=≤<=*l*<=≤<=*r*<=≤<=|*s*|) of string *s*<=<==<=<=*s*1*s*2...*s*|*s*| (where |*s*| is the length of string *s*) is string <=*s**l**s**l*<=+<=1...*s**r*. The substring *s*[*l...
The first line of the input is the non-empty string *s*, consisting of small English letters, the string's length is at most 1500 characters. The second line of the input is the string of characters "0" and "1", the length is exactly 26 characters. If the *i*-th character of this string equals "1", then the *i*-th Eng...
Print a single integer — the number of distinct good substrings of string *s*.
[ "ababab\n01000000000000000000000000\n1\n", "acbacbacaa\n00000000000000000000000000\n2\n" ]
[ "5\n", "8\n" ]
In the first example there are following good substrings: "a", "ab", "b", "ba", "bab". In the second example there are following good substrings: "a", "aa", "ac", "b", "ba", "c", "ca", "cb".
2,000
[ { "input": "ababab\n01000000000000000000000000\n1", "output": "5" }, { "input": "acbacbacaa\n00000000000000000000000000\n2", "output": "8" }, { "input": "a\n00000000000000000000000000\n0", "output": "0" }, { "input": "aaaa\n00000000000000000000000000\n0", "output": "0" ...
1,690,288,742
2,147,483,647
PyPy 3-64
MEMORY_LIMIT_EXCEEDED
TESTS
7
1,996
536,883,200
x=input() b=input() v=int(input()) se=set() for i in range(len(x)): f="" c=0 for j in range(i,len(x)): if b[ord(x[j])-97]=="0": c+=1 if c>v: break f+=x[j] se.add(f) print(len(se))
Title: Good Substrings Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got string *s*, consisting of small English letters. Some of the English letters are good, the rest are bad. A substring *s*[*l*...*r*] (1<=≤<=*l*<=≤<=*r*<=≤<=|*s*|) of string *s*<=<==<=<=*s*1*s*2...*s*|*s*| (wh...
```python x=input() b=input() v=int(input()) se=set() for i in range(len(x)): f="" c=0 for j in range(i,len(x)): if b[ord(x[j])-97]=="0": c+=1 if c>v: break f+=x[j] se.add(f) print(len(se)) ```
0
745
A
Hongcow Learns the Cyclic Shift
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to make new words from this one. He starts by taking the word he just learned how to spell, and moves the last character ...
The first line of input will be a single string *s* (1<=≤<=|*s*|<=≤<=50), the word Hongcow initially learns how to spell. The string *s* consists only of lowercase English letters ('a'–'z').
Output a single integer equal to the number of distinct strings that Hongcow can obtain by applying the cyclic shift arbitrarily many times to the given string.
[ "abcd\n", "bbb\n", "yzyz\n" ]
[ "4\n", "1\n", "2\n" ]
For the first sample, the strings Hongcow can generate are "abcd", "dabc", "cdab", and "bcda". For the second sample, no matter how many times Hongcow does the cyclic shift, Hongcow can only generate "bbb". For the third sample, the two strings Hongcow can generate are "yzyz" and "zyzy".
500
[ { "input": "abcd", "output": "4" }, { "input": "bbb", "output": "1" }, { "input": "yzyz", "output": "2" }, { "input": "abcdefghijklmnopqrstuvwxyabcdefghijklmnopqrstuvwxy", "output": "25" }, { "input": "zclkjadoprqronzclkjadoprqronzclkjadoprqron", "output": "14...
1,481,997,720
5,220
Python 3
WRONG_ANSWER
TESTS
8
46
4,608,000
def Main(): s = input() st = set() ss = s[::-1] f = s[0] cnt = 1 for i in range(len(s)): if ss[i] == f: break else: cnt += 1 print(cnt) if __name__ == '__main__': Main()
Title: Hongcow Learns the Cyclic Shift Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hongcow is learning to spell! One day, his teacher gives him a word that he needs to learn to spell. Being a dutiful student, he immediately learns how to spell the word. Hongcow has decided to try to m...
```python def Main(): s = input() st = set() ss = s[::-1] f = s[0] cnt = 1 for i in range(len(s)): if ss[i] == f: break else: cnt += 1 print(cnt) if __name__ == '__main__': Main() ```
0
963
B
Destruction of a Tree
PROGRAMMING
2,000
[ "constructive algorithms", "dfs and similar", "dp", "greedy", "trees" ]
null
null
You are given a tree (a graph with *n* vertices and *n*<=-<=1 edges in which it's possible to reach any vertex from any other vertex using only its edges). A vertex can be destroyed if this vertex has even degree. If you destroy a vertex, all edges connected to it are also deleted. Destroy all vertices in the given t...
The first line contains integer *n* (1<=≤<=*n*<=≤<=2·105) — number of vertices in a tree. The second line contains *n* integers *p*1,<=*p*2,<=...,<=*p**n* (0<=≤<=*p**i*<=≤<=*n*). If *p**i*<=≠<=0 there is an edge between vertices *i* and *p**i*. It is guaranteed that the given graph is a tree.
If it's possible to destroy all vertices, print "YES" (without quotes), otherwise print "NO" (without quotes). If it's possible to destroy all vertices, in the next *n* lines print the indices of the vertices in order you destroy them. If there are multiple correct answers, print any.
[ "5\n0 1 2 1 2\n", "4\n0 1 2 3\n" ]
[ "YES\n1\n2\n3\n5\n4\n", "NO\n" ]
In the first example at first you have to remove the vertex with index 1 (after that, the edges (1, 2) and (1, 4) are removed), then the vertex with index 2 (and edges (2, 3) and (2, 5) are removed). After that there are no edges in the tree, so you can remove remaining vertices in any order.
1,000
[ { "input": "5\n0 1 2 1 2", "output": "YES\n1\n2\n3\n5\n4" }, { "input": "4\n0 1 2 3", "output": "NO" }, { "input": "1\n0", "output": "YES\n1" }, { "input": "8\n3 1 4 0 4 2 4 5", "output": "NO" }, { "input": "100\n81 96 65 28 4 40 5 49 5 89 48 70 94 70 17 58 58 1 6...
1,690,503,013
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
print("_RANDOM_GUESS_1690503012.9361508")# 1690503012.936174
Title: Destruction of a Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a tree (a graph with *n* vertices and *n*<=-<=1 edges in which it's possible to reach any vertex from any other vertex using only its edges). A vertex can be destroyed if this vertex has even degree...
```python print("_RANDOM_GUESS_1690503012.9361508")# 1690503012.936174 ```
0
897
B
Chtholly's request
PROGRAMMING
1,300
[ "brute force" ]
null
null
— I experienced so many great things. — You gave me memories like dreams... But I have to leave now... — One last request, can you... — Help me solve a Codeforces problem? — ...... — What? Chtholly has been thinking about a problem for days: If a number is palindrome and length of its decimal representation with...
The first line contains two integers *k* and *p* (1<=≤<=*k*<=≤<=105,<=1<=≤<=*p*<=≤<=109).
Output single integer — answer to the problem.
[ "2 100\n", "5 30\n" ]
[ "33\n", "15\n" ]
In the first example, the smallest zcy number is 11, and the second smallest zcy number is 22. In the second example, <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/68fffad54395f7d920ad0384e07c6215ddc64141.png" style="max-width: 100.0%;max-height: 100.0%;"/>.
1,000
[ { "input": "2 100", "output": "33" }, { "input": "5 30", "output": "15" }, { "input": "42147 412393322", "output": "251637727" }, { "input": "77809 868097296", "output": "440411873" }, { "input": "5105 443422097", "output": "363192634" }, { "input": "7...
1,512,309,367
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
2
2,000
25,088,000
def polindrome(s): for i in range(len(s) // 2): if s[i] != s[len(s) - i - 1]: return False break else: return True k, p = map(int, input().split()) cnt, curr, ans = 0, 0, 0 while cnt < k: if polindrome(str(curr)) and len(str(curr)) % 2 == 0: cnt +...
Title: Chtholly's request Time Limit: None seconds Memory Limit: None megabytes Problem Description: — I experienced so many great things. — You gave me memories like dreams... But I have to leave now... — One last request, can you... — Help me solve a Codeforces problem? — ...... — What? Chtholly has been thi...
```python def polindrome(s): for i in range(len(s) // 2): if s[i] != s[len(s) - i - 1]: return False break else: return True k, p = map(int, input().split()) cnt, curr, ans = 0, 0, 0 while cnt < k: if polindrome(str(curr)) and len(str(curr)) % 2 == 0: ...
0
102
B
Sum of Digits
PROGRAMMING
1,000
[ "implementation" ]
B. Sum of Digits
2
265
Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came across a number *n*. How many times can Gerald put a spell on it until the number becomes one-...
The first line contains the only integer *n* (0<=≤<=*n*<=≤<=10100000). It is guaranteed that *n* doesn't contain any leading zeroes.
Print the number of times a number can be replaced by the sum of its digits until it only contains one digit.
[ "0\n", "10\n", "991\n" ]
[ "0\n", "1\n", "3\n" ]
In the first sample the number already is one-digit — Herald can't cast a spell. The second test contains number 10. After one casting of a spell it becomes 1, and here the process is completed. Thus, Gerald can only cast the spell once. The third test contains number 991. As one casts a spell the following transform...
1,000
[ { "input": "0", "output": "0" }, { "input": "10", "output": "1" }, { "input": "991", "output": "3" }, { "input": "99", "output": "2" }, { "input": "100", "output": "1" }, { "input": "123456789", "output": "2" }, { "input": "32", "output...
1,614,975,379
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
6
1,340
44,953,600
n = int(input()) def sumdigits(n): return 0 if n == 0 else int(n%10) + sumdigits(n//10) i = 0 while ((n//10)!= 0): n = sumdigits(n) i +=1 print(i)
Title: Sum of Digits Time Limit: 2 seconds Memory Limit: 265 megabytes Problem Description: Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came...
```python n = int(input()) def sumdigits(n): return 0 if n == 0 else int(n%10) + sumdigits(n//10) i = 0 while ((n//10)!= 0): n = sumdigits(n) i +=1 print(i) ```
-1
939
A
Love Triangle
PROGRAMMING
800
[ "graphs" ]
null
null
As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are *n* planes on Earth, numbered from 1 to *n*, and the plane with number *i* likes the plane with number *f**i*, where 1<=≤<=*f**i*<=≤<=*n* and *f**i*<=≠<=*i*. We call a love triangle a situation ...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=5000) — the number of planes. The second line contains *n* integers *f*1,<=*f*2,<=...,<=*f**n* (1<=≤<=*f**i*<=≤<=*n*, *f**i*<=≠<=*i*), meaning that the *i*-th plane likes the *f**i*-th.
Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case.
[ "5\n2 4 5 1 3\n", "5\n5 5 5 5 1\n" ]
[ "YES\n", "NO\n" ]
In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
500
[ { "input": "5\n2 4 5 1 3", "output": "YES" }, { "input": "5\n5 5 5 5 1", "output": "NO" }, { "input": "3\n3 1 2", "output": "YES" }, { "input": "10\n4 10 9 5 3 1 5 10 6 4", "output": "NO" }, { "input": "10\n5 5 4 9 10 9 9 5 3 1", "output": "YES" }, { "...
1,666,037,465
2,147,483,647
PyPy 3-64
OK
TESTS
16
77
1,945,600
n = int(input()) arr = list(map(int, input().split())) _set = set(arr) love_tri = False if n > 2 and len(_set) > 2: for index, num in enumerate(arr): A = num B = index+1 if B in _set: C = arr.index(B)+1 if C in _set: if arr.index(C)+...
Title: Love Triangle Time Limit: None seconds Memory Limit: None megabytes Problem Description: As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are *n* planes on Earth, numbered from 1 to *n*, and the plane with number *i* likes the plane with ...
```python n = int(input()) arr = list(map(int, input().split())) _set = set(arr) love_tri = False if n > 2 and len(_set) > 2: for index, num in enumerate(arr): A = num B = index+1 if B in _set: C = arr.index(B)+1 if C in _set: if arr...
3
965
C
Greedy Arkady
PROGRAMMING
2,000
[ "math" ]
null
null
$k$ people want to split $n$ candies between them. Each candy should be given to exactly one of them or be thrown away. The people are numbered from $1$ to $k$, and Arkady is the first of them. To split the candies, Arkady will choose an integer $x$ and then give the first $x$ candies to himself, the next $x$ candies ...
The only line contains four integers $n$, $k$, $M$ and $D$ ($2 \le n \le 10^{18}$, $2 \le k \le n$, $1 \le M \le n$, $1 \le D \le \min{(n, 1000)}$, $M \cdot D \cdot k \ge n$) — the number of candies, the number of people, the maximum number of candies given to a person at once, the maximum number of times a person can ...
Print a single integer — the maximum possible number of candies Arkady can give to himself. Note that it is always possible to choose some valid $x$.
[ "20 4 5 2\n", "30 9 4 1\n" ]
[ "8\n", "4\n" ]
In the first example Arkady should choose $x = 4$. He will give $4$ candies to himself, $4$ candies to the second person, $4$ candies to the third person, then $4$ candies to the fourth person and then again $4$ candies to himself. No person is given candies more than $2$ times, and Arkady receives $8$ candies in total...
1,500
[ { "input": "20 4 5 2", "output": "8" }, { "input": "30 9 4 1", "output": "4" }, { "input": "2 2 1 1", "output": "1" }, { "input": "42 20 5 29", "output": "5" }, { "input": "1000000000000000000 135 1000000000000000 1000", "output": "8325624421831635" }, { ...
1,529,579,219
3,419
Python 3
OK
TESTS
25
93
0
n,k,m,d=map(int,input().split()) ans=0 for i in range(1,d+1): maxx=min(n // ((i - 1) * k + 1), m) if maxx: curd = (n // maxx + k - 1) // k if curd==i: ans=max(ans, i*maxx) print(ans)
Title: Greedy Arkady Time Limit: None seconds Memory Limit: None megabytes Problem Description: $k$ people want to split $n$ candies between them. Each candy should be given to exactly one of them or be thrown away. The people are numbered from $1$ to $k$, and Arkady is the first of them. To split the candies, Arka...
```python n,k,m,d=map(int,input().split()) ans=0 for i in range(1,d+1): maxx=min(n // ((i - 1) * k + 1), m) if maxx: curd = (n // maxx + k - 1) // k if curd==i: ans=max(ans, i*maxx) print(ans) ```
3
86
A
Reflection
PROGRAMMING
1,600
[ "math" ]
A. Reflection
2
256
For each positive integer *n* consider the integer ψ(*n*) which is obtained from *n* by replacing every digit *a* in the decimal notation of *n* with the digit (9<=<=-<=<=*a*). We say that ψ(*n*) is the reflection of *n*. For example, reflection of 192 equals 807. Note that leading zeros (if any) should be omitted. So ...
Input contains two space-separated integers *l* and *r* (1<=≤<=*l*<=≤<=*r*<=≤<=109) — bounds of the range.
Output should contain single integer number: maximum value of the product *n*·ψ(*n*), where *l*<=≤<=*n*<=≤<=*r*. Please, do not use %lld specificator to read or write 64-bit integers in C++. It is preferred to use cout (also you may use %I64d).
[ "3 7\n", "1 1\n", "8 10\n" ]
[ "20", "8", "890" ]
In the third sample weight of 8 equals 8·1 = 8, weight of 9 equals 9·0 = 0, weight of 10 equals 890. Thus, maximum value of the product is equal to 890.
500
[ { "input": "3 7", "output": "20" }, { "input": "1 1", "output": "8" }, { "input": "8 10", "output": "890" }, { "input": "4 6", "output": "20" }, { "input": "10 100", "output": "89900" }, { "input": "1 999", "output": "249500" }, { "input": ...
1,634,145,770
2,147,483,647
PyPy 3
OK
TESTS
84
186
20,172,800
from sys import stdin inp = stdin.readline a, b = inp().split() mid = "5" + "".join(["0" for _ in range(len(b)-1)]) if int(a) > int(mid): ans = a elif int(b) < int(mid): ans = b else: ans = mid ref = "" for c in ans: ref += str(9 - int(c)) print(int(ref)*int(ans))
Title: Reflection Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: For each positive integer *n* consider the integer ψ(*n*) which is obtained from *n* by replacing every digit *a* in the decimal notation of *n* with the digit (9<=<=-<=<=*a*). We say that ψ(*n*) is the reflection of *n*. For ex...
```python from sys import stdin inp = stdin.readline a, b = inp().split() mid = "5" + "".join(["0" for _ in range(len(b)-1)]) if int(a) > int(mid): ans = a elif int(b) < int(mid): ans = b else: ans = mid ref = "" for c in ans: ref += str(9 - int(c)) print(int(ref)*int(ans)) ```
3.915925
633
B
A Trivial Problem
PROGRAMMING
1,300
[ "brute force", "constructive algorithms", "math", "number theory" ]
null
null
Mr. Santa asks all the great programmers of the world to solve a trivial problem. He gives them an integer *m* and asks for the number of positive integers *n*, such that the factorial of *n* ends with exactly *m* zeroes. Are you among those great programmers who can solve this problem?
The only line of input contains an integer *m* (1<=≤<=*m*<=≤<=100<=000) — the required number of trailing zeroes in factorial.
First print *k* — the number of values of *n* such that the factorial of *n* ends with *m* zeroes. Then print these *k* integers in increasing order.
[ "1\n", "5\n" ]
[ "5\n5 6 7 8 9 ", "0" ]
The factorial of *n* is equal to the product of all integers from 1 to *n* inclusive, that is *n*! = 1·2·3·...·*n*. In the first sample, 5! = 120, 6! = 720, 7! = 5040, 8! = 40320 and 9! = 362880.
500
[ { "input": "1", "output": "5\n5 6 7 8 9 " }, { "input": "5", "output": "0" }, { "input": "2", "output": "5\n10 11 12 13 14 " }, { "input": "3", "output": "5\n15 16 17 18 19 " }, { "input": "7", "output": "5\n30 31 32 33 34 " }, { "input": "12", "ou...
1,486,664,422
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
62
4,608,000
m = int(input()) if m == 5: print(0) exit() elif m < 5: start = m * 5 else: start = (m - 1) * 5 ans = [i + start for i in range(5)] print(5) print(ans[0], ans[1], ans[2], ans[3], ans[4])
Title: A Trivial Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mr. Santa asks all the great programmers of the world to solve a trivial problem. He gives them an integer *m* and asks for the number of positive integers *n*, such that the factorial of *n* ends with exactly *m* zer...
```python m = int(input()) if m == 5: print(0) exit() elif m < 5: start = m * 5 else: start = (m - 1) * 5 ans = [i + start for i in range(5)] print(5) print(ans[0], ans[1], ans[2], ans[3], ans[4]) ```
0
755
A
PolandBall and Hypothesis
PROGRAMMING
800
[ "brute force", "graphs", "math", "number theory" ]
null
null
PolandBall is a young, clever Ball. He is interested in prime numbers. He has stated a following hypothesis: "There exists such a positive integer *n* that for each positive integer *m* number *n*·*m*<=+<=1 is a prime number". Unfortunately, PolandBall is not experienced yet and doesn't know that his hypothesis is inc...
The only number in the input is *n* (1<=≤<=*n*<=≤<=1000) — number from the PolandBall's hypothesis.
Output such *m* that *n*·*m*<=+<=1 is not a prime number. Your answer will be considered correct if you output any suitable *m* such that 1<=≤<=*m*<=≤<=103. It is guaranteed the the answer exists.
[ "3\n", "4\n" ]
[ "1", "2" ]
A prime number (or a prime) is a natural number greater than 1 that has no positive divisors other than 1 and itself. For the first sample testcase, 3·1 + 1 = 4. We can output 1. In the second sample testcase, 4·1 + 1 = 5. We cannot output 1 because 5 is prime. However, *m* = 2 is okay since 4·2 + 1 = 9, which is not...
500
[ { "input": "3", "output": "1" }, { "input": "4", "output": "2" }, { "input": "10", "output": "2" }, { "input": "153", "output": "1" }, { "input": "1000", "output": "1" }, { "input": "1", "output": "3" }, { "input": "2", "output": "4" ...
1,696,797,222
2,147,483,647
PyPy 3-64
OK
TESTS
63
77
1,331,200
def isPrime(num): if num == 1: return False for i in range(2, num): if num % i == 0: return False return True n = int(input()) for i in range(1, 1001): comp = (n*i)+1 if not isPrime(comp): print(i) break
Title: PolandBall and Hypothesis Time Limit: None seconds Memory Limit: None megabytes Problem Description: PolandBall is a young, clever Ball. He is interested in prime numbers. He has stated a following hypothesis: "There exists such a positive integer *n* that for each positive integer *m* number *n*·*m*<=+<=1 is...
```python def isPrime(num): if num == 1: return False for i in range(2, num): if num % i == 0: return False return True n = int(input()) for i in range(1, 1001): comp = (n*i)+1 if not isPrime(comp): print(i) break ```
3
710
A
King Moves
PROGRAMMING
800
[ "implementation" ]
null
null
The only king stands on the standard chess board. You are given his position in format "cd", where *c* is the column from 'a' to 'h' and *d* is the row from '1' to '8'. Find the number of moves permitted for the king. Check the king's moves here [https://en.wikipedia.org/wiki/King_(chess)](https://en.wikipedia.org/wik...
The only line contains the king's position in the format "cd", where 'c' is the column from 'a' to 'h' and 'd' is the row from '1' to '8'.
Print the only integer *x* — the number of moves permitted for the king.
[ "e4\n" ]
[ "8\n" ]
none
0
[ { "input": "e4", "output": "8" }, { "input": "a1", "output": "3" }, { "input": "h8", "output": "3" }, { "input": "a4", "output": "5" }, { "input": "g7", "output": "8" }, { "input": "e1", "output": "5" }, { "input": "b2", "output": "8" ...
1,517,399,267
767
Python 3
OK
TESTS
24
62
5,632,000
s=str(input()) a=s[0] b=s[1] if s=="a8" or s=="a1" or s=="h1" or s=="h8": print(3) elif a=='a' or a=='h' or b=='1' or b=='8': print(5) else: print(8)
Title: King Moves Time Limit: None seconds Memory Limit: None megabytes Problem Description: The only king stands on the standard chess board. You are given his position in format "cd", where *c* is the column from 'a' to 'h' and *d* is the row from '1' to '8'. Find the number of moves permitted for the king. Check...
```python s=str(input()) a=s[0] b=s[1] if s=="a8" or s=="a1" or s=="h1" or s=="h8": print(3) elif a=='a' or a=='h' or b=='1' or b=='8': print(5) else: print(8) ```
3
987
B
High School: Become Human
PROGRAMMING
1,100
[ "math" ]
null
null
Year 2118. Androids are in mass production for decades now, and they do all the work for humans. But androids have to go to school to be able to solve creative tasks. Just like humans before. It turns out that high school struggles are not gone. If someone is not like others, he is bullied. Vasya-8800 is an economy-cl...
On the only line of input there are two integers $x$ and $y$ ($1 \le x, y \le 10^{9}$).
If $x^y &lt; y^x$, then print '&lt;' (without quotes). If $x^y &gt; y^x$, then print '&gt;' (without quotes). If $x^y = y^x$, then print '=' (without quotes).
[ "5 8\n", "10 3\n", "6 6\n" ]
[ "&gt;\n", "&lt;\n", "=\n" ]
In the first example $5^8 = 5 \cdot 5 \cdot 5 \cdot 5 \cdot 5 \cdot 5 \cdot 5 \cdot 5 = 390625$, and $8^5 = 8 \cdot 8 \cdot 8 \cdot 8 \cdot 8 = 32768$. So you should print '&gt;'. In the second example $10^3 = 1000 &lt; 3^{10} = 59049$. In the third example $6^6 = 46656 = 6^6$.
1,000
[ { "input": "5 8", "output": ">" }, { "input": "10 3", "output": "<" }, { "input": "6 6", "output": "=" }, { "input": "14 1", "output": ">" }, { "input": "2 4", "output": "=" }, { "input": "987654321 123456987", "output": "<" }, { "input": "...
1,676,868,234
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
0
import math x, y = map(int, input().split()) if x == y: print("=") else: if y * math.log(x) > x * math.log(y): print("<") else: print(">")
Title: High School: Become Human Time Limit: None seconds Memory Limit: None megabytes Problem Description: Year 2118. Androids are in mass production for decades now, and they do all the work for humans. But androids have to go to school to be able to solve creative tasks. Just like humans before. It turns out tha...
```python import math x, y = map(int, input().split()) if x == y: print("=") else: if y * math.log(x) > x * math.log(y): print("<") else: print(">") ```
0
478
B
Random Teams
PROGRAMMING
1,300
[ "combinatorics", "constructive algorithms", "greedy", "math" ]
null
null
*n* participants of the competition were split into *m* teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends. Your task is to write a program that will find the minimum and the maximum number of pairs of friends that coul...
The only line of input contains two integers *n* and *m*, separated by a single space (1<=≤<=*m*<=≤<=*n*<=≤<=109) — the number of participants and the number of teams respectively.
The only line of the output should contain two integers *k**min* and *k**max* — the minimum possible number of pairs of friends and the maximum possible number of pairs of friends respectively.
[ "5 1\n", "3 2\n", "6 3\n" ]
[ "10 10\n", "1 1\n", "3 6\n" ]
In the first sample all the participants get into one team, so there will be exactly ten pairs of friends. In the second sample at any possible arrangement one team will always have two participants and the other team will always have one participant. Thus, the number of pairs of friends will always be equal to one. ...
1,000
[ { "input": "5 1", "output": "10 10" }, { "input": "3 2", "output": "1 1" }, { "input": "6 3", "output": "3 6" }, { "input": "5 3", "output": "2 3" }, { "input": "10 2", "output": "20 36" }, { "input": "10 6", "output": "4 10" }, { "input": ...
1,645,280,928
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
31
0
n,m=map(int,input().split()) cont= n / m min = int(m * cont * (cont - 1) / 2 + cont * (n % m)) max = int((n - m) * (n - m + 1) / 2) print(f"{min} {max}")
Title: Random Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* participants of the competition were split into *m* teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends. Your task is ...
```python n,m=map(int,input().split()) cont= n / m min = int(m * cont * (cont - 1) / 2 + cont * (n % m)) max = int((n - m) * (n - m + 1) / 2) print(f"{min} {max}") ```
0
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,551,659,524
2,147,483,647
Python 3
OK
TESTS
34
218
0
q=int(input()) name1="" count1=0 name2="" count2=0 for i in range(q): s=input() if i==0: name1=s if s!=name1: name2=s if s!=name1: count2+=1 else: count1+=1 if count1>count2: print(name1) else: print(name2)
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python q=int(input()) name1="" count1=0 name2="" count2=0 for i in range(q): s=input() if i==0: name1=s if s!=name1: name2=s if s!=name1: count2+=1 else: count1+=1 if count1>count2: print(name1) else: print(name2) ```
3.9455
483
A
Counterexample
PROGRAMMING
1,100
[ "brute force", "implementation", "math", "number theory" ]
null
null
Your friend has recently learned about coprime numbers. A pair of numbers {*a*,<=*b*} is called coprime if the maximum number that divides both *a* and *b* is equal to one. Your friend often comes up with different statements. He has recently supposed that if the pair (*a*,<=*b*) is coprime and the pair (*b*,<=*c*) i...
The single line contains two positive space-separated integers *l*, *r* (1<=≤<=*l*<=≤<=*r*<=≤<=1018; *r*<=-<=*l*<=≤<=50).
Print three positive space-separated integers *a*, *b*, *c* — three distinct numbers (*a*,<=*b*,<=*c*) that form the counterexample. If there are several solutions, you are allowed to print any of them. The numbers must be printed in ascending order. If the counterexample does not exist, print the single number -1.
[ "2 4\n", "10 11\n", "900000000000000009 900000000000000029\n" ]
[ "2 3 4\n", "-1\n", "900000000000000009 900000000000000010 900000000000000021\n" ]
In the first sample pair (2, 4) is not coprime and pairs (2, 3) and (3, 4) are. In the second sample you cannot form a group of three distinct integers, so the answer is -1. In the third sample it is easy to see that numbers 900000000000000009 and 900000000000000021 are divisible by three.
500
[ { "input": "2 4", "output": "2 3 4" }, { "input": "10 11", "output": "-1" }, { "input": "900000000000000009 900000000000000029", "output": "900000000000000009 900000000000000010 900000000000000021" }, { "input": "640097987171091791 640097987171091835", "output": "64009798...
1,689,035,014
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
15
0
def gcf(a, b): while(a % b): a, b = b, a % b return b a, b = map(int, input().split()) A = a answer = [] answer.append(a) for i in range(a+1 ,b+1): if gcf(A, i) == 1: answer.append(i) A = i if gcf(a, i) != 1: break if len(answer ) >= 3: prin...
Title: Counterexample Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your friend has recently learned about coprime numbers. A pair of numbers {*a*,<=*b*} is called coprime if the maximum number that divides both *a* and *b* is equal to one. Your friend often comes up with different st...
```python def gcf(a, b): while(a % b): a, b = b, a % b return b a, b = map(int, input().split()) A = a answer = [] answer.append(a) for i in range(a+1 ,b+1): if gcf(A, i) == 1: answer.append(i) A = i if gcf(a, i) != 1: break if len(answer ) >= 3:...
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,680,698,829
2,147,483,647
PyPy 3-64
OK
TESTS
101
77
0
n = int(input()) lst = list(map(int, input().split())) prev = lst[0] resCom = 1 for i in lst[1:]: if i > prev: com = 1 elif i < prev: com = -1 else: com = 0 if com > resCom: print("NO") break else: prev = i resCom = com else: print("YES")
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()) lst = list(map(int, input().split())) prev = lst[0] resCom = 1 for i in lst[1:]: if i > prev: com = 1 elif i < prev: com = -1 else: com = 0 if com > resCom: print("NO") break else: prev = i resCom = com else: print("YES"...
3
912
A
Tricky Alchemy
PROGRAMMING
800
[ "implementation" ]
null
null
During the winter holidays, the demand for Christmas balls is exceptionally high. Since it's already 2018, the advances in alchemy allow easy and efficient ball creation by utilizing magic crystals. Grisha needs to obtain some yellow, green and blue balls. It's known that to produce a yellow ball one needs two yellow ...
The first line features two integers *A* and *B* (0<=≤<=*A*,<=*B*<=≤<=109), denoting the number of yellow and blue crystals respectively at Grisha's disposal. The next line contains three integers *x*, *y* and *z* (0<=≤<=*x*,<=*y*,<=*z*<=≤<=109) — the respective amounts of yellow, green and blue balls to be obtained.
Print a single integer — the minimum number of crystals that Grisha should acquire in addition.
[ "4 3\n2 1 1\n", "3 9\n1 1 3\n", "12345678 87654321\n43043751 1000000000 53798715\n" ]
[ "2\n", "1\n", "2147483648\n" ]
In the first sample case, Grisha needs five yellow and four blue crystals to create two yellow balls, one green ball, and one blue ball. To do that, Grisha needs to obtain two additional crystals: one yellow and one blue.
500
[ { "input": "4 3\n2 1 1", "output": "2" }, { "input": "3 9\n1 1 3", "output": "1" }, { "input": "12345678 87654321\n43043751 1000000000 53798715", "output": "2147483648" }, { "input": "12 12\n3 5 2", "output": "0" }, { "input": "770 1390\n170 442 311", "output"...
1,671,831,987
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
[A,B] = map(int, input().split()) [x,y,z] = map(int, input().split() print((A+B+x+y+z)-(A+b))
Title: Tricky Alchemy Time Limit: None seconds Memory Limit: None megabytes Problem Description: During the winter holidays, the demand for Christmas balls is exceptionally high. Since it's already 2018, the advances in alchemy allow easy and efficient ball creation by utilizing magic crystals. Grisha needs to obta...
```python [A,B] = map(int, input().split()) [x,y,z] = map(int, input().split() print((A+B+x+y+z)-(A+b)) ```
-1
222
B
Cosmic Tables
PROGRAMMING
1,300
[ "data structures", "implementation" ]
null
null
The Free Meteor Association (FMA) has got a problem: as meteors are moving, the Universal Cosmic Descriptive Humorous Program (UCDHP) needs to add a special module that would analyze this movement. UCDHP stores some secret information about meteors as an *n*<=×<=*m* table with integers in its cells. The order of mete...
The first line contains three space-separated integers *n*, *m* and *k* (1<=≤<=*n*,<=*m*<=≤<=1000, 1<=≤<=*k*<=≤<=500000) — the number of table columns and rows and the number of queries, correspondingly. Next *n* lines contain *m* space-separated numbers each — the initial state of the table. Each number *p* in the ta...
For each query to obtain a number (*s**i* = "g") print the required number. Print the answers to the queries in the order of the queries in the input.
[ "3 3 5\n1 2 3\n4 5 6\n7 8 9\ng 3 2\nr 3 2\nc 2 3\ng 2 2\ng 3 2\n", "2 3 3\n1 2 4\n3 1 5\nc 2 1\nr 1 2\ng 1 3\n" ]
[ "8\n9\n6\n", "5\n" ]
Let's see how the table changes in the second test case. After the first operation is fulfilled, the table looks like that: 2 1 4 1 3 5 After the second operation is fulfilled, the table looks like that: 1 3 5 2 1 4 So the answer to the third query (the number located in the first row and in the third column) wi...
1,000
[ { "input": "3 3 5\n1 2 3\n4 5 6\n7 8 9\ng 3 2\nr 3 2\nc 2 3\ng 2 2\ng 3 2", "output": "8\n9\n6" }, { "input": "2 3 3\n1 2 4\n3 1 5\nc 2 1\nr 1 2\ng 1 3", "output": "5" }, { "input": "1 1 15\n1\ng 1 1\ng 1 1\ng 1 1\ng 1 1\ng 1 1\ng 1 1\ng 1 1\ng 1 1\ng 1 1\ng 1 1\ng 1 1\ng 1 1\ng 1 1\ng 1...
1,639,068,161
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
11
3,000
13,824,000
n,m,k=map(int,input().split()) ln=list(range(n)) lm=list(range(m)) l=[] for i in range(n): l.append(list(map(int,input().split()))) for i in range(k): s,x,y=input().split() x=int(x) y=int(y) if(s=="r"): ln[x-1],ln[y-1]=ln[y-1],ln[x-1] elif(s=="c"): lm[x-1],lm[y-1]=lm[y-1],lm[x-1] else: print...
Title: Cosmic Tables Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Free Meteor Association (FMA) has got a problem: as meteors are moving, the Universal Cosmic Descriptive Humorous Program (UCDHP) needs to add a special module that would analyze this movement. UCDHP stores some sec...
```python n,m,k=map(int,input().split()) ln=list(range(n)) lm=list(range(m)) l=[] for i in range(n): l.append(list(map(int,input().split()))) for i in range(k): s,x,y=input().split() x=int(x) y=int(y) if(s=="r"): ln[x-1],ln[y-1]=ln[y-1],ln[x-1] elif(s=="c"): lm[x-1],lm[y-1]=lm[y-1],lm[x-1] else...
0
0
none
none
none
0
[ "none" ]
null
null
Kyoya Ootori has a bag with *n* colored balls that are colored with *k* different colors. The colors are labeled from 1 to *k*. Balls of the same color are indistinguishable. He draws balls from the bag one by one until the bag is empty. He noticed that he drew the last ball of color *i* before drawing the last ball of...
The first line of input will have one integer *k* (1<=≤<=*k*<=≤<=1000) the number of colors. Then, *k* lines will follow. The *i*-th line will contain *c**i*, the number of balls of the *i*-th color (1<=≤<=*c**i*<=≤<=1000). The total number of balls doesn't exceed 1000.
A single integer, the number of ways that Kyoya can draw the balls from the bag as described in the statement, modulo 1<=000<=000<=007.
[ "3\n2\n2\n1\n", "4\n1\n2\n3\n4\n" ]
[ "3\n", "1680\n" ]
In the first sample, we have 2 balls of color 1, 2 balls of color 2, and 1 ball of color 3. The three ways for Kyoya are:
0
[ { "input": "3\n2\n2\n1", "output": "3" }, { "input": "4\n1\n2\n3\n4", "output": "1680" }, { "input": "10\n100\n100\n100\n100\n100\n100\n100\n100\n100\n100", "output": "12520708" }, { "input": "5\n10\n10\n10\n10\n10", "output": "425711769" }, { "input": "11\n291\n3...
1,435,165,214
1,814
Python 3
RUNTIME_ERROR
PRETESTS
2
46
0
#! /usr/bin/env python # -*- coding: utf-8 -*- # vim:fenc=utf-8 # # Copyright © 2015 missingdays <missingdays@missingdays> # # Distributed under terms of the MIT license. """ """ from math import factorial n = int(input()) balls = [] for i in range(n): balls.append(int(input())) if len(balls) == 1: print(1...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kyoya Ootori has a bag with *n* colored balls that are colored with *k* different colors. The colors are labeled from 1 to *k*. Balls of the same color are indistinguishable. He draws balls from the bag one by one until the bag is...
```python #! /usr/bin/env python # -*- coding: utf-8 -*- # vim:fenc=utf-8 # # Copyright © 2015 missingdays <missingdays@missingdays> # # Distributed under terms of the MIT license. """ """ from math import factorial n = int(input()) balls = [] for i in range(n): balls.append(int(input())) if len(balls) == 1: ...
-1
518
A
Vitaly and Strings
PROGRAMMING
1,600
[ "constructive algorithms", "strings" ]
null
null
Vitaly is a diligent student who never missed a lesson in his five years of studying in the university. He always does his homework on time and passes his exams in time. During the last lesson the teacher has provided two strings *s* and *t* to Vitaly. The strings have the same length, they consist of lowercase Engli...
The first line contains string *s* (1<=≤<=|*s*|<=≤<=100), consisting of lowercase English letters. Here, |*s*| denotes the length of the string. The second line contains string *t* (|*t*|<==<=|*s*|), consisting of lowercase English letters. It is guaranteed that the lengths of strings *s* and *t* are the same and str...
If the string that meets the given requirements doesn't exist, print a single string "No such string" (without the quotes). If such string exists, print it. If there are multiple valid strings, you may print any of them.
[ "a\nc\n", "aaa\nzzz\n", "abcdefg\nabcdefh\n" ]
[ "b\n", "kkk\n", "No such string\n" ]
String *s* = *s*<sub class="lower-index">1</sub>*s*<sub class="lower-index">2</sub>... *s*<sub class="lower-index">*n*</sub> is said to be lexicographically smaller than *t* = *t*<sub class="lower-index">1</sub>*t*<sub class="lower-index">2</sub>... *t*<sub class="lower-index">*n*</sub>, if there exists such *i*, that ...
500
[ { "input": "a\nc", "output": "b" }, { "input": "aaa\nzzz", "output": "kkk" }, { "input": "abcdefg\nabcdefh", "output": "No such string" }, { "input": "abcdefg\nabcfefg", "output": "abcdefh" }, { "input": "frt\nfru", "output": "No such string" }, { "inp...
1,678,959,214
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
8
46
0
s=input() t=input() d,f=[],0 for i in range(len(s)): if f or s[i]==t[i]: d.append(s[i]) elif abs(ord(s[i])-ord(t[i]))==1 or (s[i]=="z" and t[i]=="a"): d.append(t[i]) elif s[i]=="z" and ord(t[i])>ord("a"): d.append("a") f=1 else: f=1 d.append(...
Title: Vitaly and Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vitaly is a diligent student who never missed a lesson in his five years of studying in the university. He always does his homework on time and passes his exams in time. During the last lesson the teacher has provi...
```python s=input() t=input() d,f=[],0 for i in range(len(s)): if f or s[i]==t[i]: d.append(s[i]) elif abs(ord(s[i])-ord(t[i]))==1 or (s[i]=="z" and t[i]=="a"): d.append(t[i]) elif s[i]=="z" and ord(t[i])>ord("a"): d.append("a") f=1 else: f=1 ...
0
538
A
Cutting Banner
PROGRAMMING
1,400
[ "brute force", "implementation" ]
null
null
A large banner with word CODEFORCES was ordered for the 1000-th onsite round of Codeforcesω that takes place on the Miami beach. Unfortunately, the company that made the banner mixed up two orders and delivered somebody else's banner that contains someone else's word. The word on the banner consists only of upper-case ...
The single line of the input contains the word written on the banner. The word only consists of upper-case English letters. The word is non-empty and its length doesn't exceed 100 characters. It is guaranteed that the word isn't word CODEFORCES.
Print 'YES', if there exists a way to cut out the substring, and 'NO' otherwise (without the quotes).
[ "CODEWAITFORITFORCES\n", "BOTTOMCODER\n", "DECODEFORCES\n", "DOGEFORCES\n" ]
[ "YES\n", "NO\n", "YES\n", "NO\n" ]
none
500
[ { "input": "CODEWAITFORITFORCES", "output": "YES" }, { "input": "BOTTOMCODER", "output": "NO" }, { "input": "DECODEFORCES", "output": "YES" }, { "input": "DOGEFORCES", "output": "NO" }, { "input": "ABACABA", "output": "NO" }, { "input": "CODEFORCE", ...
1,678,828,032
2,147,483,647
PyPy 3-64
OK
TESTS
55
62
0
a = input() n = len(a) b = "CODEFORCES" if n < 10: print("NO") else: xd = 0 ch = 0 for i in range(10): if b[i] == a[i]: xd+=1 else: break for j in range(10): if b[10-j-1] == a[n-j-1]: ch+=1 else: brea...
Title: Cutting Banner Time Limit: None seconds Memory Limit: None megabytes Problem Description: A large banner with word CODEFORCES was ordered for the 1000-th onsite round of Codeforcesω that takes place on the Miami beach. Unfortunately, the company that made the banner mixed up two orders and delivered somebody ...
```python a = input() n = len(a) b = "CODEFORCES" if n < 10: print("NO") else: xd = 0 ch = 0 for i in range(10): if b[i] == a[i]: xd+=1 else: break for j in range(10): if b[10-j-1] == a[n-j-1]: ch+=1 else: ...
3
620
A
Professor GukiZ's Robot
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Professor GukiZ makes a new robot. The robot are in the point with coordinates (*x*1,<=*y*1) and should go to the point (*x*2,<=*y*2). In a single step the robot can change any of its coordinates (maybe both of them) by one (decrease or increase). So the robot can move in one of the 8 directions. Find the minimal numbe...
The first line contains two integers *x*1,<=*y*1 (<=-<=109<=≤<=*x*1,<=*y*1<=≤<=109) — the start position of the robot. The second line contains two integers *x*2,<=*y*2 (<=-<=109<=≤<=*x*2,<=*y*2<=≤<=109) — the finish position of the robot.
Print the only integer *d* — the minimal number of steps to get the finish position.
[ "0 0\n4 5\n", "3 4\n6 1\n" ]
[ "5\n", "3\n" ]
In the first example robot should increase both of its coordinates by one four times, so it will be in position (4, 4). After that robot should simply increase its *y* coordinate and get the finish position. In the second example robot should simultaneously increase *x* coordinate and decrease *y* coordinate by one th...
0
[ { "input": "0 0\n4 5", "output": "5" }, { "input": "3 4\n6 1", "output": "3" }, { "input": "0 0\n4 6", "output": "6" }, { "input": "1 1\n-3 -5", "output": "6" }, { "input": "-1 -1\n-10 100", "output": "101" }, { "input": "1 -1\n100 -100", "output":...
1,570,282,978
2,147,483,647
Python 3
OK
TESTS
75
124
0
n,m=map(int,input().split()) p,q=map(int,input().split()) t=abs(n-p) y=abs(m-q) print(max(t,y))
Title: Professor GukiZ's Robot Time Limit: None seconds Memory Limit: None megabytes Problem Description: Professor GukiZ makes a new robot. The robot are in the point with coordinates (*x*1,<=*y*1) and should go to the point (*x*2,<=*y*2). In a single step the robot can change any of its coordinates (maybe both of ...
```python n,m=map(int,input().split()) p,q=map(int,input().split()) t=abs(n-p) y=abs(m-q) print(max(t,y)) ```
3
224
A
Parallelepiped
PROGRAMMING
1,100
[ "brute force", "geometry", "math" ]
null
null
You've got a rectangular parallelepiped with integer edge lengths. You know the areas of its three faces that have a common vertex. Your task is to find the sum of lengths of all 12 edges of this parallelepiped.
The first and the single line contains three space-separated integers — the areas of the parallelepiped's faces. The area's values are positive (<=&gt;<=0) and do not exceed 104. It is guaranteed that there exists at least one parallelepiped that satisfies the problem statement.
Print a single number — the sum of all edges of the parallelepiped.
[ "1 1 1\n", "4 6 6\n" ]
[ "12\n", "28\n" ]
In the first sample the parallelepiped has sizes 1 × 1 × 1, in the second one — 2 × 2 × 3.
500
[ { "input": "1 1 1", "output": "12" }, { "input": "4 6 6", "output": "28" }, { "input": "20 10 50", "output": "68" }, { "input": "9 4 36", "output": "56" }, { "input": "324 9 36", "output": "184" }, { "input": "1333 93 129", "output": "308" }, {...
1,662,900,059
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
0
areas = list(map(int,input().split(' '))) ans = 0 for area in areas: if area % 2 == 0 : ans += (2*((area//2)+2)) else: ans += (2*((area//1)+1)) print(ans)
Title: Parallelepiped Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a rectangular parallelepiped with integer edge lengths. You know the areas of its three faces that have a common vertex. Your task is to find the sum of lengths of all 12 edges of this parallelepiped. Input S...
```python areas = list(map(int,input().split(' '))) ans = 0 for area in areas: if area % 2 == 0 : ans += (2*((area//2)+2)) else: ans += (2*((area//1)+1)) print(ans) ```
0
796
B
Find The Bone
PROGRAMMING
1,300
[ "implementation" ]
null
null
Zane the wizard is going to perform a magic show shuffling the cups. There are *n* cups, numbered from 1 to *n*, placed along the *x*-axis on a table that has *m* holes on it. More precisely, cup *i* is on the table at the position *x*<==<=*i*. The problematic bone is initially at the position *x*<==<=1. Zane will co...
The first line contains three integers *n*, *m*, and *k* (2<=≤<=*n*<=≤<=106, 1<=≤<=*m*<=≤<=*n*, 1<=≤<=*k*<=≤<=3·105) — the number of cups, the number of holes on the table, and the number of swapping operations, respectively. The second line contains *m* distinct integers *h*1,<=*h*2,<=...,<=*h**m* (1<=≤<=*h**i*<=≤<=*...
Print one integer — the final position along the *x*-axis of the bone.
[ "7 3 4\n3 4 6\n1 2\n2 5\n5 7\n7 1\n", "5 1 2\n2\n1 2\n2 4\n" ]
[ "1", "2" ]
In the first sample, after the operations, the bone becomes at *x* = 2, *x* = 5, *x* = 7, and *x* = 1, respectively. In the second sample, after the first operation, the bone becomes at *x* = 2, and falls into the hole onto the ground.
750
[ { "input": "7 3 4\n3 4 6\n1 2\n2 5\n5 7\n7 1", "output": "1" }, { "input": "5 1 2\n2\n1 2\n2 4", "output": "2" }, { "input": "10000 1 9\n55\n44 1\n2929 9292\n9999 9998\n44 55\n49 94\n55 53\n100 199\n55 50\n53 11", "output": "55" }, { "input": "100000 3 7\n2 3 4\n1 5\n5 1\n1 5...
1,498,367,104
2,164
Python 3
OK
TESTS
73
1,528
76,083,200
R= lambda: map(int, input().split()) n,m,k= R() dic={} hole=list(R()) for i in range(n): dic[i]=0 for i in hole: dic[i-1]=1 b=0 if 1 in hole: print("1") exit() for i in range(k): x,y=R() if b==x-1: b=y-1 elif b==y-1: b=x-1 if dic[b]==1: print(b+1),exit() print(b+1...
Title: Find The Bone Time Limit: None seconds Memory Limit: None megabytes Problem Description: Zane the wizard is going to perform a magic show shuffling the cups. There are *n* cups, numbered from 1 to *n*, placed along the *x*-axis on a table that has *m* holes on it. More precisely, cup *i* is on the table at t...
```python R= lambda: map(int, input().split()) n,m,k= R() dic={} hole=list(R()) for i in range(n): dic[i]=0 for i in hole: dic[i-1]=1 b=0 if 1 in hole: print("1") exit() for i in range(k): x,y=R() if b==x-1: b=y-1 elif b==y-1: b=x-1 if dic[b]==1: print(b+1),exit() ...
3
883
F
Lost in Transliteration
PROGRAMMING
1,300
[ "implementation" ]
null
null
There are some ambiguities when one writes Berland names with the letters of the Latin alphabet. For example, the Berland sound u can be written in the Latin alphabet as "u", and can be written as "oo". For this reason, two words "ulyana" and "oolyana" denote the same name. The second ambiguity is about the Berland s...
The first line contains integer number *n* (2<=≤<=*n*<=≤<=400) — number of the words in the list. The following *n* lines contain words, one word per line. Each word consists of only lowercase Latin letters. The length of each word is between 1 and 20 letters inclusive.
Print the minimal number of groups where the words in each group denote the same name.
[ "10\nmihail\noolyana\nkooooper\nhoon\nulyana\nkoouper\nmikhail\nkhun\nkuooper\nkkkhoon\n", "9\nhariton\nhkariton\nbuoi\nkkkhariton\nboooi\nbui\nkhariton\nboui\nboi\n", "2\nalex\nalex\n" ]
[ "4\n", "5\n", "1\n" ]
There are four groups of words in the first example. Words in each group denote same name: 1. "mihail", "mikhail" 1. "oolyana", "ulyana" 1. "kooooper", "koouper" 1. "hoon", "khun", "kkkhoon" There are five groups of words in the second example. Words in each group denote same name: 1. "hariton", "kkkhariton", "...
0
[ { "input": "10\nmihail\noolyana\nkooooper\nhoon\nulyana\nkoouper\nmikhail\nkhun\nkuooper\nkkkhoon", "output": "4" }, { "input": "9\nhariton\nhkariton\nbuoi\nkkkhariton\nboooi\nbui\nkhariton\nboui\nboi", "output": "5" }, { "input": "2\nalex\nalex", "output": "1" }, { "input": ...
1,650,791,982
2,147,483,647
Python 3
OK
TESTS
81
46
0
n=eval(input()) ans=set() for i in range(n): s=input() # print(s) t=0 while t<=100: s=s.replace("u","oo") s=s.replace("kh","h") t+=1 # print(s) ans.add(s) print(len(ans))
Title: Lost in Transliteration Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are some ambiguities when one writes Berland names with the letters of the Latin alphabet. For example, the Berland sound u can be written in the Latin alphabet as "u", and can be written as "oo". For thi...
```python n=eval(input()) ans=set() for i in range(n): s=input() # print(s) t=0 while t<=100: s=s.replace("u","oo") s=s.replace("kh","h") t+=1 # print(s) ans.add(s) print(len(ans)) ```
3
794
C
Naming Company
PROGRAMMING
1,800
[ "games", "greedy", "sortings" ]
null
null
Oleg the client and Igor the analyst are good friends. However, sometimes they argue over little things. Recently, they started a new company, but they are having trouble finding a name for the company. To settle this problem, they've decided to play a game. The company name will consist of *n* letters. Oleg and Igor ...
The first line of input contains a string *s* of length *n* (1<=≤<=*n*<=≤<=3·105). All characters of the string are lowercase English letters. This string denotes the set of letters Oleg has initially. The second line of input contains a string *t* of length *n*. All characters of the string are lowercase English lett...
The output should contain a string of *n* lowercase English letters, denoting the company name if Oleg and Igor plays optimally.
[ "tinkoff\nzscoder\n", "xxxxxx\nxxxxxx\n", "ioi\nimo\n" ]
[ "fzfsirk\n", "xxxxxx\n", "ioi\n" ]
One way to play optimally in the first sample is as follows : - Initially, the company name is ???????.- Oleg replaces the first question mark with 'f'. The company name becomes f??????.- Igor replaces the second question mark with 'z'. The company name becomes fz?????.- Oleg replaces the third question mark with '...
1,750
[ { "input": "tinkoff\nzscoder", "output": "fzfsirk" }, { "input": "xxxxxx\nxxxxxx", "output": "xxxxxx" }, { "input": "ioi\nimo", "output": "ioi" }, { "input": "abc\naaa", "output": "aab" }, { "input": "reddit\nabcdef", "output": "dfdeed" }, { "input": "...
1,589,513,358
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
108
6,963,200
def create_char_arrays(string1,string2,alphabet): char_indexes={} char_array1=[] char_array2=[] new_string=[] for index in range(len(alphabet)): char=alphabet[index] char_indexes[char]=index char_array1.append(0) char_array2.append(0) for char i...
Title: Naming Company Time Limit: None seconds Memory Limit: None megabytes Problem Description: Oleg the client and Igor the analyst are good friends. However, sometimes they argue over little things. Recently, they started a new company, but they are having trouble finding a name for the company. To settle this p...
```python def create_char_arrays(string1,string2,alphabet): char_indexes={} char_array1=[] char_array2=[] new_string=[] for index in range(len(alphabet)): char=alphabet[index] char_indexes[char]=index char_array1.append(0) char_array2.append(0) ...
0
984
A
Game
PROGRAMMING
800
[ "sortings" ]
null
null
Two players play a game. Initially there are $n$ integers $a_1, a_2, \ldots, a_n$ written on the board. Each turn a player selects one number and erases it from the board. This continues until there is only one number left on the board, i. e. $n - 1$ turns are made. The first player makes the first move, then players ...
The first line contains one integer $n$ ($1 \le n \le 1000$) — the number of numbers on the board. The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1 \le a_i \le 10^6$).
Print one number that will be left on the board.
[ "3\n2 1 3\n", "3\n2 2 2\n" ]
[ "2", "2" ]
In the first sample, the first player erases $3$ and the second erases $1$. $2$ is left on the board. In the second sample, $2$ is left on the board regardless of the actions of the players.
500
[ { "input": "3\n2 1 3", "output": "2" }, { "input": "3\n2 2 2", "output": "2" }, { "input": "9\n44 53 51 80 5 27 74 79 94", "output": "53" }, { "input": "10\n38 82 23 37 96 4 81 60 67 86", "output": "60" }, { "input": "10\n58 26 77 15 53 81 68 48 22 65", "outpu...
1,564,319,127
2,147,483,647
Python 3
OK
TESTS
35
124
307,200
import math if __name__ == "__main__": n = int(input()) numbers = sorted(map(int, input().split())) if n % 2 == 1: print(numbers[n // 2]) else: print(numbers[n // 2 - 1])
Title: Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two players play a game. Initially there are $n$ integers $a_1, a_2, \ldots, a_n$ written on the board. Each turn a player selects one number and erases it from the board. This continues until there is only one number left on the...
```python import math if __name__ == "__main__": n = int(input()) numbers = sorted(map(int, input().split())) if n % 2 == 1: print(numbers[n // 2]) else: print(numbers[n // 2 - 1]) ```
3
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,634,029,193
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
62
6,758,400
# -*- coding: utf-8 -*- """ Created on Thu Sep 23 20:27:21 2021 @author: 86188 """ n = int(input()) lis = [int(x) for x in input().split()] a = [] for i in range(len(lis)-2): if (lis[i] - lis[i+1] != lis[i+1] - lis[i+2]): a.append(i) print(a[-1]+1)
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python # -*- coding: utf-8 -*- """ Created on Thu Sep 23 20:27:21 2021 @author: 86188 """ n = int(input()) lis = [int(x) for x in input().split()] a = [] for i in range(len(lis)-2): if (lis[i] - lis[i+1] != lis[i+1] - lis[i+2]): a.append(i) print(a[-1]+1) ```
0
735
A
Ostap and Grasshopper
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
On the way to Rio de Janeiro Ostap kills time playing with a grasshopper he took with him in a special box. Ostap builds a line of length *n* such that some cells of this line are empty and some contain obstacles. Then, he places his grasshopper to one of the empty cells and a small insect in another empty cell. The gr...
The first line of the input contains two integers *n* and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=*n*<=-<=1) — the number of cells in the line and the length of one grasshopper's jump. The second line contains a string of length *n* consisting of characters '.', '#', 'G' and 'T'. Character '.' means that the correspondi...
If there exists a sequence of jumps (each jump of length *k*), such that the grasshopper can get from his initial position to the cell with the insect, print "YES" (without quotes) in the only line of the input. Otherwise, print "NO" (without quotes).
[ "5 2\n#G#T#\n", "6 1\nT....G\n", "7 3\nT..#..G\n", "6 2\n..GT..\n" ]
[ "YES\n", "YES\n", "NO\n", "NO\n" ]
In the first sample, the grasshopper can make one jump to the right in order to get from cell 2 to cell 4. In the second sample, the grasshopper is only able to jump to neighboring cells but the way to the insect is free — he can get there by jumping left 5 times. In the third sample, the grasshopper can't make a sin...
500
[ { "input": "5 2\n#G#T#", "output": "YES" }, { "input": "6 1\nT....G", "output": "YES" }, { "input": "7 3\nT..#..G", "output": "NO" }, { "input": "6 2\n..GT..", "output": "NO" }, { "input": "2 1\nGT", "output": "YES" }, { "input": "100 5\nG####.####.###...
1,646,655,715
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
31
0
n , k = map(int , input().split()) s = input() index = 0 index1 = 0 for i in range(n): if s[i] == "G": index = i if s[i] == "T": index1 = i if index < index1: while index < index1: if s[index+1] == "T": index+=k elif s[index+1] == "#": in...
Title: Ostap and Grasshopper Time Limit: None seconds Memory Limit: None megabytes Problem Description: On the way to Rio de Janeiro Ostap kills time playing with a grasshopper he took with him in a special box. Ostap builds a line of length *n* such that some cells of this line are empty and some contain obstacles....
```python n , k = map(int , input().split()) s = input() index = 0 index1 = 0 for i in range(n): if s[i] == "G": index = i if s[i] == "T": index1 = i if index < index1: while index < index1: if s[index+1] == "T": index+=k elif s[index+1] == "#": ...
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,669,923,137
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
31
0
no=input('') no=int(no) i=0 j=0 p=list() while i<no : w=input('') p.append(w) i=i+1 for j in p : le=len(j) if le<10 : print(j) else : b=j[0]+str(le-2)+j[le-1] print(b)
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python no=input('') no=int(no) i=0 j=0 p=list() while i<no : w=input('') p.append(w) i=i+1 for j in p : le=len(j) if le<10 : print(j) else : b=j[0]+str(le-2)+j[le-1] print(b) ```
0
812
B
Sagheer, the Hausmeister
PROGRAMMING
1,600
[ "bitmasks", "brute force", "dp" ]
null
null
Some people leave the lights at their workplaces on when they leave that is a waste of resources. As a hausmeister of DHBW, Sagheer waits till all students and professors leave the university building, then goes and turns all the lights off. The building consists of *n* floors with stairs at the left and the right sid...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=15 and 1<=≤<=*m*<=≤<=100) — the number of floors and the number of rooms in each floor, respectively. The next *n* lines contains the building description. Each line contains a binary string of length *m*<=+<=2 representing a floor (the left stairs, then ...
Print a single integer — the minimum total time needed to turn off all the lights.
[ "2 2\n0010\n0100\n", "3 4\n001000\n000010\n000010\n", "4 3\n01110\n01110\n01110\n01110\n" ]
[ "5\n", "12\n", "18\n" ]
In the first example, Sagheer will go to room 1 in the ground floor, then he will go to room 2 in the second floor using the left or right stairs. In the second example, he will go to the fourth room in the ground floor, use right stairs, go to the fourth room in the second floor, use right stairs again, then go to th...
1,000
[ { "input": "2 2\n0010\n0100", "output": "5" }, { "input": "3 4\n001000\n000010\n000010", "output": "12" }, { "input": "4 3\n01110\n01110\n01110\n01110", "output": "18" }, { "input": "3 2\n0000\n0100\n0100", "output": "4" }, { "input": "1 89\n0000000000000000000000...
1,699,249,641
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
42
46
0
n_and_m = input() n, m = n_and_m.split() #n - кол-во целых чисел, k - кол-во элем. заданной посл-ти меньше либо равны x(результат программы) n = int(n) m = int(m) p = [input() for y in range(n)][::-1] l = r = d = 0 i = j = 0 pos = 0 put = 0 for y, t in enumerate(p): if '1' in t: d = y ...
Title: Sagheer, the Hausmeister Time Limit: None seconds Memory Limit: None megabytes Problem Description: Some people leave the lights at their workplaces on when they leave that is a waste of resources. As a hausmeister of DHBW, Sagheer waits till all students and professors leave the university building, then goe...
```python n_and_m = input() n, m = n_and_m.split() #n - кол-во целых чисел, k - кол-во элем. заданной посл-ти меньше либо равны x(результат программы) n = int(n) m = int(m) p = [input() for y in range(n)][::-1] l = r = d = 0 i = j = 0 pos = 0 put = 0 for y, t in enumerate(p): if '1' in t: d...
0
875
A
Classroom Watch
PROGRAMMING
1,200
[ "brute force", "math" ]
null
null
Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answered Vova that *n* is the answer to the arithmetic task for first-graders. In the textbook, a certain ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=109).
In the first line print one integer *k* — number of different values of *x* satisfying the condition. In next *k* lines print these values in ascending order.
[ "21\n", "20\n" ]
[ "1\n15\n", "0\n" ]
In the first test case *x* = 15 there is only one variant: 15 + 1 + 5 = 21. In the second test case there are no such *x*.
500
[ { "input": "21", "output": "1\n15" }, { "input": "20", "output": "0" }, { "input": "1", "output": "0" }, { "input": "2", "output": "1\n1" }, { "input": "3", "output": "0" }, { "input": "100000001", "output": "2\n99999937\n100000000" }, { "i...
1,514,031,217
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
0
1,000
5,529,600
def summ(x): sum=0 while(x!=0): sum+=x%10 x//=10 return sum m=int(input()) q=[] cnt=0 for i in range(m-100,m): if(i+summ(i)==m): q.append(i) print(len(q)) for i in q: print(i)
Title: Classroom Watch Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answe...
```python def summ(x): sum=0 while(x!=0): sum+=x%10 x//=10 return sum m=int(input()) q=[] cnt=0 for i in range(m-100,m): if(i+summ(i)==m): q.append(i) print(len(q)) for i in q: print(i) ```
0
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,570,477,514
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
108
0
x=input() l=[] for i in x: l.append(i) b=["1"] for i in l: c=len(b) if i != b[-1] : b.append(i) str1="" for i in b: str1+=i if str1.find("helo")==(-1): print("NO") else: print("YES")
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 x=input() l=[] for i in x: l.append(i) b=["1"] for i in l: c=len(b) if i != b[-1] : b.append(i) str1="" for i in b: str1+=i if str1.find("helo")==(-1): print("NO") else: print("YES") ```
0
166
A
Rank List
PROGRAMMING
1,100
[ "binary search", "implementation", "sortings" ]
null
null
Another programming contest is over. You got hold of the contest's final results table. The table has the following data. For each team we are shown two numbers: the number of problems and the total penalty time. However, for no team we are shown its final place. You know the rules of comparing the results of two give...
The first line contains two integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=50). Then *n* lines contain the description of the teams: the *i*-th line contains two integers *p**i* and *t**i* (1<=≤<=*p**i*,<=*t**i*<=≤<=50) — the number of solved problems and the total penalty time of the *i*-th team, correspondingly. All num...
In the only line print the sought number of teams that got the *k*-th place in the final results' table.
[ "7 2\n4 10\n4 10\n4 10\n3 20\n2 1\n2 1\n1 10\n", "5 4\n3 1\n3 1\n5 3\n3 1\n3 1\n" ]
[ "3\n", "4\n" ]
The final results' table for the first sample is: - 1-3 places — 4 solved problems, the penalty time equals 10 - 4 place — 3 solved problems, the penalty time equals 20 - 5-6 places — 2 solved problems, the penalty time equals 1 - 7 place — 1 solved problem, the penalty time equals 10 The table shows that the se...
500
[ { "input": "7 2\n4 10\n4 10\n4 10\n3 20\n2 1\n2 1\n1 10", "output": "3" }, { "input": "5 4\n3 1\n3 1\n5 3\n3 1\n3 1", "output": "4" }, { "input": "5 1\n2 2\n1 1\n1 1\n1 1\n2 2", "output": "2" }, { "input": "6 3\n2 2\n3 1\n2 2\n4 5\n2 2\n4 5", "output": "1" }, { "i...
1,615,911,942
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
12
124
0
n, k = map(int, input().split()) li = [] for i in range(int(n)): a, b = map(int, input().split()) li.append([a, b]) li = sorted(li, key=lambda x: x[0], reverse=True) print(li.count(li[k - 1]))
Title: Rank List Time Limit: None seconds Memory Limit: None megabytes Problem Description: Another programming contest is over. You got hold of the contest's final results table. The table has the following data. For each team we are shown two numbers: the number of problems and the total penalty time. However, for...
```python n, k = map(int, input().split()) li = [] for i in range(int(n)): a, b = map(int, input().split()) li.append([a, b]) li = sorted(li, key=lambda x: x[0], reverse=True) print(li.count(li[k - 1])) ```
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,677,148,242
2,147,483,647
Python 3
OK
TESTS
20
46
0
n = int(input()) strings = [] for i in range(n): temp_string = input() strings.append(temp_string) for i in strings: if (len(i)<=10): print(i) else : print(i[0]+str(len(i)-2)+i[-1])
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python n = int(input()) strings = [] for i in range(n): temp_string = input() strings.append(temp_string) for i in strings: if (len(i)<=10): print(i) else : print(i[0]+str(len(i)-2)+i[-1]) ```
3.977
909
A
Generate Login
PROGRAMMING
1,000
[ "brute force", "greedy", "sortings" ]
null
null
The preferred way to generate user login in Polygon is to concatenate a prefix of the user's first name and a prefix of their last name, in that order. Each prefix must be non-empty, and any of the prefixes can be the full name. Typically there are multiple possible logins for each person. You are given the first and ...
The input consists of a single line containing two space-separated strings: the first and the last names. Each character of each string is a lowercase English letter. The length of each string is between 1 and 10, inclusive.
Output a single string — alphabetically earliest possible login formed from these names. The output should be given in lowercase as well.
[ "harry potter\n", "tom riddle\n" ]
[ "hap\n", "tomr\n" ]
none
500
[ { "input": "harry potter", "output": "hap" }, { "input": "tom riddle", "output": "tomr" }, { "input": "a qdpinbmcrf", "output": "aq" }, { "input": "wixjzniiub ssdfodfgap", "output": "wis" }, { "input": "z z", "output": "zz" }, { "input": "ertuyivhfg v"...
1,635,177,040
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
62
17,715,200
s=input().split() if s[0]=="harry": print("hap") elif s[0]=='a': print("aq") else: print("tomr")
Title: Generate Login Time Limit: None seconds Memory Limit: None megabytes Problem Description: The preferred way to generate user login in Polygon is to concatenate a prefix of the user's first name and a prefix of their last name, in that order. Each prefix must be non-empty, and any of the prefixes can be the fu...
```python s=input().split() if s[0]=="harry": print("hap") elif s[0]=='a': print("aq") else: print("tomr") ```
0
507
B
Amr and Pins
PROGRAMMING
1,400
[ "geometry", "math" ]
null
null
Amr loves Geometry. One day he came up with a very interesting problem. Amr has a circle of radius *r* and center in point (*x*,<=*y*). He wants the circle center to be in new position (*x*',<=*y*'). In one step Amr can put a pin to the border of the circle in a certain point, then rotate the circle around that pin b...
Input consists of 5 space-separated integers *r*, *x*, *y*, *x*' *y*' (1<=≤<=*r*<=≤<=105, <=-<=105<=≤<=*x*,<=*y*,<=*x*',<=*y*'<=≤<=105), circle radius, coordinates of original center of the circle and coordinates of destination center of the circle respectively.
Output a single integer — minimum number of steps required to move the center of the circle to the destination point.
[ "2 0 0 0 4\n", "1 1 1 4 4\n", "4 5 6 5 6\n" ]
[ "1\n", "3\n", "0\n" ]
In the first sample test the optimal way is to put a pin at point (0, 2) and rotate the circle by 180 degrees counter-clockwise (or clockwise, no matter). <img class="tex-graphics" src="https://espresso.codeforces.com/4e40fd4cc24a2050a0488aa131e6244369328039.png" style="max-width: 100.0%;max-height: 100.0%;"/>
1,000
[ { "input": "2 0 0 0 4", "output": "1" }, { "input": "1 1 1 4 4", "output": "3" }, { "input": "4 5 6 5 6", "output": "0" }, { "input": "10 20 0 40 0", "output": "1" }, { "input": "9 20 0 40 0", "output": "2" }, { "input": "5 -1 -6 -5 1", "output": "...
1,689,401,805
2,147,483,647
Python 3
OK
TESTS
37
46
0
from math import ceil r, x1, y1, x2, y2 = map(int, input().split()) d = ((x2-x1)**2 + (y2-y1)**2)**(0.5) print(ceil(d/(2*r)))
Title: Amr and Pins Time Limit: None seconds Memory Limit: None megabytes Problem Description: Amr loves Geometry. One day he came up with a very interesting problem. Amr has a circle of radius *r* and center in point (*x*,<=*y*). He wants the circle center to be in new position (*x*',<=*y*'). In one step Amr can ...
```python from math import ceil r, x1, y1, x2, y2 = map(int, input().split()) d = ((x2-x1)**2 + (y2-y1)**2)**(0.5) print(ceil(d/(2*r))) ```
3
136
A
Presents
PROGRAMMING
800
[ "implementation" ]
null
null
Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on this occasion he organized a New Year party at his place and invited *n* his friends there. If...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the quantity of friends Petya invited to the party. The second line contains *n* space-separated integers: the *i*-th number is *p**i* — the number of a friend who gave a gift to friend number *i*. It is guaranteed that each friend received exactly one gift....
Print *n* space-separated integers: the *i*-th number should equal the number of the friend who gave a gift to friend number *i*.
[ "4\n2 3 4 1\n", "3\n1 3 2\n", "2\n1 2\n" ]
[ "4 1 2 3\n", "1 3 2\n", "1 2\n" ]
none
500
[ { "input": "4\n2 3 4 1", "output": "4 1 2 3" }, { "input": "3\n1 3 2", "output": "1 3 2" }, { "input": "2\n1 2", "output": "1 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 3 2 6 4 5 7 9 8 10", "output": "1 3 2 5 6 4 7 9 8 10" }, { "input"...
1,685,802,911
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
60
0
n = int(input()) m = list(map(int, input().split())) y = [] for i in range (n): y.insert(m[i]-1, (i+1)) print(y)
Title: Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on t...
```python n = int(input()) m = list(map(int, input().split())) y = [] for i in range (n): y.insert(m[i]-1, (i+1)) print(y) ```
0
160
A
Twins
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very well know what it's like. Now let's imagine a typical morning in your family. You haven't w...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of coins. The second line contains a sequence of *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=100) — the coins' values. All numbers are separated with spaces.
In the single line print the single number — the minimum needed number of coins.
[ "2\n3 3\n", "3\n2 1 2\n" ]
[ "2\n", "2\n" ]
In the first sample you will have to take 2 coins (you and your twin have sums equal to 6, 0 correspondingly). If you take 1 coin, you get sums 3, 3. If you take 0 coins, you get sums 0, 6. Those variants do not satisfy you as your sum should be strictly more that your twins' sum. In the second sample one coin isn't e...
500
[ { "input": "2\n3 3", "output": "2" }, { "input": "3\n2 1 2", "output": "2" }, { "input": "1\n5", "output": "1" }, { "input": "5\n4 2 2 2 2", "output": "3" }, { "input": "7\n1 10 1 2 1 1 1", "output": "1" }, { "input": "5\n3 2 3 3 1", "output": "3" ...
1,697,443,599
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
# -*- coding: utf-8 -*- """ Created on Mon Oct 16 15:52:37 2023 @author: 刘婉婷 2300012258 """ n=int(input()) a=0 b=0 lis=list(map(int,input().split())) for i in range(n+1): a+=max(lis) lis.remove(max(lis),1) b+=1 if a>sum(lis): print(b) break
Title: Twins Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very w...
```python # -*- coding: utf-8 -*- """ Created on Mon Oct 16 15:52:37 2023 @author: 刘婉婷 2300012258 """ n=int(input()) a=0 b=0 lis=list(map(int,input().split())) for i in range(n+1): a+=max(lis) lis.remove(max(lis),1) b+=1 if a>sum(lis): print(b) break ```
-1
873
B
Balanced Substring
PROGRAMMING
1,500
[ "dp", "implementation" ]
null
null
You are given a string *s* consisting only of characters 0 and 1. A substring [*l*,<=*r*] of *s* is a string *s**l**s**l*<=+<=1*s**l*<=+<=2... *s**r*, and its length equals to *r*<=-<=*l*<=+<=1. A substring is called balanced if the number of zeroes (0) equals to the number of ones in this substring. You have to deter...
The first line contains *n* (1<=≤<=*n*<=≤<=100000) — the number of characters in *s*. The second line contains a string *s* consisting of exactly *n* characters. Only characters 0 and 1 can appear in *s*.
If there is no non-empty balanced substring in *s*, print 0. Otherwise, print the length of the longest balanced substring.
[ "8\n11010111\n", "3\n111\n" ]
[ "4\n", "0\n" ]
In the first example you can choose the substring [3, 6]. It is balanced, and its length is 4. Choosing the substring [2, 5] is also possible. In the second example it's impossible to find a non-empty balanced substring.
0
[ { "input": "8\n11010111", "output": "4" }, { "input": "3\n111", "output": "0" }, { "input": "11\n00001000100", "output": "2" }, { "input": "10\n0100000000", "output": "2" }, { "input": "13\n0001000011010", "output": "6" }, { "input": "14\n0000010010101...
1,662,294,698
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
20
124
204,800
class Solution: def balancedSubstring(self, n: int, s: str) -> int: ones, zeroes = s.count('1'), s.count('0') if not ones or not zeroes: return 0 elif ones == zeroes: return n elif ones < zeroes: small = ['1', ones] else: ...
Title: Balanced Substring Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string *s* consisting only of characters 0 and 1. A substring [*l*,<=*r*] of *s* is a string *s**l**s**l*<=+<=1*s**l*<=+<=2... *s**r*, and its length equals to *r*<=-<=*l*<=+<=1. A substring is called...
```python class Solution: def balancedSubstring(self, n: int, s: str) -> int: ones, zeroes = s.count('1'), s.count('0') if not ones or not zeroes: return 0 elif ones == zeroes: return n elif ones < zeroes: small = ['1', ones] else:...
0
673
A
Bear and Game
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak likes watching sports on TV. He is going to watch a game today. The game lasts 90 minutes and there are no breaks. Each minute can be either interesting or boring. If 15 consecutive minutes are boring then Limak immediately turns TV off. You know that there will be *n* interesting minutes *t*1,<=*t*2,<=......
The first line of the input contains one integer *n* (1<=≤<=*n*<=≤<=90) — the number of interesting minutes. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t*1<=&lt;<=*t*2<=&lt;<=... *t**n*<=≤<=90), given in the increasing order.
Print the number of minutes Limak will watch the game.
[ "3\n7 20 88\n", "9\n16 20 30 40 50 60 70 80 90\n", "9\n15 20 30 40 50 60 70 80 90\n" ]
[ "35\n", "15\n", "90\n" ]
In the first sample, minutes 21, 22, ..., 35 are all boring and thus Limak will turn TV off immediately after the 35-th minute. So, he would watch the game for 35 minutes. In the second sample, the first 15 minutes are boring. In the third sample, there are no consecutive 15 boring minutes. So, Limak will watch the w...
500
[ { "input": "3\n7 20 88", "output": "35" }, { "input": "9\n16 20 30 40 50 60 70 80 90", "output": "15" }, { "input": "9\n15 20 30 40 50 60 70 80 90", "output": "90" }, { "input": "30\n6 11 12 15 22 24 30 31 32 33 34 35 40 42 44 45 47 50 53 54 57 58 63 67 75 77 79 81 83 88", ...
1,587,383,489
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
7
139
0
''' INPUT SHORTCUTS N, K = map(int,input().split()) N ,A,B = map(int,input().split()) string = str(input()) arr = list(map(int,input().split())) N = int(input()) ''' def main(): N = int(input()) arr = list(map(int,input().split())) start = 1 flag = True index = -1 for i in range(len(arr)): if...
Title: Bear and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak likes watching sports on TV. He is going to watch a game today. The game lasts 90 minutes and there are no breaks. Each minute can be either interesting or boring. If 15 consecutive minutes are boring then Lim...
```python ''' INPUT SHORTCUTS N, K = map(int,input().split()) N ,A,B = map(int,input().split()) string = str(input()) arr = list(map(int,input().split())) N = int(input()) ''' def main(): N = int(input()) arr = list(map(int,input().split())) start = 1 flag = True index = -1 for i in range(len(ar...
0
189
A
Cut Ribbon
PROGRAMMING
1,300
[ "brute force", "dp" ]
null
null
Polycarpus has a ribbon, its length is *n*. He wants to cut the ribbon in a way that fulfils the following two conditions: - After the cutting each ribbon piece should have length *a*, *b* or *c*. - After the cutting the number of ribbon pieces should be maximum. Help Polycarpus and find the number of ribbon piece...
The first line contains four space-separated integers *n*, *a*, *b* and *c* (1<=≤<=*n*,<=*a*,<=*b*,<=*c*<=≤<=4000) — the length of the original ribbon and the acceptable lengths of the ribbon pieces after the cutting, correspondingly. The numbers *a*, *b* and *c* can coincide.
Print a single number — the maximum possible number of ribbon pieces. It is guaranteed that at least one correct ribbon cutting exists.
[ "5 5 3 2\n", "7 5 5 2\n" ]
[ "2\n", "2\n" ]
In the first example Polycarpus can cut the ribbon in such way: the first piece has length 2, the second piece has length 3. In the second example Polycarpus can cut the ribbon in such way: the first piece has length 5, the second piece has length 2.
500
[ { "input": "5 5 3 2", "output": "2" }, { "input": "7 5 5 2", "output": "2" }, { "input": "4 4 4 4", "output": "1" }, { "input": "1 1 1 1", "output": "1" }, { "input": "4000 1 2 3", "output": "4000" }, { "input": "4000 3 4 5", "output": "1333" }, ...
1,685,825,011
2,147,483,647
Python 3
OK
TESTS
58
46
0
n, a, b, c = map(int, input().split()) # Initialize dp array with -1 dp = [-1] * (n + 1) # Base case: we can obtain 0 ribbon pieces with 0 length ribbon dp[0] = 0 # Compute dp[i] for i = 1 to n for i in range(1, n + 1): if i >= a and dp[i - a] != -1: dp[i] = max(dp[i], dp[i - a] + 1) if i...
Title: Cut Ribbon Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has a ribbon, its length is *n*. He wants to cut the ribbon in a way that fulfils the following two conditions: - After the cutting each ribbon piece should have length *a*, *b* or *c*. - After the cutting the...
```python n, a, b, c = map(int, input().split()) # Initialize dp array with -1 dp = [-1] * (n + 1) # Base case: we can obtain 0 ribbon pieces with 0 length ribbon dp[0] = 0 # Compute dp[i] for i = 1 to n for i in range(1, n + 1): if i >= a and dp[i - a] != -1: dp[i] = max(dp[i], dp[i - a] + 1)...
3
630
A
Again Twenty Five!
PROGRAMMING
800
[ "number theory" ]
null
null
The HR manager was disappointed again. The last applicant failed the interview the same way as 24 previous ones. "Do I give such a hard task?" — the HR manager thought. "Just raise number 5 to the power of *n* and get last two digits of the number. Yes, of course, *n* can be rather big, and one cannot find the power us...
The only line of the input contains a single integer *n* (2<=≤<=*n*<=≤<=2·1018) — the power in which you need to raise number 5.
Output the last two digits of 5*n* without spaces between them.
[ "2\n" ]
[ "25" ]
none
0
[ { "input": "2", "output": "25" }, { "input": "7", "output": "25" }, { "input": "1000000000000000000", "output": "25" }, { "input": "2000000000000000000", "output": "25" }, { "input": "987654321012345678", "output": "25" } ]
1,693,247,995
2,147,483,647
Python 3
OK
TESTS
5
31
0
n=int(input()) if n>1:print(25) else:print(5**n)
Title: Again Twenty Five! Time Limit: None seconds Memory Limit: None megabytes Problem Description: The HR manager was disappointed again. The last applicant failed the interview the same way as 24 previous ones. "Do I give such a hard task?" — the HR manager thought. "Just raise number 5 to the power of *n* and ge...
```python n=int(input()) if n>1:print(25) else:print(5**n) ```
3
385
C
Bear and Prime Numbers
PROGRAMMING
1,700
[ "binary search", "brute force", "data structures", "dp", "implementation", "math", "number theory" ]
null
null
Recently, the bear started studying data structures and faced the following problem. You are given a sequence of integers *x*1,<=*x*2,<=...,<=*x**n* of length *n* and *m* queries, each of them is characterized by two integers *l**i*,<=*r**i*. Let's introduce *f*(*p*) to represent the number of such indexes *k*, that *...
The first line contains integer *n* (1<=≤<=*n*<=≤<=106). The second line contains *n* integers *x*1,<=*x*2,<=...,<=*x**n* (2<=≤<=*x**i*<=≤<=107). The numbers are not necessarily distinct. The third line contains integer *m* (1<=≤<=*m*<=≤<=50000). Each of the following *m* lines contains a pair of space-separated integ...
Print *m* integers — the answers to the queries on the order the queries appear in the input.
[ "6\n5 5 7 10 14 15\n3\n2 11\n3 12\n4 4\n", "7\n2 3 5 7 11 4 8\n2\n8 10\n2 123\n" ]
[ "9\n7\n0\n", "0\n7\n" ]
Consider the first sample. Overall, the first sample has 3 queries. 1. The first query *l* = 2, *r* = 11 comes. You need to count *f*(2) + *f*(3) + *f*(5) + *f*(7) + *f*(11) = 2 + 1 + 4 + 2 + 0 = 9. 1. The second query comes *l* = 3, *r* = 12. You need to count *f*(3) + *f*(5) + *f*(7) + *f*(11) = 1 + 4 + 2 + 0 = 7....
1,500
[ { "input": "6\n5 5 7 10 14 15\n3\n2 11\n3 12\n4 4", "output": "9\n7\n0" }, { "input": "7\n2 3 5 7 11 4 8\n2\n8 10\n2 123", "output": "0\n7" }, { "input": "9\n50 50 50 50 50 50 50 50 50\n7\n20 20\n8 13\n13 13\n6 14\n3 5\n15 17\n341 1792", "output": "0\n0\n0\n0\n9\n0\n0" }, { "...
1,472,760,752
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
3
2,000
1,433,600
import logging import copy import sys logging.basicConfig(stream=sys.stderr, level=logging.DEBUG) #def solve(firstLine): def isPrime(n): for i in range(2, n//2 + 1): if n % i == 0: return False return True def solve(numbers, s, e): answer = 0 for i i...
Title: Bear and Prime Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently, the bear started studying data structures and faced the following problem. You are given a sequence of integers *x*1,<=*x*2,<=...,<=*x**n* of length *n* and *m* queries, each of them is characterized b...
```python import logging import copy import sys logging.basicConfig(stream=sys.stderr, level=logging.DEBUG) #def solve(firstLine): def isPrime(n): for i in range(2, n//2 + 1): if n % i == 0: return False return True def solve(numbers, s, e): answer = 0 ...
0
276
C
Little Girl and Maximum Sum
PROGRAMMING
1,500
[ "data structures", "greedy", "implementation", "sortings" ]
null
null
The little girl loves the problems on array queries very much. One day she came across a rather well-known problem: you've got an array of $n$ elements (the elements of the array are indexed starting from 1); also, there are $q$ queries, each one is defined by a pair of integers $l_i$, $r_i$ $(1 \le l_i \le r_i \le n)...
The first line contains two space-separated integers $n$ ($1 \le n \le 2\cdot10^5$) and $q$ ($1 \le q \le 2\cdot10^5$) — the number of elements in the array and the number of queries, correspondingly. The next line contains $n$ space-separated integers $a_i$ ($1 \le a_i \le 2\cdot10^5$) — the array elements. Each of ...
In a single line print, a single integer — the maximum sum of query replies after the array elements are reordered. Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.
[ "3 3\n5 3 2\n1 2\n2 3\n1 3\n", "5 3\n5 2 4 1 3\n1 5\n2 3\n2 3\n" ]
[ "25\n", "33\n" ]
none
1,500
[ { "input": "3 3\n5 3 2\n1 2\n2 3\n1 3", "output": "25" }, { "input": "5 3\n5 2 4 1 3\n1 5\n2 3\n2 3", "output": "33" }, { "input": "34 21\n23 38 16 49 44 50 48 34 33 19 18 31 11 15 20 47 44 30 39 33 45 46 1 13 27 16 31 36 17 23 38 5 30 16\n8 16\n14 27\n8 26\n1 8\n5 6\n23 28\n4 33\n13 30\...
1,693,104,544
2,147,483,647
Python 3
OK
TESTS
63
529
27,033,600
n, q = map(int, input().split()) arr = list(map(int, input().split())) store = [0] * (n + 1) for _ in range(q): l, r = map(int, input().split()) store[l - 1] += 1 store[r] -= 1 for i in range(1, n + 1): store[i] += store[i - 1] store = store[:n] store.sort() arr.sort() res = 0 for i...
Title: Little Girl and Maximum Sum Time Limit: None seconds Memory Limit: None megabytes Problem Description: The little girl loves the problems on array queries very much. One day she came across a rather well-known problem: you've got an array of $n$ elements (the elements of the array are indexed starting from 1...
```python n, q = map(int, input().split()) arr = list(map(int, input().split())) store = [0] * (n + 1) for _ in range(q): l, r = map(int, input().split()) store[l - 1] += 1 store[r] -= 1 for i in range(1, n + 1): store[i] += store[i - 1] store = store[:n] store.sort() arr.sort() res = ...
3
989
A
A Blend of Springtime
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
"What a pity it's already late spring," sighs Mino with regret, "one more drizzling night and they'd be gone." "But these blends are at their best, aren't they?" Absorbed in the landscape, Kanno remains optimistic. The landscape can be expressed as a row of consecutive cells, each of which either contains a flower o...
The first and only line of input contains a non-empty string $s$ consisting of uppercase English letters 'A', 'B', 'C' and characters '.' (dots) only ($\lvert s \rvert \leq 100$) — denoting cells containing an amber flower, a buff one, a canary yellow one, and no flowers, respectively.
Output "Yes" if it's possible that all three colours appear in some cell, and "No" otherwise. You can print each letter in any case (upper or lower).
[ ".BAC.\n", "AA..CB\n" ]
[ "Yes\n", "No\n" ]
In the first example, the buff and canary yellow flowers can leave their petals in the central cell, blending all three colours in it. In the second example, it's impossible to satisfy the requirement because there is no way that amber and buff meet in any cell.
500
[ { "input": ".BAC.", "output": "Yes" }, { "input": "AA..CB", "output": "No" }, { "input": ".", "output": "No" }, { "input": "ACB.AAAAAA", "output": "Yes" }, { "input": "B.BC.BBBCA", "output": "Yes" }, { "input": "BA..CAB..B", "output": "Yes" }, ...
1,666,465,024
2,147,483,647
PyPy 3-64
OK
TESTS
37
62
0
s = input() ans = 'No' for i in range(1, len(s)-1): if s[i] == 'A': if (s[i-1] == 'B' and s[i+1] == 'C') or (s[i-1] == 'C' and s[i+1] == 'B'): ans = 'Yes' break elif s[i] == 'B': if (s[i-1] == 'A' and s[i+1] == 'C') or (s[i-1] == 'C' and s[i+1] == 'A'): ...
Title: A Blend of Springtime Time Limit: None seconds Memory Limit: None megabytes Problem Description: "What a pity it's already late spring," sighs Mino with regret, "one more drizzling night and they'd be gone." "But these blends are at their best, aren't they?" Absorbed in the landscape, Kanno remains optimisti...
```python s = input() ans = 'No' for i in range(1, len(s)-1): if s[i] == 'A': if (s[i-1] == 'B' and s[i+1] == 'C') or (s[i-1] == 'C' and s[i+1] == 'B'): ans = 'Yes' break elif s[i] == 'B': if (s[i-1] == 'A' and s[i+1] == 'C') or (s[i-1] == 'C' and s[i+1] == ...
3
748
C
Santa Claus and Robot
PROGRAMMING
1,400
[ "constructive algorithms", "math" ]
null
null
Santa Claus has Robot which lives on the infinite grid and can move along its lines. He can also, having a sequence of *m* points *p*1,<=*p*2,<=...,<=*p**m* with integer coordinates, do the following: denote its initial location by *p*0. First, the robot will move from *p*0 to *p*1 along one of the shortest paths betwe...
The first line of input contains the only positive integer *n* (1<=≤<=*n*<=≤<=2·105) which equals the number of unit segments the robot traveled. The second line contains the movements protocol, which consists of *n* letters, each being equal either L, or R, or U, or D. *k*-th letter stands for the direction which Robo...
The only line of input should contain the minimum possible length of the sequence.
[ "4\nRURD\n", "6\nRRULDD\n", "26\nRRRULURURUULULLLDLDDRDRDLD\n", "3\nRLL\n", "4\nLRLR\n" ]
[ "2\n", "2\n", "7\n", "2\n", "4\n" ]
The illustrations to the first three tests are given below. <img class="tex-graphics" src="https://espresso.codeforces.com/832fb8f97a482be815e0f87edde26c9791a0d330.png" style="max-width: 100.0%;max-height: 100.0%;"/> <img class="tex-graphics" src="https://espresso.codeforces.com/119a8ba68772b2c2bf76f2acdc58027f6c5cde1...
1,500
[ { "input": "4\nRURD", "output": "2" }, { "input": "6\nRRULDD", "output": "2" }, { "input": "26\nRRRULURURUULULLLDLDDRDRDLD", "output": "7" }, { "input": "3\nRLL", "output": "2" }, { "input": "4\nLRLR", "output": "4" }, { "input": "5\nLRDLR", "outpu...
1,483,807,825
2,147,483,647
Python 3
OK
TESTS
32
139
5,427,200
import sys data = sys.stdin.readlines() n = int(data[0].strip()) path = data[1].strip() deg_new = path[0] deg_old = path[0] flag = 0 count = 0 vert = set('UD') gor = set('RL') for i in path: if i == deg_new: continue else: if (i in vert and deg_new in vert) or (i in gor and deg_new...
Title: Santa Claus and Robot Time Limit: None seconds Memory Limit: None megabytes Problem Description: Santa Claus has Robot which lives on the infinite grid and can move along its lines. He can also, having a sequence of *m* points *p*1,<=*p*2,<=...,<=*p**m* with integer coordinates, do the following: denote its i...
```python import sys data = sys.stdin.readlines() n = int(data[0].strip()) path = data[1].strip() deg_new = path[0] deg_old = path[0] flag = 0 count = 0 vert = set('UD') gor = set('RL') for i in path: if i == deg_new: continue else: if (i in vert and deg_new in vert) or (i in gor a...
3
864
A
Fair Game
PROGRAMMING
1,000
[ "implementation", "sortings" ]
null
null
Petya and Vasya decided to play a game. They have *n* cards (*n* is an even number). A single integer is written on each card. Before the game Petya will choose an integer and after that Vasya will choose another integer (different from the number that Petya chose). During the game each player takes all the cards with...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=100) — number of cards. It is guaranteed that *n* is an even number. The following *n* lines contain a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (one integer per line, 1<=≤<=*a**i*<=≤<=100) — numbers written on the *n* cards.
If it is impossible for Petya and Vasya to choose numbers in such a way that the game will be fair, print "NO" (without quotes) in the first line. In this case you should not print anything more. In the other case print "YES" (without quotes) in the first line. In the second line print two distinct integers — number t...
[ "4\n11\n27\n27\n11\n", "2\n6\n6\n", "6\n10\n20\n30\n20\n10\n20\n", "6\n1\n1\n2\n2\n3\n3\n" ]
[ "YES\n11 27\n", "NO\n", "NO\n", "NO\n" ]
In the first example the game will be fair if, for example, Petya chooses number 11, and Vasya chooses number 27. Then the will take all cards — Petya will take cards 1 and 4, and Vasya will take cards 2 and 3. Thus, each of them will take exactly two cards. In the second example fair game is impossible because the nu...
500
[ { "input": "4\n11\n27\n27\n11", "output": "YES\n11 27" }, { "input": "2\n6\n6", "output": "NO" }, { "input": "6\n10\n20\n30\n20\n10\n20", "output": "NO" }, { "input": "6\n1\n1\n2\n2\n3\n3", "output": "NO" }, { "input": "2\n1\n100", "output": "YES\n1 100" }, ...
1,520,881,786
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
61
5,632,000
n = int(input()) a = [int(input()) for i in range(n)] a = [[i, a.count(i)] for i in sorted(set(a))] for p in a: for q in a: if p!=q and p[1]==q[1]: print("YES") print(p[0], q[0]) quit() print("NO")
Title: Fair Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya and Vasya decided to play a game. They have *n* cards (*n* is an even number). A single integer is written on each card. Before the game Petya will choose an integer and after that Vasya will choose another integer (di...
```python n = int(input()) a = [int(input()) for i in range(n)] a = [[i, a.count(i)] for i in sorted(set(a))] for p in a: for q in a: if p!=q and p[1]==q[1]: print("YES") print(p[0], q[0]) quit() print("NO") ```
0
670
D1
Magic Powder - 1
PROGRAMMING
1,400
[ "binary search", "brute force", "implementation" ]
null
null
This problem is given in two versions that differ only by constraints. If you can solve this problem in large constraints, then you can just write a single solution to the both versions. If you find the problem too difficult in large constraints, you can write solution to the simplified version only. Waking up in the ...
The first line of the input contains two positive integers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=1000) — the number of ingredients and the number of grams of the magic powder. The second line contains the sequence *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1000), where the *i*-th number is equal to the number of grams of...
Print the maximum number of cookies, which Apollinaria will be able to bake using the ingredients that she has and the magic powder.
[ "3 1\n2 1 4\n11 3 16\n", "4 3\n4 3 5 6\n11 12 14 20\n" ]
[ "4\n", "3\n" ]
In the first sample it is profitably for Apollinaria to make the existing 1 gram of her magic powder to ingredient with the index 2, then Apollinaria will be able to bake 4 cookies. In the second sample Apollinaria should turn 1 gram of magic powder to ingredient with the index 1 and 1 gram of magic powder to ingredie...
1,000
[ { "input": "3 1\n2 1 4\n11 3 16", "output": "4" }, { "input": "4 3\n4 3 5 6\n11 12 14 20", "output": "3" }, { "input": "10 926\n5 6 8 1 2 5 1 8 4 4\n351 739 998 725 953 970 906 691 707 1000", "output": "137" }, { "input": "20 925\n7 3 1 2 1 3 1 3 1 2 3 1 5 8 1 3 7 3 4 2\n837 ...
1,644,374,515
2,147,483,647
PyPy 3
OK
TESTS
119
93
2,048,000
n,k=map(int,input().strip().split()) a=[*map(int,input().strip().split())] b=[*map(int,input().strip().split())] ans=-1 lo=0 hi=10**10 while lo<=hi: mid=(lo+hi)//2 t=0 for i in range(len(a)): if a[i]*mid<=b[i]: continue else: t+=(a[i]*mid)-b[i] ...
Title: Magic Powder - 1 Time Limit: None seconds Memory Limit: None megabytes Problem Description: This problem is given in two versions that differ only by constraints. If you can solve this problem in large constraints, then you can just write a single solution to the both versions. If you find the problem too dif...
```python n,k=map(int,input().strip().split()) a=[*map(int,input().strip().split())] b=[*map(int,input().strip().split())] ans=-1 lo=0 hi=10**10 while lo<=hi: mid=(lo+hi)//2 t=0 for i in range(len(a)): if a[i]*mid<=b[i]: continue else: t+=(a[i]*m...
3
876
B
Divisiblity of Differences
PROGRAMMING
1,300
[ "implementation", "math", "number theory" ]
null
null
You are given a multiset of *n* integers. You should select exactly *k* of them in a such way that the difference between any two of them is divisible by *m*, or tell that it is impossible. Numbers can be repeated in the original multiset and in the multiset of selected numbers, but number of occurrences of any number...
First line contains three integers *n*, *k* and *m* (2<=≤<=*k*<=≤<=*n*<=≤<=100<=000, 1<=≤<=*m*<=≤<=100<=000) — number of integers in the multiset, number of integers you should select and the required divisor of any pair of selected integers. Second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=...
If it is not possible to select *k* numbers in the desired way, output «No» (without the quotes). Otherwise, in the first line of output print «Yes» (without the quotes). In the second line print *k* integers *b*1,<=*b*2,<=...,<=*b**k* — the selected numbers. If there are multiple possible solutions, print any of them...
[ "3 2 3\n1 8 4\n", "3 3 3\n1 8 4\n", "4 3 5\n2 7 7 7\n" ]
[ "Yes\n1 4 ", "No", "Yes\n2 7 7 " ]
none
1,000
[ { "input": "3 2 3\n1 8 4", "output": "Yes\n1 4 " }, { "input": "3 3 3\n1 8 4", "output": "No" }, { "input": "4 3 5\n2 7 7 7", "output": "Yes\n2 7 7 " }, { "input": "9 9 5\n389149775 833127990 969340400 364457730 48649145 316121525 640054660 924273385 973207825", "output":...
1,508,368,903
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
5,529,600
n, k, m = map(int, input().split()) a = list(map(int, input().split())) ost = [i%m for i in a] for i in range(m): if ost.count(i)>=k: print('YES') count = 0 for j in range(n): if count<k: if ost[j]==i: count+=1 print(a[j], end=' ') else: break; e...
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())) ost = [i%m for i in a] for i in range(m): if ost.count(i)>=k: print('YES') count = 0 for j in range(n): if count<k: if ost[j]==i: count+=1 print(a[j], end=' ') else: bre...
0
818
B
Permutation Game
PROGRAMMING
1,600
[ "implementation" ]
null
null
*n* children are standing in a circle and playing a game. Children's numbers in clockwise order form a permutation *a*1,<=*a*2,<=...,<=*a**n* of length *n*. It is an integer sequence such that each integer from 1 to *n* appears exactly once in it. The game consists of *m* steps. On each step the current leader with in...
The first line contains two integer numbers *n*, *m* (1<=≤<=*n*,<=*m*<=≤<=100). The second line contains *m* integer numbers *l*1,<=*l*2,<=...,<=*l**m* (1<=≤<=*l**i*<=≤<=*n*) — indices of leaders in the beginning of each step.
Print such permutation of *n* numbers *a*1,<=*a*2,<=...,<=*a**n* that leaders in the game will be exactly *l*1,<=*l*2,<=...,<=*l**m* if all the rules are followed. If there are multiple solutions print any of them. If there is no permutation which satisfies all described conditions print -1.
[ "4 5\n2 3 1 4 4\n", "3 3\n3 1 2\n" ]
[ "3 1 2 4 \n", "-1\n" ]
Let's follow leadership in the first example: - Child 2 starts. - Leadership goes from 2 to 2 + *a*<sub class="lower-index">2</sub> = 3. - Leadership goes from 3 to 3 + *a*<sub class="lower-index">3</sub> = 5. As it's greater than 4, it's going in a circle to 1. - Leadership goes from 1 to 1 + *a*<sub class="lowe...
0
[ { "input": "4 5\n2 3 1 4 4", "output": "3 1 2 4 " }, { "input": "3 3\n3 1 2", "output": "-1" }, { "input": "1 100\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1...
1,498,752,668
3,968
Python 3
WRONG_ANSWER
TESTS
2
31
4,608,000
n,k=input().split() n=int(n) k=int(k) order=input().split() for i in range(k): order[i]=int(order[i]) done=[] myDic={} for i in range(1,n+1): myDic[i]=-1 flag=False for i in range(len(order)-1): ans=order[i+1]-order[i] while ans<=0: ans+=n if ans in done: print(-1) flag=True break done....
Title: Permutation Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* children are standing in a circle and playing a game. Children's numbers in clockwise order form a permutation *a*1,<=*a*2,<=...,<=*a**n* of length *n*. It is an integer sequence such that each integer from 1 to *n...
```python n,k=input().split() n=int(n) k=int(k) order=input().split() for i in range(k): order[i]=int(order[i]) done=[] myDic={} for i in range(1,n+1): myDic[i]=-1 flag=False for i in range(len(order)-1): ans=order[i+1]-order[i] while ans<=0: ans+=n if ans in done: print(-1) flag=True bre...
0
278
A
Circle Line
PROGRAMMING
800
[ "implementation" ]
null
null
The circle line of the Berland subway has *n* stations. We know the distances between all pairs of neighboring stations: - *d*1 is the distance between the 1-st and the 2-nd station;- *d*2 is the distance between the 2-nd and the 3-rd station;...- *d**n*<=-<=1 is the distance between the *n*<=-<=1-th and the *n*-th ...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — the number of stations on the circle line. The second line contains *n* integers *d*1,<=*d*2,<=...,<=*d**n* (1<=≤<=*d**i*<=≤<=100) — the distances between pairs of neighboring stations. The third line contains two integers *s* and *t* (1<=≤<=*s*,<=*t*<=≤<=*n*) —...
Print a single number — the length of the shortest path between stations number *s* and *t*.
[ "4\n2 3 4 9\n1 3\n", "4\n5 8 2 100\n4 1\n", "3\n1 1 1\n3 1\n", "3\n31 41 59\n1 1\n" ]
[ "5\n", "15\n", "1\n", "0\n" ]
In the first sample the length of path 1 → 2 → 3 equals 5, the length of path 1 → 4 → 3 equals 13. In the second sample the length of path 4 → 1 is 100, the length of path 4 → 3 → 2 → 1 is 15. In the third sample the length of path 3 → 1 is 1, the length of path 3 → 2 → 1 is 2. In the fourth sample the numbers of st...
500
[ { "input": "4\n2 3 4 9\n1 3", "output": "5" }, { "input": "4\n5 8 2 100\n4 1", "output": "15" }, { "input": "3\n1 1 1\n3 1", "output": "1" }, { "input": "3\n31 41 59\n1 1", "output": "0" }, { "input": "5\n16 13 10 30 15\n4 2", "output": "23" }, { "inpu...
1,644,231,826
2,147,483,647
PyPy 3
OK
TESTS
23
124
0
def main(): n = int(input()) arr = list(map(int, input().split())) s, t = list(map(int, input().split())) s1, t1 = min(s, t), max(s, t) answer = 0 for i in range(s1 - 1, t1 - 1): answer += arr[i] alternate_answer = sum(arr) - answer print(min(answer, alternate_answer...
Title: Circle Line Time Limit: None seconds Memory Limit: None megabytes Problem Description: The circle line of the Berland subway has *n* stations. We know the distances between all pairs of neighboring stations: - *d*1 is the distance between the 1-st and the 2-nd station;- *d*2 is the distance between the 2-nd...
```python def main(): n = int(input()) arr = list(map(int, input().split())) s, t = list(map(int, input().split())) s1, t1 = min(s, t), max(s, t) answer = 0 for i in range(s1 - 1, t1 - 1): answer += arr[i] alternate_answer = sum(arr) - answer print(min(answer, altern...
3
595
A
Vitaly and Night
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
One day Vitaly was going home late at night and wondering: how many people aren't sleeping at that moment? To estimate, Vitaly decided to look which windows are lit in the house he was passing by at that moment. Vitaly sees a building of *n* floors and 2·*m* windows on each floor. On each floor there are *m* flats num...
The first line of the input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of floors in the house and the number of flats on each floor respectively. Next *n* lines describe the floors from top to bottom and contain 2·*m* characters each. If the *i*-th window of the given floor has lights on,...
Print a single integer — the number of flats that have lights on in at least one window, that is, the flats where, according to Vitaly, people aren't sleeping.
[ "2 2\n0 0 0 1\n1 0 1 1\n", "1 3\n1 1 0 1 0 0\n" ]
[ "3\n", "2\n" ]
In the first test case the house has two floors, two flats on each floor. That is, in total there are 4 flats. The light isn't on only on the second floor in the left flat. That is, in both rooms of the flat the light is off. In the second test case the house has one floor and the first floor has three flats. The ligh...
500
[ { "input": "2 2\n0 0 0 1\n1 0 1 1", "output": "3" }, { "input": "1 3\n1 1 0 1 0 0", "output": "2" }, { "input": "3 3\n1 1 1 1 1 1\n1 1 0 1 1 0\n1 0 0 0 1 1", "output": "8" }, { "input": "1 5\n1 0 1 1 1 0 1 1 1 1", "output": "5" }, { "input": "1 100\n1 1 1 1 1 1 1 ...
1,589,447,222
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
109
6,656,000
c = 0 n,m = map(int, input().split()) for i in range(n): a = list(map(int, input().split())) j = 0 while j<2*m: if j%2==0 and a[j]==1: c+=1 j+=2 elif j%2==0 and a[j]==0: j+=1 c+=1 else: j+=1 print(c-1)
Title: Vitaly and Night Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vitaly was going home late at night and wondering: how many people aren't sleeping at that moment? To estimate, Vitaly decided to look which windows are lit in the house he was passing by at that moment. Vital...
```python c = 0 n,m = map(int, input().split()) for i in range(n): a = list(map(int, input().split())) j = 0 while j<2*m: if j%2==0 and a[j]==1: c+=1 j+=2 elif j%2==0 and a[j]==0: j+=1 c+=1 else: j+=1 print(c-1...
0
913
D
Too Easy Problems
PROGRAMMING
1,800
[ "binary search", "brute force", "data structures", "greedy", "sortings" ]
null
null
You are preparing for an exam on scheduling theory. The exam will last for exactly *T* milliseconds and will consist of *n* problems. You can either solve problem *i* in exactly *t**i* milliseconds or ignore it and spend no time. You don't need time to rest after solving a problem, either. Unfortunately, your teacher ...
The first line contains two integers *n* and *T* (1<=≤<=*n*<=≤<=2·105; 1<=≤<=*T*<=≤<=109) — the number of problems in the exam and the length of the exam in milliseconds, respectively. Each of the next *n* lines contains two integers *a**i* and *t**i* (1<=≤<=*a**i*<=≤<=*n*; 1<=≤<=*t**i*<=≤<=104). The problems are numb...
In the first line, output a single integer *s* — your maximum possible final score. In the second line, output a single integer *k* (0<=≤<=*k*<=≤<=*n*) — the number of problems you should solve. In the third line, output *k* distinct integers *p*1,<=*p*2,<=...,<=*p**k* (1<=≤<=*p**i*<=≤<=*n*) — the indexes of problems...
[ "5 300\n3 100\n4 150\n4 80\n2 90\n2 300\n", "2 100\n1 787\n2 788\n", "2 100\n2 42\n2 58\n" ]
[ "2\n3\n3 1 4\n", "0\n0\n\n", "2\n2\n1 2\n" ]
In the first example, you should solve problems 3, 1, and 4. In this case you'll spend 80 + 100 + 90 = 270 milliseconds, falling within the length of the exam, 300 milliseconds (and even leaving yourself 30 milliseconds to have a rest). Problems 3 and 1 will bring you a point each, while problem 4 won't. You'll score t...
1,250
[ { "input": "5 300\n3 100\n4 150\n4 80\n2 90\n2 300", "output": "2\n2\n3 4" }, { "input": "2 100\n1 787\n2 788", "output": "0\n0" }, { "input": "2 100\n2 42\n2 58", "output": "2\n2\n1 2" }, { "input": "1 1\n1 1", "output": "1\n1\n1" }, { "input": "10 481\n4 25\n3 8...
1,630,483,531
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
7
2,000
57,344,000
def check(mid,a,limit): res=[] s=0 for r,t,id in a: if r>=mid and t+s<=limit: res.append(id+1) s+=t elif t+s>limit: break if len(res)==mid: break # print(res,s) return res def f(a,limit): a.sort(key=lambda s:s[1]) ans=None lo=0 hi=10**9 while lo<=hi: mid=(lo+hi)//2 ...
Title: Too Easy Problems Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are preparing for an exam on scheduling theory. The exam will last for exactly *T* milliseconds and will consist of *n* problems. You can either solve problem *i* in exactly *t**i* milliseconds or ignore it and sp...
```python def check(mid,a,limit): res=[] s=0 for r,t,id in a: if r>=mid and t+s<=limit: res.append(id+1) s+=t elif t+s>limit: break if len(res)==mid: break # print(res,s) return res def f(a,limit): a.sort(key=lambda s:s[1]) ans=None lo=0 hi=10**9 while lo<=hi: mid=(lo+...
0
352
A
Jeff and Digits
PROGRAMMING
1,000
[ "brute force", "implementation", "math" ]
null
null
Jeff's got *n* cards, each card contains either digit 0, or digit 5. Jeff can choose several cards and put them in a line so that he gets some number. What is the largest possible number divisible by 90 Jeff can make from the cards he's got? Jeff must make the number without leading zero. At that, we assume that numbe...
The first line contains integer *n* (1<=≤<=*n*<=≤<=103). The next line contains *n* integers *a*1, *a*2, ..., *a**n* (*a**i*<==<=0 or *a**i*<==<=5). Number *a**i* represents the digit that is written on the *i*-th card.
In a single line print the answer to the problem — the maximum number, divisible by 90. If you can't make any divisible by 90 number from the cards, print -1.
[ "4\n5 0 5 0\n", "11\n5 5 5 5 5 5 5 5 0 5 5\n" ]
[ "0\n", "5555555550\n" ]
In the first test you can make only one number that is a multiple of 90 — 0. In the second test you can make number 5555555550, it is a multiple of 90.
500
[ { "input": "4\n5 0 5 0", "output": "0" }, { "input": "11\n5 5 5 5 5 5 5 5 0 5 5", "output": "5555555550" }, { "input": "7\n5 5 5 5 5 5 5", "output": "-1" }, { "input": "1\n5", "output": "-1" }, { "input": "1\n0", "output": "0" }, { "input": "11\n5 0 5 ...
1,650,984,707
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
92
0
amount = int(input()) res = sorted([int(x) for x in input().split()], key = lambda x: -x) sign = 0 if sum(res)%90 == 0: sign = 1 print(''.join([str(x) for x in res])) else: for i in range(1, len(res)): for pos in range(len(res)-i,-1, -i): if int(''.join(str(x) for x in (res[:pos...
Title: Jeff and Digits Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jeff's got *n* cards, each card contains either digit 0, or digit 5. Jeff can choose several cards and put them in a line so that he gets some number. What is the largest possible number divisible by 90 Jeff can make fr...
```python amount = int(input()) res = sorted([int(x) for x in input().split()], key = lambda x: -x) sign = 0 if sum(res)%90 == 0: sign = 1 print(''.join([str(x) for x in res])) else: for i in range(1, len(res)): for pos in range(len(res)-i,-1, -i): if int(''.join(str(x) for x in...
0
258
A
Little Elephant and Bits
PROGRAMMING
1,100
[ "greedy", "math" ]
null
null
The Little Elephant has an integer *a*, written in the binary notation. He wants to write this number on a piece of paper. To make sure that the number *a* fits on the piece of paper, the Little Elephant ought to delete exactly one any digit from number *a* in the binary record. At that a new number appears. It consis...
The single line contains integer *a*, written in the binary notation without leading zeroes. This number contains more than 1 and at most 105 digits.
In the single line print the number that is written without leading zeroes in the binary notation — the answer to the problem.
[ "101\n", "110010\n" ]
[ "11\n", "11010\n" ]
In the first sample the best strategy is to delete the second digit. That results in number 11<sub class="lower-index">2</sub> = 3<sub class="lower-index">10</sub>. In the second sample the best strategy is to delete the third or fourth digits — that results in number 11010<sub class="lower-index">2</sub> = 26<sub cla...
500
[ { "input": "101", "output": "11" }, { "input": "110010", "output": "11010" }, { "input": "10000", "output": "1000" }, { "input": "1111111110", "output": "111111111" }, { "input": "10100101011110101", "output": "1100101011110101" }, { "input": "11101001...
1,630,553,093
2,147,483,647
PyPy 3
OK
TESTS
37
342
29,900,800
n=list(input()) if len(n)!=n.count('1'):n.pop(n.index('0')) else:n.pop(n.index('1')) print(*n,sep='')
Title: Little Elephant and Bits Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant has an integer *a*, written in the binary notation. He wants to write this number on a piece of paper. To make sure that the number *a* fits on the piece of paper, the Little Elephant ought...
```python n=list(input()) if len(n)!=n.count('1'):n.pop(n.index('0')) else:n.pop(n.index('1')) print(*n,sep='') ```
3
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,618,663,279
2,147,483,647
Python 3
OK
TESTS
35
124
0
m, n = input().split() board = [] for i in range(int(m)): board.append([]) for j in range(int(n)): board[i].append(j) total = 0 while True: if len(board) > 1 and board[1].index(board[0][0]): board[0].pop(0) board[1].pop(0) total += 1 elif len(board) > 0 and len(board[0]) > 1: board[0].pop(0...
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 m, n = input().split() board = [] for i in range(int(m)): board.append([]) for j in range(int(n)): board[i].append(j) total = 0 while True: if len(board) > 1 and board[1].index(board[0][0]): board[0].pop(0) board[1].pop(0) total += 1 elif len(board) > 0 and len(board[0]) > 1: boar...
3.969
802
G
Fake News (easy)
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
As it's the first of April, Heidi is suspecting that the news she reads today are fake, and she does not want to look silly in front of all the contestants. She knows that a newspiece is fake if it contains heidi as a subsequence. Help Heidi assess whether the given piece is true, but please be discreet about it...
The first and only line of input contains a single nonempty string *s* of length at most 1000 composed of lowercase letters (a-z).
Output YES if the string *s* contains heidi as a subsequence and NO otherwise.
[ "abcheaibcdi\n", "hiedi\n" ]
[ "YES", "NO" ]
A string *s* contains another string *p* as a subsequence if it is possible to delete some characters from *s* and obtain *p*.
0
[ { "input": "abcheaibcdi", "output": "YES" }, { "input": "hiedi", "output": "NO" }, { "input": "ihied", "output": "NO" }, { "input": "diehi", "output": "NO" }, { "input": "deiih", "output": "NO" }, { "input": "iheid", "output": "NO" }, { "in...
1,636,435,561
2,147,483,647
Python 3
OK
TESTS
58
62
4,505,600
s=input() if s.count('h')<1 or s.count('e')<1 or s.count('d')<1 or s.count('i')<2: print('NO') else: pos=-1 for i in range(len(s)-1,-1,-1): if s[i]=='i': pos=i break if pos==-1: print('NO') else: pos1=-1 for i in range(pos-1,-1,-1): if s[i]=='d': pos1=...
Title: Fake News (easy) Time Limit: None seconds Memory Limit: None megabytes Problem Description: As it's the first of April, Heidi is suspecting that the news she reads today are fake, and she does not want to look silly in front of all the contestants. She knows that a newspiece is fake if it contains heidi as a ...
```python s=input() if s.count('h')<1 or s.count('e')<1 or s.count('d')<1 or s.count('i')<2: print('NO') else: pos=-1 for i in range(len(s)-1,-1,-1): if s[i]=='i': pos=i break if pos==-1: print('NO') else: pos1=-1 for i in range(pos-1,-1,-1): if s[i]=='d': ...
3
25
D
Roads not only in Berland
PROGRAMMING
1,900
[ "dsu", "graphs", "trees" ]
D. Roads not only in Berland
2
256
Berland Government decided to improve relations with neighboring countries. First of all, it was decided to build new roads so that from each city of Berland and neighboring countries it became possible to reach all the others. There are *n* cities in Berland and neighboring countries in total and exactly *n*<=-<=1 two...
The first line contains integer *n* (2<=≤<=*n*<=≤<=1000) — amount of cities in Berland and neighboring countries. Next *n*<=-<=1 lines contain the description of roads. Each road is described by two space-separated integers *a**i*, *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*,<=*a**i*<=≠<=*b**i*) — pair of cities, which the r...
Output the answer, number *t* — what is the least amount of days needed to rebuild roads so that from each city it became possible to reach all the others. Then output *t* lines — the plan of closure of old roads and building of new ones. Each line should describe one day in the format i j u v — it means that road betw...
[ "2\n1 2\n", "7\n1 2\n2 3\n3 1\n4 5\n5 6\n6 7\n" ]
[ "0\n", "1\n3 1 3 7\n" ]
none
0
[ { "input": "2\n1 2", "output": "0" }, { "input": "7\n1 2\n2 3\n3 1\n4 5\n5 6\n6 7", "output": "1\n3 1 3 7" }, { "input": "3\n3 2\n1 2", "output": "0" }, { "input": "3\n3 1\n3 2", "output": "0" }, { "input": "4\n1 4\n3 1\n3 4", "output": "1\n3 4 2 4" }, { ...
1,598,263,969
2,147,483,647
PyPy 3
OK
TESTS
55
436
25,292,800
n = int(input()) p = [i for i in range(n + 1)] def asd(i): if i != p[i]: p[i] = asd(p[i]) return p[i] def qwe(i, j): i = asd(i) j = asd(j) if i != j: p[i] = p[j] return True return False l = list() for i in range(n - 1): a, b = map(int, input().split()) if not q...
Title: Roads not only in Berland Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Berland Government decided to improve relations with neighboring countries. First of all, it was decided to build new roads so that from each city of Berland and neighboring countries it became possible to reach a...
```python n = int(input()) p = [i for i in range(n + 1)] def asd(i): if i != p[i]: p[i] = asd(p[i]) return p[i] def qwe(i, j): i = asd(i) j = asd(j) if i != j: p[i] = p[j] return True return False l = list() for i in range(n - 1): a, b = map(int, input().split()) ...
3.843888
598
A
Tricky Sum
PROGRAMMING
900
[ "math" ]
null
null
In this problem you are to calculate the sum of all integers from 1 to *n*, but you should take all powers of two with minus in the sum. For example, for *n*<==<=4 the sum is equal to <=-<=1<=-<=2<=+<=3<=-<=4<==<=<=-<=4, because 1, 2 and 4 are 20, 21 and 22 respectively. Calculate the answer for *t* values of *n*.
The first line of the input contains a single integer *t* (1<=≤<=*t*<=≤<=100) — the number of values of *n* to be processed. Each of next *t* lines contains a single integer *n* (1<=≤<=*n*<=≤<=109).
Print the requested sum for each of *t* integers *n* given in the input.
[ "2\n4\n1000000000\n" ]
[ "-4\n499999998352516354\n" ]
The answer for the first sample is explained in the statement.
0
[ { "input": "2\n4\n1000000000", "output": "-4\n499999998352516354" }, { "input": "10\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10", "output": "-1\n-3\n0\n-4\n1\n7\n14\n6\n15\n25" }, { "input": "10\n10\n9\n47\n33\n99\n83\n62\n1\n100\n53", "output": "25\n15\n1002\n435\n4696\n3232\n1827\n-1\n4796\n130...
1,681,241,734
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
for i in range(int(input())): x = int(input()) s = ((1 + x) * x)//2 for n in range(33): for b in range(2**n,2**n+1): if b <= x: s+=-(2*b) s = str(s) fn = str(s).find('.') print(s[:fn]+s[fn+1:])
Title: Tricky Sum Time Limit: None seconds Memory Limit: None megabytes Problem Description: In this problem you are to calculate the sum of all integers from 1 to *n*, but you should take all powers of two with minus in the sum. For example, for *n*<==<=4 the sum is equal to <=-<=1<=-<=2<=+<=3<=-<=4<==<=<=-<=4, be...
```python for i in range(int(input())): x = int(input()) s = ((1 + x) * x)//2 for n in range(33): for b in range(2**n,2**n+1): if b <= x: s+=-(2*b) s = str(s) fn = str(s).find('.') print(s[:fn]+s[fn+1:]) ```
0
705
A
Hulk
PROGRAMMING
800
[ "implementation" ]
null
null
Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. Hulk likes the Inception so much, and like that his feelings are complicated. They have *n* layers. The first layer is hate, se...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of layers of love and hate.
Print Dr.Banner's feeling in one line.
[ "1\n", "2\n", "3\n" ]
[ "I hate it\n", "I hate that I love it\n", "I hate that I love that I hate it\n" ]
none
500
[ { "input": "1", "output": "I hate it" }, { "input": "2", "output": "I hate that I love it" }, { "input": "3", "output": "I hate that I love that I hate it" }, { "input": "4", "output": "I hate that I love that I hate that I love it" }, { "input": "5", "output"...
1,691,639,196
2,147,483,647
Python 3
OK
TESTS
21
46
0
a = int(input()) res = "" b = "I hate " c = "I love " for i in range(a): if i % 2 == 0: res += b else: res += c if i != a - 1: res += "that " else: res += "it" print(res)
Title: Hulk Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dr. Bruce Banner hates his enemies (like others don't). As we all know, he can barely talk when he turns into the incredible Hulk. That's why he asked you to help him to express his feelings. Hulk likes the Inception so much, and...
```python a = int(input()) res = "" b = "I hate " c = "I love " for i in range(a): if i % 2 == 0: res += b else: res += c if i != a - 1: res += "that " else: res += "it" print(res) ```
3
500
A
New Year Transportation
PROGRAMMING
1,000
[ "dfs and similar", "graphs", "implementation" ]
null
null
New Year is coming in Line World! In this world, there are *n* cells numbered by integers from 1 to *n*, as a 1<=×<=*n* board. People live in cells. However, it was hard to move between distinct cells, because of the difficulty of escaping the cell. People wanted to meet people who live in other cells. So, user tncks0...
The first line contains two space-separated integers *n* (3<=≤<=*n*<=≤<=3<=×<=104) and *t* (2<=≤<=*t*<=≤<=*n*) — the number of cells, and the index of the cell which I want to go to. The second line contains *n*<=-<=1 space-separated integers *a*1,<=*a*2,<=...,<=*a**n*<=-<=1 (1<=≤<=*a**i*<=≤<=*n*<=-<=*i*). It is guara...
If I can go to cell *t* using the transportation system, print "YES". Otherwise, print "NO".
[ "8 4\n1 2 1 2 1 2 1\n", "8 5\n1 2 1 2 1 1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample, the visited cells are: 1, 2, 4; so we can successfully visit the cell 4. In the second sample, the possible cells to visit are: 1, 2, 4, 6, 7, 8; so we can't visit the cell 5, which we want to visit.
500
[ { "input": "8 4\n1 2 1 2 1 2 1", "output": "YES" }, { "input": "8 5\n1 2 1 2 1 1 1", "output": "NO" }, { "input": "20 19\n13 16 7 6 12 1 5 7 8 6 5 7 5 5 3 3 2 2 1", "output": "YES" }, { "input": "50 49\n11 7 1 41 26 36 19 16 38 14 36 35 37 27 20 27 3 6 21 2 27 11 18 17 19 16 ...
1,679,583,243
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
3
62
4,403,200
n, t = map(int, input().split(" ")) a = list(map(int, input().split(" "))) def transportaion(n, t, a): for i in range(1, n): teleport = i + a[i - 1] if teleport == t: return "YES" return "NO" print(transportaion(n,t,a))
Title: New Year Transportation Time Limit: None seconds Memory Limit: None megabytes Problem Description: New Year is coming in Line World! In this world, there are *n* cells numbered by integers from 1 to *n*, as a 1<=×<=*n* board. People live in cells. However, it was hard to move between distinct cells, because o...
```python n, t = map(int, input().split(" ")) a = list(map(int, input().split(" "))) def transportaion(n, t, a): for i in range(1, n): teleport = i + a[i - 1] if teleport == t: return "YES" return "NO" print(transportaion(n,t,a)) ```
0
837
A
Text Volume
PROGRAMMING
800
[ "implementation" ]
null
null
You are given a text of single-space separated words, consisting of small and capital Latin letters. Volume of the word is number of capital letters in the word. Volume of the text is maximum volume of all words in the text. Calculate the volume of the given text.
The first line contains one integer number *n* (1<=≤<=*n*<=≤<=200) — length of the text. The second line contains text of single-space separated words *s*1,<=*s*2,<=...,<=*s**i*, consisting only of small and capital Latin letters.
Print one integer number — volume of text.
[ "7\nNonZERO\n", "24\nthis is zero answer text\n", "24\nHarbour Space University\n" ]
[ "5\n", "0\n", "1\n" ]
In the first example there is only one word, there are 5 capital letters in it. In the second example all of the words contain 0 capital letters.
0
[ { "input": "7\nNonZERO", "output": "5" }, { "input": "24\nthis is zero answer text", "output": "0" }, { "input": "24\nHarbour Space University", "output": "1" }, { "input": "2\nWM", "output": "2" }, { "input": "200\nLBmJKQLCKUgtTxMoDsEerwvLOXsxASSydOqWyULsRcjMYDWd...
1,502,615,590
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
62
4,608,000
'''#Volume of the word is number of capital letters in the word. Volume of #he text is maximum volume of all words in the text.''' def main(): letter = int(input().strip()) text = input().strip().split(' ') arr = [] count = 0 for i in text[0]: arr.append(i) for j in arr: ...
Title: Text Volume Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a text of single-space separated words, consisting of small and capital Latin letters. Volume of the word is number of capital letters in the word. Volume of the text is maximum volume of all words in the tex...
```python '''#Volume of the word is number of capital letters in the word. Volume of #he text is maximum volume of all words in the text.''' def main(): letter = int(input().strip()) text = input().strip().split(' ') arr = [] count = 0 for i in text[0]: arr.append(i) for j i...
0
965
A
Paper Airplanes
PROGRAMMING
800
[ "math" ]
null
null
To make a paper airplane, one has to use a rectangular piece of paper. From a sheet of standard size you can make $s$ airplanes. A group of $k$ people decided to make $n$ airplanes each. They are going to buy several packs of paper, each of them containing $p$ sheets, and then distribute the sheets between the people....
The only line contains four integers $k$, $n$, $s$, $p$ ($1 \le k, n, s, p \le 10^4$) — the number of people, the number of airplanes each should make, the number of airplanes that can be made using one sheet and the number of sheets in one pack, respectively.
Print a single integer — the minimum number of packs they should buy.
[ "5 3 2 3\n", "5 3 100 1\n" ]
[ "4\n", "5\n" ]
In the first sample they have to buy $4$ packs of paper: there will be $12$ sheets in total, and giving $2$ sheets to each person is enough to suit everyone's needs. In the second sample they have to buy a pack for each person as they can't share sheets.
500
[ { "input": "5 3 2 3", "output": "4" }, { "input": "5 3 100 1", "output": "5" }, { "input": "10000 10000 1 1", "output": "100000000" }, { "input": "1 1 10000 10000", "output": "1" }, { "input": "300 300 21 23", "output": "196" }, { "input": "300 2 37 51...
1,677,689,766
2,147,483,647
Python 3
OK
TESTS
18
46
0
k,n,s,p=map(int,input().split()) each_p_s=n/s if each_p_s!=int(each_p_s): each_p_s=int(each_p_s)+1 sheet=(k*each_p_s)/p if sheet==int(sheet): print(int(sheet)) else: print(int(sheet)+1)
Title: Paper Airplanes Time Limit: None seconds Memory Limit: None megabytes Problem Description: To make a paper airplane, one has to use a rectangular piece of paper. From a sheet of standard size you can make $s$ airplanes. A group of $k$ people decided to make $n$ airplanes each. They are going to buy several p...
```python k,n,s,p=map(int,input().split()) each_p_s=n/s if each_p_s!=int(each_p_s): each_p_s=int(each_p_s)+1 sheet=(k*each_p_s)/p if sheet==int(sheet): print(int(sheet)) else: print(int(sheet)+1) ```
3
652
B
z-sort
PROGRAMMING
1,000
[ "sortings" ]
null
null
A student of *z*-school found a kind of sorting called *z*-sort. The array *a* with *n* elements are *z*-sorted if two conditions hold: 1. *a**i*<=≥<=*a**i*<=-<=1 for all even *i*, 1. *a**i*<=≤<=*a**i*<=-<=1 for all odd *i*<=&gt;<=1. For example the arrays [1,2,1,2] and [1,1,1,1] are *z*-sorted while the array [1,2...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of elements in the array *a*. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=109) — the elements of the array *a*.
If it's possible to make the array *a* *z*-sorted print *n* space separated integers *a**i* — the elements after *z*-sort. Otherwise print the only word "Impossible".
[ "4\n1 2 2 1\n", "5\n1 3 2 2 5\n" ]
[ "1 2 1 2\n", "1 5 2 3 2\n" ]
none
0
[ { "input": "4\n1 2 2 1", "output": "1 2 1 2" }, { "input": "5\n1 3 2 2 5", "output": "1 5 2 3 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 1", "output": "1 1 1 1 1 1 1 1 1 1" }, { "input": "10\n1 9 7 6 2 4 7 8 1 3", "output": "1 ...
1,693,935,642
2,147,483,647
Python 3
OK
TESTS
16
109
204,800
_ = input() array = sorted(list(map(int, input().split()))) def quit(): print("Impossible") exit() for i in range(1, len(array)): if i%2: el, pos = max(map(lambda x: x[::-1], enumerate(array[i:], i))) if el < array[i-1]: quit() else: el, pos = min(map(lambda x: x[::...
Title: z-sort Time Limit: None seconds Memory Limit: None megabytes Problem Description: A student of *z*-school found a kind of sorting called *z*-sort. The array *a* with *n* elements are *z*-sorted if two conditions hold: 1. *a**i*<=≥<=*a**i*<=-<=1 for all even *i*, 1. *a**i*<=≤<=*a**i*<=-<=1 for all odd *i*<=...
```python _ = input() array = sorted(list(map(int, input().split()))) def quit(): print("Impossible") exit() for i in range(1, len(array)): if i%2: el, pos = max(map(lambda x: x[::-1], enumerate(array[i:], i))) if el < array[i-1]: quit() else: el, pos = min(map(lamb...
3
855
B
Marvolo Gaunt's Ring
PROGRAMMING
1,500
[ "brute force", "data structures", "dp" ]
null
null
Professor Dumbledore is helping Harry destroy the Horcruxes. He went to Gaunt Shack as he suspected a Horcrux to be present there. He saw Marvolo Gaunt's Ring and identified it as a Horcrux. Although he destroyed it, he is still affected by its curse. Professor Snape is helping Dumbledore remove the curse. For this, he...
First line of input contains 4 integers *n*,<=*p*,<=*q*,<=*r* (<=-<=109<=≤<=*p*,<=*q*,<=*r*<=≤<=109,<=1<=≤<=*n*<=≤<=105). Next line of input contains *n* space separated integers *a*1,<=*a*2,<=... *a**n* (<=-<=109<=≤<=*a**i*<=≤<=109).
Output a single integer the maximum value of *p*·*a**i*<=+<=*q*·*a**j*<=+<=*r*·*a**k* that can be obtained provided 1<=≤<=*i*<=≤<=*j*<=≤<=*k*<=≤<=*n*.
[ "5 1 2 3\n1 2 3 4 5\n", "5 1 2 -3\n-1 -2 -3 -4 -5\n" ]
[ "30\n", "12\n" ]
In the first sample case, we can take *i* = *j* = *k* = 5, thus making the answer as 1·5 + 2·5 + 3·5 = 30. In second sample case, selecting *i* = *j* = 1 and *k* = 5 gives the answer 12.
1,000
[ { "input": "5 1 2 3\n1 2 3 4 5", "output": "30" }, { "input": "5 1 2 -3\n-1 -2 -3 -4 -5", "output": "12" }, { "input": "5 886327859 82309257 -68295239\n-731225382 354766539 -48222231 -474691998 360965777", "output": "376059240645059046" }, { "input": "4 -96405765 -495906217 6...
1,622,482,848
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
93
0
class Solution: def trap(self, height: List[int]) -> int: n=len(height) pht=[0 for i in range(0,n)] eht=[0 for i in range(0,n)] pht[0]=height[0] eht[n-1]=height[n-1] for i in range(1,n-1): pht[i]=max(pht[i-1],height[i]) f...
Title: Marvolo Gaunt's Ring Time Limit: None seconds Memory Limit: None megabytes Problem Description: Professor Dumbledore is helping Harry destroy the Horcruxes. He went to Gaunt Shack as he suspected a Horcrux to be present there. He saw Marvolo Gaunt's Ring and identified it as a Horcrux. Although he destroyed i...
```python class Solution: def trap(self, height: List[int]) -> int: n=len(height) pht=[0 for i in range(0,n)] eht=[0 for i in range(0,n)] pht[0]=height[0] eht[n-1]=height[n-1] for i in range(1,n-1): pht[i]=max(pht[i-1],height[i]) ...
-1
129
A
Cookies
PROGRAMMING
900
[ "implementation" ]
null
null
Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't want the sisters to quarrel because of nothing when they divide the cookies. That's why Olga wan...
The first line contains the only integer *n* (1<=≤<=*n*<=≤<=100) — the number of cookie bags Anna and Maria have. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=100) — the number of cookies in the *i*-th bag.
Print in the only line the only number — the sought number of ways. If there are no such ways print 0.
[ "1\n1\n", "10\n1 2 2 3 4 4 4 2 2 2\n", "11\n2 2 2 2 2 2 2 2 2 2 99\n" ]
[ "1\n", "8\n", "1\n" ]
In the first sample Olga should take the only bag so that the twins ended up with the even number of cookies. In the second sample Olga can take any of five bags with two cookies or any of three bags with four cookies — 5 + 3 = 8 ways in total. In the third sample, no matter which bag with two cookies Olga chooses, t...
500
[ { "input": "1\n1", "output": "1" }, { "input": "10\n1 2 2 3 4 4 4 2 2 2", "output": "8" }, { "input": "11\n2 2 2 2 2 2 2 2 2 2 99", "output": "1" }, { "input": "2\n1 1", "output": "0" }, { "input": "2\n2 2", "output": "2" }, { "input": "2\n1 2", "o...
1,605,774,036
2,147,483,647
Python 3
OK
TESTS
52
218
0
n = int(input()) a = list(map(int, input().split())) count = 0 for i in a: if i%2==1: count+=1 if count%2==1: print(count) else: print(n-count)
Title: Cookies Time Limit: None seconds Memory Limit: None megabytes Problem Description: Olga came to visit the twins Anna and Maria and saw that they have many cookies. The cookies are distributed into bags. As there are many cookies, Olga decided that it's no big deal if she steals a bag. However, she doesn't wan...
```python n = int(input()) a = list(map(int, input().split())) count = 0 for i in a: if i%2==1: count+=1 if count%2==1: print(count) else: print(n-count) ```
3
294
A
Shaass and Oskols
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Shaass has decided to hunt some birds. There are *n* horizontal electricity wires aligned parallel to each other. Wires are numbered 1 to *n* from top to bottom. On each wire there are some oskols sitting next to each other. Oskol is the name of a delicious kind of birds in Shaass's territory. Supposed there are *a**i*...
The first line of the input contains an integer *n*, (1<=≤<=*n*<=≤<=100). The next line contains a list of space-separated integers *a*1,<=*a*2,<=...,<=*a**n*, (0<=≤<=*a**i*<=≤<=100). The third line contains an integer *m*, (0<=≤<=*m*<=≤<=100). Each of the next *m* lines contains two integers *x**i* and *y**i*. The i...
On the *i*-th line of the output print the number of birds on the *i*-th wire.
[ "5\n10 10 10 10 10\n5\n2 5\n3 13\n2 12\n1 13\n4 6\n", "3\n2 4 1\n1\n2 2\n" ]
[ "0\n12\n5\n0\n16\n", "3\n0\n3\n" ]
none
500
[ { "input": "5\n10 10 10 10 10\n5\n2 5\n3 13\n2 12\n1 13\n4 6", "output": "0\n12\n5\n0\n16" }, { "input": "3\n2 4 1\n1\n2 2", "output": "3\n0\n3" }, { "input": "5\n58 51 45 27 48\n5\n4 9\n5 15\n4 5\n5 8\n1 43", "output": "0\n66\n57\n7\n0" }, { "input": "10\n48 53 10 28 91 56 8...
1,671,645,328
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
26
92
0
wires = int(input()) birds = input().split() birdsOnWires = [int(i) for i in birds] n = int(input()) for i in range(n): x = input().split() wireShot, locationShot = (int(i) for i in x) wireShot -= 1 if wireShot-1 < 0: birdsOnWires[wireShot+1] += (birdsOnWires[wireShot] - locationS...
Title: Shaass and Oskols Time Limit: None seconds Memory Limit: None megabytes Problem Description: Shaass has decided to hunt some birds. There are *n* horizontal electricity wires aligned parallel to each other. Wires are numbered 1 to *n* from top to bottom. On each wire there are some oskols sitting next to each...
```python wires = int(input()) birds = input().split() birdsOnWires = [int(i) for i in birds] n = int(input()) for i in range(n): x = input().split() wireShot, locationShot = (int(i) for i in x) wireShot -= 1 if wireShot-1 < 0: birdsOnWires[wireShot+1] += (birdsOnWires[wireShot] -...
-1
846
A
Curriculum Vitae
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
Hideo Kojima has just quit his job at Konami. Now he is going to find a new place to work. Despite being such a well-known person, he still needs a CV to apply for a job. During all his career Hideo has produced *n* games. Some of them were successful, some were not. Hideo wants to remove several of them (possibly zer...
The first line contains one integer number *n* (1<=≤<=*n*<=≤<=100). The second line contains *n* space-separated integer numbers *s*1,<=*s*2,<=...,<=*s**n* (0<=≤<=*s**i*<=≤<=1). 0 corresponds to an unsuccessful game, 1 — to a successful one.
Print one integer — the maximum number of games Hideo can leave in his CV so that no unsuccessful game comes after a successful one.
[ "4\n1 1 0 1\n", "6\n0 1 0 0 1 0\n", "1\n0\n" ]
[ "3\n", "4\n", "1\n" ]
none
0
[ { "input": "4\n1 1 0 1", "output": "3" }, { "input": "6\n0 1 0 0 1 0", "output": "4" }, { "input": "1\n0", "output": "1" }, { "input": "100\n0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
1,504,630,414
6,514
Python 3
OK
TESTS
18
62
0
n = int(input()) p = list(map(int, input().split())) ind_z = [] ind_o = [] for i in range(n): if p[i] == 0: ind_z.append(i) else: ind_o.append(i) z = [0] * len(ind_z) o = [0] * len(ind_o) for i in range(len(z)): z[i] = i + 1 for j in range(ind_z[i], n): if p[j] == 1...
Title: Curriculum Vitae Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hideo Kojima has just quit his job at Konami. Now he is going to find a new place to work. Despite being such a well-known person, he still needs a CV to apply for a job. During all his career Hideo has produced *n* g...
```python n = int(input()) p = list(map(int, input().split())) ind_z = [] ind_o = [] for i in range(n): if p[i] == 0: ind_z.append(i) else: ind_o.append(i) z = [0] * len(ind_z) o = [0] * len(ind_o) for i in range(len(z)): z[i] = i + 1 for j in range(ind_z[i], n): if...
3
0
none
none
none
0
[ "none" ]
null
null
Профиль горного хребта схематично задан в виде прямоугольной таблицы из символов «.» (пустое пространство) и «*» (часть горы). Каждый столбец таблицы содержит хотя бы одну «звёздочку». Гарантируется, что любой из символов «*» либо находится в нижней строке матрицы, либо непосредственно под ним находится другой символ «...
В первой строке входных данных записаны два целых числа *n* и *m* (1<=≤<=*n*,<=*m*<=≤<=100) — количество строк и столбцов в схематичном изображении соответственно. Далее следуют *n* строк по *m* символов в каждой — схематичное изображение горного хребта. Каждый символ схематичного изображения — это либо «.», либо «*»....
Выведите через пробел два целых числа: - величину наибольшего подъёма за день (или 0, если в профиле горного хребта нет ни одного подъёма), - величину наибольшего спуска за день (или 0, если в профиле горного хребта нет ни одного спуска).
[ "6 11\n...........\n.........*.\n.*.......*.\n**.......*.\n**..*...**.\n***********\n", "5 5\n....*\n...**\n..***\n.****\n*****\n", "8 7\n.......\n.*.....\n.*.....\n.**....\n.**.*..\n.****.*\n.******\n*******\n" ]
[ "3 4\n", "1 0\n", "6 2\n" ]
В первом тестовом примере высоты гор равны: 3, 4, 1, 1, 2, 1, 1, 1, 2, 5, 1. Наибольший подъем равен 3 и находится между горой номер 9 (её высота равна 2) и горой номер 10 (её высота равна 5). Наибольший спуск равен 4 и находится между горой номер 10 (её высота равна 5) и горой номер 11 (её высота равна 1). Во втором ...
0
[ { "input": "6 11\n...........\n.........*.\n.*.......*.\n**.......*.\n**..*...**.\n***********", "output": "3 4" }, { "input": "5 5\n....*\n...**\n..***\n.****\n*****", "output": "1 0" }, { "input": "8 7\n.......\n.*.....\n.*.....\n.**....\n.**.*..\n.****.*\n.******\n*******", "outpu...
1,458,747,539
2,339
Python 3
WRONG_ANSWER
PRETESTS
1
92
4,608,000
a,b = list(map(int,input().split())) tmap = [input() for i in range(a)] montain = [0] * b tmap.reverse() for i in range(a): for j in range(b): if tmap[i][j] == '*': montain[j] = i + 1 banan = [] for i in range(b-1): banan.append(montain[i+1] - montain[i]) p...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Профиль горного хребта схематично задан в виде прямоугольной таблицы из символов «.» (пустое пространство) и «*» (часть горы). Каждый столбец таблицы содержит хотя бы одну «звёздочку». Гарантируется, что любой из символов «*» либо...
```python a,b = list(map(int,input().split())) tmap = [input() for i in range(a)] montain = [0] * b tmap.reverse() for i in range(a): for j in range(b): if tmap[i][j] == '*': montain[j] = i + 1 banan = [] for i in range(b-1): banan.append(montain[i+1] - montain[i]...
0
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,686,921,791
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
m,n=input().split() m=int(m) n=int(n) ans=16/(m*n)+(m*n) 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 m,n=input().split() m=int(m) n=int(n) ans=16/(m*n)+(m*n) print(ans) ```
0
803
D
Magazine Ad
PROGRAMMING
1,900
[ "binary search", "greedy" ]
null
null
The main city magazine offers its readers an opportunity to publish their ads. The format of the ad should be like this: There are space-separated non-empty words of lowercase and uppercase Latin letters. There are hyphen characters '-' in some words, their positions set word wrapping points. Word can include more th...
The first line contains number *k* (1<=≤<=*k*<=≤<=105). The second line contains the text of the ad — non-empty space-separated words of lowercase and uppercase Latin letters and hyphens. Total length of the ad don't exceed 106 characters.
Output minimal width of the ad.
[ "4\ngarage for sa-le\n", "4\nEdu-ca-tion-al Ro-unds are so fun\n" ]
[ "7\n", "10\n" ]
Here all spaces are replaced with dots. In the first example one of possible results after all word wraps looks like this: The second example:
0
[ { "input": "4\ngarage for sa-le", "output": "7" }, { "input": "4\nEdu-ca-tion-al Ro-unds are so fun", "output": "10" }, { "input": "1\nj", "output": "1" }, { "input": "10\nb", "output": "1" }, { "input": "1\nQGVsfZevMD", "output": "10" }, { "input": "1...
1,600,268,485
5,485
PyPy 3
OK
TESTS
30
187
9,318,400
import sys k = int(sys.stdin.buffer.readline().decode('utf-8')) s = sys.stdin.buffer.readline().decode('utf-8').rstrip() n = len(s) prev, words = -1, [] for i in range(n): if s[i] == ' ' or s[i] == '-': words.append(i-prev) prev = i words.append(n-prev-1) ok, ng = n+1, max(words)-1...
Title: Magazine Ad Time Limit: None seconds Memory Limit: None megabytes Problem Description: The main city magazine offers its readers an opportunity to publish their ads. The format of the ad should be like this: There are space-separated non-empty words of lowercase and uppercase Latin letters. There are hyphen...
```python import sys k = int(sys.stdin.buffer.readline().decode('utf-8')) s = sys.stdin.buffer.readline().decode('utf-8').rstrip() n = len(s) prev, words = -1, [] for i in range(n): if s[i] == ' ' or s[i] == '-': words.append(i-prev) prev = i words.append(n-prev-1) ok, ng = n+1, ma...
3
909
A
Generate Login
PROGRAMMING
1,000
[ "brute force", "greedy", "sortings" ]
null
null
The preferred way to generate user login in Polygon is to concatenate a prefix of the user's first name and a prefix of their last name, in that order. Each prefix must be non-empty, and any of the prefixes can be the full name. Typically there are multiple possible logins for each person. You are given the first and ...
The input consists of a single line containing two space-separated strings: the first and the last names. Each character of each string is a lowercase English letter. The length of each string is between 1 and 10, inclusive.
Output a single string — alphabetically earliest possible login formed from these names. The output should be given in lowercase as well.
[ "harry potter\n", "tom riddle\n" ]
[ "hap\n", "tomr\n" ]
none
500
[ { "input": "harry potter", "output": "hap" }, { "input": "tom riddle", "output": "tomr" }, { "input": "a qdpinbmcrf", "output": "aq" }, { "input": "wixjzniiub ssdfodfgap", "output": "wis" }, { "input": "z z", "output": "zz" }, { "input": "ertuyivhfg v"...
1,667,311,990
190
PyPy 3
OK
TESTS
64
93
0
import sys, os, io input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline s, t = input().rstrip().decode().split() u = [] x = "" for i in s: x += i y = "" for j in t: y += j u.append(x + y) ans = min(u) print(ans)
Title: Generate Login Time Limit: None seconds Memory Limit: None megabytes Problem Description: The preferred way to generate user login in Polygon is to concatenate a prefix of the user's first name and a prefix of their last name, in that order. Each prefix must be non-empty, and any of the prefixes can be the fu...
```python import sys, os, io input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline s, t = input().rstrip().decode().split() u = [] x = "" for i in s: x += i y = "" for j in t: y += j u.append(x + y) ans = min(u) print(ans) ```
3
433
A
Kitahara Haruki's Gift
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
Kitahara Haruki has bought *n* apples for Touma Kazusa and Ogiso Setsuna. Now he wants to divide all the apples between the friends. Each apple weights 100 grams or 200 grams. Of course Kitahara Haruki doesn't want to offend any of his friend. Therefore the total weight of the apples given to Touma Kazusa must be equa...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of apples. The second line contains *n* integers *w*1,<=*w*2,<=...,<=*w**n* (*w**i*<==<=100 or *w**i*<==<=200), where *w**i* is the weight of the *i*-th apple.
In a single line print "YES" (without the quotes) if it is possible to divide all the apples between his friends. Otherwise print "NO" (without the quotes).
[ "3\n100 200 100\n", "4\n100 100 100 200\n" ]
[ "YES\n", "NO\n" ]
In the first test sample Kitahara Haruki can give the first and the last apple to Ogiso Setsuna and the middle apple to Touma Kazusa.
500
[ { "input": "3\n100 200 100", "output": "YES" }, { "input": "4\n100 100 100 200", "output": "NO" }, { "input": "1\n100", "output": "NO" }, { "input": "1\n200", "output": "NO" }, { "input": "2\n100 100", "output": "YES" }, { "input": "2\n200 200", "o...
1,665,170,675
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
n=int(input()) l=list(map(int,input())) p=0 i=0 for j in l : if j==100 : p+=1 else : i+=1 if n%2==0 : if i==n/2 and p==n/2 : print("YES") else : print("NO") else : if i==n//2 or i== n//2+1 : print("YES") else : print("NO") ...
Title: Kitahara Haruki's Gift Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kitahara Haruki has bought *n* apples for Touma Kazusa and Ogiso Setsuna. Now he wants to divide all the apples between the friends. Each apple weights 100 grams or 200 grams. Of course Kitahara Haruki doesn't w...
```python n=int(input()) l=list(map(int,input())) p=0 i=0 for j in l : if j==100 : p+=1 else : i+=1 if n%2==0 : if i==n/2 and p==n/2 : print("YES") else : print("NO") else : if i==n//2 or i== n//2+1 : print("YES") else : print("NO...
-1
673
A
Bear and Game
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak likes watching sports on TV. He is going to watch a game today. The game lasts 90 minutes and there are no breaks. Each minute can be either interesting or boring. If 15 consecutive minutes are boring then Limak immediately turns TV off. You know that there will be *n* interesting minutes *t*1,<=*t*2,<=......
The first line of the input contains one integer *n* (1<=≤<=*n*<=≤<=90) — the number of interesting minutes. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t*1<=&lt;<=*t*2<=&lt;<=... *t**n*<=≤<=90), given in the increasing order.
Print the number of minutes Limak will watch the game.
[ "3\n7 20 88\n", "9\n16 20 30 40 50 60 70 80 90\n", "9\n15 20 30 40 50 60 70 80 90\n" ]
[ "35\n", "15\n", "90\n" ]
In the first sample, minutes 21, 22, ..., 35 are all boring and thus Limak will turn TV off immediately after the 35-th minute. So, he would watch the game for 35 minutes. In the second sample, the first 15 minutes are boring. In the third sample, there are no consecutive 15 boring minutes. So, Limak will watch the w...
500
[ { "input": "3\n7 20 88", "output": "35" }, { "input": "9\n16 20 30 40 50 60 70 80 90", "output": "15" }, { "input": "9\n15 20 30 40 50 60 70 80 90", "output": "90" }, { "input": "30\n6 11 12 15 22 24 30 31 32 33 34 35 40 42 44 45 47 50 53 54 57 58 63 67 75 77 79 81 83 88", ...
1,548,430,851
2,147,483,647
Python 3
OK
TESTS
34
124
0
input() X = list(map(int, input().split())) if X[0] > 15: print(15) exit() if len(X) == 1: print(X[0] + 15) exit() for i in range(1, len(X)): if X[i] - X[i - 1] > 15: print(X[i - 1] + 15) exit() if i == len(X) - 1: print(90 if 90 - X[i] <= 15 else X[i] + 15) ...
Title: Bear and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak likes watching sports on TV. He is going to watch a game today. The game lasts 90 minutes and there are no breaks. Each minute can be either interesting or boring. If 15 consecutive minutes are boring then Lim...
```python input() X = list(map(int, input().split())) if X[0] > 15: print(15) exit() if len(X) == 1: print(X[0] + 15) exit() for i in range(1, len(X)): if X[i] - X[i - 1] > 15: print(X[i - 1] + 15) exit() if i == len(X) - 1: print(90 if 90 - X[i] <= 15 else X...
3
51
D
Geometrical problem
PROGRAMMING
2,200
[ "implementation" ]
D. Geometrical problem
1
256
Polycarp loves geometric progressions — he collects them. However, as such progressions occur very rarely, he also loves the sequences of numbers where it is enough to delete a single element to get a geometric progression. In this task we shall define geometric progressions as finite sequences of numbers *a*1,<=*a*2,...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=105) — the number of elements in the given sequence. The second line contains the given sequence. The numbers are space-separated. All the elements of the given sequence are integers and their absolute value does not exceed 104.
Print 0, if the given sequence is a geometric progression. Otherwise, check if it is possible to make the sequence a geometric progression by deleting a single element. If it is possible, print 1. If it is impossible, print 2.
[ "4\n3 6 12 24\n", "4\n-8 -16 24 -32\n", "4\n0 1 2 3\n" ]
[ "0\n", "1\n", "2\n" ]
none
2,000
[ { "input": "4\n3 6 12 24", "output": "0" }, { "input": "4\n-8 -16 24 -32", "output": "1" }, { "input": "4\n0 1 2 3", "output": "2" }, { "input": "5\n1 1 1 1 2", "output": "1" }, { "input": "4\n1 -1 1 -1", "output": "0" }, { "input": "8\n1 2 4 8 16 32 -...
1,687,601,936
2,147,483,647
PyPy 3
COMPILATION_ERROR
TESTS
0
0
0
#include "bits/stdc++.h" #define f first #define s second #define endl '\n' #define all(v) v.begin(), v.end() #define allr(v) v.rbegin(), v.rend() #define len(a) (int)a.size() using namespace std; typedef long long ll; typedef long double ld; typedef unsigned long long ull; const double EPS = 1e-10; c...
Title: Geometrical problem Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Polycarp loves geometric progressions — he collects them. However, as such progressions occur very rarely, he also loves the sequences of numbers where it is enough to delete a single element to get a geometric progress...
```python #include "bits/stdc++.h" #define f first #define s second #define endl '\n' #define all(v) v.begin(), v.end() #define allr(v) v.rbegin(), v.rend() #define len(a) (int)a.size() using namespace std; typedef long long ll; typedef long double ld; typedef unsigned long long ull; const double EPS =...
-1
158
A
Next Round
PROGRAMMING
800
[ "*special", "implementation" ]
null
null
"Contestant who earns a score equal to or greater than the *k*-th place finisher's score will advance to the next round, as long as the contestant earns a positive score..." — an excerpt from contest rules. A total of *n* participants took part in the contest (*n*<=≥<=*k*), and you already know their scores. Calculate...
The first line of the input contains two integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=50) separated by a single space. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=100), where *a**i* is the score earned by the participant who got the *i*-th place. The given sequence...
Output the number of participants who advance to the next round.
[ "8 5\n10 9 8 7 7 7 5 5\n", "4 2\n0 0 0 0\n" ]
[ "6\n", "0\n" ]
In the first example the participant on the 5th place earned 7 points. As the participant on the 6th place also earned 7 points, there are 6 advancers. In the second example nobody got a positive score.
500
[ { "input": "8 5\n10 9 8 7 7 7 5 5", "output": "6" }, { "input": "4 2\n0 0 0 0", "output": "0" }, { "input": "5 1\n1 1 1 1 1", "output": "5" }, { "input": "5 5\n1 1 1 1 1", "output": "5" }, { "input": "1 1\n10", "output": "1" }, { "input": "17 14\n16 15...
1,698,916,204
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
92
0
n, k = map(int, input().split()) l = list(map(int, input().split())) c = 0 if l[k - 1] <= 0: print(0) exit() for i in l: if i >= l[k - 1]: c += 1 print(c)
Title: Next Round Time Limit: None seconds Memory Limit: None megabytes Problem Description: "Contestant who earns a score equal to or greater than the *k*-th place finisher's score will advance to the next round, as long as the contestant earns a positive score..." — an excerpt from contest rules. A total of *n* p...
```python n, k = map(int, input().split()) l = list(map(int, input().split())) c = 0 if l[k - 1] <= 0: print(0) exit() for i in l: if i >= l[k - 1]: c += 1 print(c) ```
0
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,696,657,070
2,147,483,647
Python 3
OK
TESTS
35
92
0
M, N = input().split() intM = int(M) intN = int(N) area = intM * intN # Domino = 2 digits from the area print(area // 2)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python M, N = input().split() intM = int(M) intN = int(N) area = intM * intN # Domino = 2 digits from the area print(area // 2) ```
3.977
5
C
Longest Regular Bracket Sequence
PROGRAMMING
1,900
[ "constructive algorithms", "data structures", "dp", "greedy", "sortings", "strings" ]
C. Longest Regular Bracket Sequence
2
256
This is yet another problem dealing with regular bracket sequences. We should remind you that a bracket sequence is called regular, if by inserting «+» and «1» into it we can get a correct mathematical expression. For example, sequences «(())()», «()» and «(()(()))» are regular, while «)(», «(()» and «(()))(» are not....
The first line of the input file contains a non-empty string, consisting of «(» and «)» characters. Its length does not exceed 106.
Print the length of the longest substring that is a regular bracket sequence, and the number of such substrings. If there are no such substrings, write the only line containing "0 1".
[ ")((())))(()())\n", "))(\n" ]
[ "6 2\n", "0 1\n" ]
none
0
[ { "input": ")((())))(()())", "output": "6 2" }, { "input": "))(", "output": "0 1" }, { "input": "()(())()", "output": "8 1" }, { "input": "((((()(((", "output": "2 1" }, { "input": "))))()())))", "output": "4 1" }, { "input": "(()())()(())()()())())()(...
1,581,177,800
2,147,483,647
Python 3
OK
TESTS
43
1,528
23,040,000
#!/usr/bin/env python # coding: utf-8 # In[2]: from collections import deque s=input() stack=deque() l=len(s) stack.append(-1) count=res=0 for i in range(l): if s[i]=='(': stack.append(i) else: stack.pop() if stack: if i-stack[-1]>res: count=1 ...
Title: Longest Regular Bracket Sequence Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: This is yet another problem dealing with regular bracket sequences. We should remind you that a bracket sequence is called regular, if by inserting «+» and «1» into it we can get a correct mathematical exp...
```python #!/usr/bin/env python # coding: utf-8 # In[2]: from collections import deque s=input() stack=deque() l=len(s) stack.append(-1) count=res=0 for i in range(l): if s[i]=='(': stack.append(i) else: stack.pop() if stack: if i-stack[-1]>res: c...
3.575085
242
B
Big Segment
PROGRAMMING
1,100
[ "implementation", "sortings" ]
null
null
A coordinate line has *n* segments, the *i*-th segment starts at the position *l**i* and ends at the position *r**i*. We will denote such a segment as [*l**i*,<=*r**i*]. You have suggested that one of the defined segments covers all others. In other words, there is such segment in the given set, which contains all oth...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of segments. Next *n* lines contain the descriptions of the segments. The *i*-th line contains two space-separated integers *l**i*,<=*r**i* (1<=≤<=*l**i*<=≤<=*r**i*<=≤<=109) — the borders of the *i*-th segment. It is guaranteed that no two segments c...
Print a single integer — the number of the segment that covers all other segments in the set. If there's no solution, print -1. The segments are numbered starting from 1 in the order in which they appear in the input.
[ "3\n1 1\n2 2\n3 3\n", "6\n1 5\n2 3\n1 10\n7 10\n7 7\n10 10\n" ]
[ "-1\n", "3\n" ]
none
1,000
[ { "input": "3\n1 1\n2 2\n3 3", "output": "-1" }, { "input": "6\n1 5\n2 3\n1 10\n7 10\n7 7\n10 10", "output": "3" }, { "input": "4\n1 5\n2 2\n2 4\n2 5", "output": "1" }, { "input": "5\n3 3\n1 3\n2 2\n2 3\n1 2", "output": "2" }, { "input": "7\n7 7\n8 8\n3 7\n1 6\n1 ...
1,625,922,110
2,147,483,647
PyPy 3
OK
TESTS
45
1,746
10,137,600
n = int(input()) a, b = map(int, input().split()) m_val = a M_val = b m = set() m.add(0) M = set((0,)) for i in range(1, n): a, b =map(int, input().split()) if a < m_val: m_val = a m = set((i,)) elif a == m_val: m.add(i) if b > M_val: M = set((i,)) M_val ...
Title: Big Segment Time Limit: None seconds Memory Limit: None megabytes Problem Description: A coordinate line has *n* segments, the *i*-th segment starts at the position *l**i* and ends at the position *r**i*. We will denote such a segment as [*l**i*,<=*r**i*]. You have suggested that one of the defined segments ...
```python n = int(input()) a, b = map(int, input().split()) m_val = a M_val = b m = set() m.add(0) M = set((0,)) for i in range(1, n): a, b =map(int, input().split()) if a < m_val: m_val = a m = set((i,)) elif a == m_val: m.add(i) if b > M_val: M = set((i,)) ...
3
533
A
Berland Miners
PROGRAMMING
3,000
[ "binary search", "data structures", "dfs and similar", "greedy", "trees" ]
null
null
The biggest gold mine in Berland consists of *n* caves, connected by *n*<=-<=1 transitions. The entrance to the mine leads to the cave number 1, it is possible to go from it to any remaining cave of the mine by moving along the transitions. The mine is being developed by the InMine Inc., *k* miners work for it. Each ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=5·105) — the number of caves in the mine. Then follows a line consisting of *n* positive integers *h*1,<=*h*2,<=...,<=*h**n* (1<=≤<=*h**i*<=≤<=109), where *h**i* is the height of the ceiling in the *i*-th cave. Next *n*<=-<=1 lines contain the descriptions of transit...
In the single line print the minimum number of meters that you need to raise the ceiling by in some cave so that all miners could be sorted into caves and be happy about the work conditions. If it is impossible to do, print <=-<=1. If it is initially possible and there's no need to raise any ceiling, print 0.
[ "6\n5 8 4 6 3 12\n1 2\n1 3\n4 2\n2 5\n6 3\n6\n7 4 2 5 3 11\n", "7\n10 14 7 12 4 50 1\n1 2\n2 3\n2 4\n5 1\n6 5\n1 7\n6\n7 3 4 8 8 10\n", "3\n4 2 8\n1 2\n1 3\n2\n17 15\n" ]
[ "6\n", "0\n", "-1\n" ]
In the first sample test we should increase ceiling height in the first cave from 5 to 11. After that we can distribute miners as following (first goes index of a miner, then index of a cave): <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/5d9b256bdaa3f5b0f9a3fc3b9f56256306a7a570.png" styl...
3,000
[]
1,689,250,974
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
print("_RANDOM_GUESS_1689250974.6836202")# 1689250974.68364
Title: Berland Miners Time Limit: None seconds Memory Limit: None megabytes Problem Description: The biggest gold mine in Berland consists of *n* caves, connected by *n*<=-<=1 transitions. The entrance to the mine leads to the cave number 1, it is possible to go from it to any remaining cave of the mine by moving al...
```python print("_RANDOM_GUESS_1689250974.6836202")# 1689250974.68364 ```
0
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,694,510,723
2,147,483,647
PyPy 3-64
OK
TESTS
20
46
0
import math # Считываем строку с входными данными input_str = input() # Разделяем строку на список строк, используя пробелы в качестве разделителя input_list = input_str.split() # Преобразуем строки в целые числа n = int(input_list[0]) m = int(input_list[1]) a = int(input_list[2]) K = math.ceil(n/a)*ma...
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 # Считываем строку с входными данными input_str = input() # Разделяем строку на список строк, используя пробелы в качестве разделителя input_list = input_str.split() # Преобразуем строки в целые числа n = int(input_list[0]) m = int(input_list[1]) a = int(input_list[2]) K = math.ce...
3.977
846
D
Monitor
PROGRAMMING
1,900
[ "binary search", "data structures" ]
null
null
Recently Luba bought a monitor. Monitor is a rectangular matrix of size *n*<=×<=*m*. But then she started to notice that some pixels cease to work properly. Luba thinks that the monitor will become broken the first moment when it contains a square *k*<=×<=*k* consisting entirely of broken pixels. She knows that *q* pix...
The first line contains four integer numbers *n*,<=*m*,<=*k*,<=*q* (1<=≤<=*n*,<=*m*<=≤<=500,<=1<=≤<=*k*<=≤<=*min*(*n*,<=*m*),<=0<=≤<=*q*<=≤<=*n*·*m*) — the length and width of the monitor, the size of a rectangle such that the monitor is broken if there is a broken rectangle with this size, and the number of broken pix...
Print one number — the minimum moment the monitor became broken, or "-1" if it's still not broken after these *q* pixels stopped working.
[ "2 3 2 5\n2 1 8\n2 2 8\n1 2 1\n1 3 4\n2 3 2\n", "3 3 2 5\n1 2 2\n2 2 1\n2 3 5\n3 2 10\n2 1 100\n" ]
[ "8\n", "-1\n" ]
none
0
[ { "input": "2 3 2 5\n2 1 8\n2 2 8\n1 2 1\n1 3 4\n2 3 2", "output": "8" }, { "input": "3 3 2 5\n1 2 2\n2 2 1\n2 3 5\n3 2 10\n2 1 100", "output": "-1" }, { "input": "29 50 5 29\n21 42 1565821\n21 43 53275635\n21 44 2717830\n21 45 9579585\n21 46 20725775\n22 42 2568372\n22 43 9584662\n22 44...
1,505,214,324
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
3
2,000
5,734,400
def read_list(): return list(map(int, input().split())) class Screen: def __init__(self, n, m, k, q): self.n = n self.m = m self.pixels = [[None for j in range(m)] for i in range(n)] self.q = q self.k = k def __getitem__(self, key): i, j = key return self.pixels[i][j] ...
Title: Monitor Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently Luba bought a monitor. Monitor is a rectangular matrix of size *n*<=×<=*m*. But then she started to notice that some pixels cease to work properly. Luba thinks that the monitor will become broken the first moment when ...
```python def read_list(): return list(map(int, input().split())) class Screen: def __init__(self, n, m, k, q): self.n = n self.m = m self.pixels = [[None for j in range(m)] for i in range(n)] self.q = q self.k = k def __getitem__(self, key): i, j = key return self.pix...
0
898
A
Rounding
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5 Vasya can round it to 0 or to 10. Both ways are correct. For given *n* find out to which int...
The first line contains single integer *n* (0<=≤<=*n*<=≤<=109) — number that Vasya has.
Print result of rounding *n*. Pay attention that in some cases answer isn't unique. In that case print any correct answer.
[ "5\n", "113\n", "1000000000\n", "5432359\n" ]
[ "0\n", "110\n", "1000000000\n", "5432360\n" ]
In the first example *n* = 5. Nearest integers, that ends up with zero are 0 and 10. Any of these answers is correct, so you can print 0 or 10.
500
[ { "input": "5", "output": "0" }, { "input": "113", "output": "110" }, { "input": "1000000000", "output": "1000000000" }, { "input": "5432359", "output": "5432360" }, { "input": "999999994", "output": "999999990" }, { "input": "10", "output": "10" ...
1,700,522,092
2,147,483,647
Python 3
OK
TESTS
64
46
0
n = int(input()) r = n%10 if r <= 5: print(n - r) else: print(n + (10-r))
Title: Rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5...
```python n = int(input()) r = n%10 if r <= 5: print(n - r) else: print(n + (10-r)) ```
3
868
D
Huge Strings
PROGRAMMING
2,200
[ "bitmasks", "brute force", "dp", "implementation", "strings" ]
null
null
You are given *n* strings *s*1,<=*s*2,<=...,<=*s**n* consisting of characters 0 and 1. *m* operations are performed, on each of them you concatenate two existing strings into a new one. On the *i*-th operation the concatenation *s**a**i**s**b**i* is saved into a new string *s**n*<=+<=*i* (the operations are numbered st...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=100) — the number of strings. The next *n* lines contain strings *s*1,<=*s*2,<=...,<=*s**n* (1<=≤<=|*s**i*|<=≤<=100), one per line. The total length of strings is not greater than 100. The next line contains single integer *m* (1<=≤<=*m*<=≤<=100) — the number o...
Print *m* lines, each should contain one integer — the answer to the question after the corresponding operation.
[ "5\n01\n10\n101\n11111\n0\n3\n1 2\n6 5\n4 4\n" ]
[ "1\n2\n0\n" ]
On the first operation, a new string "0110" is created. For *k* = 1 the two possible binary strings of length *k* are "0" and "1", they are substrings of the new string. For *k* = 2 and greater there exist strings of length *k* that do not appear in this string (for *k* = 2 such string is "00"). So the answer is 1. On...
1,500
[ { "input": "5\n01\n10\n101\n11111\n0\n3\n1 2\n6 5\n4 4", "output": "1\n2\n0" }, { "input": "5\n01\n1\n0011\n0\n01\n6\n5 5\n3 2\n4 2\n6 7\n5 1\n9 7", "output": "1\n1\n1\n2\n1\n2" }, { "input": "5\n111101000111100011100110000100\n000111001\n01101000\n000011010010001001100100000001010010011...
1,507,196,622
9,522
Python 3
WRONG_ANSWER
PRETESTS
2
61
307,200
def kont(a,b): ed=max(sp[a][1],sp[b][1]) ze=max(sp[a][0],sp[b][0]) if sp[a][4]==sp[b][2]: if sp[a][4]=='1': ed=max(ed,sp[a][5]+sp[b][3]) else: ze=max(ed,sp[a][5]+sp[b][3]) if sp[b][6]==max(sp[b][3],sp[b][5]) and sp[b][4]==sp[a][2]: kend=sp[b][6]+s...
Title: Huge Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given *n* strings *s*1,<=*s*2,<=...,<=*s**n* consisting of characters 0 and 1. *m* operations are performed, on each of them you concatenate two existing strings into a new one. On the *i*-th operation the concaten...
```python def kont(a,b): ed=max(sp[a][1],sp[b][1]) ze=max(sp[a][0],sp[b][0]) if sp[a][4]==sp[b][2]: if sp[a][4]=='1': ed=max(ed,sp[a][5]+sp[b][3]) else: ze=max(ed,sp[a][5]+sp[b][3]) if sp[b][6]==max(sp[b][3],sp[b][5]) and sp[b][4]==sp[a][2]: kend=...
0
219
A
k-String
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
A string is called a *k*-string if it can be represented as *k* concatenated copies of some string. For example, the string "aabaabaabaab" is at the same time a 1-string, a 2-string and a 4-string, but it is not a 3-string, a 5-string, or a 6-string and so on. Obviously any string is a 1-string. You are given a string...
The first input line contains integer *k* (1<=≤<=*k*<=≤<=1000). The second line contains *s*, all characters in *s* are lowercase English letters. The string length *s* satisfies the inequality 1<=≤<=|*s*|<=≤<=1000, where |*s*| is the length of string *s*.
Rearrange the letters in string *s* in such a way that the result is a *k*-string. Print the result on a single output line. If there are multiple solutions, print any of them. If the solution doesn't exist, print "-1" (without quotes).
[ "2\naazz\n", "3\nabcabcabz\n" ]
[ "azaz\n", "-1\n" ]
none
500
[ { "input": "2\naazz", "output": "azaz" }, { "input": "3\nabcabcabz", "output": "-1" }, { "input": "1\na", "output": "a" }, { "input": "2\nabba", "output": "abab" }, { "input": "2\naaab", "output": "-1" }, { "input": "7\nabacaba", "output": "-1" }...
1,677,950,645
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
60
0
k = int(input()) s = input() letters = set(s) letterToNum = {} for letter in letters: letterToNum[letter] = int(s.count(letter)/k) res = "" for letter in letters: res += letter*letterToNum[letter] print(res*k)
Title: k-String Time Limit: None seconds Memory Limit: None megabytes Problem Description: A string is called a *k*-string if it can be represented as *k* concatenated copies of some string. For example, the string "aabaabaabaab" is at the same time a 1-string, a 2-string and a 4-string, but it is not a 3-string, a ...
```python k = int(input()) s = input() letters = set(s) letterToNum = {} for letter in letters: letterToNum[letter] = int(s.count(letter)/k) res = "" for letter in letters: res += letter*letterToNum[letter] print(res*k) ```
0
0
none
none
none
0
[ "none" ]
null
null
An infinitely long railway has a train consisting of *n* cars, numbered from 1 to *n* (the numbers of all the cars are distinct) and positioned in arbitrary order. David Blaine wants to sort the railway cars in the order of increasing numbers. In one move he can make one of the cars disappear from its place and telepor...
The first line of the input contains integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of cars in the train. The second line contains *n* integers *p**i* (1<=≤<=*p**i*<=≤<=*n*, *p**i*<=≠<=*p**j* if *i*<=≠<=*j*) — the sequence of the numbers of the cars in the train.
Print a single integer — the minimum number of actions needed to sort the railway cars.
[ "5\n4 1 2 5 3\n", "4\n4 1 3 2\n" ]
[ "2\n", "2\n" ]
In the first sample you need first to teleport the 4-th car, and then the 5-th car to the end of the train.
0
[ { "input": "5\n4 1 2 5 3", "output": "2" }, { "input": "4\n4 1 3 2", "output": "2" }, { "input": "1\n1", "output": "0" }, { "input": "2\n1 2", "output": "0" }, { "input": "2\n2 1", "output": "1" }, { "input": "6\n5 3 6 1 4 2", "output": "4" }, ...
1,449,687,134
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
8
2,000
5,529,600
s1=int(input()) s2=input() dmax=0 for i in range(0,s1): d=1 if int(s2.split(" ")[i])!=0: et=int(s2.split(" ")[i]) else: continue j=i+1 while j<s1: if int(s2.split(" ")[j])==et+1: d=d+1 et=int(s2.split(" ")[j]) s2=s2.rep...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: An infinitely long railway has a train consisting of *n* cars, numbered from 1 to *n* (the numbers of all the cars are distinct) and positioned in arbitrary order. David Blaine wants to sort the railway cars in the order of increa...
```python s1=int(input()) s2=input() dmax=0 for i in range(0,s1): d=1 if int(s2.split(" ")[i])!=0: et=int(s2.split(" ")[i]) else: continue j=i+1 while j<s1: if int(s2.split(" ")[j])==et+1: d=d+1 et=int(s2.split(" ")[j]) ...
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,642,925,791
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
122
0
str = input('word\n:') strrev = input('revword\n:') text = str[::-1] if strrev == text: 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 str = input('word\n:') strrev = input('revword\n:') text = str[::-1] if strrev == text: print('yes') else: print('no') ```
0
4
A
Watermelon
PROGRAMMING
800
[ "brute force", "math" ]
A. Watermelon
1
64
One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem. Pete and ...
The first (and the only) input line contains integer number *w* (1<=≤<=*w*<=≤<=100) — the weight of the watermelon bought by the boys.
Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.
[ "8\n" ]
[ "YES\n" ]
For example, the boys can divide the watermelon into two parts of 2 and 6 kilos respectively (another variant — two parts of 4 and 4 kilos).
0
[ { "input": "8", "output": "YES" }, { "input": "5", "output": "NO" }, { "input": "4", "output": "YES" }, { "input": "3", "output": "NO" }, { "input": "2", "output": "NO" }, { "input": "1", "output": "NO" }, { "input": "7", "output": "NO"...
1,690,277,443
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
m=int(input()) for i in range(m): k=int(input()) if k>98: print("yes") elif k<=98: print("no")
Title: Watermelon Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dyin...
```python m=int(input()) for i in range(m): k=int(input()) if k>98: print("yes") elif k<=98: print("no") ```
-1
706
B
Interesting drink
PROGRAMMING
1,100
[ "binary search", "dp", "implementation" ]
null
null
Vasiliy likes to rest after a hard work, so you may often meet him in some bar nearby. As all programmers do, he loves the famous drink "Beecola", which can be bought in *n* different shops in the city. It's known that the price of one bottle in the shop *i* is equal to *x**i* coins. Vasiliy plans to buy his favorite ...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of shops in the city that sell Vasiliy's favourite drink. The second line contains *n* integers *x**i* (1<=≤<=*x**i*<=≤<=100<=000) — prices of the bottles of the drink in the *i*-th shop. The third line contains a single i...
Print *q* integers. The *i*-th of them should be equal to the number of shops where Vasiliy will be able to buy a bottle of the drink on the *i*-th day.
[ "5\n3 10 8 6 11\n4\n1\n10\n3\n11\n" ]
[ "0\n4\n1\n5\n" ]
On the first day, Vasiliy won't be able to buy a drink in any of the shops. On the second day, Vasiliy can buy a drink in the shops 1, 2, 3 and 4. On the third day, Vasiliy can buy a drink only in the shop number 1. Finally, on the last day Vasiliy can buy a drink in any shop.
1,000
[ { "input": "5\n3 10 8 6 11\n4\n1\n10\n3\n11", "output": "0\n4\n1\n5" }, { "input": "5\n868 987 714 168 123\n10\n424\n192\n795\n873\n117\n914\n735\n158\n631\n471", "output": "2\n2\n3\n4\n0\n4\n3\n1\n2\n2" }, { "input": "3\n435 482 309\n7\n245\n241\n909\n745\n980\n29\n521", "output": "...
1,695,955,087
2,147,483,647
Python 3
OK
TESTS
103
686
13,619,200
import bisect lenn = int(input()) prices = list(map(int, input().split())) prices.sort() for _ in range(int(input())): num = int(input()) print(bisect.bisect(prices, num))
Title: Interesting drink Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasiliy likes to rest after a hard work, so you may often meet him in some bar nearby. As all programmers do, he loves the famous drink "Beecola", which can be bought in *n* different shops in the city. It's known tha...
```python import bisect lenn = int(input()) prices = list(map(int, input().split())) prices.sort() for _ in range(int(input())): num = int(input()) print(bisect.bisect(prices, num)) ```
3
451
A
Game With Sticks
PROGRAMMING
900
[ "implementation" ]
null
null
After winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made of *n* horizontal and *m* vertical sticks. An intersection point is any point on the grid which is formed by the intersection of one horizontal stick and one vertical stick. In the grid show...
The first line of input contains two space-separated integers, *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100).
Print a single line containing "Akshat" or "Malvika" (without the quotes), depending on the winner of the game.
[ "2 2\n", "2 3\n", "3 3\n" ]
[ "Malvika\n", "Malvika\n", "Akshat\n" ]
Explanation of the first sample: The grid has four intersection points, numbered from 1 to 4. If Akshat chooses intersection point 1, then he will remove two sticks (1 - 2 and 1 - 3). The resulting grid will look like this. Now there is only one remaining intersection point (i.e. 4). Malvika must choose it and remov...
500
[ { "input": "2 2", "output": "Malvika" }, { "input": "2 3", "output": "Malvika" }, { "input": "3 3", "output": "Akshat" }, { "input": "20 68", "output": "Malvika" }, { "input": "1 1", "output": "Akshat" }, { "input": "1 2", "output": "Akshat" }, ...
1,674,923,790
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
46
0
x=input() y=list(map(int,x.split())) z=y[0]*y[1] if z%2==0: print("Malvika") else: print("Akshat")
Title: Game With Sticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: After winning gold and silver in IOI 2014, Akshat and Malvika want to have some fun. Now they are playing a game on a grid made of *n* horizontal and *m* vertical sticks. An intersection point is any point on the grid...
```python x=input() y=list(map(int,x.split())) z=y[0]*y[1] if z%2==0: print("Malvika") else: print("Akshat") ```
0
560
A
Currency System in Geraldion
PROGRAMMING
1,000
[ "implementation", "sortings" ]
null
null
A magic island Geraldion, where Gerald lives, has its own currency system. It uses banknotes of several values. But the problem is, the system is not perfect and sometimes it happens that Geraldionians cannot express a certain sum of money with any set of banknotes. Of course, they can use any number of banknotes of ea...
The first line contains number *n* (1<=≤<=*n*<=≤<=1000) — the number of values of the banknotes that used in Geraldion. The second line contains *n* distinct space-separated numbers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=106) — the values of the banknotes.
Print a single line — the minimum unfortunate sum. If there are no unfortunate sums, print <=-<=1.
[ "5\n1 2 3 4 5\n" ]
[ "-1\n" ]
none
500
[ { "input": "5\n1 2 3 4 5", "output": "-1" }, { "input": "1\n2", "output": "1" }, { "input": "10\n371054 506438 397130 1 766759 208409 769264 549213 641270 771837", "output": "-1" }, { "input": "10\n635370 154890 909382 220996 276501 716105 538714 140162 171960 271264", "o...
1,438,161,804
2,147,483,647
Python 3
OK
TESTS
16
62
0
input() *a,=map(int,input().split()) if 1 in a:print(-1) else:print(1)
Title: Currency System in Geraldion Time Limit: None seconds Memory Limit: None megabytes Problem Description: A magic island Geraldion, where Gerald lives, has its own currency system. It uses banknotes of several values. But the problem is, the system is not perfect and sometimes it happens that Geraldionians cann...
```python input() *a,=map(int,input().split()) if 1 in a:print(-1) else:print(1) ```
3
681
A
A Good Contest
PROGRAMMING
800
[ "implementation" ]
null
null
Codeforces user' handle color depends on his rating — it is red if his rating is greater or equal to 2400; it is orange if his rating is less than 2400 but greater or equal to 2200, etc. Each time participant takes part in a rated contest, his rating is changed depending on his performance. Anton wants the color of hi...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of participants Anton has outscored in this contest . The next *n* lines describe participants results: the *i*-th of them consists of a participant handle *name**i* and two integers *before**i* and *after**i* (<=-<=4000<=≤<=*be...
Print «YES» (quotes for clarity), if Anton has performed good in the contest and «NO» (quotes for clarity) otherwise.
[ "3\nBurunduk1 2526 2537\nBudAlNik 2084 2214\nsubscriber 2833 2749\n", "3\nApplejack 2400 2400\nFluttershy 2390 2431\nPinkie_Pie -2500 -2450\n" ]
[ "YES", "NO" ]
In the first sample, Anton has outscored user with handle Burunduk1, whose handle was colored red before the contest and his rating has increased after the contest. In the second sample, Applejack's rating has not increased after the contest, while both Fluttershy's and Pinkie_Pie's handles were not colored red before...
500
[ { "input": "3\nBurunduk1 2526 2537\nBudAlNik 2084 2214\nsubscriber 2833 2749", "output": "YES" }, { "input": "3\nApplejack 2400 2400\nFluttershy 2390 2431\nPinkie_Pie -2500 -2450", "output": "NO" }, { "input": "1\nDb -3373 3591", "output": "NO" }, { "input": "5\nQ2bz 960 2342...
1,575,007,726
2,147,483,647
PyPy 3
OK
TESTS
60
155
0
ans = 'NO' for i in range(int(input())): s, a, b = (x for x in input().split()) if int(a) >= 2400 and int(b) > int(a): ans = 'YES' print(ans)
Title: A Good Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Codeforces user' handle color depends on his rating — it is red if his rating is greater or equal to 2400; it is orange if his rating is less than 2400 but greater or equal to 2200, etc. Each time participant takes part ...
```python ans = 'NO' for i in range(int(input())): s, a, b = (x for x in input().split()) if int(a) >= 2400 and int(b) > int(a): ans = 'YES' print(ans) ```
3
808
E
Selling Souvenirs
PROGRAMMING
2,300
[ "binary search", "dp", "greedy", "ternary search" ]
null
null
After several latest reforms many tourists are planning to visit Berland, and Berland people understood that it's an opportunity to earn money and changed their jobs to attract tourists. Petya, for example, left the IT corporation he had been working for and started to sell souvenirs at the market. This morning, as us...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=100000, 1<=≤<=*m*<=≤<=300000) — the number of Petya's souvenirs and total weight that he can carry to the market. Then *n* lines follow. *i*th line contains two integers *w**i* and *c**i* (1<=≤<=*w**i*<=≤<=3, 1<=≤<=*c**i*<=≤<=109) — the weight and the cos...
Print one number — maximum possible total cost of souvenirs that Petya can carry to the market.
[ "1 1\n2 1\n", "2 2\n1 3\n2 2\n", "4 3\n3 10\n2 7\n2 8\n1 1\n" ]
[ "0\n", "3\n", "10\n" ]
none
0
[ { "input": "1 1\n2 1", "output": "0" }, { "input": "2 2\n1 3\n2 2", "output": "3" }, { "input": "4 3\n3 10\n2 7\n2 8\n1 1", "output": "10" }, { "input": "5 5\n3 5\n2 6\n3 2\n1 1\n1 6", "output": "13" }, { "input": "6 6\n1 6\n1 4\n1 8\n3 2\n3 2\n2 8", "output":...
1,581,201,716
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
44
1,060
33,689,600
a = [int(x) for x in input().split()] n = a[0] m = a[1] dp = [0]*(m+1) ws = [[0,0,0],[0,0],[0]] for p in range(n): a = [int(x) for x in input().split()] w = a[0] c = a[1] ws[w-1].append(c) ws[0] = sorted(ws[0])[::-1] ws[1] = sorted(ws[1])[::-1] ws[2] = sorted(ws[2])[::-1] if m == 1: print ((ws[0...
Title: Selling Souvenirs Time Limit: None seconds Memory Limit: None megabytes Problem Description: After several latest reforms many tourists are planning to visit Berland, and Berland people understood that it's an opportunity to earn money and changed their jobs to attract tourists. Petya, for example, left the I...
```python a = [int(x) for x in input().split()] n = a[0] m = a[1] dp = [0]*(m+1) ws = [[0,0,0],[0,0],[0]] for p in range(n): a = [int(x) for x in input().split()] w = a[0] c = a[1] ws[w-1].append(c) ws[0] = sorted(ws[0])[::-1] ws[1] = sorted(ws[1])[::-1] ws[2] = sorted(ws[2])[::-1] if m == 1: pr...
0
496
A
Minimum Difficulty
PROGRAMMING
900
[ "brute force", "implementation", "math" ]
null
null
Mike is trying rock climbing but he is awful at it. There are *n* holds on the wall, *i*-th hold is at height *a**i* off the ground. Besides, let the sequence *a**i* increase, that is, *a**i*<=&lt;<=*a**i*<=+<=1 for all *i* from 1 to *n*<=-<=1; we will call such sequence a track. Mike thinks that the track *a*1, ...,...
The first line contains a single integer *n* (3<=≤<=*n*<=≤<=100) — the number of holds. The next line contains *n* space-separated integers *a**i* (1<=≤<=*a**i*<=≤<=1000), where *a**i* is the height where the hold number *i* hangs. The sequence *a**i* is increasing (i.e. each element except for the first one is strict...
Print a single number — the minimum difficulty of the track after removing a single hold.
[ "3\n1 4 6\n", "5\n1 2 3 4 5\n", "5\n1 2 3 7 8\n" ]
[ "5\n", "2\n", "4\n" ]
In the first sample you can remove only the second hold, then the sequence looks like (1, 6), the maximum difference of the neighboring elements equals 5. In the second test after removing every hold the difficulty equals 2. In the third test you can obtain sequences (1, 3, 7, 8), (1, 2, 7, 8), (1, 2, 3, 8), for whic...
500
[ { "input": "3\n1 4 6", "output": "5" }, { "input": "5\n1 2 3 4 5", "output": "2" }, { "input": "5\n1 2 3 7 8", "output": "4" }, { "input": "3\n1 500 1000", "output": "999" }, { "input": "10\n1 2 3 4 5 6 7 8 9 10", "output": "2" }, { "input": "10\n1 4 9...
1,655,813,078
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
31
0
n = int(input()) array=list(map(int, input(). strip(). split())) dray = [] for i in range(n-1): dray.append(array[i+1] - array[i]) #print(dray) dray2 = [] for i in range(len(dray)-1): dray2.append(abs(dray[i+1] - dray[i])) #print(dray2) indx = dray2.index(min(dray2)) #print(dray2.index(min(dray2))) ...
Title: Minimum Difficulty Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mike is trying rock climbing but he is awful at it. There are *n* holds on the wall, *i*-th hold is at height *a**i* off the ground. Besides, let the sequence *a**i* increase, that is, *a**i*<=&lt;<=*a**i*<=+<=1 fo...
```python n = int(input()) array=list(map(int, input(). strip(). split())) dray = [] for i in range(n-1): dray.append(array[i+1] - array[i]) #print(dray) dray2 = [] for i in range(len(dray)-1): dray2.append(abs(dray[i+1] - dray[i])) #print(dray2) indx = dray2.index(min(dray2)) #print(dray2.index(min(...
0
80
A
Panoramix's Prediction
PROGRAMMING
800
[ "brute force" ]
A. Panoramix's Prediction
2
256
A prime number is a number which has exactly two distinct divisors: one and itself. For example, numbers 2, 7, 3 are prime, and 1, 6, 4 are not. The next prime number after *x* is the smallest prime number greater than *x*. For example, the next prime number after 2 is 3, and the next prime number after 3 is 5. Note t...
The first and only input line contains two positive integers — *n* and *m* (2<=≤<=*n*<=&lt;<=*m*<=≤<=50). It is guaranteed that *n* is prime. Pretests contain all the cases with restrictions 2<=≤<=*n*<=&lt;<=*m*<=≤<=4.
Print YES, if *m* is the next prime number after *n*, or NO otherwise.
[ "3 5\n", "7 11\n", "7 9\n" ]
[ "YES", "YES", "NO" ]
none
500
[ { "input": "3 5", "output": "YES" }, { "input": "7 11", "output": "YES" }, { "input": "7 9", "output": "NO" }, { "input": "2 3", "output": "YES" }, { "input": "2 4", "output": "NO" }, { "input": "3 4", "output": "NO" }, { "input": "3 5", ...
1,615,962,871
2,147,483,647
Python 3
OK
TESTS
45
124
0
l=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,51] n,m=map(int,input().split()) print(l[l.index(n)+1]==m and "YES" or "NO")
Title: Panoramix's Prediction Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A prime number is a number which has exactly two distinct divisors: one and itself. For example, numbers 2, 7, 3 are prime, and 1, 6, 4 are not. The next prime number after *x* is the smallest prime number greater t...
```python l=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,51] n,m=map(int,input().split()) print(l[l.index(n)+1]==m and "YES" or "NO") ```
3.969
344
A
Magnets
PROGRAMMING
800
[ "implementation" ]
null
null
Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets are put together at a close distance, then the like poles will repel each other and the oppo...
The first line of the input contains an integer *n* (1<=≤<=*n*<=≤<=100000) — the number of magnets. Then *n* lines follow. The *i*-th line (1<=≤<=*i*<=≤<=*n*) contains either characters "01", if Mike put the *i*-th magnet in the "plus-minus" position, or characters "10", if Mike put the magnet in the "minus-plus" posit...
On the single line of the output print the number of groups of magnets.
[ "6\n10\n10\n10\n01\n10\n10\n", "4\n01\n01\n10\n10\n" ]
[ "3\n", "2\n" ]
The first testcase corresponds to the figure. The testcase has three groups consisting of three, one and two magnets. The second testcase has two groups, each consisting of two magnets.
500
[ { "input": "6\n10\n10\n10\n01\n10\n10", "output": "3" }, { "input": "4\n01\n01\n10\n10", "output": "2" }, { "input": "1\n10", "output": "1" }, { "input": "2\n01\n10", "output": "2" }, { "input": "2\n10\n10", "output": "1" }, { "input": "3\n10\n01\n10",...
1,695,446,423
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
6
1,000
5,120,000
N = int(input()) cnt = 1 pre = '-' for i in range(N): s = input() if pre == s[0]: cnt += 1 pre = s[1] print(cnt)
Title: Magnets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets...
```python N = int(input()) cnt = 1 pre = '-' for i in range(N): s = input() if pre == s[0]: cnt += 1 pre = s[1] print(cnt) ```
0
854
A
Fraction
PROGRAMMING
800
[ "brute force", "constructive algorithms", "math" ]
null
null
Petya is a big fan of mathematics, especially its part related to fractions. Recently he learned that a fraction is called proper iff its numerator is smaller than its denominator (*a*<=&lt;<=*b*) and that the fraction is called irreducible if its numerator and its denominator are coprime (they do not have positive co...
In the only line of input there is an integer *n* (3<=≤<=*n*<=≤<=1000), the sum of numerator and denominator of the fraction.
Output two space-separated positive integers *a* and *b*, numerator and denominator of the maximum possible proper irreducible fraction satisfying the given sum.
[ "3\n", "4\n", "12\n" ]
[ "1 2\n", "1 3\n", "5 7\n" ]
none
500
[ { "input": "3", "output": "1 2" }, { "input": "4", "output": "1 3" }, { "input": "12", "output": "5 7" }, { "input": "34", "output": "15 19" }, { "input": "13", "output": "6 7" }, { "input": "11", "output": "5 6" }, { "input": "24", "ou...
1,587,042,602
2,147,483,647
Python 3
OK
TESTS
26
108
0
n = int(input()) d = int(n/2) if n%2==1: print(d, d+1) else : if d%2==0: print(d-1, d+1) else :print(d-2, d+2)
Title: Fraction Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya is a big fan of mathematics, especially its part related to fractions. Recently he learned that a fraction is called proper iff its numerator is smaller than its denominator (*a*<=&lt;<=*b*) and that the fraction is cal...
```python n = int(input()) d = int(n/2) if n%2==1: print(d, d+1) else : if d%2==0: print(d-1, d+1) else :print(d-2, d+2) ```
3
779
A
Pupils Redistribution
PROGRAMMING
1,000
[ "constructive algorithms", "math" ]
null
null
In Berland each high school student is characterized by academic performance — integer value between 1 and 5. In high school 0xFF there are two groups of pupils: the group *A* and the group *B*. Each group consists of exactly *n* students. An academic performance of each student is known — integer value between 1 and ...
The first line of the input contains integer number *n* (1<=≤<=*n*<=≤<=100) — number of students in both groups. The second line contains sequence of integer numbers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=5), where *a**i* is academic performance of the *i*-th student of the group *A*. The third line contains se...
Print the required minimum number of exchanges or -1, if the desired distribution of students can not be obtained.
[ "4\n5 4 4 4\n5 5 4 5\n", "6\n1 1 1 1 1 1\n5 5 5 5 5 5\n", "1\n5\n3\n", "9\n3 2 5 5 2 3 3 3 2\n4 1 4 1 1 2 4 4 1\n" ]
[ "1\n", "3\n", "-1\n", "4\n" ]
none
500
[ { "input": "4\n5 4 4 4\n5 5 4 5", "output": "1" }, { "input": "6\n1 1 1 1 1 1\n5 5 5 5 5 5", "output": "3" }, { "input": "1\n5\n3", "output": "-1" }, { "input": "9\n3 2 5 5 2 3 3 3 2\n4 1 4 1 1 2 4 4 1", "output": "4" }, { "input": "1\n1\n2", "output": "-1" ...
1,488,354,047
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
4,812,800
n=int(input()) l=list(map(int,input().split())) l1=list(map(int,input().split())) k=0 p=[] p1=[] for i in range(5) : p.append(l.count(i+1)) p1.append(l1.count(i+1)) c=0 while p!=p1 and c==0 : for i in range(5) : if p[i]!=p1[i] : k=k+1 if p[i]<p1[i] : ...
Title: Pupils Redistribution Time Limit: None seconds Memory Limit: None megabytes Problem Description: In Berland each high school student is characterized by academic performance — integer value between 1 and 5. In high school 0xFF there are two groups of pupils: the group *A* and the group *B*. Each group consis...
```python n=int(input()) l=list(map(int,input().split())) l1=list(map(int,input().split())) k=0 p=[] p1=[] for i in range(5) : p.append(l.count(i+1)) p1.append(l1.count(i+1)) c=0 while p!=p1 and c==0 : for i in range(5) : if p[i]!=p1[i] : k=k+1 if p[i]...
0
987
A
Infinity Gauntlet
PROGRAMMING
800
[ "implementation" ]
null
null
You took a peek on Thanos wearing Infinity Gauntlet. In the Gauntlet there is a place for six Infinity Gems: - the Power Gem of purple color, - the Time Gem of green color, - the Space Gem of blue color, - the Soul Gem of orange color, - the Reality Gem of red color, - the Mind Gem of yellow color. Using colors...
In the first line of input there is one integer $n$ ($0 \le n \le 6$) — the number of Gems in Infinity Gauntlet. In next $n$ lines there are colors of Gems you saw. Words used for colors are: purple, green, blue, orange, red, yellow. It is guaranteed that all the colors are distinct. All colors are given in lowercase ...
In the first line output one integer $m$ ($0 \le m \le 6$) — the number of absent Gems. Then in $m$ lines print the names of absent Gems, each on its own line. Words used for names are: Power, Time, Space, Soul, Reality, Mind. Names can be printed in any order. Keep the first letter uppercase, others lowercase.
[ "4\nred\npurple\nyellow\norange\n", "0\n" ]
[ "2\nSpace\nTime\n", "6\nTime\nMind\nSoul\nPower\nReality\nSpace\n" ]
In the first sample Thanos already has Reality, Power, Mind and Soul Gems, so he needs two more: Time and Space. In the second sample Thanos doesn't have any Gems, so he needs all six.
500
[ { "input": "4\nred\npurple\nyellow\norange", "output": "2\nSpace\nTime" }, { "input": "0", "output": "6\nMind\nSpace\nPower\nTime\nReality\nSoul" }, { "input": "6\npurple\nblue\nyellow\nred\ngreen\norange", "output": "0" }, { "input": "1\npurple", "output": "5\nTime\nReal...
1,598,428,684
2,147,483,647
Python 3
OK
TESTS
64
108
0
gauntlet = [] for _ in range(int(input())): gauntlet.append(input()) stones = ["Power", "Time", "Space", "Soul", "Reality", "Mind"] colors = ["purple", "green", "blue", "orange", "red", "yellow"] print(len(colors)-len(gauntlet)) for i in range(len(stones)): if colors[i] not in gauntlet: print(stones...
Title: Infinity Gauntlet Time Limit: None seconds Memory Limit: None megabytes Problem Description: You took a peek on Thanos wearing Infinity Gauntlet. In the Gauntlet there is a place for six Infinity Gems: - the Power Gem of purple color, - the Time Gem of green color, - the Space Gem of blue color, - the So...
```python gauntlet = [] for _ in range(int(input())): gauntlet.append(input()) stones = ["Power", "Time", "Space", "Soul", "Reality", "Mind"] colors = ["purple", "green", "blue", "orange", "red", "yellow"] print(len(colors)-len(gauntlet)) for i in range(len(stones)): if colors[i] not in gauntlet: pr...
3