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
381
A
Sereja and Dima
PROGRAMMING
800
[ "greedy", "implementation", "two pointers" ]
null
null
Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. During his turn a player can take one card: either the leftmost card in a row, or the rightmost one. Th...
The first line contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of cards on the table. The second line contains space-separated numbers on the cards from left to right. The numbers on the cards are distinct integers from 1 to 1000.
On a single line, print two integers. The first number is the number of Sereja's points at the end of the game, the second number is the number of Dima's points at the end of the game.
[ "4\n4 1 2 10\n", "7\n1 2 3 4 5 6 7\n" ]
[ "12 5\n", "16 12\n" ]
In the first sample Sereja will take cards with numbers 10 and 2, so Sereja's sum is 12. Dima will take cards with numbers 4 and 1, so Dima's sum is 5.
500
[ { "input": "4\n4 1 2 10", "output": "12 5" }, { "input": "7\n1 2 3 4 5 6 7", "output": "16 12" }, { "input": "42\n15 29 37 22 16 5 26 31 6 32 19 3 45 36 33 14 25 20 48 7 42 11 24 28 9 18 8 21 47 17 38 40 44 4 35 1 43 39 41 27 12 13", "output": "613 418" }, { "input": "43\n32 ...
1,686,397,986
2,147,483,647
PyPy 3-64
OK
TESTS
34
62
0
a = int(input()) q = list(map(int, input().split())) t, c, r = 0, 0, 0 for _ in range(a): if q[0] > q[-1] and r == 0: t += q[0] r = 1 del q[0] elif q[0] < q[-1] and r == 0: t += q[-1] r = 1 del q[-1] elif q[0] > q[-1] and r == 1: c += q[0]...
Title: Sereja and Dima Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. Du...
```python a = int(input()) q = list(map(int, input().split())) t, c, r = 0, 0, 0 for _ in range(a): if q[0] > q[-1] and r == 0: t += q[0] r = 1 del q[0] elif q[0] < q[-1] and r == 0: t += q[-1] r = 1 del q[-1] elif q[0] > q[-1] and r == 1: ...
3
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,595,157,712
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
93
6,656,000
n=int(input()) a=input() k=0 for i in a: if(65<=ord(i)<=90): k+=1 print(k)
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 n=int(input()) a=input() k=0 for i in a: if(65<=ord(i)<=90): k+=1 print(k) ```
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,631,725,767
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
124
6,758,400
p =[2, 3, 5, 7, 11, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53] n,m = map(int, input().split()) print("YES" if p[p.index(n) + 1] == m else "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 p =[2, 3, 5, 7, 11, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53] n,m = map(int, input().split()) print("YES" if p[p.index(n) + 1] == m else "NO") ```
0
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,686,793,299
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
30
0
n = int(input()) a = list(int(input()) for i in range(n)) if a.count(a[0]) == n // 2 and len(set(a)) == 2: print("YES") else: 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 = list(int(input()) for i in range(n)) if a.count(a[0]) == n // 2 and len(set(a)) == 2: print("YES") else: print("NO") ```
0
0
none
none
none
0
[ "none" ]
null
null
Stepan likes to repeat vowel letters when he writes words. For example, instead of the word "pobeda" he can write "pobeeeedaaaaa". Sergey does not like such behavior, so he wants to write a program to format the words written by Stepan. This program must combine all consecutive equal vowels to a single vowel. The vowe...
The first line contains the integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of letters in the word written by Stepan. The second line contains the string *s* which has length that equals to *n* and contains only lowercase English letters — the word written by Stepan.
Print the single string — the word written by Stepan converted according to the rules described in the statement.
[ "13\npobeeeedaaaaa\n", "22\niiiimpleeemeentatiioon\n", "18\naeiouyaaeeiioouuyy\n", "24\naaaoooiiiuuuyyyeeeggghhh\n" ]
[ "pobeda\n", "implemeentatioon\n", "aeiouyaeeioouy\n", "aoiuyeggghhh\n" ]
none
0
[ { "input": "13\npobeeeedaaaaa", "output": "pobeda" }, { "input": "22\niiiimpleeemeentatiioon", "output": "implemeentatioon" }, { "input": "18\naeiouyaaeeiioouuyy", "output": "aeiouyaeeioouy" }, { "input": "24\naaaoooiiiuuuyyyeeeggghhh", "output": "aoiuyeggghhh" }, { ...
1,491,408,726
2,226
Python 3
WRONG_ANSWER
TESTS
0
46
4,812,800
n = input(); print(n); st = input(); l = len(st); st = st + '#'; prev = '#'; res = ""; aa=0; ee=0; ii=0; oo=0; uu=0; yy=0; for now in st: if(now!=prev): if aa>0: res += 'a'; if ee==2: res += "ee"; elif ee>0: res += 'e'; if ii>0: res += 'i'; if oo==2: ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Stepan likes to repeat vowel letters when he writes words. For example, instead of the word "pobeda" he can write "pobeeeedaaaaa". Sergey does not like such behavior, so he wants to write a program to format the words written by ...
```python n = input(); print(n); st = input(); l = len(st); st = st + '#'; prev = '#'; res = ""; aa=0; ee=0; ii=0; oo=0; uu=0; yy=0; for now in st: if(now!=prev): if aa>0: res += 'a'; if ee==2: res += "ee"; elif ee>0: res += 'e'; if ii>0: res += '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,564,731,502
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
34
109
0
x=input() j='hello' g=0 n=0 for i in x: if j[g]==i: g+=1 if g==4: print('YES') break if g!=4: print('NO')
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python x=input() j='hello' g=0 n=0 for i in x: if j[g]==i: g+=1 if g==4: print('YES') break if g!=4: print('NO') ```
0
959
A
Mahmoud and Ehab and the even-odd game
PROGRAMMING
800
[ "games", "math" ]
null
null
Mahmoud and Ehab play a game called the even-odd game. Ehab chooses his favorite integer *n* and then they take turns, starting from Mahmoud. In each player's turn, he has to choose an integer *a* and subtract it from *n* such that: - 1<=≤<=*a*<=≤<=*n*. - If it's Mahmoud's turn, *a* has to be even, but if it's Ehab'...
The only line contains an integer *n* (1<=≤<=*n*<=≤<=109), the number at the beginning of the game.
Output "Mahmoud" (without quotes) if Mahmoud wins and "Ehab" (without quotes) otherwise.
[ "1\n", "2\n" ]
[ "Ehab", "Mahmoud" ]
In the first sample, Mahmoud can't choose any integer *a* initially because there is no positive even integer less than or equal to 1 so Ehab wins. In the second sample, Mahmoud has to choose *a* = 2 and subtract it from *n*. It's Ehab's turn and *n* = 0. There is no positive odd integer less than or equal to 0 so Mah...
500
[ { "input": "1", "output": "Ehab" }, { "input": "2", "output": "Mahmoud" }, { "input": "10000", "output": "Mahmoud" }, { "input": "33333", "output": "Ehab" }, { "input": "5", "output": "Ehab" }, { "input": "1000000000", "output": "Mahmoud" }, { ...
1,611,766,958
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
0
n = int(input()) def moha(n): a = n if n%2==0: n -= a else: a -= 1 if a>=1 and a<=n and a%2==0: n -= a return n k = moha(n) if n==k: print('Ehab') else: print('Mahmoud')
Title: Mahmoud and Ehab and the even-odd game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mahmoud and Ehab play a game called the even-odd game. Ehab chooses his favorite integer *n* and then they take turns, starting from Mahmoud. In each player's turn, he has to choose an integer *a*...
```python n = int(input()) def moha(n): a = n if n%2==0: n -= a else: a -= 1 if a>=1 and a<=n and a%2==0: n -= a return n k = moha(n) if n==k: print('Ehab') else: print('Mahmoud') ```
0
625
B
War of the Corporations
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "strings" ]
null
null
A long time ago, in a galaxy far far away two giant IT-corporations Pineapple and Gogol continue their fierce competition. Crucial moment is just around the corner: Gogol is ready to release it's new tablet Lastus 3000. This new device is equipped with specially designed artificial intelligence (AI). Employees of Pine...
The first line of the input contains the name of AI designed by Gogol, its length doesn't exceed 100<=000 characters. Second line contains the name of the phone released by Pineapple 200 years ago, its length doesn't exceed 30. Both string are non-empty and consist of only small English letters.
Print the minimum number of characters that must be replaced with "#" in order to obtain that the name of the phone doesn't occur in the name of AI as a substring.
[ "intellect\ntell\n", "google\napple\n", "sirisiri\nsir\n" ]
[ "1", "0", "2" ]
In the first sample AI's name may be replaced with "int#llect". In the second sample Gogol can just keep things as they are. In the third sample one of the new possible names of AI may be "s#ris#ri".
750
[ { "input": "intellect\ntell", "output": "1" }, { "input": "google\napple", "output": "0" }, { "input": "sirisiri\nsir", "output": "2" }, { "input": "sirisiri\nsiri", "output": "2" }, { "input": "aaaaaaa\naaaa", "output": "1" }, { "input": "bbbbbb\nbb",...
1,627,706,166
2,147,483,647
Python 3
OK
TESTS
56
701
7,270,400
def match(i, ai, n_ai, pop): n_pop = len(pop) j = i x = 0 while(j < n_ai and x < n_pop): if ai[j] == pop[x]: j+=1 x+=1 else: return False if x == n_pop: return True return False def find(ai, pop): n_a...
Title: War of the Corporations Time Limit: None seconds Memory Limit: None megabytes Problem Description: A long time ago, in a galaxy far far away two giant IT-corporations Pineapple and Gogol continue their fierce competition. Crucial moment is just around the corner: Gogol is ready to release it's new tablet Last...
```python def match(i, ai, n_ai, pop): n_pop = len(pop) j = i x = 0 while(j < n_ai and x < n_pop): if ai[j] == pop[x]: j+=1 x+=1 else: return False if x == n_pop: return True return False def find(ai, pop)...
3
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,669,722,555
2,147,483,647
Python 3
OK
TESTS
20
46
0
from math import ceil n,m,a=input().split() n,m,a=int(n),int(m),int(a) c=ceil(n/a)*ceil(m/a) print(c)
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 from math import ceil n,m,a=input().split() n,m,a=int(n),int(m),int(a) c=ceil(n/a)*ceil(m/a) print(c) ```
3.977
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,516,028,878
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
7
124
19,968,000
n = int( input() ) p = [0]*n rank = [0]*n deg = [0]*n edges = [] for i in range( n ): p[i] = i def find_set( x ): if x == p[x]: return ( x ) return ( find_set( p[x] ) ) def union_set( a, b ): fa = find_set( a ) fb = find_set( b ) if rank[fa] < rank[fb]: ...
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 = [0]*n rank = [0]*n deg = [0]*n edges = [] for i in range( n ): p[i] = i def find_set( x ): if x == p[x]: return ( x ) return ( find_set( p[x] ) ) def union_set( a, b ): fa = find_set( a ) fb = find_set( b ) if rank[fa] < rank...
0
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,673,425,576
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
60
0
sumx = sumy = sumz = 0 for _ in range(int(input())): x, y, z = map(int, input().split()) sumx += x sumy += y sumz += z print("YES" if not any([sumx, sumy, umz]) else "NO")
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python sumx = sumy = sumz = 0 for _ in range(int(input())): x, y, z = map(int, input().split()) sumx += x sumy += y sumz += z print("YES" if not any([sumx, sumy, umz]) else "NO") ```
-1
810
B
Summer sell-off
PROGRAMMING
1,300
[ "greedy", "sortings" ]
null
null
Summer holidays! Someone is going on trips, someone is visiting grandparents, but someone is trying to get a part-time job. This summer Noora decided that she wants to earn some money, and took a job in a shop as an assistant. Shop, where Noora is working, has a plan on the following *n* days. For each day sales manag...
The first line contains two integers *n* and *f* (1<=≤<=*n*<=≤<=105,<=0<=≤<=*f*<=≤<=*n*) denoting the number of days in shop's plan and the number of days that Noora has to choose for sell-out. Each line of the following *n* subsequent lines contains two integers *k**i*,<=*l**i* (0<=≤<=*k**i*,<=*l**i*<=≤<=109) denotin...
Print a single integer denoting the maximal number of products that shop can sell.
[ "4 2\n2 1\n3 5\n2 3\n1 5\n", "4 1\n0 2\n0 3\n3 5\n0 6\n" ]
[ "10", "5" ]
In the first example we can choose days with numbers 2 and 4 for sell-out. In this case new numbers of products for sale would be equal to [2, 6, 2, 2] respectively. So on the first day shop will sell 1 product, on the second — 5, on the third — 2, on the fourth — 2. In total 1 + 5 + 2 + 2 = 10 product units. In the s...
1,000
[ { "input": "4 2\n2 1\n3 5\n2 3\n1 5", "output": "10" }, { "input": "4 1\n0 2\n0 3\n3 5\n0 6", "output": "5" }, { "input": "1 1\n5 8", "output": "8" }, { "input": "2 1\n8 12\n6 11", "output": "19" }, { "input": "2 1\n6 7\n5 7", "output": "13" }, { "inpu...
1,696,158,189
2,147,483,647
PyPy 3-64
OK
TESTS
159
811
22,528,000
def main(): n, f = map(int, input().split()) data = [tuple(map(int, input().split())) for _ in range(n)] s = [(min(k, l), min(2 * k, l)) for k, l in data] s.sort(key=lambda x: x[0] - x[1]) result = 0 i = 0 while i < n: if i < f: result += s[i][1] els...
Title: Summer sell-off Time Limit: None seconds Memory Limit: None megabytes Problem Description: Summer holidays! Someone is going on trips, someone is visiting grandparents, but someone is trying to get a part-time job. This summer Noora decided that she wants to earn some money, and took a job in a shop as an ass...
```python def main(): n, f = map(int, input().split()) data = [tuple(map(int, input().split())) for _ in range(n)] s = [(min(k, l), min(2 * k, l)) for k, l in data] s.sort(key=lambda x: x[0] - x[1]) result = 0 i = 0 while i < n: if i < f: result += s[i][1] ...
3
29
A
Spit Problem
PROGRAMMING
1,000
[ "brute force" ]
A. Spit Problem
2
256
In a Berland's zoo there is an enclosure with camels. It is known that camels like to spit. Bob watched these interesting animals for the whole day and registered in his notepad where each animal spitted. Now he wants to know if in the zoo there are two camels, which spitted at each other. Help him to solve this task. ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the amount of camels in the zoo. Each of the following *n* lines contains two integers *x**i* and *d**i* (<=-<=104<=≤<=*x**i*<=≤<=104,<=1<=≤<=|*d**i*|<=≤<=2·104) — records in Bob's notepad. *x**i* is a position of the *i*-th camel, and *d**i* is a distance at wh...
If there are two camels, which spitted at each other, output YES. Otherwise, output NO.
[ "2\n0 1\n1 -1\n", "3\n0 1\n1 1\n2 -2\n", "5\n2 -10\n3 10\n0 5\n5 -5\n10 1\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
500
[ { "input": "2\n0 1\n1 -1", "output": "YES" }, { "input": "3\n0 1\n1 1\n2 -2", "output": "NO" }, { "input": "5\n2 -10\n3 10\n0 5\n5 -5\n10 1", "output": "YES" }, { "input": "10\n-9897 -1144\n-4230 -6350\n2116 -3551\n-3635 4993\n3907 -9071\n-2362 4120\n-6542 984\n5807 3745\n759...
1,625,159,882
2,147,483,647
PyPy 3
OK
TESTS
30
216
1,331,200
n = int(input()) x = [] d = [] x_d = [] for i in range(n): a,b = map(int,input().split()) x.append(a) d.append(b) x_d.append(a+b) for i in range(n): for j in range(n): done=False if x_d[j]==x[i]: if x[j]==x_d[i]: print("YES") ...
Title: Spit Problem Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: In a Berland's zoo there is an enclosure with camels. It is known that camels like to spit. Bob watched these interesting animals for the whole day and registered in his notepad where each animal spitted. Now he wants to know ...
```python n = int(input()) x = [] d = [] x_d = [] for i in range(n): a,b = map(int,input().split()) x.append(a) d.append(b) x_d.append(a+b) for i in range(n): for j in range(n): done=False if x_d[j]==x[i]: if x[j]==x_d[i]: print("YES") ...
3.94352
793
B
Igor and his way to work
PROGRAMMING
1,600
[ "dfs and similar", "graphs", "implementation", "shortest paths" ]
null
null
Woken up by the alarm clock Igor the financial analyst hurried up to the work. He ate his breakfast and sat in his car. Sadly, when he opened his GPS navigator, he found that some of the roads in Bankopolis, the city where he lives, are closed due to road works. Moreover, Igor has some problems with the steering wheel,...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000) — the number of rows and the number of columns in the grid. Each of the next *n* lines contains *m* characters denoting the corresponding row of the grid. The following characters can occur: - "." — an empty cell; - "*" — a cell with road ...
In the only line print "YES" if there is a path between Igor's home and Igor's office with no more than two turns, and "NO" otherwise.
[ "5 5\n..S..\n****.\nT....\n****.\n.....\n", "5 5\nS....\n****.\n.....\n.****\n..T..\n" ]
[ "YES", "NO" ]
The first sample is shown on the following picture: In the second sample it is impossible to reach Igor's office using less that 4 turns, thus there exists no path using no more than 2 turns. The path using exactly 4 turns is shown on this picture:
1,000
[ { "input": "5 5\nS....\n****.\n.....\n.****\n..T..", "output": "NO" }, { "input": "1 2\nST", "output": "YES" }, { "input": "3 1\nS\n*\nT", "output": "NO" }, { "input": "3 3\n*..\n...\nTS.", "output": "YES" }, { "input": "3 3\nT.*\n*.*\n*S*", "output": "YES" ...
1,673,698,645
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
n, m = list(map(int,input().split())) res = [] for i in range(n): num = input() num = list(num) res.append(num) for i in range(n): for j in range(m): if res[i][j] == 'S': ini, fin = i , j break direction = [[0,1], [1,0], [-1,0],[0,-1]] q = [[ini, fin, 0, 0...
Title: Igor and his way to work Time Limit: None seconds Memory Limit: None megabytes Problem Description: Woken up by the alarm clock Igor the financial analyst hurried up to the work. He ate his breakfast and sat in his car. Sadly, when he opened his GPS navigator, he found that some of the roads in Bankopolis, th...
```python n, m = list(map(int,input().split())) res = [] for i in range(n): num = input() num = list(num) res.append(num) for i in range(n): for j in range(m): if res[i][j] == 'S': ini, fin = i , j break direction = [[0,1], [1,0], [-1,0],[0,-1]] q = [[ini,...
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,655,480,824
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
60
0
def domino(m, n): if m % 2 == 0: return (m / 2 * n) elif n % 2 == 0: return (n /2 * m) else : return ((m // 2) * n) + (n // 2) pass if __name__ == "__main__": m, n = map(int, input().split()) domino(m, n) print(domino(m, n))
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 def domino(m, n): if m % 2 == 0: return (m / 2 * n) elif n % 2 == 0: return (n /2 * m) else : return ((m // 2) * n) + (n // 2) pass if __name__ == "__main__": m, n = map(int, input().split()) domino(m, n) print(domino(m, n)) ```
0
658
A
Bear and Reverse Radewoosh
PROGRAMMING
800
[ "implementation" ]
null
null
Limak and Radewoosh are going to compete against each other in the upcoming algorithmic contest. They are equally skilled but they won't solve problems in the same order. There will be *n* problems. The *i*-th problem has initial score *p**i* and it takes exactly *t**i* minutes to solve it. Problems are sorted by diff...
The first line contains two integers *n* and *c* (1<=≤<=*n*<=≤<=50,<=1<=≤<=*c*<=≤<=1000) — the number of problems and the constant representing the speed of loosing points. The second line contains *n* integers *p*1,<=*p*2,<=...,<=*p**n* (1<=≤<=*p**i*<=≤<=1000,<=*p**i*<=&lt;<=*p**i*<=+<=1) — initial scores. The third...
Print "Limak" (without quotes) if Limak will get more points in total. Print "Radewoosh" (without quotes) if Radewoosh will get more points in total. Print "Tie" (without quotes) if Limak and Radewoosh will get the same total number of points.
[ "3 2\n50 85 250\n10 15 25\n", "3 6\n50 85 250\n10 15 25\n", "8 1\n10 20 30 40 50 60 70 80\n8 10 58 63 71 72 75 76\n" ]
[ "Limak\n", "Radewoosh\n", "Tie\n" ]
In the first sample, there are 3 problems. Limak solves them as follows: 1. Limak spends 10 minutes on the 1-st problem and he gets 50 - *c*·10 = 50 - 2·10 = 30 points. 1. Limak spends 15 minutes on the 2-nd problem so he submits it 10 + 15 = 25 minutes after the start of the contest. For the 2-nd problem he gets 85...
500
[ { "input": "3 2\n50 85 250\n10 15 25", "output": "Limak" }, { "input": "3 6\n50 85 250\n10 15 25", "output": "Radewoosh" }, { "input": "8 1\n10 20 30 40 50 60 70 80\n8 10 58 63 71 72 75 76", "output": "Tie" }, { "input": "4 1\n3 5 6 9\n1 2 4 8", "output": "Limak" }, {...
1,551,602,393
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
93
0
n,c=map(int,input().split()) l=list(map(int,input().split())) t=list(map(int,input().split())) u=t[::-1] for i in range(1,n): t[i],u[i]=t[i]+t[i-1],u[i]+u[i-1] pl=0 ql=0 for i in range(n): if l[i]>=c*(t[i]): pl+=t[i]*c else: pl+=l[i] if l[n-1-i]>=c*(u[i]): ql+=u[i]*...
Title: Bear and Reverse Radewoosh Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak and Radewoosh are going to compete against each other in the upcoming algorithmic contest. They are equally skilled but they won't solve problems in the same order. There will be *n* problems. The *i*-...
```python n,c=map(int,input().split()) l=list(map(int,input().split())) t=list(map(int,input().split())) u=t[::-1] for i in range(1,n): t[i],u[i]=t[i]+t[i-1],u[i]+u[i-1] pl=0 ql=0 for i in range(n): if l[i]>=c*(t[i]): pl+=t[i]*c else: pl+=l[i] if l[n-1-i]>=c*(u[i]): ...
0
548
A
Mike and Fax
PROGRAMMING
1,100
[ "brute force", "implementation", "strings" ]
null
null
While Mike was walking in the subway, all the stuff in his back-bag dropped on the ground. There were several fax messages among them. He concatenated these strings in some order and now he has string *s*. He is not sure if this is his own back-bag or someone else's. He remembered that there were exactly *k* messages ...
The first line of input contains string *s* containing lowercase English letters (1<=≤<=|*s*|<=≤<=1000). The second line contains integer *k* (1<=≤<=*k*<=≤<=1000).
Print "YES"(without quotes) if he has worn his own back-bag or "NO"(without quotes) otherwise.
[ "saba\n2\n", "saddastavvat\n2\n" ]
[ "NO\n", "YES\n" ]
Palindrome is a string reading the same forward and backward. In the second sample, the faxes in his back-bag can be "saddas" and "tavvat".
500
[ { "input": "saba\n2", "output": "NO" }, { "input": "saddastavvat\n2", "output": "YES" }, { "input": "aaaaaaaaaa\n3", "output": "NO" }, { "input": "aaaaaa\n3", "output": "YES" }, { "input": "abaacca\n2", "output": "NO" }, { "input": "a\n1", "output"...
1,602,335,321
2,147,483,647
Python 3
OK
TESTS
56
109
0
s=input() k=int(input()) x=len(s) if x%k!=0: print("NO") else: n=x//k c=0 m=0 for i in range(k): s1=s[c:c+n] if s1==s1[::-1]: m+=1 c+=n if m==k: print("YES") else: print("NO")
Title: Mike and Fax Time Limit: None seconds Memory Limit: None megabytes Problem Description: While Mike was walking in the subway, all the stuff in his back-bag dropped on the ground. There were several fax messages among them. He concatenated these strings in some order and now he has string *s*. He is not sure ...
```python s=input() k=int(input()) x=len(s) if x%k!=0: print("NO") else: n=x//k c=0 m=0 for i in range(k): s1=s[c:c+n] if s1==s1[::-1]: m+=1 c+=n if m==k: print("YES") else: print("NO") ...
3
519
C
A and B and Team Training
PROGRAMMING
1,300
[ "greedy", "implementation", "math", "number theory" ]
null
null
A and B are preparing themselves for programming contests. An important part of preparing for a competition is sharing programming knowledge from the experienced members to those who are just beginning to deal with the contests. Therefore, during the next team training A decided to make teams so that newbies are solvi...
The first line contains two integers *n* and *m* (0<=≤<=*n*,<=*m*<=≤<=5·105) — the number of experienced participants and newbies that are present at the training session.
Print the maximum number of teams that can be formed.
[ "2 6\n", "4 5\n" ]
[ "2\n", "3\n" ]
Let's represent the experienced players as XP and newbies as NB. In the first test the teams look as follows: (XP, NB, NB), (XP, NB, NB). In the second test sample the teams look as follows: (XP, NB, NB), (XP, NB, NB), (XP, XP, NB).
1,500
[ { "input": "2 6", "output": "2" }, { "input": "4 5", "output": "3" }, { "input": "1 1", "output": "0" }, { "input": "3 3", "output": "2" }, { "input": "500000 500000", "output": "333333" }, { "input": "70 100", "output": "56" }, { "input": ...
1,660,327,295
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
24
46
0
m = list(map(int,input().split())) e = m[0] n = m[1] team = (e+n) // 3 if e == 0 or n == 0: print(0) elif team <= e: print(team) else: print(e)
Title: A and B and Team Training Time Limit: None seconds Memory Limit: None megabytes Problem Description: A and B are preparing themselves for programming contests. An important part of preparing for a competition is sharing programming knowledge from the experienced members to those who are just beginning to dea...
```python m = list(map(int,input().split())) e = m[0] n = m[1] team = (e+n) // 3 if e == 0 or n == 0: print(0) elif team <= e: print(team) else: print(e) ```
0
401
C
Team
PROGRAMMING
1,400
[ "constructive algorithms", "greedy", "implementation" ]
null
null
Now it's time of Olympiads. Vanya and Egor decided to make his own team to take part in a programming Olympiad. They've been best friends ever since primary school and hopefully, that can somehow help them in teamwork. For each team Olympiad, Vanya takes his play cards with numbers. He takes only the cards containing ...
The first line contains two integers: *n* (1<=≤<=*n*<=≤<=106) — the number of cards containing number 0; *m* (1<=≤<=*m*<=≤<=106) — the number of cards containing number 1.
In a single line print the required sequence of zeroes and ones without any spaces. If such sequence is impossible to obtain, print -1.
[ "1 2\n", "4 8\n", "4 10\n", "1 5\n" ]
[ "101\n", "110110110101\n", "11011011011011\n", "-1\n" ]
none
1,500
[ { "input": "1 2", "output": "101" }, { "input": "4 8", "output": "110110110101" }, { "input": "4 10", "output": "11011011011011" }, { "input": "1 5", "output": "-1" }, { "input": "3 4", "output": "1010101" }, { "input": "3 10", "output": "-1" }, ...
1,652,361,868
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
12
170
7,065,600
n, m = map(int, input().split()) l = n + m if(m >= n and 2 * (n + 1) >= m): c = m - n m -= 2 * c ans = '' while(c): ans += '110' c -= 1 n -= 1 ans += '10' * n print(ans[:l]) else: print(-1)
Title: Team Time Limit: None seconds Memory Limit: None megabytes Problem Description: Now it's time of Olympiads. Vanya and Egor decided to make his own team to take part in a programming Olympiad. They've been best friends ever since primary school and hopefully, that can somehow help them in teamwork. For each t...
```python n, m = map(int, input().split()) l = n + m if(m >= n and 2 * (n + 1) >= m): c = m - n m -= 2 * c ans = '' while(c): ans += '110' c -= 1 n -= 1 ans += '10' * n print(ans[:l]) else: print(-1) ```
0
472
A
Design Tutorial: Learn from Math
PROGRAMMING
800
[ "math", "number theory" ]
null
null
One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statement called the "Goldbach's conjecture". It says: "each even number no less than four can be expressed as the sum of two ...
The only line contains an integer *n* (12<=≤<=*n*<=≤<=106).
Output two composite integers *x* and *y* (1<=&lt;<=*x*,<=*y*<=&lt;<=*n*) such that *x*<=+<=*y*<==<=*n*. If there are multiple solutions, you can output any of them.
[ "12\n", "15\n", "23\n", "1000000\n" ]
[ "4 8\n", "6 9\n", "8 15\n", "500000 500000\n" ]
In the first example, 12 = 4 + 8 and both 4, 8 are composite numbers. You can output "6 6" or "8 4" as well. In the second example, 15 = 6 + 9. Note that you can't output "1 14" because 1 is not a composite number.
500
[ { "input": "12", "output": "4 8" }, { "input": "15", "output": "6 9" }, { "input": "23", "output": "8 15" }, { "input": "1000000", "output": "500000 500000" }, { "input": "63874", "output": "4 63870" }, { "input": "14568", "output": "4 14564" }, ...
1,681,045,177
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
31
0
import math def isprime(a): for i in range(2,int(math.sqrt(a))+3): if a%i==0: return 1 return 0 n=int(input()) for i in range(4,int(math.sqrt(n))+4): if n%i==0: p=n-i if (isprime(i)) and (isprime(p)): print(i,n-i) break
Title: Design Tutorial: Learn from Math Time Limit: None seconds Memory Limit: None megabytes Problem Description: One way to create a task is to learn from math. You can generate some random math statement or modify some theorems to get something new and build a new task from that. For example, there is a statemen...
```python import math def isprime(a): for i in range(2,int(math.sqrt(a))+3): if a%i==0: return 1 return 0 n=int(input()) for i in range(4,int(math.sqrt(n))+4): if n%i==0: p=n-i if (isprime(i)) and (isprime(p)): print(i,n-i) break ...
0
365
A
Good Number
PROGRAMMING
1,100
[ "implementation" ]
null
null
Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number every time it occurs in array *a*).
The first line contains integers *n* and *k* (1<=≤<=*n*<=≤<=100, 0<=≤<=*k*<=≤<=9). The *i*-th of the following *n* lines contains integer *a**i* without leading zeroes (1<=≤<=*a**i*<=≤<=109).
Print a single integer — the number of *k*-good numbers in *a*.
[ "10 6\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n", "2 1\n1\n10\n" ]
[ "10\n", "1\n" ]
none
500
[ { "input": "10 6\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560", "output": "10" }, { "input": "2 1\n1\n10", "output": "1" }, { "input": "1 0\n1000000000", "output": "1" }, { "input": "1 1\n1000000000", "output": "1" }, { ...
1,638,637,798
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
# -*- coding: utf-8 -*- """Untitled25.ipynb Automatically generated by Colaboratory. Original file is located at https://colab.research.google.com/drive/1C4lffqvVsaZuKB3tgB3XIy1Pwms9LVYP """ n = input() l = list(map(int, input().split())) c = 0 p = 0 n = len(l) for i in range(n): if l[i] != -1: p +=l...
Title: Good Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number eve...
```python # -*- coding: utf-8 -*- """Untitled25.ipynb Automatically generated by Colaboratory. Original file is located at https://colab.research.google.com/drive/1C4lffqvVsaZuKB3tgB3XIy1Pwms9LVYP """ n = input() l = list(map(int, input().split())) c = 0 p = 0 n = len(l) for i in range(n): if l[i] != -1: ...
0
386
A
Second-Price Auction
PROGRAMMING
800
[ "implementation" ]
null
null
In this problem we consider a special type of an auction, which is called the second-price auction. As in regular auction *n* bidders place a bid which is price a bidder ready to pay. The auction is closed, that is, each bidder secretly informs the organizer of the auction price he is willing to pay. After that, the au...
The first line of the input contains *n* (2<=≤<=*n*<=≤<=1000) — number of bidders. The second line contains *n* distinct integer numbers *p*1,<=*p*2,<=... *p**n*, separated by single spaces (1<=≤<=*p**i*<=≤<=10000), where *p**i* stands for the price offered by the *i*-th bidder.
The single output line should contain two integers: index of the winner and the price he will pay. Indices are 1-based.
[ "2\n5 7\n", "3\n10 2 8\n", "6\n3 8 2 9 4 14\n" ]
[ "2 5\n", "1 8\n", "6 9\n" ]
none
500
[ { "input": "2\n5 7", "output": "2 5" }, { "input": "3\n10 2 8", "output": "1 8" }, { "input": "6\n3 8 2 9 4 14", "output": "6 9" }, { "input": "4\n4707 7586 4221 5842", "output": "2 5842" }, { "input": "5\n3304 4227 4869 6937 6002", "output": "4 6002" }, {...
1,626,268,842
2,147,483,647
Python 3
OK
TESTS
42
77
6,963,200
n=int(input()) a=list(map(int,input().split())) b=sorted(a) print((a.index(b[-1])+1),b[-2])
Title: Second-Price Auction Time Limit: None seconds Memory Limit: None megabytes Problem Description: In this problem we consider a special type of an auction, which is called the second-price auction. As in regular auction *n* bidders place a bid which is price a bidder ready to pay. The auction is closed, that is...
```python n=int(input()) a=list(map(int,input().split())) b=sorted(a) print((a.index(b[-1])+1),b[-2]) ```
3
709
A
Juicer
PROGRAMMING
900
[ "implementation" ]
null
null
Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To be put in the juicer the orange must have size not exceeding *b*, so if Kolya sees an orange ...
The first line of the input contains three integers *n*, *b* and *d* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*b*<=≤<=*d*<=≤<=1<=000<=000) — the number of oranges, the maximum size of the orange that fits in the juicer and the value *d*, which determines the condition when the waste section should be emptied. The second line co...
Print one integer — the number of times Kolya will have to empty the waste section.
[ "2 7 10\n5 6\n", "1 5 10\n7\n", "3 10 10\n5 7 7\n", "1 1 1\n1\n" ]
[ "1\n", "0\n", "1\n", "0\n" ]
In the first sample, Kolya will squeeze the juice from two oranges and empty the waste section afterwards. In the second sample, the orange won't fit in the juicer so Kolya will have no juice at all.
500
[ { "input": "2 7 10\n5 6", "output": "1" }, { "input": "1 5 10\n7", "output": "0" }, { "input": "3 10 10\n5 7 7", "output": "1" }, { "input": "1 1 1\n1", "output": "0" }, { "input": "2 951637 951638\n44069 951637", "output": "1" }, { "input": "50 100 12...
1,658,473,701
2,147,483,647
Python 3
OK
TESTS
58
93
7,270,400
n, b, d = map(int, input().split()) sps = list(map(int, input().split())) tt = 0 amn = 0 for j in sps: if j > b: continue tt += j if tt > d: tt = 0 amn += 1 print (amn)
Title: Juicer Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To b...
```python n, b, d = map(int, input().split()) sps = list(map(int, input().split())) tt = 0 amn = 0 for j in sps: if j > b: continue tt += j if tt > d: tt = 0 amn += 1 print (amn) ```
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,642,267,277
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
n=int(input()) lst=list(map(int,input().split())) ev=[] od=[] for i in lst: if i%2==0: ev.append(i) else: od.append(i) if len(ev)==1: print(lst.index(ev[0])) elif len(od)==1: print(lst.index(od[0]))
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python n=int(input()) lst=list(map(int,input().split())) ev=[] od=[] for i in lst: if i%2==0: ev.append(i) else: od.append(i) if len(ev)==1: print(lst.index(ev[0])) elif len(od)==1: print(lst.index(od[0])) ```
0
467
A
George and Accommodation
PROGRAMMING
800
[ "implementation" ]
null
null
George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory. George and Alex want to live in the same room. The dormitory has *n* rooms in total. At the moment the *i*-th room has *p**i* peopl...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of rooms. The *i*-th of the next *n* lines contains two integers *p**i* and *q**i* (0<=≤<=*p**i*<=≤<=*q**i*<=≤<=100) — the number of people who already live in the *i*-th room and the room's capacity.
Print a single integer — the number of rooms where George and Alex can move in.
[ "3\n1 1\n2 2\n3 3\n", "3\n1 10\n0 10\n10 10\n" ]
[ "0\n", "2\n" ]
none
500
[ { "input": "3\n1 1\n2 2\n3 3", "output": "0" }, { "input": "3\n1 10\n0 10\n10 10", "output": "2" }, { "input": "2\n36 67\n61 69", "output": "2" }, { "input": "3\n21 71\n10 88\n43 62", "output": "3" }, { "input": "3\n1 2\n2 3\n3 4", "output": "0" }, { "...
1,693,665,769
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
n=t ans1=0 while(t!=0): a,b=map(int,input().split()) if((b-a)>=n): ans1=ans1+1 t=t-1 print(ans1)
Title: George and Accommodation Time Limit: None seconds Memory Limit: None megabytes Problem Description: George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory. George and Alex want ...
```python n=t ans1=0 while(t!=0): a,b=map(int,input().split()) if((b-a)>=n): ans1=ans1+1 t=t-1 print(ans1) ```
-1
250
A
Paper Work
PROGRAMMING
1,000
[ "greedy" ]
null
null
Polycarpus has been working in the analytic department of the "F.R.A.U.D." company for as much as *n* days. Right now his task is to make a series of reports about the company's performance for the last *n* days. We know that the main information in a day report is value *a**i*, the company's profit on the *i*-th day. ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100), *n* is the number of days. The second line contains a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (|*a**i*|<=≤<=100), where *a**i* means the company profit on the *i*-th day. It is possible that the company has no days with the negative *a**i*.
Print an integer *k* — the required minimum number of folders. In the second line print a sequence of integers *b*1, *b*2, ..., *b**k*, where *b**j* is the number of day reports in the *j*-th folder. If there are multiple ways to sort the reports into *k* days, print any of them.
[ "11\n1 2 3 -4 -5 -6 5 -5 -6 -7 6\n", "5\n0 -1 100 -1 0\n" ]
[ "3\n5 3 3 ", "1\n5 " ]
Here goes a way to sort the reports from the first sample into three folders: In the second sample you can put all five reports in one folder.
500
[ { "input": "11\n1 2 3 -4 -5 -6 5 -5 -6 -7 6", "output": "3\n5 3 3 " }, { "input": "5\n0 -1 100 -1 0", "output": "1\n5 " }, { "input": "1\n0", "output": "1\n1 " }, { "input": "1\n-1", "output": "1\n1 " }, { "input": "2\n0 0", "output": "1\n2 " }, { "inp...
1,687,151,230
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
7
154
0
n = int(input()) l = list(map(int, input().split())) x, y = 0, 0 z = [] for i in range(n): if l[i] < 0: y += 1 if y == 3 and i != n - 1: z.append(x) if y == 3: x = 0 y = 0 else: x += 1 z.append(n - sum(z)) print(len(z)) print(" ". join(list(map(str, z))))
Title: Paper Work Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has been working in the analytic department of the "F.R.A.U.D." company for as much as *n* days. Right now his task is to make a series of reports about the company's performance for the last *n* days. We know tha...
```python n = int(input()) l = list(map(int, input().split())) x, y = 0, 0 z = [] for i in range(n): if l[i] < 0: y += 1 if y == 3 and i != n - 1: z.append(x) if y == 3: x = 0 y = 0 else: x += 1 z.append(n - sum(z)) print(len(z)) print(" ". join(list(map(str, z)))) ...
0
746
B
Decoding
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Polycarp is mad about coding, that is why he writes Sveta encoded messages. He calls the median letter in a word the letter which is in the middle of the word. If the word's length is even, the median letter is the left of the two middle letters. In the following examples, the median letter is highlighted: contest, inf...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=2000) — the length of the encoded word. The second line contains the string *s* of length *n* consisting of lowercase English letters — the encoding.
Print the word that Polycarp encoded.
[ "5\nlogva\n", "2\nno\n", "4\nabba\n" ]
[ "volga\n", "no\n", "baba\n" ]
In the first example Polycarp encoded the word volga. At first, he wrote down the letter l from the position 3, after that his word looked like voga. After that Polycarp wrote down the letter o from the position 2, his word became vga. Then Polycarp wrote down the letter g which was at the second position, the word bec...
1,000
[ { "input": "5\nlogva", "output": "volga" }, { "input": "2\nno", "output": "no" }, { "input": "4\nabba", "output": "baba" }, { "input": "51\nkfsmpaeviowvkdbuhdagquxxqniselafnfbrgbhmsugcbbnlrvv", "output": "vlbcumbrfflsnxugdudvovamfkspeiwkbhaqxqieanbghsgbnrv" }, { "...
1,678,888,246
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
def decode(encoded_word): decoded_word = "" for i, letter in enumerate(encoded_word): if i % 2 == 0: decoded_word = letter + decoded_word else: decoded_word = decoded_word + letter return decoded_word def main(): n = int(input().strip()) s = inpu...
Title: Decoding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is mad about coding, that is why he writes Sveta encoded messages. He calls the median letter in a word the letter which is in the middle of the word. If the word's length is even, the median letter is the left of the...
```python def decode(encoded_word): decoded_word = "" for i, letter in enumerate(encoded_word): if i % 2 == 0: decoded_word = letter + decoded_word else: decoded_word = decoded_word + letter return decoded_word def main(): n = int(input().strip()) ...
0
1,003
D
Coins and Queries
PROGRAMMING
1,600
[ "greedy" ]
null
null
Polycarp has $n$ coins, the value of the $i$-th coin is $a_i$. It is guaranteed that all the values are integer powers of $2$ (i.e. $a_i = 2^d$ for some non-negative integer number $d$). Polycarp wants to know answers on $q$ queries. The $j$-th query is described as integer number $b_j$. The answer to the query is the...
The first line of the input contains two integers $n$ and $q$ ($1 \le n, q \le 2 \cdot 10^5$) — the number of coins and the number of queries. The second line of the input contains $n$ integers $a_1, a_2, \dots, a_n$ — values of coins ($1 \le a_i \le 2 \cdot 10^9$). It is guaranteed that all $a_i$ are integer powers o...
Print $q$ integers $ans_j$. The $j$-th integer must be equal to the answer on the $j$-th query. If Polycarp can't obtain the value $b_j$ the answer to the $j$-th query is -1.
[ "5 4\n2 4 8 2 4\n8\n5\n14\n10\n" ]
[ "1\n-1\n3\n2\n" ]
none
0
[ { "input": "5 4\n2 4 8 2 4\n8\n5\n14\n10", "output": "1\n-1\n3\n2" }, { "input": "3 3\n1 1 1\n1\n2\n3", "output": "1\n2\n3" }, { "input": "4 1\n2 4 16 32\n14", "output": "-1" }, { "input": "1 10\n8\n1\n2\n3\n4\n5\n6\n7\n8\n9\n16", "output": "-1\n-1\n-1\n-1\n-1\n-1\n-1\n1\...
1,655,485,774
3,994
Python 3
TIME_LIMIT_EXCEEDED
TESTS
1
2,000
3,379,200
from math import log2 n, q = map(int, input().split()) a = tuple(map(int, input().split())) coins = [0] * 31 for i in a: coins[int(log2(i))] += 1 set(map(int, map(log2, a))) for i in range(q): q = int(input()) output = 0 for bit in range(30, -1, -1): value = 2 ** bit red = min(q // ...
Title: Coins and Queries Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp has $n$ coins, the value of the $i$-th coin is $a_i$. It is guaranteed that all the values are integer powers of $2$ (i.e. $a_i = 2^d$ for some non-negative integer number $d$). Polycarp wants to know answer...
```python from math import log2 n, q = map(int, input().split()) a = tuple(map(int, input().split())) coins = [0] * 31 for i in a: coins[int(log2(i))] += 1 set(map(int, map(log2, a))) for i in range(q): q = int(input()) output = 0 for bit in range(30, -1, -1): value = 2 ** bit red =...
0
496
C
Removing Columns
PROGRAMMING
1,500
[ "brute force", "constructive algorithms", "implementation" ]
null
null
You are given an *n*<=×<=*m* rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming a new table. For example, after removing the second column from the table   we obtain the table:   A table is called...
The first line contains two integers  — *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). Next *n* lines contain *m* small English letters each — the characters of the table.
Print a single number — the minimum number of columns that you need to remove in order to make the table good.
[ "1 10\ncodeforces\n", "4 4\ncase\ncare\ntest\ncode\n", "5 4\ncode\nforc\nesco\ndefo\nrces\n" ]
[ "0\n", "2\n", "4\n" ]
In the first sample the table is already good. In the second sample you may remove the first and third column. In the third sample you have to remove all the columns (note that the table where all rows are empty is considered good by definition). Let strings *s* and *t* have equal length. Then, *s* is lexicographica...
1,750
[ { "input": "1 10\ncodeforces", "output": "0" }, { "input": "4 4\ncase\ncare\ntest\ncode", "output": "2" }, { "input": "5 4\ncode\nforc\nesco\ndefo\nrces", "output": "4" }, { "input": "2 2\nfb\nye", "output": "0" }, { "input": "5 5\nrzrzh\nrzrzh\nrzrzh\nrzrzh\nrzrz...
1,418,840,618
6,818
Python 3
WRONG_ANSWER
PRETESTS
5
62
0
add = 0 a, b = map(int, input().split(' ')) arr = [] for i in range(a): x = input() arr.append(x) for bad in range(b): chk = [i[0:bad+1] for i in arr] sortx = chk[:] sortx.sort() if sortx != chk: add += 1 new = [heroe[0:bad] + heroe[bad+1:] for heroe in arr] ...
Title: Removing Columns Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an *n*<=×<=*m* rectangular table consisting of lower case English letters. In one operation you can completely remove one column from the table. The remaining parts are combined forming a new table. For e...
```python add = 0 a, b = map(int, input().split(' ')) arr = [] for i in range(a): x = input() arr.append(x) for bad in range(b): chk = [i[0:bad+1] for i in arr] sortx = chk[:] sortx.sort() if sortx != chk: add += 1 new = [heroe[0:bad] + heroe[bad+1:] for heroe in ...
0
509
A
Maximum in Table
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
An *n*<=×<=*n* table *a* is defined as follows: - The first row and the first column contain ones, that is: *a**i*,<=1<==<=*a*1,<=*i*<==<=1 for all *i*<==<=1,<=2,<=...,<=*n*. - Each of the remaining numbers in the table is equal to the sum of the number above it and the number to the left of it. In other words, the ...
The only line of input contains a positive integer *n* (1<=≤<=*n*<=≤<=10) — the number of rows and columns of the table.
Print a single line containing a positive integer *m* — the maximum value in the table.
[ "1\n", "5\n" ]
[ "1", "70" ]
In the second test the rows of the table look as follows:
0
[ { "input": "1", "output": "1" }, { "input": "5", "output": "70" }, { "input": "2", "output": "2" }, { "input": "3", "output": "6" }, { "input": "4", "output": "20" }, { "input": "6", "output": "252" }, { "input": "7", "output": "924" ...
1,594,091,668
2,147,483,647
PyPy 3
OK
TESTS
10
140
20,172,800
n=int(input()) rows,cols=(n,n) a = [[1]*cols]*rows for i in range(1,n): for j in range(1,n): a[i][j] = a[i-1][j]+a[i][j-1] print(a[n-1][n-1])
Title: Maximum in Table Time Limit: None seconds Memory Limit: None megabytes Problem Description: An *n*<=×<=*n* table *a* is defined as follows: - The first row and the first column contain ones, that is: *a**i*,<=1<==<=*a*1,<=*i*<==<=1 for all *i*<==<=1,<=2,<=...,<=*n*. - Each of the remaining numbers in the t...
```python n=int(input()) rows,cols=(n,n) a = [[1]*cols]*rows for i in range(1,n): for j in range(1,n): a[i][j] = a[i-1][j]+a[i][j-1] print(a[n-1][n-1]) ```
3
340
B
Maximal Area Quadrilateral
PROGRAMMING
2,100
[ "brute force", "geometry" ]
null
null
Iahub has drawn a set of *n* points in the cartesian plane which he calls "special points". A quadrilateral is a simple polygon without self-intersections with four sides (also called edges) and four vertices (also called corners). Please note that a quadrilateral doesn't have to be convex. A special quadrilateral is o...
The first line contains integer *n* (4<=≤<=*n*<=≤<=300). Each of the next *n* lines contains two integers: *x**i*, *y**i* (<=-<=1000<=≤<=*x**i*,<=*y**i*<=≤<=1000) — the cartesian coordinates of *i*th special point. It is guaranteed that no three points are on the same line. It is guaranteed that no two points coincide.
Output a single real number — the maximal area of a special quadrilateral. The answer will be considered correct if its absolute or relative error does't exceed 10<=-<=9.
[ "5\n0 0\n0 4\n4 0\n4 4\n2 3\n" ]
[ "16.000000" ]
In the test example we can choose first 4 points to be the vertices of the quadrilateral. They form a square by side 4, so the area is 4·4 = 16.
3,000
[ { "input": "5\n0 0\n0 4\n4 0\n4 4\n2 3", "output": "16.000000" }, { "input": "10\n-6 -4\n-7 5\n-7 -7\n5 -7\n4 -9\n-6 7\n2 9\n-4 -6\n2 10\n-10 -4", "output": "166.000000" }, { "input": "4\n-3 3\n0 3\n-2 -1\n2 2", "output": "11.000000" }, { "input": "5\n-4 -3\n-3 -2\n3 3\n-1 2\...
1,546,498,417
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
22
716
1,126,400
def cross(x1, y1, x2, y2): return x1 * y2 - x2 * y1 def gao(): n = int(input()) x, y = [], [] for i in range(n): x1, y1 = input().split(' ') x.append(int(x1)) y.append(int(y1)) max_area = 0 for i in range(n): for j in range(i+1, n): max_left, max_rig...
Title: Maximal Area Quadrilateral Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub has drawn a set of *n* points in the cartesian plane which he calls "special points". A quadrilateral is a simple polygon without self-intersections with four sides (also called edges) and four vertices...
```python def cross(x1, y1, x2, y2): return x1 * y2 - x2 * y1 def gao(): n = int(input()) x, y = [], [] for i in range(n): x1, y1 = input().split(' ') x.append(int(x1)) y.append(int(y1)) max_area = 0 for i in range(n): for j in range(i+1, n): max_lef...
0
387
B
George and Round
PROGRAMMING
1,200
[ "brute force", "greedy", "two pointers" ]
null
null
George decided to prepare a Codesecrof round, so he has prepared *m* problems for the round. Let's number the problems with integers 1 through *m*. George estimates the *i*-th problem's complexity by integer *b**i*. To make the round good, he needs to put at least *n* problems there. Besides, he needs to have at least...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=3000) — the minimal number of problems in a good round and the number of problems George's prepared. The second line contains space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a*1<=&lt;<=*a*2<=&lt;<=...<=&lt;<=*a**n*<=≤<=106) — the requirem...
Print a single integer — the answer to the problem.
[ "3 5\n1 2 3\n1 2 2 3 3\n", "3 5\n1 2 3\n1 1 1 1 1\n", "3 1\n2 3 4\n1\n" ]
[ "0\n", "2\n", "3\n" ]
In the first sample the set of the prepared problems meets the requirements for a good round. In the second sample, it is enough to come up with and prepare two problems with complexities 2 and 3 to get a good round. In the third sample it is very easy to get a good round if come up with and prepare extra problems wi...
1,000
[ { "input": "3 5\n1 2 3\n1 2 2 3 3", "output": "0" }, { "input": "3 5\n1 2 3\n1 1 1 1 1", "output": "2" }, { "input": "3 1\n2 3 4\n1", "output": "3" }, { "input": "29 100\n20 32 41 67 72 155 331 382 399 412 465 470 484 511 515 529 616 637 679 715 733 763 826 843 862 903 925 97...
1,524,040,894
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
78
7,065,600
n, m = map(int, input().split()) A = list(map(int, input().split())) B = list(map(int, input().split())) count = 0 for i in range(len(A)): if A[i] not in B: count += 1 print(count)
Title: George and Round Time Limit: None seconds Memory Limit: None megabytes Problem Description: George decided to prepare a Codesecrof round, so he has prepared *m* problems for the round. Let's number the problems with integers 1 through *m*. George estimates the *i*-th problem's complexity by integer *b**i*. T...
```python n, m = map(int, input().split()) A = list(map(int, input().split())) B = list(map(int, input().split())) count = 0 for i in range(len(A)): if A[i] not in B: count += 1 print(count) ```
0
61
A
Ultra-Fast Mathematician
PROGRAMMING
800
[ "implementation" ]
A. Ultra-Fast Mathematician
2
256
Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 1018 numbers in a single second. One day in 230 AD Shapur was trying to find out if any one can possibly do...
There are two lines in each input. Each of them contains a single number. It is guaranteed that the numbers are made from 0 and 1 only and that their length is same. The numbers may start with 0. The length of each number doesn't exceed 100.
Write one line — the corresponding answer. Do not omit the leading 0s.
[ "1010100\n0100101\n", "000\n111\n", "1110\n1010\n", "01110\n01100\n" ]
[ "1110001\n", "111\n", "0100\n", "00010\n" ]
none
500
[ { "input": "1010100\n0100101", "output": "1110001" }, { "input": "000\n111", "output": "111" }, { "input": "1110\n1010", "output": "0100" }, { "input": "01110\n01100", "output": "00010" }, { "input": "011101\n000001", "output": "011100" }, { "input": "...
1,471,356,329
2,147,483,647
Python 3
OK
TESTS
102
62
4,608,000
a = input() b = input() s = [] s1 = [] s2 = [] for i in range(len(a)): s.append(a[i]) s1.append(b[i]) s2.append(int(a[i])+int(b[i])) if s2[i]==2: print(0,end='') else: print(s2[i],end='')
Title: Ultra-Fast Mathematician Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 10...
```python a = input() b = input() s = [] s1 = [] s2 = [] for i in range(len(a)): s.append(a[i]) s1.append(b[i]) s2.append(int(a[i])+int(b[i])) if s2[i]==2: print(0,end='') else: print(s2[i],end='') ```
3.975917
766
B
Mahmoud and a Triangle
PROGRAMMING
1,000
[ "constructive algorithms", "geometry", "greedy", "math", "number theory", "sortings" ]
null
null
Mahmoud has *n* line segments, the *i*-th of them has length *a**i*. Ehab challenged him to use exactly 3 line segments to form a non-degenerate triangle. Mahmoud doesn't accept challenges unless he is sure he can win, so he asked you to tell him if he should accept the challenge. Given the lengths of the line segments...
The first line contains single integer *n* (3<=≤<=*n*<=≤<=105) — the number of line segments Mahmoud has. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the lengths of line segments Mahmoud has.
In the only line print "YES" if he can choose exactly three line segments and form a non-degenerate triangle with them, and "NO" otherwise.
[ "5\n1 5 3 2 4\n", "3\n4 1 2\n" ]
[ "YES\n", "NO\n" ]
For the first example, he can use line segments with lengths 2, 4 and 5 to form a non-degenerate triangle.
1,000
[ { "input": "5\n1 5 3 2 4", "output": "YES" }, { "input": "3\n4 1 2", "output": "NO" }, { "input": "30\n197 75 517 39724 7906061 1153471 3 15166 168284 3019844 272293 316 16 24548 42 118 5792 5 9373 1866366 4886214 24 2206 712886 104005 1363 836 64273 440585 3576", "output": "NO" },...
1,664,860,933
2,147,483,647
Python 3
OK
TESTS
87
93
8,396,800
n=int(input()) l=sorted(list(map(int,input().split()))) for i in range(0,len(l)-2): if l[i]+l[i+1]>l[i+2]: print("YES") exit() else: print("NO")
Title: Mahmoud and a Triangle Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mahmoud has *n* line segments, the *i*-th of them has length *a**i*. Ehab challenged him to use exactly 3 line segments to form a non-degenerate triangle. Mahmoud doesn't accept challenges unless he is sure he ca...
```python n=int(input()) l=sorted(list(map(int,input().split()))) for i in range(0,len(l)-2): if l[i]+l[i+1]>l[i+2]: print("YES") exit() else: print("NO") ```
3
14
A
Letter
PROGRAMMING
800
[ "implementation" ]
A. Letter
1
64
A boy Bob likes to draw. Not long ago he bought a rectangular graph (checked) sheet with *n* rows and *m* columns. Bob shaded some of the squares on the sheet. Having seen his masterpiece, he decided to share it with his elder brother, who lives in Flatland. Now Bob has to send his picture by post, but because of the w...
The first line of the input data contains numbers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=50), *n* — amount of lines, and *m* — amount of columns on Bob's sheet. The following *n* lines contain *m* characters each. Character «.» stands for a non-shaded square on the sheet, and «*» — for a shaded square. It is guaranteed that ...
Output the required rectangle of the minimum cost. Study the output data in the sample tests to understand the output format better.
[ "6 7\n.......\n..***..\n..*....\n..***..\n..*....\n..***..\n", "3 3\n***\n*.*\n***\n" ]
[ "***\n*..\n***\n*..\n***\n", "***\n*.*\n***\n" ]
none
0
[ { "input": "6 7\n.......\n..***..\n..*....\n..***..\n..*....\n..***..", "output": "***\n*..\n***\n*..\n***" }, { "input": "3 3\n***\n*.*\n***", "output": "***\n*.*\n***" }, { "input": "1 1\n*", "output": "*" }, { "input": "2 1\n*\n*", "output": "*\n*" }, { "input"...
1,698,918,077
2,147,483,647
PyPy 3-64
OK
TESTS
30
124
1,536,000
n,m =map(int,input().split(' ')) grid=[] imin=float('inf') imax=float('-inf') jmin=float('inf') jmax=float('-inf') for _ in range(n): grid.append(input()) for i in range(n): for j in range(m): if grid[i][j]=="*": imin=min(i,imin) imax=max(i,imax) jmin=min...
Title: Letter Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: A boy Bob likes to draw. Not long ago he bought a rectangular graph (checked) sheet with *n* rows and *m* columns. Bob shaded some of the squares on the sheet. Having seen his masterpiece, he decided to share it with his elder brothe...
```python n,m =map(int,input().split(' ')) grid=[] imin=float('inf') imax=float('-inf') jmin=float('inf') jmax=float('-inf') for _ in range(n): grid.append(input()) for i in range(n): for j in range(m): if grid[i][j]=="*": imin=min(i,imin) imax=max(i,imax) ...
3.926556
82
A
Double Cola
PROGRAMMING
1,100
[ "implementation", "math" ]
A. Double Cola
1
256
Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resulting two Sheldons go to the end of the queue. Then the next in the queue (Leonard) buys a can, d...
The input data consist of a single integer *n* (1<=≤<=*n*<=≤<=109). It is guaranteed that the pretests check the spelling of all the five names, that is, that they contain all the five possible answers.
Print the single line — the name of the person who drinks the *n*-th can of cola. The cans are numbered starting from 1. Please note that you should spell the names like this: "Sheldon", "Leonard", "Penny", "Rajesh", "Howard" (without the quotes). In that order precisely the friends are in the queue initially.
[ "1\n", "6\n", "1802\n" ]
[ "Sheldon\n", "Sheldon\n", "Penny\n" ]
none
500
[ { "input": "1", "output": "Sheldon" }, { "input": "6", "output": "Sheldon" }, { "input": "1802", "output": "Penny" }, { "input": "1", "output": "Sheldon" }, { "input": "2", "output": "Leonard" }, { "input": "3", "output": "Penny" }, { "inpu...
1,634,880,097
2,147,483,647
Python 3
OK
TESTS
41
46
4,300,800
n=int(input()) r=1 while(r*5<n): n-=r*5 r*=2 s=["Sheldon", "Leonard", "Penny", "Rajesh", "Howard"] print(s[(n-1)//r])
Title: Double Cola Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resultin...
```python n=int(input()) r=1 while(r*5<n): n-=r*5 r*=2 s=["Sheldon", "Leonard", "Penny", "Rajesh", "Howard"] print(s[(n-1)//r]) ```
3.968989
31
A
Worms Evolution
PROGRAMMING
1,200
[ "implementation" ]
A. Worms Evolution
2
256
Professor Vasechkin is studying evolution of worms. Recently he put forward hypotheses that all worms evolve by division. There are *n* forms of worms. Worms of these forms have lengths *a*1, *a*2, ..., *a**n*. To prove his theory, professor needs to find 3 different forms that the length of the first form is equal to ...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of worm's forms. The second line contains *n* space-separated integers *a**i* (1<=≤<=*a**i*<=≤<=1000) — lengths of worms of each form.
Output 3 distinct integers *i* *j* *k* (1<=≤<=*i*,<=*j*,<=*k*<=≤<=*n*) — such indexes of worm's forms that *a**i*<==<=*a**j*<=+<=*a**k*. If there is no such triple, output -1. If there are several solutions, output any of them. It possible that *a**j*<==<=*a**k*.
[ "5\n1 2 3 5 7\n", "5\n1 8 1 5 1\n" ]
[ "3 2 1\n", "-1\n" ]
none
500
[ { "input": "5\n1 2 3 5 7", "output": "3 2 1" }, { "input": "5\n1 8 1 5 1", "output": "-1" }, { "input": "4\n303 872 764 401", "output": "-1" }, { "input": "6\n86 402 133 524 405 610", "output": "6 4 1" }, { "input": "8\n217 779 418 895 996 473 3 22", "output":...
1,568,143,183
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
218
0
n=int(input()) x=input() z=[] i=0 count=len(x) +1 while i<count*len(x): c=x.partition(" ") i+=1 z+=[c[0]] x=c[2] i+=1 i=0 while i<(n): k=z[i] a=int(k) j=0 while j<len(z): b=int(z[j]) l=0 while l <len(z): c=int(z[l]) ...
Title: Worms Evolution Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Professor Vasechkin is studying evolution of worms. Recently he put forward hypotheses that all worms evolve by division. There are *n* forms of worms. Worms of these forms have lengths *a*1, *a*2, ..., *a**n*. To prove his...
```python n=int(input()) x=input() z=[] i=0 count=len(x) +1 while i<count*len(x): c=x.partition(" ") i+=1 z+=[c[0]] x=c[2] i+=1 i=0 while i<(n): k=z[i] a=int(k) j=0 while j<len(z): b=int(z[j]) l=0 while l <len(z): c=int(z[l]...
0
734
A
Anton and Danik
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Anton likes to play chess, and so does his friend Danik. Once they have played *n* games in a row. For each game it's known who was the winner — Anton or Danik. None of the games ended with a tie. Now Anton wonders, who won more games, he or Danik? Help him determine this.
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of games played. The second line contains a string *s*, consisting of *n* uppercase English letters 'A' and 'D' — the outcome of each of the games. The *i*-th character of the string is equal to 'A' if the Anton won the *i*...
If Anton won more games than Danik, print "Anton" (without quotes) in the only line of the output. If Danik won more games than Anton, print "Danik" (without quotes) in the only line of the output. If Anton and Danik won the same number of games, print "Friendship" (without quotes).
[ "6\nADAAAA\n", "7\nDDDAADA\n", "6\nDADADA\n" ]
[ "Anton\n", "Danik\n", "Friendship\n" ]
In the first sample, Anton won 6 games, while Danik — only 1. Hence, the answer is "Anton". In the second sample, Anton won 3 games and Danik won 4 games, so the answer is "Danik". In the third sample, both Anton and Danik won 3 games and the answer is "Friendship".
500
[ { "input": "6\nADAAAA", "output": "Anton" }, { "input": "7\nDDDAADA", "output": "Danik" }, { "input": "6\nDADADA", "output": "Friendship" }, { "input": "10\nDDDDADDADD", "output": "Danik" }, { "input": "40\nAAAAAAAAADDAAAAAAAAAAADADDAAAAAAAAAAADAA", "output": ...
1,698,493,417
2,147,483,647
Python 3
OK
TESTS
25
46
102,400
a=int(input("")) str1=input("") n=0 for i in str1: if i=="A": n+=1 if n>a/2: print("Anton") elif n==a/2: print("Friendship") else: print("Danik")
Title: Anton and Danik Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anton likes to play chess, and so does his friend Danik. Once they have played *n* games in a row. For each game it's known who was the winner — Anton or Danik. None of the games ended with a tie. Now Anton wonders, w...
```python a=int(input("")) str1=input("") n=0 for i in str1: if i=="A": n+=1 if n>a/2: print("Anton") elif n==a/2: print("Friendship") else: print("Danik") ```
3
723
A
The New Year: Meeting Friends
PROGRAMMING
800
[ "implementation", "math", "sortings" ]
null
null
There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They plan to celebrate the New Year together, so they need to meet at one point. What is the minimum total distance they...
The first line of the input contains three distinct integers *x*1, *x*2 and *x*3 (1<=≤<=*x*1,<=*x*2,<=*x*3<=≤<=100) — the coordinates of the houses of the first, the second and the third friends respectively.
Print one integer — the minimum total distance the friends need to travel in order to meet together.
[ "7 1 4\n", "30 20 10\n" ]
[ "6\n", "20\n" ]
In the first sample, friends should meet at the point 4. Thus, the first friend has to travel the distance of 3 (from the point 7 to the point 4), the second friend also has to travel the distance of 3 (from the point 1 to the point 4), while the third friend should not go anywhere because he lives at the point 4.
500
[ { "input": "7 1 4", "output": "6" }, { "input": "30 20 10", "output": "20" }, { "input": "1 4 100", "output": "99" }, { "input": "100 1 91", "output": "99" }, { "input": "1 45 100", "output": "99" }, { "input": "1 2 3", "output": "2" }, { "...
1,673,617,484
2,147,483,647
Python 3
OK
TESTS
48
46
0
a=list(map(int,input().split())) a.sort() c=abs(a[0]-a[1])+abs(a[1]-a[2]) print(c)
Title: The New Year: Meeting Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They ...
```python a=list(map(int,input().split())) a.sort() c=abs(a[0]-a[1])+abs(a[1]-a[2]) print(c) ```
3
922
A
Cloning Toys
PROGRAMMING
1,300
[ "implementation" ]
null
null
Imp likes his plush toy a lot. Recently, he found a machine that can clone plush toys. Imp knows that if he applies the machine to an original toy, he additionally gets one more original toy and one copy, and if he applies the machine to a copied toy, he gets two additional copies. Initially, Imp has only one origina...
The only line contains two integers *x* and *y* (0<=≤<=*x*,<=*y*<=≤<=109) — the number of copies and the number of original toys Imp wants to get (including the initial one).
Print "Yes", if the desired configuration is possible, and "No" otherwise. You can print each letter in arbitrary case (upper or lower).
[ "6 3\n", "4 2\n", "1000 1001\n" ]
[ "Yes\n", "No\n", "Yes\n" ]
In the first example, Imp has to apply the machine twice to original toys and then twice to copies.
500
[ { "input": "6 3", "output": "Yes" }, { "input": "4 2", "output": "No" }, { "input": "1000 1001", "output": "Yes" }, { "input": "1000000000 999999999", "output": "Yes" }, { "input": "81452244 81452247", "output": "No" }, { "input": "188032448 86524683",...
1,585,118,175
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
93
0
clone, original = map(int,input().split()) current = original-1 if clone==original: print("Yes") else: if clone<original: print("No") else: if current%2==0 and clone%2==0: print("Yes") else: print("No")
Title: Cloning Toys Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imp likes his plush toy a lot. Recently, he found a machine that can clone plush toys. Imp knows that if he applies the machine to an original toy, he additionally gets one more original toy and one copy, and if he applie...
```python clone, original = map(int,input().split()) current = original-1 if clone==original: print("Yes") else: if clone<original: print("No") else: if current%2==0 and clone%2==0: print("Yes") else: print("No") ```
0
760
A
Petr and a calendar
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Petr wants to make a calendar for current month. For this purpose he draws a table in which columns correspond to weeks (a week is seven consequent days from Monday to Sunday), rows correspond to weekdays, and cells contain dates. For example, a calendar for January 2017 should look like on the picture: Petr wants to ...
The only line contain two integers *m* and *d* (1<=≤<=*m*<=≤<=12, 1<=≤<=*d*<=≤<=7) — the number of month (January is the first month, December is the twelfth) and the weekday of the first date of this month (1 is Monday, 7 is Sunday).
Print single integer: the number of columns the table should have.
[ "1 7\n", "1 1\n", "11 6\n" ]
[ "6\n", "5\n", "5\n" ]
The first example corresponds to the January 2017 shown on the picture in the statements. In the second example 1-st January is Monday, so the whole month fits into 5 columns. In the third example 1-st November is Saturday and 5 columns is enough.
500
[ { "input": "1 7", "output": "6" }, { "input": "1 1", "output": "5" }, { "input": "11 6", "output": "5" }, { "input": "2 7", "output": "5" }, { "input": "2 1", "output": "4" }, { "input": "8 6", "output": "6" }, { "input": "1 1", "output...
1,485,859,845
2,147,483,647
Python 3
OK
TESTS
104
62
4,608,000
a=[31,28,31,30,31,30,31,31,30,31,30,31] m,d=map(int,input().split()) k=a[m-1] k+=d-1 if k%7==0: print(k//7) else: print(k//7+1)
Title: Petr and a calendar Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petr wants to make a calendar for current month. For this purpose he draws a table in which columns correspond to weeks (a week is seven consequent days from Monday to Sunday), rows correspond to weekdays, and cells...
```python a=[31,28,31,30,31,30,31,31,30,31,30,31] m,d=map(int,input().split()) k=a[m-1] k+=d-1 if k%7==0: print(k//7) else: print(k//7+1) ```
3
0
none
none
none
0
[ "none" ]
null
null
In the year of $30XX$ participants of some world programming championship live in a single large hotel. The hotel has $n$ floors. Each floor has $m$ sections with a single corridor connecting all of them. The sections are enumerated from $1$ to $m$ along the corridor, and all sections with equal numbers on different fl...
The first line contains five integers $n, m, c_l, c_e, v$ ($2 \leq n, m \leq 10^8$, $0 \leq c_l, c_e \leq 10^5$, $1 \leq c_l + c_e \leq m - 1$, $1 \leq v \leq n - 1$) — the number of floors and section on each floor, the number of stairs, the number of elevators and the maximum speed of an elevator, respectively. The ...
Print $q$ integers, one per line — the answers for the queries.
[ "5 6 1 1 3\n2\n5\n3\n1 1 5 6\n1 3 5 4\n3 3 5 3\n" ]
[ "7\n5\n4\n" ]
In the first query the optimal way is to go to the elevator in the 5-th section in four time units, use it to go to the fifth floor in two time units and go to the destination in one more time unit. In the second query it is still optimal to use the elevator, but in the third query it is better to use the stairs in th...
0
[ { "input": "5 6 1 1 3\n2\n5\n3\n1 1 5 6\n1 3 5 4\n3 3 5 3", "output": "7\n5\n4" }, { "input": "2 2 0 1 1\n\n1\n1\n1 2 2 2", "output": "3" }, { "input": "4 4 1 0 1\n4\n\n5\n1 1 2 2\n1 3 2 2\n3 3 4 3\n3 2 2 2\n1 2 2 3", "output": "6\n4\n3\n5\n4" }, { "input": "10 10 1 8 4\n10\n...
1,656,969,039
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
46
0
money = int(input()) nums = [100, 20, 10, 5, 1] div = money bill = 0 for i in nums: bill += div//i div = div%i if div == 0: break print(bill)
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: In the year of $30XX$ participants of some world programming championship live in a single large hotel. The hotel has $n$ floors. Each floor has $m$ sections with a single corridor connecting all of them. The sections are enumerat...
```python money = int(input()) nums = [100, 20, 10, 5, 1] div = money bill = 0 for i in nums: bill += div//i div = div%i if div == 0: break print(bill) ```
-1
454
B
Little Pony and Sort by Shift
PROGRAMMING
1,200
[ "implementation" ]
null
null
One day, Twilight Sparkle is interested in how to sort a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* in non-decreasing order. Being a young unicorn, the only operation she can perform is a unit shift. That is, she can move the last element of the sequence to its beginning: Help Twilight Sparkle to calculate: what ...
The first line contains an integer *n* (2<=≤<=*n*<=≤<=105). The second line contains *n* integer numbers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=105).
If it's impossible to sort the sequence output -1. Otherwise output the minimum number of operations Twilight Sparkle needs to sort it.
[ "2\n2 1\n", "3\n1 3 2\n", "2\n1 2\n" ]
[ "1\n", "-1\n", "0\n" ]
none
1,000
[ { "input": "2\n2 1", "output": "1" }, { "input": "3\n1 3 2", "output": "-1" }, { "input": "2\n1 2", "output": "0" }, { "input": "6\n3 4 5 6 3 2", "output": "-1" }, { "input": "3\n1 2 1", "output": "1" }, { "input": "5\n1 1 2 1 1", "output": "2" }...
1,594,137,834
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
202
19,456,000
n=int(input()) w=list(map(int,input().split())) c=sorted(w) c=list(map(str,c)) su1="".join(c) #print(su1) w=list(map(str,w)) su="".join(w) #print(su) if(su==su1):print(0) else: ele=su[n-1] #print(ele) su=ele+su #print(su) li=list(su) li.pop(n) su="".join(li) ...
Title: Little Pony and Sort by Shift Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day, Twilight Sparkle is interested in how to sort a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* in non-decreasing order. Being a young unicorn, the only operation she can perform is a unit shift. ...
```python n=int(input()) w=list(map(int,input().split())) c=sorted(w) c=list(map(str,c)) su1="".join(c) #print(su1) w=list(map(str,w)) su="".join(w) #print(su) if(su==su1):print(0) else: ele=su[n-1] #print(ele) su=ele+su #print(su) li=list(su) li.pop(n) su="".j...
0
205
A
Little Elephant and Rozdil
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elephant doesn't like to spend much time on travelling, so for his journey he will choose a town that needs minimum ti...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of cities. The next line contains *n* integers, separated by single spaces: the *i*-th integer represents the time needed to go from town Rozdil to the *i*-th town. The time values are positive integers, not exceeding 109. You can consider t...
Print the answer on a single line — the number of the town the Little Elephant will go to. If there are multiple cities with minimum travel time, print "Still Rozdil" (without the quotes).
[ "2\n7 4\n", "7\n7 4 47 100 4 9 12\n" ]
[ "2\n", "Still Rozdil\n" ]
In the first sample there are only two cities where the Little Elephant can go. The travel time for the first town equals 7, to the second one — 4. The town which is closest to Rodzil (the only one) is the second one, so the answer is 2. In the second sample the closest cities are cities two and five, the travelling t...
500
[ { "input": "2\n7 4", "output": "2" }, { "input": "7\n7 4 47 100 4 9 12", "output": "Still Rozdil" }, { "input": "1\n47", "output": "1" }, { "input": "2\n1000000000 1000000000", "output": "Still Rozdil" }, { "input": "7\n7 6 5 4 3 2 1", "output": "7" }, { ...
1,572,839,336
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
278
0
from sys import stdin n = int(stdin.readline()) times = list(map(int, stdin.readline().split())) minTime = min(times) count = [] for i in range(1, n): if times[i] == minTime: count.append(i) if len(count) == 1: print(count[0]) else: print('Still Rozdil')
Title: Little Elephant and Rozdil Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elepha...
```python from sys import stdin n = int(stdin.readline()) times = list(map(int, stdin.readline().split())) minTime = min(times) count = [] for i in range(1, n): if times[i] == minTime: count.append(i) if len(count) == 1: print(count[0]) else: print('Still Rozdil') ```
0
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,476,011,908
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
92
4,608,000
#Problem 25A def evenness(): length = int(input()) given = list(map(int, input().split())) signal = given[0] % 2 + given[1] % 2 + given[2] % 2 if signal < 2: for i, j in enumerate(given): if j % 2 == 1: return i+1 else: for i, j in enumerate(give...
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 #Problem 25A def evenness(): length = int(input()) given = list(map(int, input().split())) signal = given[0] % 2 + given[1] % 2 + given[2] % 2 if signal < 2: for i, j in enumerate(given): if j % 2 == 1: return i+1 else: for i, j in enum...
0
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,697,181,432
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
60
0
n, m = map(int, input().split()) abs_count = 0 l = [] data = input().split() for i in range(n): l.append(int(data[i])) if m < int(data[i]): abs_count += 1 print(abs_count)
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, m = map(int, input().split()) abs_count = 0 l = [] data = input().split() for i in range(n): l.append(int(data[i])) if m < int(data[i]): abs_count += 1 print(abs_count) ```
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,661,693,064
2,147,483,647
Python 3
OK
TESTS
40
92
0
n = list(input()) r_n = input() r = list(reversed(n)) result="" for i in r: result+=i if result==r_n: 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 n = list(input()) r_n = input() r = list(reversed(n)) result="" for i in r: result+=i if result==r_n: print("YES") else: print("NO") ```
3.977
731
A
Night at the Museum
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devise that allows to "print" the text of a plastic tape. Text is printed sequentially, character by character...
The only line of input contains the name of some exhibit — the non-empty string consisting of no more than 100 characters. It's guaranteed that the string consists of only lowercase English letters.
Print one integer — the minimum number of rotations of the wheel, required to print the name given in the input.
[ "zeus\n", "map\n", "ares\n" ]
[ "18\n", "35\n", "34\n" ]
To print the string from the first sample it would be optimal to perform the following sequence of rotations: 1. from 'a' to 'z' (1 rotation counterclockwise), 1. from 'z' to 'e' (5 clockwise rotations), 1. from 'e' to 'u' (10 rotations counterclockwise), 1. from 'u' to 's' (2 counterclockwise rotations).
500
[ { "input": "zeus", "output": "18" }, { "input": "map", "output": "35" }, { "input": "ares", "output": "34" }, { "input": "l", "output": "11" }, { "input": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuv", "...
1,688,039,216
2,147,483,647
PyPy 3-64
OK
TESTS
44
61
0
# # t = int(input()) # t = 1 # # # n, m = map(int, input().split()) # # # a = list(map(int, input().split())) # # # a.sort() # import math # from collections import Counter # a = [] # while t != 0: # # cook your dish here # n = int(input()) # ans = 0 # for i in range(1, n): # if n % i == 0: # ...
Title: Night at the Museum Time Limit: None seconds Memory Limit: None megabytes Problem Description: Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devis...
```python # # t = int(input()) # t = 1 # # # n, m = map(int, input().split()) # # # a = list(map(int, input().split())) # # # a.sort() # import math # from collections import Counter # a = [] # while t != 0: # # cook your dish here # n = int(input()) # ans = 0 # for i in range(1, n): # if n % i...
3
962
A
Equator
PROGRAMMING
1,300
[ "implementation" ]
null
null
Polycarp has created his own training plan to prepare for the programming contests. He will train for $n$ days, all days are numbered from $1$ to $n$, beginning from the first. On the $i$-th day Polycarp will necessarily solve $a_i$ problems. One evening Polycarp plans to celebrate the equator. He will celebrate it on...
The first line contains a single integer $n$ ($1 \le n \le 200\,000$) — the number of days to prepare for the programming contests. The second line contains a sequence $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 10\,000$), where $a_i$ equals to the number of problems, which Polycarp will solve on the $i$-th day.
Print the index of the day when Polycarp will celebrate the equator.
[ "4\n1 3 2 1\n", "6\n2 2 2 2 2 2\n" ]
[ "2\n", "3\n" ]
In the first example Polycarp will celebrate the equator on the evening of the second day, because up to this day (inclusive) he will solve $4$ out of $7$ scheduled problems on four days of the training. In the second example Polycarp will celebrate the equator on the evening of the third day, because up to this day (...
0
[ { "input": "4\n1 3 2 1", "output": "2" }, { "input": "6\n2 2 2 2 2 2", "output": "3" }, { "input": "1\n10000", "output": "1" }, { "input": "3\n2 1 1", "output": "1" }, { "input": "2\n1 3", "output": "2" }, { "input": "4\n2 1 1 3", "output": "3" }...
1,667,459,552
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n=int(input()) lt=list(map(int,input().split())) sum1=sum(lt) half if(sum1%2==0): half=sum1/2 else: half=(sum1+1)/2 j=0 sum2=0 for i in range(0,n): sum2+=lt[i] if(sum2>=half): j=i break print(j+1)
Title: Equator Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp has created his own training plan to prepare for the programming contests. He will train for $n$ days, all days are numbered from $1$ to $n$, beginning from the first. On the $i$-th day Polycarp will necessarily solve...
```python n=int(input()) lt=list(map(int,input().split())) sum1=sum(lt) half if(sum1%2==0): half=sum1/2 else: half=(sum1+1)/2 j=0 sum2=0 for i in range(0,n): sum2+=lt[i] if(sum2>=half): j=i break print(j+1) ```
-1
754
A
Lesha and array splitting
PROGRAMMING
1,200
[ "constructive algorithms", "greedy", "implementation" ]
null
null
One spring day on his way to university Lesha found an array *A*. Lesha likes to split arrays into several parts. This time Lesha decided to split the array *A* into several, possibly one, new arrays so that the sum of elements in each of the new arrays is not zero. One more condition is that if we place the new arrays...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in the array *A*. The next line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=103<=≤<=*a**i*<=≤<=103) — the elements of the array *A*.
If it is not possible to split the array *A* and satisfy all the constraints, print single line containing "NO" (without quotes). Otherwise in the first line print "YES" (without quotes). In the next line print single integer *k* — the number of new arrays. In each of the next *k* lines print two integers *l**i* and *...
[ "3\n1 2 -3\n", "8\n9 -12 3 4 -4 -10 7 3\n", "1\n0\n", "4\n1 2 3 -5\n" ]
[ "YES\n2\n1 2\n3 3\n", "YES\n2\n1 2\n3 8\n", "NO\n", "YES\n4\n1 1\n2 2\n3 3\n4 4\n" ]
none
500
[ { "input": "3\n1 2 -3", "output": "YES\n3\n1 1\n2 2\n3 3" }, { "input": "8\n9 -12 3 4 -4 -10 7 3", "output": "YES\n8\n1 1\n2 2\n3 3\n4 4\n5 5\n6 6\n7 7\n8 8" }, { "input": "1\n0", "output": "NO" }, { "input": "4\n1 2 3 -5", "output": "YES\n4\n1 1\n2 2\n3 3\n4 4" }, { ...
1,642,864,332
2,147,483,647
Python 3
OK
TESTS
80
62
0
n=int(input()) t=list(map(int,input().split())) x=-1 y=0 for i in range(len(t)): if t[i]!=0: y+=t[i] x=i if y==0 and x==-1: print('NO') elif y!=0: print('YES') print('1') print('1',n) else: print('YES') print('2') print('1',x) print(x+1,n)
Title: Lesha and array splitting Time Limit: None seconds Memory Limit: None megabytes Problem Description: One spring day on his way to university Lesha found an array *A*. Lesha likes to split arrays into several parts. This time Lesha decided to split the array *A* into several, possibly one, new arrays so that t...
```python n=int(input()) t=list(map(int,input().split())) x=-1 y=0 for i in range(len(t)): if t[i]!=0: y+=t[i] x=i if y==0 and x==-1: print('NO') elif y!=0: print('YES') print('1') print('1',n) else: print('YES') print('2') print('1',x) print(x+1,n) ```
3
489
B
BerSU Ball
PROGRAMMING
1,200
[ "dfs and similar", "dp", "graph matchings", "greedy", "sortings", "two pointers" ]
null
null
The Berland State University is hosting a ballroom dance in celebration of its 100500-th anniversary! *n* boys and *m* girls are already busy rehearsing waltz, minuet, polonaise and quadrille moves. We know that several boy&amp;girl pairs are going to be invited to the ball. However, the partners' dancing skill in eac...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of boys. The second line contains sequence *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100), where *a**i* is the *i*-th boy's dancing skill. Similarly, the third line contains an integer *m* (1<=≤<=*m*<=≤<=100) — the number of girls. The fourth l...
Print a single number — the required maximum possible number of pairs.
[ "4\n1 4 6 2\n5\n5 1 5 7 9\n", "4\n1 2 3 4\n4\n10 11 12 13\n", "5\n1 1 1 1 1\n3\n1 2 3\n" ]
[ "3\n", "0\n", "2\n" ]
none
1,000
[ { "input": "4\n1 4 6 2\n5\n5 1 5 7 9", "output": "3" }, { "input": "4\n1 2 3 4\n4\n10 11 12 13", "output": "0" }, { "input": "5\n1 1 1 1 1\n3\n1 2 3", "output": "2" }, { "input": "1\n1\n1\n1", "output": "1" }, { "input": "2\n1 10\n1\n9", "output": "1" }, {...
1,698,224,886
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
12
61
2,867,200
n=int(input()) a=list(map(int,input().split())) m=int(input()) b=list(map(int,input().split())) a.sort() b.sort() r=0 res=0 for l in range(n): while b[r]-a[l]<-1 and r<m: r+=1 if abs(b[r]-a[l])<=1: r+=1 res+=1 print(res)
Title: BerSU Ball Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Berland State University is hosting a ballroom dance in celebration of its 100500-th anniversary! *n* boys and *m* girls are already busy rehearsing waltz, minuet, polonaise and quadrille moves. We know that several boy...
```python n=int(input()) a=list(map(int,input().split())) m=int(input()) b=list(map(int,input().split())) a.sort() b.sort() r=0 res=0 for l in range(n): while b[r]-a[l]<-1 and r<m: r+=1 if abs(b[r]-a[l])<=1: r+=1 res+=1 print(res) ```
-1
994
A
Fingerprints
PROGRAMMING
800
[ "implementation" ]
null
null
You are locked in a room with a door that has a keypad with 10 keys corresponding to digits from 0 to 9. To escape from the room, you need to enter a correct code. You also have a sequence of digits. Some keys on the keypad have fingerprints. You believe the correct code is the longest not necessarily contiguous subse...
The first line contains two integers $n$ and $m$ ($1 \le n, m \le 10$) representing the number of digits in the sequence you have and the number of keys on the keypad that have fingerprints. The next line contains $n$ distinct space-separated integers $x_1, x_2, \ldots, x_n$ ($0 \le x_i \le 9$) representing the sequen...
In a single line print a space-separated sequence of integers representing the code. If the resulting sequence is empty, both printing nothing and printing a single line break is acceptable.
[ "7 3\n3 5 7 1 6 2 8\n1 2 7\n", "4 4\n3 4 1 0\n0 1 7 9\n" ]
[ "7 1 2\n", "1 0\n" ]
In the first example, the only digits with fingerprints are $1$, $2$ and $7$. All three of them appear in the sequence you know, $7$ first, then $1$ and then $2$. Therefore the output is 7 1 2. Note that the order is important, and shall be the same as the order in the original sequence. In the second example digits $...
500
[ { "input": "7 3\n3 5 7 1 6 2 8\n1 2 7", "output": "7 1 2" }, { "input": "4 4\n3 4 1 0\n0 1 7 9", "output": "1 0" }, { "input": "9 4\n9 8 7 6 5 4 3 2 1\n2 4 6 8", "output": "8 6 4 2" }, { "input": "10 5\n3 7 1 2 4 6 9 0 5 8\n4 3 0 7 9", "output": "3 7 4 9 0" }, { "...
1,616,791,864
2,147,483,647
Python 3
OK
TESTS
31
62
0
n, m = map(int, input().split()) a = list(map(int, input().strip().split()))[:n] b = list(map(int, input().strip().split()))[:m] l3 = [] for element in a: if element in b: l3.append(element) print(*l3)
Title: Fingerprints Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are locked in a room with a door that has a keypad with 10 keys corresponding to digits from 0 to 9. To escape from the room, you need to enter a correct code. You also have a sequence of digits. Some keys on the keyp...
```python n, m = map(int, input().split()) a = list(map(int, input().strip().split()))[:n] b = list(map(int, input().strip().split()))[:m] l3 = [] for element in a: if element in b: l3.append(element) print(*l3) ```
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,655,935,364
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n = int(input()) m = int(input()) print(int(m*n/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 n = int(input()) m = int(input()) print(int(m*n/2)) ```
-1
63
A
Sinking Ship
PROGRAMMING
900
[ "implementation", "sortings", "strings" ]
A. Sinking Ship
2
256
The ship crashed into a reef and is sinking. Now the entire crew must be evacuated. All *n* crew members have already lined up in a row (for convenience let's label them all from left to right with positive integers from 1 to *n*) and await further instructions. However, one should evacuate the crew properly, in a stri...
The first line contains an integer *n*, which is the number of people in the crew (1<=≤<=*n*<=≤<=100). Then follow *n* lines. The *i*-th of those lines contains two words — the name of the crew member who is *i*-th in line, and his status on the ship. The words are separated by exactly one space. There are no other spa...
Print *n* lines. The *i*-th of them should contain the name of the crew member who must be the *i*-th one to leave the ship.
[ "6\nJack captain\nAlice woman\nCharlie man\nTeddy rat\nBob child\nJulia woman\n" ]
[ "Teddy\nAlice\nBob\nJulia\nCharlie\nJack\n" ]
none
500
[ { "input": "6\nJack captain\nAlice woman\nCharlie man\nTeddy rat\nBob child\nJulia woman", "output": "Teddy\nAlice\nBob\nJulia\nCharlie\nJack" }, { "input": "1\nA captain", "output": "A" }, { "input": "1\nAbcdefjhij captain", "output": "Abcdefjhij" }, { "input": "5\nA captain...
1,668,053,825
2,147,483,647
PyPy 3-64
OK
TESTS
26
124
0
n = int(input()) name, status = [], [] for i in range(n): L = input().split(' ') name.append(L[0]) status.append(L[1]) for i in ['rat', 'woman', 'man', 'captain']: for j in range(n): if (status[j] == 'child' and i == 'woman') or i == status[j]: print(name[j])
Title: Sinking Ship Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The ship crashed into a reef and is sinking. Now the entire crew must be evacuated. All *n* crew members have already lined up in a row (for convenience let's label them all from left to right with positive integers from 1 to ...
```python n = int(input()) name, status = [], [] for i in range(n): L = input().split(' ') name.append(L[0]) status.append(L[1]) for i in ['rat', 'woman', 'man', 'captain']: for j in range(n): if (status[j] == 'child' and i == 'woman') or i == status[j]: print(name[j]) ```
3.969
139
A
Petr and Book
PROGRAMMING
1,000
[ "implementation" ]
null
null
One Sunday Petr went to a bookshop and bought a new book on sports programming. The book had exactly *n* pages. Petr decided to start reading it starting from the next day, that is, from Monday. Petr's got a very tight schedule and for each day of the week he knows how many pages he will be able to read on that day. S...
The first input line contains the single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of pages in the book. The second line contains seven non-negative space-separated integers that do not exceed 1000 — those integers represent how many pages Petr can read on Monday, Tuesday, Wednesday, Thursday, Friday, Saturday and...
Print a single number — the number of the day of the week, when Petr will finish reading the book. The days of the week are numbered starting with one in the natural order: Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
[ "100\n15 20 20 15 10 30 45\n", "2\n1 0 0 0 0 0 0\n" ]
[ "6\n", "1\n" ]
Note to the first sample: By the end of Monday and therefore, by the beginning of Tuesday Petr has 85 pages left. He has 65 pages left by Wednesday, 45 by Thursday, 30 by Friday, 20 by Saturday and on Saturday Petr finishes reading the book (and he also has time to read 10 pages of something else). Note to the second...
500
[ { "input": "100\n15 20 20 15 10 30 45", "output": "6" }, { "input": "2\n1 0 0 0 0 0 0", "output": "1" }, { "input": "100\n100 200 100 200 300 400 500", "output": "1" }, { "input": "3\n1 1 1 1 1 1 1", "output": "3" }, { "input": "1\n1 1 1 1 1 1 1", "output": "1...
1,631,707,958
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
12
248
20,172,800
from itertools import cycle def main(): n = int(input()) pages_read = 0 index = 0 pages = map(int, input().split()) for i, page in enumerate(cycle(pages)): pages_read += page if pages_read >= n: break print((i+1) % 7) main()
Title: Petr and Book Time Limit: None seconds Memory Limit: None megabytes Problem Description: One Sunday Petr went to a bookshop and bought a new book on sports programming. The book had exactly *n* pages. Petr decided to start reading it starting from the next day, that is, from Monday. Petr's got a very tight s...
```python from itertools import cycle def main(): n = int(input()) pages_read = 0 index = 0 pages = map(int, input().split()) for i, page in enumerate(cycle(pages)): pages_read += page if pages_read >= n: break print((i+1) % 7) main() ```
0
967
A
Mind the Gap
PROGRAMMING
1,100
[ "implementation" ]
null
null
These days Arkady works as an air traffic controller at a large airport. He controls a runway which is usually used for landings only. Thus, he has a schedule of planes that are landing in the nearest future, each landing lasts $1$ minute. He was asked to insert one takeoff in the schedule. The takeoff takes $1$ minut...
The first line of input contains two integers $n$ and $s$ ($1 \le n \le 100$, $1 \le s \le 60$) — the number of landings on the schedule and the minimum allowed time (in minutes) between a landing and a takeoff. Each of next $n$ lines contains two integers $h$ and $m$ ($0 \le h \le 23$, $0 \le m \le 59$) — the time, i...
Print two integers $h$ and $m$ — the hour and the minute from the current moment of the earliest time Arkady can insert the takeoff.
[ "6 60\n0 0\n1 20\n3 21\n5 0\n19 30\n23 40\n", "16 50\n0 30\n1 20\n3 0\n4 30\n6 10\n7 50\n9 30\n11 10\n12 50\n14 30\n16 10\n17 50\n19 30\n21 10\n22 50\n23 59\n", "3 17\n0 30\n1 0\n12 0\n" ]
[ "6 1\n", "24 50\n", "0 0\n" ]
In the first example note that there is not enough time between 1:20 and 3:21, because each landing and the takeoff take one minute. In the second example there is no gaps in the schedule, so Arkady can only add takeoff after all landings. Note that it is possible that one should wait more than $24$ hours to insert th...
500
[ { "input": "6 60\n0 0\n1 20\n3 21\n5 0\n19 30\n23 40", "output": "6 1" }, { "input": "16 50\n0 30\n1 20\n3 0\n4 30\n6 10\n7 50\n9 30\n11 10\n12 50\n14 30\n16 10\n17 50\n19 30\n21 10\n22 50\n23 59", "output": "24 50" }, { "input": "3 17\n0 30\n1 0\n12 0", "output": "0 0" }, { ...
1,525,217,107
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
data = raw_input().split() n = int(data[0]) s = int(data[1]) last_possible = 0 result = int(-1) for i in range (0,n): #print last_possible duration = raw_input().split() #print duration time = int(duration[0])*60+int(duration[1]) #print time if last_possible + s < time: result = last_possibl...
Title: Mind the Gap Time Limit: None seconds Memory Limit: None megabytes Problem Description: These days Arkady works as an air traffic controller at a large airport. He controls a runway which is usually used for landings only. Thus, he has a schedule of planes that are landing in the nearest future, each landing ...
```python data = raw_input().split() n = int(data[0]) s = int(data[1]) last_possible = 0 result = int(-1) for i in range (0,n): #print last_possible duration = raw_input().split() #print duration time = int(duration[0])*60+int(duration[1]) #print time if last_possible + s < time: result = la...
-1
492
B
Vanya and Lanterns
PROGRAMMING
1,200
[ "binary search", "implementation", "math", "sortings" ]
null
null
Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the point *l*. Then the *i*-th lantern is at the point *a**i*. The lantern lights all points of the street that...
The first line contains two integers *n*, *l* (1<=≤<=*n*<=≤<=1000, 1<=≤<=*l*<=≤<=109) — the number of lanterns and the length of the street respectively. The next line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=*l*). Multiple lanterns can be located at the same point. The lanterns may be located at the ends of th...
Print the minimum light radius *d*, needed to light the whole street. The answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=9.
[ "7 15\n15 5 3 7 9 14 0\n", "2 5\n2 5\n" ]
[ "2.5000000000\n", "2.0000000000\n" ]
Consider the second sample. At *d* = 2 the first lantern will light the segment [0, 4] of the street, and the second lantern will light segment [3, 5]. Thus, the whole street will be lit.
1,000
[ { "input": "7 15\n15 5 3 7 9 14 0", "output": "2.5000000000" }, { "input": "2 5\n2 5", "output": "2.0000000000" }, { "input": "46 615683844\n431749087 271781274 274974690 324606253 480870261 401650581 13285442 478090364 266585394 425024433 588791449 492057200 391293435 563090494 317950 1...
1,695,109,369
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
31
0
input() l=list(map(int,input().split())) l.sort() L=[] for x in range(len(l)-1): L.append(l[x+1]-l[x]) print(0.5*max(L))
Title: Vanya and Lanterns Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the poi...
```python input() l=list(map(int,input().split())) l.sort() L=[] for x in range(len(l)-1): L.append(l[x+1]-l[x]) print(0.5*max(L)) ```
0
731
A
Night at the Museum
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devise that allows to "print" the text of a plastic tape. Text is printed sequentially, character by character...
The only line of input contains the name of some exhibit — the non-empty string consisting of no more than 100 characters. It's guaranteed that the string consists of only lowercase English letters.
Print one integer — the minimum number of rotations of the wheel, required to print the name given in the input.
[ "zeus\n", "map\n", "ares\n" ]
[ "18\n", "35\n", "34\n" ]
To print the string from the first sample it would be optimal to perform the following sequence of rotations: 1. from 'a' to 'z' (1 rotation counterclockwise), 1. from 'z' to 'e' (5 clockwise rotations), 1. from 'e' to 'u' (10 rotations counterclockwise), 1. from 'u' to 's' (2 counterclockwise rotations).
500
[ { "input": "zeus", "output": "18" }, { "input": "map", "output": "35" }, { "input": "ares", "output": "34" }, { "input": "l", "output": "11" }, { "input": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuv", "...
1,687,428,568
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
words = input() counter = 0 my_list = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] old_count = 26 for letter in words: new_count = my_list.index(letter) if (min(old_count - new_count, len(my_list) - (old_coun...
Title: Night at the Museum Time Limit: None seconds Memory Limit: None megabytes Problem Description: Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devis...
```python words = input() counter = 0 my_list = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z'] old_count = 26 for letter in words: new_count = my_list.index(letter) if (min(old_count - new_count, len(my_list) -...
0
69
E
Subsegments
PROGRAMMING
1,800
[ "data structures", "implementation" ]
E. Subsegments
1
256
Programmer Sasha has recently begun to study data structures. His coach Stas told him to solve the problem of finding a minimum on the segment of the array in , which Sasha coped with. For Sasha not to think that he had learned all, Stas gave him a new task. For each segment of the fixed length Sasha must find the maxi...
The first line contains two positive integers *n* and *k* (1<=≤<=*n*<=≤<=105,<=1<=≤<=*k*<=≤<=*n*) — the number of array elements and the length of the segment. Then follow *n* lines: the *i*-th one contains a single number *a**i* (<=-<=109<=≤<=*a**i*<=≤<=109).
Print *n*–*k*<=+<=1 numbers, one per line: on the *i*-th line print of the maximum number of those numbers from the subarray *a**i* *a**i*<=+<=1 … *a**i*<=+<=*k*<=-<=1 that occur in this subarray exactly 1 time. If there are no such numbers in this subarray, print "Nothing".
[ "5 3\n1\n2\n2\n3\n3\n", "6 4\n3\n3\n3\n4\n4\n2\n" ]
[ "1\n3\n2\n", "4\nNothing\n3\n" ]
none
2,500
[ { "input": "5 3\n1\n2\n2\n3\n3", "output": "1\n3\n2" }, { "input": "6 4\n3\n3\n3\n4\n4\n2", "output": "4\nNothing\n3" }, { "input": "10 3\n-55\n-35\n-80\n91\n-96\n-93\n-39\n-77\n4\n29", "output": "-35\n91\n91\n91\n-39\n-39\n4\n29" }, { "input": "10 3\n-13\n26\n-97\n-38\n43\n-...
1,649,271,870
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
22
1,000
3,891,200
from cmath import inf n, k=map(int,input().split()) nu=[] for i in range(n): nu.append(int(input())) inse=nu[:k] co=dict({i+1:{-inf} for i in range(-1,k+1)}) pre=dict() for i in range(k): co[inse.count(inse[i])].add(inse[i]) pre.update({inse[i]:inse.count(inse[i])}) if len(co...
Title: Subsegments Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Programmer Sasha has recently begun to study data structures. His coach Stas told him to solve the problem of finding a minimum on the segment of the array in , which Sasha coped with. For Sasha not to think that he had learned...
```python from cmath import inf n, k=map(int,input().split()) nu=[] for i in range(n): nu.append(int(input())) inse=nu[:k] co=dict({i+1:{-inf} for i in range(-1,k+1)}) pre=dict() for i in range(k): co[inse.count(inse[i])].add(inse[i]) pre.update({inse[i]:inse.count(inse[i])}) ...
0
614
A
Link/Cut Tree
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the *expose* procedure. Unfortunately, Rostislav is unable to understand the definition of this procedure, so he decided to ask programmer Serezha to help him. Serezha agre...
The first line of the input contains three space-separated integers *l*, *r* and *k* (1<=≤<=*l*<=≤<=*r*<=≤<=1018, 2<=≤<=*k*<=≤<=109).
Print all powers of number *k*, that lie within range from *l* to *r* in the increasing order. If there are no such numbers, print "-1" (without the quotes).
[ "1 10 2\n", "2 4 5\n" ]
[ "1 2 4 8 ", "-1" ]
Note to the first sample: numbers 2<sup class="upper-index">0</sup> = 1, 2<sup class="upper-index">1</sup> = 2, 2<sup class="upper-index">2</sup> = 4, 2<sup class="upper-index">3</sup> = 8 lie within the specified range. The number 2<sup class="upper-index">4</sup> = 16 is greater then 10, thus it shouldn't be printed.
500
[ { "input": "1 10 2", "output": "1 2 4 8 " }, { "input": "2 4 5", "output": "-1" }, { "input": "18102 43332383920 28554", "output": "28554 815330916 " }, { "input": "19562 31702689720 17701", "output": "313325401 " }, { "input": "11729 55221128400 313", "output...
1,643,997,411
2,147,483,647
PyPy 3-64
OK
TESTS
44
93
0
l, r, k = map(int, input().split()) res = 1 b = False while res <= r: if res >= l: print(res,end=" ") b = True res *= k if b == False: print(-1)
Title: Link/Cut Tree Time Limit: None seconds Memory Limit: None megabytes Problem Description: Programmer Rostislav got seriously interested in the Link/Cut Tree data structure, which is based on Splay trees. Specifically, he is now studying the *expose* procedure. Unfortunately, Rostislav is unable to understand ...
```python l, r, k = map(int, input().split()) res = 1 b = False while res <= r: if res >= l: print(res,end=" ") b = True res *= k if b == False: print(-1) ```
3
320
A
Magic Numbers
PROGRAMMING
900
[ "brute force", "greedy" ]
null
null
A magic number is a number formed by concatenation of numbers 1, 14 and 144. We can use each of these numbers any number of times. Therefore 14144, 141414 and 1411 are magic numbers but 1444, 514 and 414 are not. You're given a number. Determine if it is a magic number or not.
The first line of input contains an integer *n*, (1<=≤<=*n*<=≤<=109). This number doesn't contain leading zeros.
Print "YES" if *n* is a magic number or print "NO" if it's not.
[ "114114\n", "1111\n", "441231\n" ]
[ "YES\n", "YES\n", "NO\n" ]
none
500
[ { "input": "114114", "output": "YES" }, { "input": "1111", "output": "YES" }, { "input": "441231", "output": "NO" }, { "input": "1", "output": "YES" }, { "input": "14", "output": "YES" }, { "input": "114", "output": "YES" }, { "input": "9",...
1,643,027,031
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
92
0
s = input() s = list(s) is_true = True con =0 for i in range(len(s)): try: if s[i] == '1': con =0 elif s[i] == '4': if s[i-1] == '1' or s[i-1] =='4': con+=1 else: is_true = False break; else: ...
Title: Magic Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: A magic number is a number formed by concatenation of numbers 1, 14 and 144. We can use each of these numbers any number of times. Therefore 14144, 141414 and 1411 are magic numbers but 1444, 514 and 414 are not. You're ...
```python s = input() s = list(s) is_true = True con =0 for i in range(len(s)): try: if s[i] == '1': con =0 elif s[i] == '4': if s[i-1] == '1' or s[i-1] =='4': con+=1 else: is_true = False break; else: ...
0
462
B
Appleman and Card Game
PROGRAMMING
1,300
[ "greedy" ]
null
null
Appleman has *n* cards. Each card has an uppercase letter written on it. Toastman must choose *k* cards from Appleman's cards. Then Appleman should give Toastman some coins depending on the chosen cards. Formally, for each Toastman's card *i* you should calculate how much Toastman's cards have the letter equal to lette...
The first line contains two integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=105). The next line contains *n* uppercase letters without spaces — the *i*-th letter describes the *i*-th card of the Appleman.
Print a single integer – the answer to the problem.
[ "15 10\nDZFDFZDFDDDDDDF\n", "6 4\nYJSNPI\n" ]
[ "82\n", "4\n" ]
In the first test example Toastman can choose nine cards with letter D and one additional card with any letter. For each card with D he will get 9 coins and for the additional card he will get 1 coin.
1,000
[ { "input": "15 10\nDZFDFZDFDDDDDDF", "output": "82" }, { "input": "6 4\nYJSNPI", "output": "4" }, { "input": "5 3\nAOWBY", "output": "3" }, { "input": "1 1\nV", "output": "1" }, { "input": "2 1\nWT", "output": "1" }, { "input": "2 2\nBL", "output":...
1,619,852,392
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
62
0
str1 = input().split(' ') str2 = input() dict1 = {} for item in str2: if dict1.get(item, 0): dict1[item] += 1 else: dict1[item] = 1 str3 = sorted(list(dict1.values()), reverse=True) i = 0 sum = 0 k = int(str1[1]) while 1 : a = k - str3[i] if a<=0: sum += k**2 ...
Title: Appleman and Card Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Appleman has *n* cards. Each card has an uppercase letter written on it. Toastman must choose *k* cards from Appleman's cards. Then Appleman should give Toastman some coins depending on the chosen cards. Formally...
```python str1 = input().split(' ') str2 = input() dict1 = {} for item in str2: if dict1.get(item, 0): dict1[item] += 1 else: dict1[item] = 1 str3 = sorted(list(dict1.values()), reverse=True) i = 0 sum = 0 k = int(str1[1]) while 1 : a = k - str3[i] if a<=0: sum += ...
0
831
B
Keyboard Layouts
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
There are two popular keyboard layouts in Berland, they differ only in letters positions. All the other keys are the same. In Berland they use alphabet with 26 letters which coincides with English alphabet. You are given two strings consisting of 26 distinct letters each: all keys of the first and the second layouts i...
The first line contains a string of length 26 consisting of distinct lowercase English letters. This is the first layout. The second line contains a string of length 26 consisting of distinct lowercase English letters. This is the second layout. The third line contains a non-empty string *s* consisting of lowercase a...
Print the text if the same keys were pressed in the second layout.
[ "qwertyuiopasdfghjklzxcvbnm\nveamhjsgqocnrbfxdtwkylupzi\nTwccpQZAvb2017\n", "mnbvcxzlkjhgfdsapoiuytrewq\nasdfghjklqwertyuiopzxcvbnm\n7abaCABAABAcaba7\n" ]
[ "HelloVKCup2017\n", "7uduGUDUUDUgudu7\n" ]
none
750
[ { "input": "qwertyuiopasdfghjklzxcvbnm\nveamhjsgqocnrbfxdtwkylupzi\nTwccpQZAvb2017", "output": "HelloVKCup2017" }, { "input": "mnbvcxzlkjhgfdsapoiuytrewq\nasdfghjklqwertyuiopzxcvbnm\n7abaCABAABAcaba7", "output": "7uduGUDUUDUgudu7" }, { "input": "ayvguplhjsoiencbkxdrfwmqtz\nkhzvtbspcndier...
1,650,085,329
2,147,483,647
Python 3
OK
TESTS
19
31
0
x = input() y = input() z = input() v = z.lower() s = "" for i in range(0, len(z)): j = x.find(v[i]) if z[i].isupper() == True: s += (y[j].upper()) elif j != -1: s += y[j] else: s += (z[i]) print(s)
Title: Keyboard Layouts Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are two popular keyboard layouts in Berland, they differ only in letters positions. All the other keys are the same. In Berland they use alphabet with 26 letters which coincides with English alphabet. You are gi...
```python x = input() y = input() z = input() v = z.lower() s = "" for i in range(0, len(z)): j = x.find(v[i]) if z[i].isupper() == True: s += (y[j].upper()) elif j != -1: s += y[j] else: s += (z[i]) print(s) ```
3
0
none
none
none
0
[ "none" ]
null
null
Andryusha goes through a park each day. The squares and paths between them look boring to Andryusha, so he decided to decorate them. The park consists of *n* squares connected with (*n*<=-<=1) bidirectional paths in such a way that any square is reachable from any other using these paths. Andryusha decided to hang a c...
The first line contains single integer *n* (3<=≤<=*n*<=≤<=2·105) — the number of squares in the park. Each of the next (*n*<=-<=1) lines contains two integers *x* and *y* (1<=≤<=*x*,<=*y*<=≤<=*n*) — the indices of two squares directly connected by a path. It is guaranteed that any square is reachable from any other u...
In the first line print single integer *k* — the minimum number of colors Andryusha has to use. In the second line print *n* integers, the *i*-th of them should be equal to the balloon color on the *i*-th square. Each of these numbers should be within range from 1 to *k*.
[ "3\n2 3\n1 3\n", "5\n2 3\n5 3\n4 3\n1 3\n", "5\n2 1\n3 2\n4 3\n5 4\n" ]
[ "3\n1 3 2 ", "5\n1 3 2 5 4 ", "3\n1 2 3 1 2 " ]
In the first sample the park consists of three squares: 1 → 3 → 2. Thus, the balloon colors have to be distinct. In the second example there are following triples of consequently connected squares: - 1 → 3 → 2 - 1 → 3 → 4 - 1 → 3 → 5 - 2 → 3 → 4 - 2 → 3 → 5 - 4 → 3 → 5 In the third example there are following...
0
[ { "input": "3\n2 3\n1 3", "output": "3\n1 3 2 " }, { "input": "5\n2 3\n5 3\n4 3\n1 3", "output": "5\n1 3 2 5 4 " }, { "input": "5\n2 1\n3 2\n4 3\n5 4", "output": "3\n1 2 3 1 2 " }, { "input": "10\n5 3\n9 2\n7 1\n3 8\n4 1\n1 9\n10 1\n8 9\n6 2", "output": "5\n1 2 1 3 2 1 2 ...
1,642,658,315
2,147,483,647
PyPy 3-64
MEMORY_LIMIT_EXCEEDED
TESTS
0
77
268,390,400
from collections import defaultdict from sys import setrecursionlimit setrecursionlimit(10**5) import threading def dfs(node,par,bad,g,color): curr=1 for i in g[node]: if i==par: continue while curr in bad: curr+=1 color[i]=curr bad.add(curr) if pa...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andryusha goes through a park each day. The squares and paths between them look boring to Andryusha, so he decided to decorate them. The park consists of *n* squares connected with (*n*<=-<=1) bidirectional paths in such a way th...
```python from collections import defaultdict from sys import setrecursionlimit setrecursionlimit(10**5) import threading def dfs(node,par,bad,g,color): curr=1 for i in g[node]: if i==par: continue while curr in bad: curr+=1 color[i]=curr bad.add(curr)...
0
818
A
Diplomas and Certificates
PROGRAMMING
800
[ "implementation", "math" ]
null
null
There are *n* students who have taken part in an olympiad. Now it's time to award the students. Some of them will receive diplomas, some wiil get certificates, and others won't receive anything. Students with diplomas and certificates are called winners. But there are some rules of counting the number of diplomas and ...
The first (and the only) line of input contains two integers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=1012), where *n* is the number of students and *k* is the ratio between the number of certificates and the number of diplomas.
Output three numbers: the number of students with diplomas, the number of students with certificates and the number of students who are not winners in case when the number of winners is maximum possible. It's possible that there are no winners.
[ "18 2\n", "9 10\n", "1000000000000 5\n", "1000000000000 499999999999\n" ]
[ "3 6 9\n", "0 0 9\n", "83333333333 416666666665 500000000002\n", "1 499999999999 500000000000\n" ]
none
0
[ { "input": "18 2", "output": "3 6 9" }, { "input": "9 10", "output": "0 0 9" }, { "input": "1000000000000 5", "output": "83333333333 416666666665 500000000002" }, { "input": "1000000000000 499999999999", "output": "1 499999999999 500000000000" }, { "input": "1 1",...
1,593,329,404
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
93
6,656,000
a = [int(x) for x in input().split()] n=a[0] k=a[1] if k+1>int(n/2): print(0, 0,str(k)) else: first = int(int(n/2)/((1+k))) second = int(k*int(n/2)/((1+k))) print(first,second,n-first-second)
Title: Diplomas and Certificates Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* students who have taken part in an olympiad. Now it's time to award the students. Some of them will receive diplomas, some wiil get certificates, and others won't receive anything. Students with...
```python a = [int(x) for x in input().split()] n=a[0] k=a[1] if k+1>int(n/2): print(0, 0,str(k)) else: first = int(int(n/2)/((1+k))) second = int(k*int(n/2)/((1+k))) print(first,second,n-first-second) ```
0
11
A
Increasing Sequence
PROGRAMMING
900
[ "constructive algorithms", "implementation", "math" ]
A. Increasing Sequence
1
64
A sequence *a*0,<=*a*1,<=...,<=*a**t*<=-<=1 is called increasing if *a**i*<=-<=1<=&lt;<=*a**i* for each *i*:<=0<=&lt;<=*i*<=&lt;<=*t*. You are given a sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 and a positive integer *d*. In each move you may choose one element of the given sequence and add *d* to it. What is the least...
The first line of the input contains two integer numbers *n* and *d* (2<=≤<=*n*<=≤<=2000,<=1<=≤<=*d*<=≤<=106). The second line contains space separated sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 (1<=≤<=*b**i*<=≤<=106).
Output the minimal number of moves needed to make the sequence increasing.
[ "4 2\n1 3 3 2\n" ]
[ "3\n" ]
none
0
[ { "input": "4 2\n1 3 3 2", "output": "3" }, { "input": "2 1\n1 1", "output": "1" }, { "input": "2 1\n2 5", "output": "0" }, { "input": "2 1\n1 2", "output": "0" }, { "input": "2 1\n1 1", "output": "1" }, { "input": "2 7\n10 20", "output": "0" }, ...
1,538,580,608
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
15
1,000
307,200
len,add = map(int, input().split()) liste = list(map(int,input().split())) num = 0 i = 0 while(i < len - 1): if liste[i] < liste[i + 1]: i+=1 else: while(liste[i] >= liste[i + 1]): liste[i + 1] += add num += 1 i+=1 print(num)
Title: Increasing Sequence Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: A sequence *a*0,<=*a*1,<=...,<=*a**t*<=-<=1 is called increasing if *a**i*<=-<=1<=&lt;<=*a**i* for each *i*:<=0<=&lt;<=*i*<=&lt;<=*t*. You are given a sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 and a positive integer *d*...
```python len,add = map(int, input().split()) liste = list(map(int,input().split())) num = 0 i = 0 while(i < len - 1): if liste[i] < liste[i + 1]: i+=1 else: while(liste[i] >= liste[i + 1]): liste[i + 1] += add num += 1 i+=1 print(num) ```
0
753
A
Santa Claus and Candies
PROGRAMMING
1,000
[ "dp", "greedy", "math" ]
null
null
Santa Claus has *n* candies, he dreams to give them as gifts to children. What is the maximal number of children for whose he can give candies if Santa Claus want each kid should get distinct positive integer number of candies. Santa Class wants to give all *n* candies he has.
The only line contains positive integer number *n* (1<=≤<=*n*<=≤<=1000) — number of candies Santa Claus has.
Print to the first line integer number *k* — maximal number of kids which can get candies. Print to the second line *k* distinct integer numbers: number of candies for each of *k* kid. The sum of *k* printed numbers should be exactly *n*. If there are many solutions, print any of them.
[ "5\n", "9\n", "2\n" ]
[ "2\n2 3\n", "3\n3 5 1\n", "1\n2 \n" ]
none
500
[ { "input": "5", "output": "2\n1 4 " }, { "input": "9", "output": "3\n1 2 6 " }, { "input": "2", "output": "1\n2 " }, { "input": "1", "output": "1\n1 " }, { "input": "3", "output": "2\n1 2 " }, { "input": "1000", "output": "44\n1 2 3 4 5 6 7 8 9 10 ...
1,653,246,692
2,147,483,647
Python 3
OK
TESTS
49
46
0
n=int(input()) a=[] while n>len(a): a+=[len(a)+1] n-=a[-1] a[-1]+=n print(len(a)) print(*a)
Title: Santa Claus and Candies Time Limit: None seconds Memory Limit: None megabytes Problem Description: Santa Claus has *n* candies, he dreams to give them as gifts to children. What is the maximal number of children for whose he can give candies if Santa Claus want each kid should get distinct positive integer n...
```python n=int(input()) a=[] while n>len(a): a+=[len(a)+1] n-=a[-1] a[-1]+=n print(len(a)) print(*a) ```
3
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,672,016,862
2,147,483,647
PyPy 3
OK
TESTS
20
92
0
import sys as s num = s.stdin.readline() inputs = [] for i in range(int(num)): inputs.append(s.stdin.readline().strip('\n')) for i in inputs: if len(i) > 10: s.stdout.write(i[0]+str(len(i)-2)+i[-1]+'\n') else: s.stdout.write(i+'\n')
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 import sys as s num = s.stdin.readline() inputs = [] for i in range(int(num)): inputs.append(s.stdin.readline().strip('\n')) for i in inputs: if len(i) > 10: s.stdout.write(i[0]+str(len(i)-2)+i[-1]+'\n') else: s.stdout.write(i+'\n') ```
3.954
94
A
Restoring Password
PROGRAMMING
900
[ "implementation", "strings" ]
A. Restoring Password
2
256
Igor K. always used to trust his favorite Kashpirovsky Antivirus. That is why he didn't hesitate to download the link one of his groupmates sent him via QIP Infinium. The link was said to contain "some real funny stuff about swine influenza". The antivirus had no objections and Igor K. run the flash application he had ...
The input data contains 11 lines. The first line represents the binary code 80 characters in length. That is the code written in Igor K.'s ISQ account's info. Next 10 lines contain pairwise distinct binary codes 10 characters in length, corresponding to numbers 0, 1, ..., 9.
Print one line containing 8 characters — The password to Igor K.'s ISQ account. It is guaranteed that the solution exists.
[ "01001100100101100000010110001001011001000101100110010110100001011010100101101100\n0100110000\n0100110010\n0101100000\n0101100010\n0101100100\n0101100110\n0101101000\n0101101010\n0101101100\n0101101110\n", "10101101111001000010100100011010101101110010110111011000100011011110010110001000\n1001000010\n1101111001\n1...
[ "12345678\n", "30234919\n" ]
none
500
[ { "input": "01001100100101100000010110001001011001000101100110010110100001011010100101101100\n0100110000\n0100110010\n0101100000\n0101100010\n0101100100\n0101100110\n0101101000\n0101101010\n0101101100\n0101101110", "output": "12345678" }, { "input": "1010110111100100001010010001101010110111001011011...
1,677,126,792
2,147,483,647
Python 3
OK
TESTS
50
122
409,600
from textwrap import wrap p=wrap(input(), 10);l=[] for i in range(10): c=input();l.append(c) print(*[l.index(j) for j in p], sep="")
Title: Restoring Password Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Igor K. always used to trust his favorite Kashpirovsky Antivirus. That is why he didn't hesitate to download the link one of his groupmates sent him via QIP Infinium. The link was said to contain "some real funny stuff a...
```python from textwrap import wrap p=wrap(input(), 10);l=[] for i in range(10): c=input();l.append(c) print(*[l.index(j) for j in p], sep="") ```
3.968737
127
A
Wasted Time
PROGRAMMING
900
[ "geometry" ]
null
null
Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count the time he has wasted signing papers. Mr. Scrooge's signature can be represented as a polyline ...
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=1000). Each of the following *n* lines contains the coordinates of the polyline's endpoints. The *i*-th one contains coordinates of the point *A**i* — integers *x**i* and *y**i*, separated by a space. All points *A**i* are different. Th...
Print one real number — the total time Scrooges wastes on signing the papers in seconds. The absolute or relative error should not exceed 10<=-<=6.
[ "2 1\n0 0\n10 0\n", "5 10\n3 1\n-5 6\n-2 -1\n3 2\n10 0\n", "6 10\n5 0\n4 0\n6 0\n3 0\n7 0\n2 0\n" ]
[ "0.200000000", "6.032163204", "3.000000000" ]
none
500
[ { "input": "2 1\n0 0\n10 0", "output": "0.200000000" }, { "input": "5 10\n3 1\n-5 6\n-2 -1\n3 2\n10 0", "output": "6.032163204" }, { "input": "6 10\n5 0\n4 0\n6 0\n3 0\n7 0\n2 0", "output": "3.000000000" }, { "input": "10 95\n-20 -5\n2 -8\n14 13\n10 3\n17 11\n13 -12\n-6 11\n1...
1,655,310,750
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
186
3,276,800
from sys import stdin from bisect import bisect_left as bl from collections import defaultdict from math import ceil, floor, gcd, dist # input = stdin.readline read = lambda: map(int, input().strip().split()) n, k = read() lst = [list(read()) for i in range(n)] d = 0 for i in range(1, n): d += dist(ls...
Title: Wasted Time Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mr. Scrooge, a very busy man, decided to count the time he wastes on all sorts of useless stuff to evaluate the lost profit. He has already counted the time he wastes sleeping and eating. And now Mr. Scrooge wants to count ...
```python from sys import stdin from bisect import bisect_left as bl from collections import defaultdict from math import ceil, floor, gcd, dist # input = stdin.readline read = lambda: map(int, input().strip().split()) n, k = read() lst = [list(read()) for i in range(n)] d = 0 for i in range(1, n): d ...
-1
798
A
Mike and palindrome
PROGRAMMING
1,000
[ "brute force", "constructive algorithms", "strings" ]
null
null
Mike has a string *s* consisting of only lowercase English letters. He wants to change exactly one character from the string so that the resulting one is a palindrome. A palindrome is a string that reads the same backward as forward, for example strings "z", "aaa", "aba", "abccba" are palindromes, but strings "codefo...
The first and single line contains string *s* (1<=≤<=|*s*|<=≤<=15).
Print "YES" (without quotes) if Mike can change exactly one character so that the resulting string is palindrome or "NO" (without quotes) otherwise.
[ "abccaa\n", "abbcca\n", "abcda\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
500
[ { "input": "abccaa", "output": "YES" }, { "input": "abbcca", "output": "NO" }, { "input": "abcda", "output": "YES" }, { "input": "kyw", "output": "YES" }, { "input": "fccf", "output": "NO" }, { "input": "mnlm", "output": "YES" }, { "input":...
1,694,581,652
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
31
0
def solution(sa): return sa == sa[::-1] sa = input() na = len(sa) ccount = 0 if not solution(sa): for i in range(na // 2): if sa[i] != sa[na - i - 1]: sa1 = sa[:i] + sa[na - i - 1] + sa[i + 1:] sa2 = sa[:na - i - 1] + sa[i] + sa[na - i:] if solution(sa1) or ...
Title: Mike and palindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mike has a string *s* consisting of only lowercase English letters. He wants to change exactly one character from the string so that the resulting one is a palindrome. A palindrome is a string that reads the same ...
```python def solution(sa): return sa == sa[::-1] sa = input() na = len(sa) ccount = 0 if not solution(sa): for i in range(na // 2): if sa[i] != sa[na - i - 1]: sa1 = sa[:i] + sa[na - i - 1] + sa[i + 1:] sa2 = sa[:na - i - 1] + sa[i] + sa[na - i:] if solutio...
0
404
A
Valera and X
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a test on alphabet today. At the test Valera got a square piece of squared paper. The length of the...
The first line contains integer *n* (3<=≤<=*n*<=&lt;<=300; *n* is odd). Each of the next *n* lines contains *n* small English letters — the description of Valera's paper.
Print string "YES", if the letters on the paper form letter "X". Otherwise, print string "NO". Print the strings without quotes.
[ "5\nxooox\noxoxo\nsoxoo\noxoxo\nxooox\n", "3\nwsw\nsws\nwsw\n", "3\nxpx\npxp\nxpe\n" ]
[ "NO\n", "YES\n", "NO\n" ]
none
500
[ { "input": "5\nxooox\noxoxo\nsoxoo\noxoxo\nxooox", "output": "NO" }, { "input": "3\nwsw\nsws\nwsw", "output": "YES" }, { "input": "3\nxpx\npxp\nxpe", "output": "NO" }, { "input": "5\nliiil\nilili\niilii\nilili\nliiil", "output": "YES" }, { "input": "7\nbwccccb\nck...
1,660,902,030
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
17
62
0
n = int(input()) unique = set() flag = True for i in range(n): s = input() unique = unique.union(set(s)) if len(unique) > 2: print("NO") flag = False break else: if s[i] != s[-i-1]: print("NO") flag = False break if flag:...
Title: Valera and X Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a...
```python n = int(input()) unique = set() flag = True for i in range(n): s = input() unique = unique.union(set(s)) if len(unique) > 2: print("NO") flag = False break else: if s[i] != s[-i-1]: print("NO") flag = False break...
0
389
A
Fox and Number Game
PROGRAMMING
1,000
[ "greedy", "math" ]
null
null
Fox Ciel is playing a game with numbers now. Ciel has *n* positive integers: *x*1, *x*2, ..., *x**n*. She can do the following operation as many times as needed: select two different indexes *i* and *j* such that *x**i* &gt; *x**j* hold, and then apply assignment *x**i* = *x**i* - *x**j*. The goal is to make the sum ...
The first line contains an integer *n* (2<=≤<=*n*<=≤<=100). Then the second line contains *n* integers: *x*1, *x*2, ..., *x**n* (1<=≤<=*x**i*<=≤<=100).
Output a single integer — the required minimal sum.
[ "2\n1 2\n", "3\n2 4 6\n", "2\n12 18\n", "5\n45 12 27 30 18\n" ]
[ "2\n", "6\n", "12\n", "15\n" ]
In the first example the optimal way is to do the assignment: *x*<sub class="lower-index">2</sub> = *x*<sub class="lower-index">2</sub> - *x*<sub class="lower-index">1</sub>. In the second example the optimal sequence of operations is: *x*<sub class="lower-index">3</sub> = *x*<sub class="lower-index">3</sub> - *x*<sub...
500
[ { "input": "2\n1 2", "output": "2" }, { "input": "3\n2 4 6", "output": "6" }, { "input": "2\n12 18", "output": "12" }, { "input": "5\n45 12 27 30 18", "output": "15" }, { "input": "2\n1 1", "output": "2" }, { "input": "2\n100 100", "output": "200" ...
1,674,213,331
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
n = int(input()) a = list(map(int, input().split())) for i in range(n): a=a.sort() h=a[0] for j in range(1,n): if(a[j]%h==0): a[j]=a[j] else: a[j]=a[j]%h print(sum(a))
Title: Fox and Number Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel is playing a game with numbers now. Ciel has *n* positive integers: *x*1, *x*2, ..., *x**n*. She can do the following operation as many times as needed: select two different indexes *i* and *j* such that ...
```python n = int(input()) a = list(map(int, input().split())) for i in range(n): a=a.sort() h=a[0] for j in range(1,n): if(a[j]%h==0): a[j]=a[j] else: a[j]=a[j]%h print(sum(a)) ```
-1
931
A
Friends Meeting
PROGRAMMING
800
[ "brute force", "greedy", "implementation", "math" ]
null
null
Two friends are on the coordinate axis *Ox* in points with integer coordinates. One of them is in the point *x*1<==<=*a*, another one is in the point *x*2<==<=*b*. Each of the friends can move by one along the line in any direction unlimited number of times. When a friend moves, the tiredness of a friend changes acco...
The first line contains a single integer *a* (1<=≤<=*a*<=≤<=1000) — the initial position of the first friend. The second line contains a single integer *b* (1<=≤<=*b*<=≤<=1000) — the initial position of the second friend. It is guaranteed that *a*<=≠<=*b*.
Print the minimum possible total tiredness if the friends meet in the same point.
[ "3\n4\n", "101\n99\n", "5\n10\n" ]
[ "1\n", "2\n", "9\n" ]
In the first example the first friend should move by one to the right (then the meeting happens at point 4), or the second friend should move by one to the left (then the meeting happens at point 3). In both cases, the total tiredness becomes 1. In the second example the first friend should move by one to the left, an...
500
[ { "input": "3\n4", "output": "1" }, { "input": "101\n99", "output": "2" }, { "input": "5\n10", "output": "9" }, { "input": "1\n2", "output": "1" }, { "input": "1\n1000", "output": "250000" }, { "input": "999\n1000", "output": "1" }, { "inpu...
1,632,741,583
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
a=int(input()) b=int(input()) acnt=0 bcnt=0 a,b=max(a,b),min(a,b) while a!=b: if((a-b)>1): acnt+=1 bcnt+=1 a-=1 b+=1 else: acnt+=1 a-=1 break print(((acnt*(acnt+1))//2)+((bcnt*(bcnt+1))//2))
Title: Friends Meeting Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two friends are on the coordinate axis *Ox* in points with integer coordinates. One of them is in the point *x*1<==<=*a*, another one is in the point *x*2<==<=*b*. Each of the friends can move by one along the line in...
```python a=int(input()) b=int(input()) acnt=0 bcnt=0 a,b=max(a,b),min(a,b) while a!=b: if((a-b)>1): acnt+=1 bcnt+=1 a-=1 b+=1 else: acnt+=1 a-=1 break print(((acnt*(acnt+1))//2)+((bcnt*(bcnt+1))//2)) ```
-1
897
A
Scarborough Fair
PROGRAMMING
800
[ "implementation" ]
null
null
Parsley, sage, rosemary and thyme. Remember me to one who lives there. He once was the true love of mine. Willem is taking the girl to the highest building in island No.28, however, neither of them knows how to get there. Willem asks his friend, Grick for directions, Grick helped them, and gave them a task. Althou...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). The second line contains a string *s* of length *n*, consisting of lowercase English letters. Each of the next *m* lines contains four parameters *l*,<=*r*,<=*c*1,<=*c*2 (1<=≤<=*l*<=≤<=*r*<=≤<=*n*, *c*1,<=*c*2 are lowercase English letters), ...
Output string *s* after performing *m* operations described above.
[ "3 1\nioi\n1 1 i n\n", "5 3\nwxhak\n3 3 h x\n1 5 x a\n1 3 w g\n" ]
[ "noi", "gaaak" ]
For the second example: After the first operation, the string is wxxak. After the second operation, the string is waaak. After the third operation, the string is gaaak.
500
[ { "input": "3 1\nioi\n1 1 i n", "output": "noi" }, { "input": "5 3\nwxhak\n3 3 h x\n1 5 x a\n1 3 w g", "output": "gaaak" }, { "input": "9 51\nbhfbdcgff\n2 3 b b\n2 8 e f\n3 8 g f\n5 7 d a\n1 5 e b\n3 4 g b\n6 7 c d\n3 6 e g\n3 6 e h\n5 6 a e\n7 9 a c\n4 9 a h\n3 7 c b\n6 9 b g\n1 7 h b\n...
1,618,500,844
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
0
# string = '''3 1 # ioi # 1 1 i n''' string = '''5 3 wxhak 3 3 h x 1 5 x a 1 3 w g''' fuc = [] for c in string.split('\n'): fuc.append(c) print(fuc) length = fuc[0][0] times = int(fuc[0][2]) inputstr = fuc[1] print(inputstr) print(times) for i in range(0 , times): print(i) for c in ra...
Title: Scarborough Fair Time Limit: None seconds Memory Limit: None megabytes Problem Description: Parsley, sage, rosemary and thyme. Remember me to one who lives there. He once was the true love of mine. Willem is taking the girl to the highest building in island No.28, however, neither of them knows how to get ...
```python # string = '''3 1 # ioi # 1 1 i n''' string = '''5 3 wxhak 3 3 h x 1 5 x a 1 3 w g''' fuc = [] for c in string.split('\n'): fuc.append(c) print(fuc) length = fuc[0][0] times = int(fuc[0][2]) inputstr = fuc[1] print(inputstr) print(times) for i in range(0 , times): print(i) f...
0
586
A
Alena's Schedule
PROGRAMMING
900
[ "implementation" ]
null
null
Alena has successfully passed the entrance exams to the university and is now looking forward to start studying. One two-hour lesson at the Russian university is traditionally called a pair, it lasts for two academic hours (an academic hour is equal to 45 minutes). The University works in such a way that every day it...
The first line of the input contains a positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of lessons at the university. The second line contains *n* numbers *a**i* (0<=≤<=*a**i*<=≤<=1). Number *a**i* equals 0, if Alena doesn't have the *i*-th pairs, otherwise it is equal to 1. Numbers *a*1,<=*a*2,<=...,<=*a**n* ar...
Print a single number — the number of pairs during which Alena stays at the university.
[ "5\n0 1 0 1 1\n", "7\n1 0 1 0 0 1 0\n", "1\n0\n" ]
[ "4\n", "4\n", "0\n" ]
In the first sample Alena stays at the university from the second to the fifth pair, inclusive, during the third pair she will be it the university waiting for the next pair. In the last sample Alena doesn't have a single pair, so she spends all the time at home.
500
[ { "input": "5\n0 1 0 1 1", "output": "4" }, { "input": "7\n1 0 1 0 0 1 0", "output": "4" }, { "input": "1\n0", "output": "0" }, { "input": "1\n1", "output": "1" }, { "input": "2\n0 0", "output": "0" }, { "input": "2\n0 1", "output": "1" }, { ...
1,459,888,210
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
4,608,000
n1 = int(input("")) n2 = [int(e) for e in input().split(" ")] res = 0 ind = 0 for i in range(0,n1-1): if (n2[ind] == 0) and (n2[ind+1] == 0): ind += 1 elif (n2[ind-1] == 0) and (n2[ind] == 0): ind += 1 else: res += 1 ind += 1 print(res)
Title: Alena's Schedule Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alena has successfully passed the entrance exams to the university and is now looking forward to start studying. One two-hour lesson at the Russian university is traditionally called a pair, it lasts for two academic ...
```python n1 = int(input("")) n2 = [int(e) for e in input().split(" ")] res = 0 ind = 0 for i in range(0,n1-1): if (n2[ind] == 0) and (n2[ind+1] == 0): ind += 1 elif (n2[ind-1] == 0) and (n2[ind] == 0): ind += 1 else: res += 1 ind += 1 print(res) ```
0
858
C
Did you mean...
PROGRAMMING
1,500
[ "dp", "greedy", "implementation" ]
null
null
Beroffice text editor has a wide range of features that help working with text. One of the features is an automatic search for typos and suggestions of how to fix them. Beroffice works only with small English letters (i.e. with 26 letters from a to z). Beroffice thinks that a word is typed with a typo if there are thr...
The only line contains a non-empty word consisting of small English letters. The length of the word is between 1 and 3000 letters.
Print the given word without any changes if there are no typos. If there is at least one typo in the word, insert the minimum number of spaces into the word so that each of the resulting words doesn't have any typos. If there are multiple solutions, print any of them.
[ "hellno\n", "abacaba\n", "asdfasdf\n" ]
[ "hell no \n", "abacaba \n", "asd fasd f \n" ]
none
1,500
[ { "input": "hellno", "output": "hell no " }, { "input": "abacaba", "output": "abacaba " }, { "input": "asdfasdf", "output": "asd fasd f " }, { "input": "ooo", "output": "ooo " }, { "input": "moyaoborona", "output": "moyaoborona " }, { "input": "jxegxxx...
1,505,657,280
3,779
Python 3
WRONG_ANSWER
PRETESTS
6
46
0
string = input() s = "wrtpsdfghjklzxcvbnm"; posl = 0 word_answer = "" otvet = 0 for i in range(len(string)): if s.find(string[i]) != -1: otvet+=1 else: otvet = 0 if (otvet >= 3): if string[i] != string[i-1] or string[i] != string[i-2] or string[i-1] != string[i-2]: ...
Title: Did you mean... Time Limit: None seconds Memory Limit: None megabytes Problem Description: Beroffice text editor has a wide range of features that help working with text. One of the features is an automatic search for typos and suggestions of how to fix them. Beroffice works only with small English letters (...
```python string = input() s = "wrtpsdfghjklzxcvbnm"; posl = 0 word_answer = "" otvet = 0 for i in range(len(string)): if s.find(string[i]) != -1: otvet+=1 else: otvet = 0 if (otvet >= 3): if string[i] != string[i-1] or string[i] != string[i-2] or string[i-1] != string[i-2...
0
363
B
Fence
PROGRAMMING
1,100
[ "brute force", "dp" ]
null
null
There is a fence in front of Polycarpus's home. The fence consists of *n* planks of the same width which go one after another from left to right. The height of the *i*-th plank is *h**i* meters, distinct planks can have distinct heights. Polycarpus has bought a posh piano and is thinking about how to get it into the h...
The first line of the input contains integers *n* and *k* (1<=≤<=*n*<=≤<=1.5·105,<=1<=≤<=*k*<=≤<=*n*) — the number of planks in the fence and the width of the hole for the piano. The second line contains the sequence of integers *h*1,<=*h*2,<=...,<=*h**n* (1<=≤<=*h**i*<=≤<=100), where *h**i* is the height of the *i*-th...
Print such integer *j* that the sum of the heights of planks *j*, *j*<=+<=1, ..., *j*<=+<=*k*<=-<=1 is the minimum possible. If there are multiple such *j*'s, print any of them.
[ "7 3\n1 2 6 1 1 7 1\n" ]
[ "3\n" ]
In the sample, your task is to find three consecutive planks with the minimum sum of heights. In the given case three planks with indexes 3, 4 and 5 have the required attribute, their total height is 8.
1,000
[ { "input": "7 3\n1 2 6 1 1 7 1", "output": "3" }, { "input": "1 1\n100", "output": "1" }, { "input": "2 1\n10 20", "output": "1" }, { "input": "10 5\n1 2 3 1 2 2 3 1 4 5", "output": "1" }, { "input": "10 2\n3 1 4 1 4 6 2 1 4 6", "output": "7" }, { "inp...
1,668,499,665
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
6
1,000
8,089,600
n,k=map(int , input().split()) arr=[int(arr) for arr in input().split()] dic=dict() for i in range(n-k+1): dic[i]=sum(arr[i:i+k]) max_value = min(dic, key=dic.get) print(max_value+1)
Title: Fence Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is a fence in front of Polycarpus's home. The fence consists of *n* planks of the same width which go one after another from left to right. The height of the *i*-th plank is *h**i* meters, distinct planks can have distinct ...
```python n,k=map(int , input().split()) arr=[int(arr) for arr in input().split()] dic=dict() for i in range(n-k+1): dic[i]=sum(arr[i:i+k]) max_value = min(dic, key=dic.get) print(max_value+1) ```
0
7
A
Kalevitch and Chess
PROGRAMMING
1,100
[ "brute force", "constructive algorithms" ]
A. Kalevitch and Chess
2
64
A famous Berland's painter Kalevitch likes to shock the public. One of his last obsessions is chess. For more than a thousand years people have been playing this old game on uninteresting, monotonous boards. Kalevitch decided to put an end to this tradition and to introduce a new attitude to chessboards. As before, th...
The input file contains 8 lines, each of the lines contains 8 characters. The given matrix describes the client's requirements, W character stands for a white square, and B character — for a square painted black. It is guaranteed that client's requirments can be fulfilled with a sequence of allowed strokes (vertical/c...
Output the only number — the minimum amount of rows and columns that Kalevitch has to paint on the white chessboard to meet the client's requirements.
[ "WWWBWWBW\nBBBBBBBB\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\n", "WWWWWWWW\nBBBBBBBB\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\n" ]
[ "3\n", "1\n" ]
none
0
[ { "input": "WWWBWWBW\nBBBBBBBB\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW", "output": "3" }, { "input": "WWWWWWWW\nBBBBBBBB\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW", "output": "1" }, { "input": "WWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWW...
1,539,534,017
2,147,483,647
PyPy 3
OK
TESTS
30
280
0
k = 0; a = [] for i in range(8): b = list(input()); c = b.count("B") if c == 8: k += 1 a.append(b) for i in range(len(a)): c = a[i].count("B") if c != 8: k += c break print(k)
Title: Kalevitch and Chess Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: A famous Berland's painter Kalevitch likes to shock the public. One of his last obsessions is chess. For more than a thousand years people have been playing this old game on uninteresting, monotonous boards. Kalevitch de...
```python k = 0; a = [] for i in range(8): b = list(input()); c = b.count("B") if c == 8: k += 1 a.append(b) for i in range(len(a)): c = a[i].count("B") if c != 8: k += c break print(k) ```
3.93
540
B
School Marks
PROGRAMMING
1,700
[ "greedy", "implementation" ]
null
null
Little Vova studies programming in an elite school. Vova and his classmates are supposed to write *n* progress tests, for each test they will get a mark from 1 to *p*. Vova is very smart and he can write every test for any mark, but he doesn't want to stand out from the crowd too much. If the sum of his marks for all t...
The first line contains 5 space-separated integers: *n*, *k*, *p*, *x* and *y* (1<=≤<=*n*<=≤<=999, *n* is odd, 0<=≤<=*k*<=&lt;<=*n*, 1<=≤<=*p*<=≤<=1000, *n*<=≤<=*x*<=≤<=*n*·*p*, 1<=≤<=*y*<=≤<=*p*). Here *n* is the number of tests that Vova is planned to write, *k* is the number of tests he has already written, *p* is t...
If Vova cannot achieve the desired result, print "-1". Otherwise, print *n*<=-<=*k* space-separated integers — the marks that Vova should get for the remaining tests. If there are multiple possible solutions, print any of them.
[ "5 3 5 18 4\n3 5 4\n", "5 3 5 16 4\n5 5 5\n" ]
[ "4 1\n", "-1\n" ]
The median of sequence *a*<sub class="lower-index">1</sub>, ..., *a*<sub class="lower-index">*n*</sub> where *n* is odd (in this problem *n* is always odd) is the element staying on (*n* + 1) / 2 position in the sorted list of *a*<sub class="lower-index">*i*</sub>. In the first sample the sum of marks equals 3 + 5 + 4...
1,000
[ { "input": "5 3 5 18 4\n3 5 4", "output": "4 1" }, { "input": "5 3 5 16 4\n5 5 5", "output": "-1" }, { "input": "5 3 5 17 4\n5 5 5", "output": "1 1" }, { "input": "5 3 5 12 1\n5 5 1", "output": "-1" }, { "input": "5 3 5 13 1\n5 5 1", "output": "1 1" }, { ...
1,683,481,788
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
13
62
1,433,600
import sys input = sys.stdin.readline n, k, p, x, y = map(int, input().split()) w = sorted(map(int, input().split())) c = sum(1 for i in w if i >= y) a = max(0, (n+1)//2 - c) b = sum(w) + a*y + n-a-k if b <= x: print(' '.join(map(str, [y]*a + [1]*(n-a-k)))) else: print(-1)
Title: School Marks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Vova studies programming in an elite school. Vova and his classmates are supposed to write *n* progress tests, for each test they will get a mark from 1 to *p*. Vova is very smart and he can write every test for any...
```python import sys input = sys.stdin.readline n, k, p, x, y = map(int, input().split()) w = sorted(map(int, input().split())) c = sum(1 for i in w if i >= y) a = max(0, (n+1)//2 - c) b = sum(w) + a*y + n-a-k if b <= x: print(' '.join(map(str, [y]*a + [1]*(n-a-k)))) else: print(-1) ```
0
275
A
Lights Out
PROGRAMMING
900
[ "implementation" ]
null
null
Lenny is playing a game on a 3<=×<=3 grid of lights. In the beginning of the game all lights are switched on. Pressing any of the lights will toggle it and all side-adjacent lights. The goal of the game is to switch all the lights off. We consider the toggling as follows: if the light was switched on then it will be sw...
The input consists of three rows. Each row contains three integers each between 0 to 100 inclusive. The *j*-th number in the *i*-th row is the number of times the *j*-th light of the *i*-th row of the grid is pressed.
Print three lines, each containing three characters. The *j*-th character of the *i*-th line is "1" if and only if the corresponding light is switched on, otherwise it's "0".
[ "1 0 0\n0 0 0\n0 0 1\n", "1 0 1\n8 8 8\n2 0 3\n" ]
[ "001\n010\n100\n", "010\n011\n100\n" ]
none
500
[ { "input": "1 0 0\n0 0 0\n0 0 1", "output": "001\n010\n100" }, { "input": "1 0 1\n8 8 8\n2 0 3", "output": "010\n011\n100" }, { "input": "13 85 77\n25 50 45\n65 79 9", "output": "000\n010\n000" }, { "input": "96 95 5\n8 84 74\n67 31 61", "output": "011\n011\n101" }, {...
1,580,321,675
2,147,483,647
Python 3
OK
TESTS
33
109
307,200
a = [list(map(int,input().split())) for _ in range(3)] for i in range(3): for j in range(3): a[i][j] = a[i][j] % 2 ans = [[1 for i in range(3)] for _ in range(3)] for i in range(3): for j in range(3): if a[i][j]: for x, y in [(0, -1), (0, 1), (1, 0), (-1, 0), (0, 0)]: if i +...
Title: Lights Out Time Limit: None seconds Memory Limit: None megabytes Problem Description: Lenny is playing a game on a 3<=×<=3 grid of lights. In the beginning of the game all lights are switched on. Pressing any of the lights will toggle it and all side-adjacent lights. The goal of the game is to switch all the ...
```python a = [list(map(int,input().split())) for _ in range(3)] for i in range(3): for j in range(3): a[i][j] = a[i][j] % 2 ans = [[1 for i in range(3)] for _ in range(3)] for i in range(3): for j in range(3): if a[i][j]: for x, y in [(0, -1), (0, 1), (1, 0), (-1, 0), (0, 0)]: ...
3
688
B
Lovely Palindromes
PROGRAMMING
1,000
[ "constructive algorithms", "math" ]
null
null
Pari has a friend who loves palindrome numbers. A palindrome number is a number that reads the same forward or backward. For example 12321, 100001 and 1 are palindrome numbers, while 112 and 1021 are not. Pari is trying to love them too, but only very special and gifted people can understand the beauty behind palindro...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=10100<=000).
Print the *n*-th even-length palindrome number.
[ "1\n", "10\n" ]
[ "11\n", "1001\n" ]
The first 10 even-length palindrome numbers are 11, 22, 33, ... , 88, 99 and 1001.
1,000
[ { "input": "1", "output": "11" }, { "input": "10", "output": "1001" }, { "input": "11", "output": "1111" }, { "input": "12", "output": "1221" }, { "input": "100", "output": "100001" }, { "input": "1321", "output": "13211231" }, { "input": "...
1,618,489,791
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
0
1,000
0
for i in range(106000000,107000001): d = round(i**0.5) list1 = [] answer = [] for j in range(2,d): if i % j == 0: list1.append(j) list1.append(int(i/j)) if d * d == i: list1.append(d) list1.append(i) for k in list1: if k % 2 == 0:...
Title: Lovely Palindromes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pari has a friend who loves palindrome numbers. A palindrome number is a number that reads the same forward or backward. For example 12321, 100001 and 1 are palindrome numbers, while 112 and 1021 are not. Pari is tr...
```python for i in range(106000000,107000001): d = round(i**0.5) list1 = [] answer = [] for j in range(2,d): if i % j == 0: list1.append(j) list1.append(int(i/j)) if d * d == i: list1.append(d) list1.append(i) for k in list1: if k...
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,629,914,261
2,147,483,647
Python 3
OK
TESTS
37
62
6,758,400
from math import * r,x,y,x1,y1=map(int,input().split()) dist=sqrt(pow(abs(x1-x),2)+pow(abs(y1-y),2)) print(ceil(dist/(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 * r,x,y,x1,y1=map(int,input().split()) dist=sqrt(pow(abs(x1-x),2)+pow(abs(y1-y),2)) print(ceil(dist/(2*r))) ```
3
222
D
Olympiad
PROGRAMMING
1,900
[ "binary search", "greedy", "sortings", "two pointers" ]
null
null
A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least *x* points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but the problem is, the results have only points, no names. The teacher has to know Vasya's chances....
The first line contains two space-separated integers *n*,<=*x* (1<=≤<=*n*<=≤<=105; 0<=≤<=*x*<=≤<=2·105) — the number of Olympiad participants and the minimum number of points Vasya earned. The second line contains *n* space-separated integers: *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=105) — the participants' point...
Print two space-separated integers — the best and the worst place Vasya could have got on the Olympiad.
[ "5 2\n1 1 1 1 1\n1 1 1 1 1\n", "6 7\n4 3 5 6 4 4\n8 6 0 4 3 4\n" ]
[ "1 5\n", "1 5\n" ]
In the first text sample all 5 participants earn 2 points each in any case. Depending on the jury's decision, Vasya can get the first (the best) as well as the last (the worst) fifth place. In the second test sample in the best case scenario Vasya wins again: he can win 12 points and become the absolute winner if the ...
2,000
[ { "input": "5 2\n1 1 1 1 1\n1 1 1 1 1", "output": "1 5" }, { "input": "6 7\n4 3 5 6 4 4\n8 6 0 4 3 4", "output": "1 5" }, { "input": "1 100\n56\n44", "output": "1 1" }, { "input": "5 1\n1 2 3 4 5\n1 2 3 4 5", "output": "1 5" }, { "input": "5 5\n2 2 2 2 2\n3 3 3 3 ...
1,612,597,027
2,147,483,647
PyPy 3
OK
TESTS
69
560
13,312,000
from sys import stdin,stdout import bisect as bs nmbr = lambda: int(stdin.readline()) lst = lambda: list(map(int,stdin.readline().split())) for _ in range(1):#nmbr()): n,sm=lst() a=sorted(lst(),reverse=1) b=sorted(lst()) used=-1 rank=1 # print(a) # print(b) p=-1 for i in...
Title: Olympiad Time Limit: None seconds Memory Limit: None megabytes Problem Description: A boy named Vasya has taken part in an Olympiad. His teacher knows that in total Vasya got at least *x* points for both tours of the Olympiad. The teacher has the results of the first and the second tour of the Olympiad but th...
```python from sys import stdin,stdout import bisect as bs nmbr = lambda: int(stdin.readline()) lst = lambda: list(map(int,stdin.readline().split())) for _ in range(1):#nmbr()): n,sm=lst() a=sorted(lst(),reverse=1) b=sorted(lst()) used=-1 rank=1 # print(a) # print(b) p=-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,691,293,649
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
2
500
5,120,000
n = int(input()) p = 5 ** n s = str(p)[::-1][:2] print(int(s[::-1]))
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()) p = 5 ** n s = str(p)[::-1][:2] print(int(s[::-1])) ```
0
171
C
A Piece of Cake
PROGRAMMING
2,000
[ "*special", "implementation" ]
null
null
How to make a cake you'll never eat. Ingredients. - 2 carrots - 0 calories - 100 g chocolate spread - 1 pack of flour - 1 egg Method. 1. Put calories into the mixing bowl. 1. Take carrots from refrigerator. 1. Chop carrots. 1. Take chocolate spread from refrigerator. 1. Put chocolate spread into the mix...
The only line of input contains a sequence of integers *a*0,<=*a*1,<=... (1<=≤<=*a*0<=≤<=100, 0<=≤<=*a**i*<=≤<=1000 for *i*<=≥<=1).
Output a single integer.
[ "4 1 2 3 4\n" ]
[ "30\n" ]
none
0
[ { "input": "4 1 2 3 4", "output": "30" }, { "input": "4 802 765 992 1", "output": "5312" }, { "input": "4 220 380 729 969", "output": "7043" }, { "input": "3 887 104 641", "output": "3018" }, { "input": "12 378 724 582 387 583 241 294 159 198 653 369 418", "ou...
1,593,423,531
2,147,483,647
Python 3
OK
TESTS
41
218
6,758,400
s = input().split() ans = 0 pos = 0 for i in s: ans += int(i) * pos pos += 1; print(ans)
Title: A Piece of Cake Time Limit: None seconds Memory Limit: None megabytes Problem Description: How to make a cake you'll never eat. Ingredients. - 2 carrots - 0 calories - 100 g chocolate spread - 1 pack of flour - 1 egg Method. 1. Put calories into the mixing bowl. 1. Take carrots from refrigerator....
```python s = input().split() ans = 0 pos = 0 for i in s: ans += int(i) * pos pos += 1; print(ans) ```
3
12
A
Super Agent
PROGRAMMING
800
[ "implementation" ]
A. Super Agent
2
256
There is a very secret base in Potatoland where potato mash is made according to a special recipe. The neighbours from Porridgia decided to seize this recipe and to sell it to Pilauland. For this mission they have been preparing special agent Pearlo for many years. When, finally, Pearlo learned all secrets of espionage...
Input contains the matrix of three rows of three symbols each. Symbol «X» means that the corresponding button was pressed, and «.» means that is was not pressed. The matrix may contain no «X», also it may contain no «.».
Print YES if the password is symmetric with respect to the central button of the terminal and NO otherwise.
[ "XX.\n...\n.XX\n", "X.X\nX..\n...\n" ]
[ "YES\n", "NO\n" ]
If you are not familiar with the term «central symmetry», you may look into http://en.wikipedia.org/wiki/Central_symmetry
0
[ { "input": "XX.\n...\n.XX", "output": "YES" }, { "input": ".X.\n.X.\n.X.", "output": "YES" }, { "input": "XXX\nXXX\nXXX", "output": "YES" }, { "input": "XXX\nX.X\nXXX", "output": "YES" }, { "input": "X..\n.X.\n..X", "output": "YES" }, { "input": "...\n...
1,658,812,771
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
20
154
0
a = (input());b = (input());c = (input());print('YES' if (a[0]==c[2]) and (a[1]==c[1]) and (a[2]==c[0]) else 'NO')
Title: Super Agent Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: There is a very secret base in Potatoland where potato mash is made according to a special recipe. The neighbours from Porridgia decided to seize this recipe and to sell it to Pilauland. For this mission they have been preparin...
```python a = (input());b = (input());c = (input());print('YES' if (a[0]==c[2]) and (a[1]==c[1]) and (a[2]==c[0]) else 'NO') ```
0
82
A
Double Cola
PROGRAMMING
1,100
[ "implementation", "math" ]
A. Double Cola
1
256
Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resulting two Sheldons go to the end of the queue. Then the next in the queue (Leonard) buys a can, d...
The input data consist of a single integer *n* (1<=≤<=*n*<=≤<=109). It is guaranteed that the pretests check the spelling of all the five names, that is, that they contain all the five possible answers.
Print the single line — the name of the person who drinks the *n*-th can of cola. The cans are numbered starting from 1. Please note that you should spell the names like this: "Sheldon", "Leonard", "Penny", "Rajesh", "Howard" (without the quotes). In that order precisely the friends are in the queue initially.
[ "1\n", "6\n", "1802\n" ]
[ "Sheldon\n", "Sheldon\n", "Penny\n" ]
none
500
[ { "input": "1", "output": "Sheldon" }, { "input": "6", "output": "Sheldon" }, { "input": "1802", "output": "Penny" }, { "input": "1", "output": "Sheldon" }, { "input": "2", "output": "Leonard" }, { "input": "3", "output": "Penny" }, { "inpu...
1,572,613,955
2,147,483,647
PyPy 3
OK
TESTS
41
140
0
n=int(input())-1 queue=["Sheldon", "Leonard", "Penny", "Rajesh", "Howard"] while n>4: n-=5 n//=2 print(queue[n])
Title: Double Cola Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resultin...
```python n=int(input())-1 queue=["Sheldon", "Leonard", "Penny", "Rajesh", "Howard"] while n>4: n-=5 n//=2 print(queue[n]) ```
3.93
356
A
Knight Tournament
PROGRAMMING
1,500
[ "data structures", "dsu" ]
null
null
Hooray! Berl II, the king of Berland is making a knight tournament. The king has already sent the message to all knights in the kingdom and they in turn agreed to participate in this grand event. As for you, you're just a simple peasant. There's no surprise that you slept in this morning and were late for the tourname...
The first line contains two integers *n*, *m* (2<=≤<=*n*<=≤<=3·105; 1<=≤<=*m*<=≤<=3·105) — the number of knights and the number of fights. Each of the following *m* lines contains three integers *l**i*,<=*r**i*,<=*x**i* (1<=≤<=*l**i*<=&lt;<=*r**i*<=≤<=*n*; *l**i*<=≤<=*x**i*<=≤<=*r**i*) — the description of the *i*-th f...
Print *n* integers. If the *i*-th knight lost, then the *i*-th number should equal the number of the knight that beat the knight number *i*. If the *i*-th knight is the winner, then the *i*-th number must equal 0.
[ "4 3\n1 2 1\n1 3 3\n1 4 4\n", "8 4\n3 5 4\n3 7 6\n2 8 8\n1 8 1\n" ]
[ "3 1 4 0 ", "0 8 4 6 4 8 6 1 " ]
Consider the first test case. Knights 1 and 2 fought the first fight and knight 1 won. Knights 1 and 3 fought the second fight and knight 3 won. The last fight was between knights 3 and 4, knight 4 won.
500
[ { "input": "4 3\n1 2 1\n1 3 3\n1 4 4", "output": "3 1 4 0 " }, { "input": "8 4\n3 5 4\n3 7 6\n2 8 8\n1 8 1", "output": "0 8 4 6 4 8 6 1 " }, { "input": "2 1\n1 2 1", "output": "0 1 " }, { "input": "2 1\n1 2 2", "output": "2 0 " }, { "input": "3 1\n1 3 1", "out...
1,693,159,399
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
10
3,000
9,113,600
def main(): n, m = map(int, input().split()) a = [i for i in range(0, n + 1)] for _ in range(m): l, r, x = map(int, input().split()) for i in range(l, r + 1): if a[i] == i: a[i] = x for i in range(1, n + 1): if a[i] == i: a[i] = 0...
Title: Knight Tournament Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hooray! Berl II, the king of Berland is making a knight tournament. The king has already sent the message to all knights in the kingdom and they in turn agreed to participate in this grand event. As for you, you're j...
```python def main(): n, m = map(int, input().split()) a = [i for i in range(0, n + 1)] for _ in range(m): l, r, x = map(int, input().split()) for i in range(l, r + 1): if a[i] == i: a[i] = x for i in range(1, n + 1): if a[i] == i: ...
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,688,556,957
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
92
0
a = int(input()) if a%2==0 and 1<=a and a<=100: print("YES") else: print("NO")
Title: Watermelon Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dyin...
```python a = int(input()) if a%2==0 and 1<=a and a<=100: print("YES") else: print("NO") ```
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,692,622,069
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
60
0
t = input().strip() s = input().strip() if t == reversed(s): 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 t = input().strip() s = input().strip() if t == reversed(s): print("YES") else: print("NO") ```
0
66
C
Petya and File System
PROGRAMMING
1,800
[ "data structures", "implementation" ]
C. Petya and File System
3
256
Recently, on a programming lesson little Petya showed how quickly he can create files and folders on the computer. But he got soon fed up with this activity, and he decided to do a much more useful thing. He decided to calculate what folder contains most subfolders (including nested folders, nested folders of nested fo...
Each line of input data contains the description of one file path. The length of each line does not exceed 100, and overall there are no more than 100 lines. It is guaranteed, that all the paths are correct and meet the above rules. It is also guaranteed, that there are no two completely equal lines. That is, each file...
Print two space-separated numbers. The first one is the maximal number of possible subfolders in a folder (including nested folders, nested folders of nested folders, and so on). The second one is the maximal number of files in a folder (including nested files in subfolders). Note that the disks are not regarded as fol...
[ "C:\\folder1\\file1.txt", "C:\\folder1\\folder2\\folder3\\file1.txt\nC:\\folder1\\folder2\\folder4\\file1.txt\nD:\\folder1\\file1.txt\n", "C:\\file\\file\\file\\file\\file.txt\nC:\\file\\file\\file\\file2\\file.txt" ]
[ "0 1", "3 2", "4 2" ]
In the first sample we have one folder on the "C" disk. It has no subfolders, which is why the first number in the answer is 0. But this folder contains one file, so the second number of the answer is 1. In the second sample we have several different folders. Consider the "folder1" folder on the "C" disk. This folder ...
1,500
[ { "input": "C:\\folder1\\file1.txt", "output": "0 1" }, { "input": "C:\\folder1\\folder2\\folder3\\file1.txt\nC:\\folder1\\folder2\\folder4\\file1.txt\nD:\\folder1\\file1.txt", "output": "3 2" }, { "input": "C:\\file\\file\\file\\file\\file.txt\nC:\\file\\file\\file\\file2\\file.txt", ...
1,598,092,990
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
10
310
24,780,800
_end = '_end_' import sys def add_trie(root,*words): global cnt for word in words: current_dict = root for letter in word: current_dict = current_dict.setdefault(letter, {}) current_dict[_end] = _end return root root=dict() for s in sys.stdin: s=s.s...
Title: Petya and File System Time Limit: 3 seconds Memory Limit: 256 megabytes Problem Description: Recently, on a programming lesson little Petya showed how quickly he can create files and folders on the computer. But he got soon fed up with this activity, and he decided to do a much more useful thing. He decided t...
```python _end = '_end_' import sys def add_trie(root,*words): global cnt for word in words: current_dict = root for letter in word: current_dict = current_dict.setdefault(letter, {}) current_dict[_end] = _end return root root=dict() for s in sys.stdin: ...
0
946
E
Largest Beautiful Number
PROGRAMMING
2,200
[ "greedy", "implementation" ]
null
null
Yes, that's another problem with definition of "beautiful" numbers. Let's call a positive integer *x* beautiful if its decimal representation without leading zeroes contains even number of digits, and there exists a permutation of this representation which is palindromic. For example, 4242 is a beautiful number, since...
The first line contains one integer *t* (1<=≤<=*t*<=≤<=105) — the number of testcases you have to solve. Then *t* lines follow, each representing one testcase and containing one string which is the decimal representation of number *s*. It is guaranteed that this string has even length, contains no leading zeroes, and ...
For each testcase print one line containing the largest beautiful number which is less than *s* (it is guaranteed that the answer exists).
[ "4\n89\n88\n1000\n28923845\n" ]
[ "88\n77\n99\n28923839\n" ]
none
0
[ { "input": "4\n89\n88\n1000\n28923845", "output": "88\n77\n99\n28923839" }, { "input": "1\n100001", "output": "9999" }, { "input": "2\n1001\n100001", "output": "99\n9999" }, { "input": "3\n100001\n100000\n100002", "output": "9999\n9999\n100001" }, { "input": "1\n1...
1,689,440,452
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
15
0
print("_RANDOM_GUESS_1689440452.587653")# 1689440452.5876715
Title: Largest Beautiful Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Yes, that's another problem with definition of "beautiful" numbers. Let's call a positive integer *x* beautiful if its decimal representation without leading zeroes contains even number of digits, and there ex...
```python print("_RANDOM_GUESS_1689440452.587653")# 1689440452.5876715 ```
0
276
B
Little Girl and Game
PROGRAMMING
1,300
[ "games", "greedy" ]
null
null
The Little Girl loves problems on games very much. Here's one of them. Two players have got a string *s*, consisting of lowercase English letters. They play a game that is described by the following rules: - The players move in turns; In one move the player can remove an arbitrary letter from string *s*. - If the p...
The input contains a single line, containing string *s* (1<=≤<=|*s*|<=<=≤<=<=103). String *s* consists of lowercase English letters.
In a single line print word "First" if the first player wins (provided that both players play optimally well). Otherwise, print word "Second". Print the words without the quotes.
[ "aba\n", "abca\n" ]
[ "First\n", "Second\n" ]
none
1,000
[ { "input": "aba", "output": "First" }, { "input": "abca", "output": "Second" }, { "input": "aabb", "output": "First" }, { "input": "ctjxzuimsxnarlciuynqeoqmmbqtagszuo", "output": "Second" }, { "input": "gevqgtaorjixsxnbcoybr", "output": "First" }, { "i...
1,695,299,180
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
11
92
0
def isbalind(st): if st == st[::-1]: return True return False s=input() f= True while(len(s)>0): if(f): if(isbalind(s)): print("First") exit() else : s=s[1:] f=False else: if(isbalind(s)): print("Second") ...
Title: Little Girl and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Girl loves problems on games very much. Here's one of them. Two players have got a string *s*, consisting of lowercase English letters. They play a game that is described by the following rules: - The...
```python def isbalind(st): if st == st[::-1]: return True return False s=input() f= True while(len(s)>0): if(f): if(isbalind(s)): print("First") exit() else : s=s[1:] f=False else: if(isbalind(s)): print("Second")...
0
777
B
Game of Credit Cards
PROGRAMMING
1,300
[ "data structures", "dp", "greedy", "sortings" ]
null
null
After the fourth season Sherlock and Moriary have realized the whole foolishness of the battle between them and decided to continue their competitions in peaceful game of Credit Cards. Rules of this game are simple: each player bring his favourite *n*-digit credit card. Then both players name the digits written on the...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of digits in the cards Sherlock and Moriarty are going to use. The second line contains *n* digits — Sherlock's credit card number. The third line contains *n* digits — Moriarty's credit card number.
First print the minimum possible number of flicks Moriarty will get. Then print the maximum possible number of flicks that Sherlock can get from Moriarty.
[ "3\n123\n321\n", "2\n88\n00\n" ]
[ "0\n2\n", "2\n0\n" ]
First sample is elaborated in the problem statement. In the second sample, there is no way Moriarty can avoid getting two flicks.
1,000
[ { "input": "3\n123\n321", "output": "0\n2" }, { "input": "2\n88\n00", "output": "2\n0" }, { "input": "1\n4\n5", "output": "0\n1" }, { "input": "1\n8\n7", "output": "1\n0" }, { "input": "2\n55\n55", "output": "0\n0" }, { "input": "3\n534\n432", "out...
1,666,293,246
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
46
102,400
from collections import defaultdict, deque, Counter from functools import lru_cache from heapq import heappush, heappop from bisect import bisect_right, bisect_left n = int(input()) sherlock = [*input()] moriaty = [*input()] moriaty.sort() canFlick = 0 beFlicked = 0 cnt = Counter(moriaty) for i in sherlo...
Title: Game of Credit Cards Time Limit: None seconds Memory Limit: None megabytes Problem Description: After the fourth season Sherlock and Moriary have realized the whole foolishness of the battle between them and decided to continue their competitions in peaceful game of Credit Cards. Rules of this game are simpl...
```python from collections import defaultdict, deque, Counter from functools import lru_cache from heapq import heappush, heappop from bisect import bisect_right, bisect_left n = int(input()) sherlock = [*input()] moriaty = [*input()] moriaty.sort() canFlick = 0 beFlicked = 0 cnt = Counter(moriaty) for i...
0
34
B
Sale
PROGRAMMING
900
[ "greedy", "sortings" ]
B. Sale
2
256
Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can «buy» any TV sets he wants. Though he's very strong, Bob can carry at most *m* TV set...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*m*<=≤<=*n*<=≤<=100) — amount of TV sets at the sale, and amount of TV sets that Bob can carry. The following line contains *n* space-separated integers *a**i* (<=-<=1000<=≤<=*a**i*<=≤<=1000) — prices of the TV sets.
Output the only number — the maximum sum of money that Bob can earn, given that he can carry at most *m* TV sets.
[ "5 3\n-6 0 35 -2 4\n", "4 2\n7 0 0 -7\n" ]
[ "8\n", "7\n" ]
none
1,000
[ { "input": "5 3\n-6 0 35 -2 4", "output": "8" }, { "input": "4 2\n7 0 0 -7", "output": "7" }, { "input": "6 6\n756 -611 251 -66 572 -818", "output": "1495" }, { "input": "5 5\n976 437 937 788 518", "output": "0" }, { "input": "5 3\n-2 -2 -2 -2 -2", "output": "...
1,646,996,284
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
0
# https://codeforces.com/problemset/problem/34/B n, m = [int(x) for x in input().split()] arr = [int(x) for x in input().split()] arr.sort() print(abs(sum(arr[:m])))
Title: Sale Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can...
```python # https://codeforces.com/problemset/problem/34/B n, m = [int(x) for x in input().split()] arr = [int(x) for x in input().split()] arr.sort() print(abs(sum(arr[:m]))) ```
0
420
A
Start Up
PROGRAMMING
1,000
[ "implementation" ]
null
null
Recently, a start up by two students of a state university of city F gained incredible popularity. Now it's time to start a new company. But what do we call it? The market analysts came up with a very smart plan: the name of the company should be identical to its reflection in a mirror! In other words, if we write out...
The first line contains a non-empty name that needs to be checked. The name contains at most 105 large English letters. The name will be written with the next sans serif font:
Print 'YES' (without the quotes), if the given name matches its mirror reflection. Otherwise, print 'NO' (without the quotes).
[ "AHA\n", "Z\n", "XO\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "AHA", "output": "YES" }, { "input": "Z", "output": "NO" }, { "input": "XO", "output": "NO" }, { "input": "AAA", "output": "YES" }, { "input": "AHHA", "output": "YES" }, { "input": "BAB", "output": "NO" }, { "input": "OMMMAAMMMO"...
1,664,052,716
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
30
0
name = str(input()) if(name == name[::-1]): print('YES') else: print('NO')
Title: Start Up Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently, a start up by two students of a state university of city F gained incredible popularity. Now it's time to start a new company. But what do we call it? The market analysts came up with a very smart plan: the name of ...
```python name = str(input()) if(name == name[::-1]): print('YES') else: print('NO') ```
0
82
A
Double Cola
PROGRAMMING
1,100
[ "implementation", "math" ]
A. Double Cola
1
256
Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resulting two Sheldons go to the end of the queue. Then the next in the queue (Leonard) buys a can, d...
The input data consist of a single integer *n* (1<=≤<=*n*<=≤<=109). It is guaranteed that the pretests check the spelling of all the five names, that is, that they contain all the five possible answers.
Print the single line — the name of the person who drinks the *n*-th can of cola. The cans are numbered starting from 1. Please note that you should spell the names like this: "Sheldon", "Leonard", "Penny", "Rajesh", "Howard" (without the quotes). In that order precisely the friends are in the queue initially.
[ "1\n", "6\n", "1802\n" ]
[ "Sheldon\n", "Sheldon\n", "Penny\n" ]
none
500
[ { "input": "1", "output": "Sheldon" }, { "input": "6", "output": "Sheldon" }, { "input": "1802", "output": "Penny" }, { "input": "1", "output": "Sheldon" }, { "input": "2", "output": "Leonard" }, { "input": "3", "output": "Penny" }, { "inpu...
1,640,539,760
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
46
0
n=int(input()) if(n<=5): ans=n else: x=5 c=1 while(x*2<n): x=x*2 c=c*2 if(x*2==n): ans=5 else: c=c*2 count=0 person=1 for k in range(x+1,n+1): count=count+1 if(count>c): person=...
Title: Double Cola Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks it and doubles! The resultin...
```python n=int(input()) if(n<=5): ans=n else: x=5 c=1 while(x*2<n): x=x*2 c=c*2 if(x*2==n): ans=5 else: c=c*2 count=0 person=1 for k in range(x+1,n+1): count=count+1 if(count>c): ...
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,487,898,777
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
18
61
4,608,000
s=input() length=len(s) for i in range(0,length): if s[i]=='h': if 'e' in s[s.index('h')+1:length-3]: if 'l' in s[s.index('e')+1:length-2]: if 'l' in s[s.index('l')+1:length-1]: if 'o' in s[s.index('l')+1:length]: print("YES") exit() print("NO") ...
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s=input() length=len(s) for i in range(0,length): if s[i]=='h': if 'e' in s[s.index('h')+1:length-3]: if 'l' in s[s.index('e')+1:length-2]: if 'l' in s[s.index('l')+1:length-1]: if 'o' in s[s.index('l')+1:length]: print("YES") exit() prin...
0
584
A
Olesya and Rodion
PROGRAMMING
1,000
[ "math" ]
null
null
Olesya loves numbers consisting of *n* digits, and Rodion only likes numbers that are divisible by *t*. Find some number that satisfies both of them. Your task is: given the *n* and *t* print an integer strictly larger than zero consisting of *n* digits that is divisible by *t*. If such number doesn't exist, print <=-...
The single line contains two numbers, *n* and *t* (1<=≤<=*n*<=≤<=100, 2<=≤<=*t*<=≤<=10) — the length of the number and the number it should be divisible by.
Print one such positive number without leading zeroes, — the answer to the problem, or <=-<=1, if such number doesn't exist. If there are multiple possible answers, you are allowed to print any of them.
[ "3 2\n" ]
[ "712" ]
none
500
[ { "input": "3 2", "output": "222" }, { "input": "2 2", "output": "22" }, { "input": "4 3", "output": "3333" }, { "input": "5 3", "output": "33333" }, { "input": "10 7", "output": "7777777777" }, { "input": "2 9", "output": "99" }, { "input"...
1,679,840,857
2,147,483,647
Python 3
OK
TESTS
65
46
0
n,t=map(int,input().split()) n=10**(n-1) if t*(n//t+1)<10*n: print(t*(n//t+1)) else: print(-1)
Title: Olesya and Rodion Time Limit: None seconds Memory Limit: None megabytes Problem Description: Olesya loves numbers consisting of *n* digits, and Rodion only likes numbers that are divisible by *t*. Find some number that satisfies both of them. Your task is: given the *n* and *t* print an integer strictly larg...
```python n,t=map(int,input().split()) n=10**(n-1) if t*(n//t+1)<10*n: print(t*(n//t+1)) else: print(-1) ```
3