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
284
B
Cows and Poker Game
PROGRAMMING
1,000
[ "brute force", "implementation" ]
null
null
There are *n* cows playing poker at a table. For the current betting phase, each player's status is either "ALLIN", "IN", or "FOLDED", and does not change throughout the phase. To increase the suspense, a player whose current status is not "FOLDED" may show his/her hand to the table. However, so as not to affect any be...
The first line contains a single integer, *n* (2<=≤<=*n*<=≤<=2·105). The second line contains *n* characters, each either "A", "I", or "F". The *i*-th character is "A" if the *i*-th player's status is "ALLIN", "I" if the *i*-th player's status is "IN", or "F" if the *i*-th player's status is "FOLDED".
The first line should contain a single integer denoting the number of players that can currently show their hands.
[ "6\nAFFAAA\n", "3\nAFI\n" ]
[ "4\n", "1\n" ]
In the first sample, cows 1, 4, 5, and 6 can show their hands. In the second sample, only cow 3 can show her hand.
1,000
[ { "input": "6\nAFFAAA", "output": "4" }, { "input": "3\nAFI", "output": "1" }, { "input": "3\nFFF", "output": "0" }, { "input": "3\nFIF", "output": "1" }, { "input": "3\nAAA", "output": "3" }, { "input": "3\nIII", "output": "0" }, { "input"...
1,596,129,456
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
218
20,172,800
n=int(input()) s=input() if("I" in s and "F" in s and "A" in s): print("1") elif("I" not in s): print(s.count("A"))
Title: Cows and Poker Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* cows playing poker at a table. For the current betting phase, each player's status is either "ALLIN", "IN", or "FOLDED", and does not change throughout the phase. To increase the suspense, a player who...
```python n=int(input()) s=input() if("I" in s and "F" in s and "A" in s): print("1") elif("I" not in s): print(s.count("A")) ```
0
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,690,653,640
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
15
0
n, m, a = map(int,input().split()) if n % a == 0: ctr = n/a else: ctr = n//a +1 if m%a == 0: ctr *= m/a else: ctr *= m//a +1 print (ctr)
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 n, m, a = map(int,input().split()) if n % a == 0: ctr = n/a else: ctr = n//a +1 if m%a == 0: ctr *= m/a else: ctr *= m//a +1 print (ctr) ```
0
770
A
New Password
PROGRAMMING
800
[ "*special", "implementation" ]
null
null
Innokentiy decides to change the password in the social net "Contact!", but he is too lazy to invent a new password by himself. That is why he needs your help. Innokentiy decides that new password should satisfy the following conditions: - the length of the password must be equal to *n*, - the password should cons...
The first line contains two positive integers *n* and *k* (2<=≤<=*n*<=≤<=100, 2<=≤<=*k*<=≤<=*min*(*n*,<=26)) — the length of the password and the number of distinct symbols in it. Pay attention that a desired new password always exists.
Print any password which satisfies all conditions given by Innokentiy.
[ "4 3\n", "6 6\n", "5 2\n" ]
[ "java\n", "python\n", "phphp\n" ]
In the first test there is one of the appropriate new passwords — java, because its length is equal to 4 and 3 distinct lowercase letters a, j and v are used in it. In the second test there is one of the appropriate new passwords — python, because its length is equal to 6 and it consists of 6 distinct lowercase letter...
500
[ { "input": "4 3", "output": "abca" }, { "input": "6 6", "output": "abcdef" }, { "input": "5 2", "output": "ababa" }, { "input": "3 2", "output": "aba" }, { "input": "10 2", "output": "ababababab" }, { "input": "26 13", "output": "abcdefghijklmabcde...
1,594,294,121
2,147,483,647
PyPy 3
OK
TESTS
47
155
20,172,800
alpha='abcdefghijklmnopqrstuvwxyz' n,m=map(int,input().split()) s='' s+=alpha[0:m] i=0 while(len(s)<n): s+=chr(ord('a')+i) i+=1 if i==m: i=0 print(s)
Title: New Password Time Limit: None seconds Memory Limit: None megabytes Problem Description: Innokentiy decides to change the password in the social net "Contact!", but he is too lazy to invent a new password by himself. That is why he needs your help. Innokentiy decides that new password should satisfy the foll...
```python alpha='abcdefghijklmnopqrstuvwxyz' n,m=map(int,input().split()) s='' s+=alpha[0:m] i=0 while(len(s)<n): s+=chr(ord('a')+i) i+=1 if i==m: i=0 print(s) ```
3
372
A
Counting Kangaroos is Fun
PROGRAMMING
1,600
[ "binary search", "greedy", "sortings", "two pointers" ]
null
null
There are *n* kangaroos with pockets. Each kangaroo has a size (integer number). A kangaroo can go into another kangaroo's pocket if and only if the size of kangaroo who hold the kangaroo is at least twice as large as the size of kangaroo who is held. Each kangaroo can hold at most one kangaroo, and the kangaroo who i...
The first line contains a single integer — *n* (1<=≤<=*n*<=≤<=5·105). Each of the next *n* lines contains an integer *s**i* — the size of the *i*-th kangaroo (1<=≤<=*s**i*<=≤<=105).
Output a single integer — the optimal number of visible kangaroos.
[ "8\n2\n5\n7\n6\n9\n8\n4\n2\n", "8\n9\n1\n6\n2\n6\n5\n8\n3\n" ]
[ "5\n", "5\n" ]
none
500
[ { "input": "8\n2\n5\n7\n6\n9\n8\n4\n2", "output": "5" }, { "input": "8\n9\n1\n6\n2\n6\n5\n8\n3", "output": "5" }, { "input": "12\n3\n99\n24\n46\n75\n63\n57\n55\n10\n62\n34\n52", "output": "7" }, { "input": "12\n55\n75\n1\n98\n63\n64\n9\n39\n82\n18\n47\n9", "output": "6" ...
1,590,599,408
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
5
124
0
n = int(input()) sizes = [] for i in range(n): sizes.append(int(input())) sizes.sort() count = 1 queue = [sizes[0]] for i in range(1, n): size = sizes[i] queue.append(size) if (size >= queue[0] * 2): queue.pop(0) else: count += 1 print (count)
Title: Counting Kangaroos is Fun Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* kangaroos with pockets. Each kangaroo has a size (integer number). A kangaroo can go into another kangaroo's pocket if and only if the size of kangaroo who hold the kangaroo is at least twice as ...
```python n = int(input()) sizes = [] for i in range(n): sizes.append(int(input())) sizes.sort() count = 1 queue = [sizes[0]] for i in range(1, n): size = sizes[i] queue.append(size) if (size >= queue[0] * 2): queue.pop(0) else: count += 1 print (count) ```
0
801
B
Valued Keys
PROGRAMMING
900
[ "constructive algorithms", "greedy", "strings" ]
null
null
You found a mysterious function *f*. The function takes two strings *s*1 and *s*2. These strings must consist only of lowercase English letters, and must be the same length. The output of the function *f* is another string of the same length. The *i*-th character of the output is equal to the minimum of the *i*-th cha...
The first line of input contains the string *x*. The second line of input contains the string *y*. Both *x* and *y* consist only of lowercase English letters, *x* and *y* have same length and this length is between 1 and 100.
If there is no string *z* such that *f*(*x*,<=*z*)<==<=*y*, print -1. Otherwise, print a string *z* such that *f*(*x*,<=*z*)<==<=*y*. If there are multiple possible answers, print any of them. The string *z* should be the same length as *x* and *y* and consist only of lowercase English letters.
[ "ab\naa\n", "nzwzl\nniwel\n", "ab\nba\n" ]
[ "ba\n", "xiyez\n", "-1\n" ]
The first case is from the statement. Another solution for the second case is "zizez" There is no solution for the third case. That is, there is no *z* such that *f*("ab", *z*) =  "ba".
1,000
[ { "input": "ab\naa", "output": "ba" }, { "input": "nzwzl\nniwel", "output": "xiyez" }, { "input": "ab\nba", "output": "-1" }, { "input": "r\nl", "output": "l" }, { "input": "d\ny", "output": "-1" }, { "input": "yvowz\ncajav", "output": "cajav" },...
1,492,420,588
2,147,483,647
Python 3
OK
TESTS
35
62
5,529,600
x = input() z = input() y = "" r = True for i in range( len(x) ): if x[i] == z[i]: y += "z" elif x[i] > z[i]: y += z[i] else: r = False if r: print(y) else: print("-1")
Title: Valued Keys Time Limit: None seconds Memory Limit: None megabytes Problem Description: You found a mysterious function *f*. The function takes two strings *s*1 and *s*2. These strings must consist only of lowercase English letters, and must be the same length. The output of the function *f* is another string...
```python x = input() z = input() y = "" r = True for i in range( len(x) ): if x[i] == z[i]: y += "z" elif x[i] > z[i]: y += z[i] else: r = False if r: print(y) else: print("-1") ```
3
441
C
Valera and Tubes
PROGRAMMING
1,500
[ "constructive algorithms", "dfs and similar", "implementation" ]
null
null
Valera has got a rectangle table consisting of *n* rows and *m* columns. Valera numbered the table rows starting from one, from top to bottom and the columns – starting from one, from left to right. We will represent cell that is on the intersection of row *x* and column *y* by a pair of integers (*x*,<=*y*). Valera w...
The first line contains three space-separated integers *n*,<=*m*,<=*k* (2<=≤<=*n*,<=*m*<=≤<=300; 2<=≤<=2*k*<=≤<=*n*·*m*) — the number of rows, the number of columns and the number of tubes, correspondingly.
Print *k* lines. In the *i*-th line print the description of the *i*-th tube: first print integer *r**i* (the number of tube cells), then print 2*r**i* integers *x**i*1,<=*y**i*1,<=*x**i*2,<=*y**i*2,<=...,<=*x**ir**i*,<=*y**ir**i* (the sequence of table cells). If there are multiple solutions, you can print any of the...
[ "3 3 3\n", "2 3 1\n" ]
[ "3 1 1 1 2 1 3\n3 2 1 2 2 2 3\n3 3 1 3 2 3 3\n", "6 1 1 1 2 1 3 2 3 2 2 2 1\n" ]
Picture for the first sample: Picture for the second sample:
1,500
[ { "input": "3 3 3", "output": "3 1 1 1 2 1 3\n3 2 1 2 2 2 3\n3 3 1 3 2 3 3" }, { "input": "2 3 1", "output": "6 1 1 1 2 1 3 2 3 2 2 2 1" }, { "input": "2 3 1", "output": "6 1 1 1 2 1 3 2 3 2 2 2 1" }, { "input": "300 300 2", "output": "2 1 1 1 2\n89998 1 3 1 4 1 5 1 6 1 7...
1,593,314,726
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
140
20,172,800
n, m, k = map(int, input().split()) l = (n*m)//k sw = 0 ans = [] temp = [] for i in range(n): for j in range(m): if len(temp) == l and len(ans) != k-1: if sw: temp = temp[::-1] sw ^= 1 ans.append(temp) temp = [] ...
Title: Valera and Tubes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera has got a rectangle table consisting of *n* rows and *m* columns. Valera numbered the table rows starting from one, from top to bottom and the columns – starting from one, from left to right. We will represent ...
```python n, m, k = map(int, input().split()) l = (n*m)//k sw = 0 ans = [] temp = [] for i in range(n): for j in range(m): if len(temp) == l and len(ans) != k-1: if sw: temp = temp[::-1] sw ^= 1 ans.append(temp) temp = [] ...
0
379
A
New Year Candles
PROGRAMMING
1,000
[ "implementation" ]
null
null
Vasily the Programmer loves romance, so this year he decided to illuminate his room with candles. Vasily has *a* candles.When Vasily lights up a new candle, it first burns for an hour and then it goes out. Vasily is smart, so he can make *b* went out candles into a new candle. As a result, this new candle can be used ...
The single line contains two integers, *a* and *b* (1<=≤<=*a*<=≤<=1000; 2<=≤<=*b*<=≤<=1000).
Print a single integer — the number of hours Vasily can light up the room for.
[ "4 2\n", "6 3\n" ]
[ "7\n", "8\n" ]
Consider the first sample. For the first four hours Vasily lights up new candles, then he uses four burned out candles to make two new ones and lights them up. When these candles go out (stop burning), Vasily can make another candle. Overall, Vasily can light up the room for 7 hours.
500
[ { "input": "4 2", "output": "7" }, { "input": "6 3", "output": "8" }, { "input": "1000 1000", "output": "1001" }, { "input": "123 5", "output": "153" }, { "input": "1000 2", "output": "1999" }, { "input": "1 2", "output": "1" }, { "input": ...
1,688,011,191
2,147,483,647
PyPy 3-64
OK
TESTS
32
62
0
a, b = map(int, input().split()) if 1<=a<=1000 and 2<=b<=1000: c=a while a//b>=1: c+=a//b a=a//b+a%b print(c)
Title: New Year Candles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily the Programmer loves romance, so this year he decided to illuminate his room with candles. Vasily has *a* candles.When Vasily lights up a new candle, it first burns for an hour and then it goes out. Vasily is s...
```python a, b = map(int, input().split()) if 1<=a<=1000 and 2<=b<=1000: c=a while a//b>=1: c+=a//b a=a//b+a%b print(c) ```
3
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,680,951,932
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
0
s = input().lower() lst = ['h', 'e', 'l', 'l', 'o'] for elem in s: if elem in lst: lst.remove(elem) if len(lst) == 0: print('YES') else: print('NO')
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s = input().lower() lst = ['h', 'e', 'l', 'l', 'o'] for elem in s: if elem in lst: lst.remove(elem) if len(lst) == 0: print('YES') else: print('NO') ```
0
186
A
Comparing Strings
PROGRAMMING
1,100
[ "implementation", "strings" ]
null
null
Some dwarves that are finishing the StUDY (State University for Dwarven Youngsters) Bachelor courses, have been told "no genome, no degree". That means that all dwarves should write a thesis on genome. Dwarven genome is far from simple. It is represented by a string that consists of lowercase Latin letters. Dwarf Mish...
The first line contains the first dwarf's genome: a non-empty string, consisting of lowercase Latin letters. The second line contains the second dwarf's genome: a non-empty string, consisting of lowercase Latin letters. The number of letters in each genome doesn't exceed 105. It is guaranteed that the strings that co...
Print "YES", if the dwarves belong to the same race. Otherwise, print "NO".
[ "ab\nba\n", "aa\nab\n" ]
[ "YES\n", "NO\n" ]
- First example: you can simply swap two letters in string "ab". So we get "ba". - Second example: we can't change string "aa" into string "ab", because "aa" does not contain letter "b".
500
[ { "input": "ab\nba", "output": "YES" }, { "input": "aa\nab", "output": "NO" }, { "input": "a\nza", "output": "NO" }, { "input": "vvea\nvvae", "output": "YES" }, { "input": "rtfabanpc\natfabrnpc", "output": "YES" }, { "input": "mt\ntm", "output": "Y...
1,661,531,230
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
186
0
dwarf_1 = input() dwarf_2 = input() swap = None if len(dwarf_1) != len(dwarf_2): print('NO') exit() else: for i in range(len(dwarf_1)): if swap == None: if dwarf_1[i] == 'a' and dwarf_2[i] == 'b': swap = 'first_ab' if dwarf_1[i] == 'b' and dwarf_2[i...
Title: Comparing Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Some dwarves that are finishing the StUDY (State University for Dwarven Youngsters) Bachelor courses, have been told "no genome, no degree". That means that all dwarves should write a thesis on genome. Dwarven genome ...
```python dwarf_1 = input() dwarf_2 = input() swap = None if len(dwarf_1) != len(dwarf_2): print('NO') exit() else: for i in range(len(dwarf_1)): if swap == None: if dwarf_1[i] == 'a' and dwarf_2[i] == 'b': swap = 'first_ab' if dwarf_1[i] == 'b' and...
0
265
B
Roadside Trees (Simplified Edition)
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
Squirrel Liss loves nuts. There are *n* trees (numbered 1 to *n* from west to east) along a street and there is a delicious nut on the top of each tree. The height of the tree *i* is *h**i*. Liss wants to eat all nuts. Now Liss is on the root of the tree with the number 1. In one second Liss can perform one of the fol...
The first line contains an integer *n* (1<=<=≤<=<=*n*<=≤<=105) — the number of trees. Next *n* lines contains the height of trees: *i*-th line contains an integer *h**i* (1<=≤<=*h**i*<=≤<=104) — the height of the tree with the number *i*.
Print a single integer — the minimal time required to eat all nuts in seconds.
[ "2\n1\n2\n", "5\n2\n1\n2\n1\n1\n" ]
[ "5\n", "14\n" ]
none
1,000
[ { "input": "2\n1\n2", "output": "5" }, { "input": "5\n2\n1\n2\n1\n1", "output": "14" }, { "input": "1\n1", "output": "2" } ]
1,652,811,136
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
280
4,710,400
a=int(input()) c=0 b=[] for i in range(a): z=int(input()) b=b+[z] for i in range(a): if i==0: c=c+b[i]+1 elif i==a-1: if b[i]>b[i-1]: c=c+b[i]-b[i-1] if b[i-1]>b[i]: c=c+b[i-1]-b[i] else: if b[i-1]>b[i]: c=c+b[i-1]...
Title: Roadside Trees (Simplified Edition) Time Limit: None seconds Memory Limit: None megabytes Problem Description: Squirrel Liss loves nuts. There are *n* trees (numbered 1 to *n* from west to east) along a street and there is a delicious nut on the top of each tree. The height of the tree *i* is *h**i*. Liss wan...
```python a=int(input()) c=0 b=[] for i in range(a): z=int(input()) b=b+[z] for i in range(a): if i==0: c=c+b[i]+1 elif i==a-1: if b[i]>b[i-1]: c=c+b[i]-b[i-1] if b[i-1]>b[i]: c=c+b[i-1]-b[i] else: if b[i-1]>b[i]: ...
0
78
B
Easter Eggs
PROGRAMMING
1,200
[ "constructive algorithms", "implementation" ]
B. Easter Eggs
2
256
The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: - Each of the seven colors should be used to paint at least one egg. - Any four eggs lying s...
The only line contains an integer *n* — the amount of eggs (7<=≤<=*n*<=≤<=100).
Print one line consisting of *n* characters. The *i*-th character should describe the color of the *i*-th egg in the order they lie in the circle. The colors should be represented as follows: "R" stands for red, "O" stands for orange, "Y" stands for yellow, "G" stands for green, "B" stands for blue, "I" stands for indi...
[ "8\n", "13\n" ]
[ "ROYGRBIV\n", "ROYGBIVGBIVYG\n" ]
The way the eggs will be painted in the first sample is shown on the picture:
1,000
[ { "input": "8", "output": "ROYGBIVG" }, { "input": "13", "output": "ROYGBIVOYGBIV" }, { "input": "7", "output": "ROYGBIV" }, { "input": "10", "output": "ROYGBIVYGB" }, { "input": "14", "output": "ROYGBIVROYGBIV" }, { "input": "50", "output": "ROYGB...
1,612,971,165
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
124
0
n = int(input()) s = 'ROYGBIV' ans = '' for i in range(n): ans+=s[i%7] print(ans)
Title: Easter Eggs Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: -...
```python n = int(input()) s = 'ROYGBIV' ans = '' for i in range(n): ans+=s[i%7] print(ans) ```
0
764
A
Taymyr is calling you
PROGRAMMING
800
[ "brute force", "implementation", "math" ]
null
null
Comrade Dujikov is busy choosing artists for Timofey's birthday and is recieving calls from Taymyr from Ilia-alpinist. Ilia-alpinist calls every *n* minutes, i.e. in minutes *n*, 2*n*, 3*n* and so on. Artists come to the comrade every *m* minutes, i.e. in minutes *m*, 2*m*, 3*m* and so on. The day is *z* minutes long,...
The only string contains three integers — *n*, *m* and *z* (1<=≤<=*n*,<=*m*,<=*z*<=≤<=104).
Print single integer — the minimum number of artists that should be killed so that there are no artists in the room when Ilia calls.
[ "1 1 10\n", "1 2 5\n", "2 3 9\n" ]
[ "10\n", "2\n", "1\n" ]
Taymyr is a place in the north of Russia. In the first test the artists come each minute, as well as the calls, so we need to kill all of them. In the second test we need to kill artists which come on the second and the fourth minutes. In the third test — only the artist which comes on the sixth minute.
500
[ { "input": "1 1 10", "output": "10" }, { "input": "1 2 5", "output": "2" }, { "input": "2 3 9", "output": "1" }, { "input": "4 8 9", "output": "1" }, { "input": "7 9 2", "output": "0" }, { "input": "10000 10000 10000", "output": "1" }, { "i...
1,544,084,881
2,147,483,647
Python 3
OK
TESTS
32
109
0
n,m,z=[int(i) for i in input().split()] from math import gcd g = gcd(n,m) g = n*m//g print(z//g)
Title: Taymyr is calling you Time Limit: None seconds Memory Limit: None megabytes Problem Description: Comrade Dujikov is busy choosing artists for Timofey's birthday and is recieving calls from Taymyr from Ilia-alpinist. Ilia-alpinist calls every *n* minutes, i.e. in minutes *n*, 2*n*, 3*n* and so on. Artists com...
```python n,m,z=[int(i) for i in input().split()] from math import gcd g = gcd(n,m) g = n*m//g print(z//g) ```
3
270
A
Fancy Fence
PROGRAMMING
1,100
[ "geometry", "implementation", "math" ]
null
null
Emuskald needs a fence around his farm, but he is too lazy to build it himself. So he purchased a fence-building robot. He wants the fence to be a regular polygon. The robot builds the fence along a single path, but it can only make fence corners at a single angle *a*. Will the robot be able to build the fence Emuska...
The first line of input contains an integer *t* (0<=&lt;<=*t*<=&lt;<=180) — the number of tests. Each of the following *t* lines contains a single integer *a* (0<=&lt;<=*a*<=&lt;<=180) — the angle the robot can make corners at measured in degrees.
For each test, output on a single line "YES" (without quotes), if the robot can build a fence Emuskald wants, and "NO" (without quotes), if it is impossible.
[ "3\n30\n60\n90\n" ]
[ "NO\nYES\nYES\n" ]
In the first test case, it is impossible to build the fence, since there is no regular polygon with angle <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/df5f4b07dd5316fde165b43657b2696e2919e791.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second test case, the fence is a r...
500
[ { "input": "3\n30\n60\n90", "output": "NO\nYES\nYES" }, { "input": "6\n1\n2\n3\n170\n179\n25", "output": "NO\nNO\nNO\nYES\nYES\nNO" } ]
1,698,824,955
2,147,483,647
PyPy 3-64
OK
TESTS
3
92
0
from sys import stdin, stdout #from bisect import bisect_left, bisect_right #from collections import Counter, deque #from queue import Queue #import heapq import math #from itertools import permutations, combinations, islice def input(): return stdin.readline().strip() def solve(): a = int(input()...
Title: Fancy Fence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Emuskald needs a fence around his farm, but he is too lazy to build it himself. So he purchased a fence-building robot. He wants the fence to be a regular polygon. The robot builds the fence along a single path, but it can...
```python from sys import stdin, stdout #from bisect import bisect_left, bisect_right #from collections import Counter, deque #from queue import Queue #import heapq import math #from itertools import permutations, combinations, islice def input(): return stdin.readline().strip() def solve(): a = i...
3
620
B
Grandfather Dovlet’s calculator
PROGRAMMING
1,000
[ "implementation" ]
null
null
Once Max found an electronic calculator from his grandfather Dovlet's chest. He noticed that the numbers were written with seven-segment indicators ([https://en.wikipedia.org/wiki/Seven-segment_display](https://en.wikipedia.org/wiki/Seven-segment_display)). Max starts to type all the values from *a* to *b*. After typi...
The only line contains two integers *a*,<=*b* (1<=≤<=*a*<=≤<=*b*<=≤<=106) — the first and the last number typed by Max.
Print the only integer *a* — the total number of printed segments.
[ "1 3\n", "10 15\n" ]
[ "12\n", "39\n" ]
none
0
[ { "input": "1 3", "output": "12" }, { "input": "10 15", "output": "39" }, { "input": "1 100", "output": "928" }, { "input": "100 10000", "output": "188446" }, { "input": "213 221442", "output": "5645356" }, { "input": "1 1000000", "output": "287333...
1,453,443,530
2,449
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
0
c = [6,2,5,5,4,5,6,3,7,6] ab= list(map(int,input().split())) a = ab[0] b = ab[1] k = 0 for i in range(a,b+1): s = i while s > 9: k = k + c[s%10] s = s // 10 k = k+c[s%10] print(k)
Title: Grandfather Dovlet’s calculator Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once Max found an electronic calculator from his grandfather Dovlet's chest. He noticed that the numbers were written with seven-segment indicators ([https://en.wikipedia.org/wiki/Seven-segment_display](...
```python c = [6,2,5,5,4,5,6,3,7,6] ab= list(map(int,input().split())) a = ab[0] b = ab[1] k = 0 for i in range(a,b+1): s = i while s > 9: k = k + c[s%10] s = s // 10 k = k+c[s%10] print(k) ```
0
2
A
Winner
PROGRAMMING
1,500
[ "hashing", "implementation" ]
A. Winner
1
64
The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes more difficult if the number of such players is more than one. During each round a pla...
The first line contains an integer number *n* (1<=<=≤<=<=*n*<=<=≤<=<=1000), *n* is the number of rounds played. Then follow *n* lines, containing the information about the rounds in "name score" format in chronological order, where name is a string of lower-case Latin letters with the length from 1 to 32, and score is ...
Print the name of the winner.
[ "3\nmike 3\nandrew 5\nmike 2\n", "3\nandrew 3\nandrew 2\nmike 5\n" ]
[ "andrew\n", "andrew\n" ]
none
0
[ { "input": "3\nmike 3\nandrew 5\nmike 2", "output": "andrew" }, { "input": "3\nandrew 3\nandrew 2\nmike 5", "output": "andrew" }, { "input": "5\nkaxqybeultn -352\nmgochgrmeyieyskhuourfg -910\nkaxqybeultn 691\nmgochgrmeyieyskhuourfg -76\nkaxqybeultn -303", "output": "kaxqybeultn" },...
1,648,701,747
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
62
0
import heapq n=int(input()) memo={} pq=[] for _ in range(n): nm,sc=map(str,input().split()) sc=-int(sc) org=sc if nm in memo: osc,tm=memo[nm] sc+=osc if org != 0: memo[nm]=[sc,_] for nm,pr in memo.items(): heapq.heappush(pq,[pr[0],pr[1],nm]) #print(pr[0],pr[1],nm) winner=heap...
Title: Winner Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes...
```python import heapq n=int(input()) memo={} pq=[] for _ in range(n): nm,sc=map(str,input().split()) sc=-int(sc) org=sc if nm in memo: osc,tm=memo[nm] sc+=osc if org != 0: memo[nm]=[sc,_] for nm,pr in memo.items(): heapq.heappush(pq,[pr[0],pr[1],nm]) #print(pr[0],pr[1],nm) w...
0
787
A
The Monster
PROGRAMMING
1,200
[ "brute force", "math", "number theory" ]
null
null
A monster is chasing after Rick and Morty on another planet. They're so frightened that sometimes they scream. More accurately, Rick screams at times *b*,<=*b*<=+<=*a*,<=*b*<=+<=2*a*,<=*b*<=+<=3*a*,<=... and Morty screams at times *d*,<=*d*<=+<=*c*,<=*d*<=+<=2*c*,<=*d*<=+<=3*c*,<=.... The Monster will catch them if a...
The first line of input contains two integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=100). The second line contains two integers *c* and *d* (1<=≤<=*c*,<=*d*<=≤<=100).
Print the first time Rick and Morty will scream at the same time, or <=-<=1 if they will never scream at the same time.
[ "20 2\n9 19\n", "2 1\n16 12\n" ]
[ "82\n", "-1\n" ]
In the first sample testcase, Rick's 5th scream and Morty's 8th time are at time 82. In the second sample testcase, all Rick's screams will be at odd times and Morty's will be at even times, so they will never scream at the same time.
500
[ { "input": "20 2\n9 19", "output": "82" }, { "input": "2 1\n16 12", "output": "-1" }, { "input": "39 52\n88 78", "output": "1222" }, { "input": "59 96\n34 48", "output": "1748" }, { "input": "87 37\n91 29", "output": "211" }, { "input": "11 81\n49 7", ...
1,516,604,423
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
34
62
5,632,000
def de(x,y): if y%2 != 0 and x%2 == 0: k = "odd" elif y%2 == 0 and x%2 == 0: k = "even" else: k = "undef" return k def uc(m,n): for i in range(min(m,n) + 1, 0, -1): if m%i == 0 and n%i == 0: break return i a, b = map(int,input().split(" ")...
Title: The Monster Time Limit: None seconds Memory Limit: None megabytes Problem Description: A monster is chasing after Rick and Morty on another planet. They're so frightened that sometimes they scream. More accurately, Rick screams at times *b*,<=*b*<=+<=*a*,<=*b*<=+<=2*a*,<=*b*<=+<=3*a*,<=... and Morty screams a...
```python def de(x,y): if y%2 != 0 and x%2 == 0: k = "odd" elif y%2 == 0 and x%2 == 0: k = "even" else: k = "undef" return k def uc(m,n): for i in range(min(m,n) + 1, 0, -1): if m%i == 0 and n%i == 0: break return i a, b = map(int,input()....
0
344
A
Magnets
PROGRAMMING
800
[ "implementation" ]
null
null
Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets are put together at a close distance, then the like poles will repel each other and the oppo...
The first line of the input contains an integer *n* (1<=≤<=*n*<=≤<=100000) — the number of magnets. Then *n* lines follow. The *i*-th line (1<=≤<=*i*<=≤<=*n*) contains either characters "01", if Mike put the *i*-th magnet in the "plus-minus" position, or characters "10", if Mike put the magnet in the "minus-plus" posit...
On the single line of the output print the number of groups of magnets.
[ "6\n10\n10\n10\n01\n10\n10\n", "4\n01\n01\n10\n10\n" ]
[ "3\n", "2\n" ]
The first testcase corresponds to the figure. The testcase has three groups consisting of three, one and two magnets. The second testcase has two groups, each consisting of two magnets.
500
[ { "input": "6\n10\n10\n10\n01\n10\n10", "output": "3" }, { "input": "4\n01\n01\n10\n10", "output": "2" }, { "input": "1\n10", "output": "1" }, { "input": "2\n01\n10", "output": "2" }, { "input": "2\n10\n10", "output": "1" }, { "input": "3\n10\n01\n10",...
1,697,522,403
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
60
0
a = int(input()) b = int(input()) c = b d = 1 for i in range(a - 1): if b != c: d += 1 c = b b = int(input()) print(d)
Title: Magnets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mad scientist Mike entertains himself by arranging rows of dominoes. He doesn't need dominoes, though: he uses rectangular magnets instead. Each magnet has two poles, positive (a "plus") and negative (a "minus"). If two magnets...
```python a = int(input()) b = int(input()) c = b d = 1 for i in range(a - 1): if b != c: d += 1 c = b b = int(input()) print(d) ```
0
847
M
Weather Tomorrow
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Vasya came up with his own weather forecasting method. He knows the information about the average air temperature for each of the last *n* days. Assume that the average air temperature for each day is integral. Vasya believes that if the average temperatures over the last *n* days form an arithmetic progression, where...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=100) — the number of days for which the average air temperature is known. The second line contains a sequence of integers *t*1,<=*t*2,<=...,<=*t**n* (<=-<=1000<=≤<=*t**i*<=≤<=1000) — where *t**i* is the average temperature in the *i*-th day.
Print the average air temperature in the (*n*<=+<=1)-th day, which Vasya predicts according to his method. Note that the absolute value of the predicted temperature can exceed 1000.
[ "5\n10 5 0 -5 -10\n", "4\n1 1 1 1\n", "3\n5 1 -5\n", "2\n900 1000\n" ]
[ "-15\n", "1\n", "-5\n", "1100\n" ]
In the first example the sequence of the average temperatures is an arithmetic progression where the first term is 10 and each following terms decreases by 5. So the predicted average temperature for the sixth day is  - 10 - 5 =  - 15. In the second example the sequence of the average temperatures is an arithmetic pro...
0
[ { "input": "5\n10 5 0 -5 -10", "output": "-15" }, { "input": "4\n1 1 1 1", "output": "1" }, { "input": "3\n5 1 -5", "output": "-5" }, { "input": "2\n900 1000", "output": "1100" }, { "input": "2\n1 2", "output": "3" }, { "input": "3\n2 5 8", "output...
1,505,743,856
3,956
Python 3
OK
TESTS
25
62
4,608,000
n = int(input()) a = list(map(int, input().split())) d = a[1] - a[0] t = 1 i = 2 while(i < len(a)): cur = a[i] - a[i - 1] if(cur != d): t = 0 break i = i + 1 print(a[-1] + t * d)
Title: Weather Tomorrow Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya came up with his own weather forecasting method. He knows the information about the average air temperature for each of the last *n* days. Assume that the average air temperature for each day is integral. Vasya ...
```python n = int(input()) a = list(map(int, input().split())) d = a[1] - a[0] t = 1 i = 2 while(i < len(a)): cur = a[i] - a[i - 1] if(cur != d): t = 0 break i = i + 1 print(a[-1] + t * d) ```
3
417
C
Football
PROGRAMMING
1,400
[ "constructive algorithms", "graphs", "implementation" ]
null
null
One day, at the "Russian Code Cup" event it was decided to play football as an out of competition event. All participants was divided into *n* teams and played several matches, two teams could not play against each other more than once. The appointed Judge was the most experienced member — Pavel. But since he was the ...
The first line contains two integers — *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=1000).
In the first line print an integer *m* — number of the played games. The following *m* lines should contain the information about all the matches, one match per line. The *i*-th line should contain two integers *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*; *a**i*<=≠<=*b**i*). The numbers *a**i* and *b**i* mean, tha...
[ "3 1\n" ]
[ "3\n1 2\n2 3\n3 1\n" ]
none
1,500
[ { "input": "3 1", "output": "3\n1 2\n2 3\n3 1" }, { "input": "7 3", "output": "21\n1 2\n1 3\n1 4\n2 3\n2 4\n2 5\n3 4\n3 5\n3 6\n4 5\n4 6\n4 7\n5 6\n5 7\n5 1\n6 7\n6 1\n6 2\n7 1\n7 2\n7 3" }, { "input": "4 1", "output": "4\n1 2\n2 3\n3 4\n4 1" }, { "input": "5 2", "output"...
1,403,081,372
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n = input() k = input() if n-k <= k: print "-1" else: print n*k for i in range(1, n+1): for j in range(1, k+1): b = i+j if b > n: b -= n print (str(i)+" "+str(b))
Title: Football Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day, at the "Russian Code Cup" event it was decided to play football as an out of competition event. All participants was divided into *n* teams and played several matches, two teams could not play against each other more ...
```python n = input() k = input() if n-k <= k: print "-1" else: print n*k for i in range(1, n+1): for j in range(1, k+1): b = i+j if b > n: b -= n print (str(i)+" "+str(b)) ```
-1
903
C
Boxes Packing
PROGRAMMING
1,200
[ "greedy" ]
null
null
Mishka has got *n* empty boxes. For every *i* (1<=≤<=*i*<=≤<=*n*), *i*-th box is a cube with side length *a**i*. Mishka can put a box *i* into another box *j* if the following conditions are met: - *i*-th box is not put into another box; - *j*-th box doesn't contain any other boxes; - box *i* is smaller than box *...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=5000) — the number of boxes Mishka has got. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=109), where *a**i* is the side length of *i*-th box.
Print the minimum possible number of visible boxes.
[ "3\n1 2 3\n", "4\n4 2 4 3\n" ]
[ "1\n", "2\n" ]
In the first example it is possible to put box 1 into box 2, and 2 into 3. In the second example Mishka can put box 2 into box 3, and box 4 into box 1.
0
[ { "input": "3\n1 2 3", "output": "1" }, { "input": "4\n4 2 4 3", "output": "2" }, { "input": "10\n58 58 58 58 58 58 58 58 58 58", "output": "10" }, { "input": "10\n86 89 89 86 86 89 86 86 89 89", "output": "5" }, { "input": "100\n981 288 186 186 292 876 341 288 98...
1,652,085,779
2,147,483,647
PyPy 3-64
OK
TESTS
24
77
2,867,200
n = int(input()) array = list(map(int, input().split())) dict = {} for x in array: if x in dict: dict[x] += 1 else: dict[x] = 1 arr = list(dict.values()) arr.sort() ans = 0 for x in arr: y = x - ans ans += y print(ans)
Title: Boxes Packing Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mishka has got *n* empty boxes. For every *i* (1<=≤<=*i*<=≤<=*n*), *i*-th box is a cube with side length *a**i*. Mishka can put a box *i* into another box *j* if the following conditions are met: - *i*-th box is not pu...
```python n = int(input()) array = list(map(int, input().split())) dict = {} for x in array: if x in dict: dict[x] += 1 else: dict[x] = 1 arr = list(dict.values()) arr.sort() ans = 0 for x in arr: y = x - ans ans += y print(ans) ```
3
520
A
Pangram
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices. You are given a string consisting of lowercase and uppercase Latin letters. Check whether thi...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of characters in the string. The second line contains the string. The string consists only of uppercase and lowercase Latin letters.
Output "YES", if the string is a pangram and "NO" otherwise.
[ "12\ntoosmallword\n", "35\nTheQuickBrownFoxJumpsOverTheLazyDog\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "12\ntoosmallword", "output": "NO" }, { "input": "35\nTheQuickBrownFoxJumpsOverTheLazyDog", "output": "YES" }, { "input": "1\na", "output": "NO" }, { "input": "26\nqwertyuiopasdfghjklzxcvbnm", "output": "YES" }, { "input": "26\nABCDEFGHIJKLMNOPQRSTUVWXY...
1,697,003,586
2,147,483,647
PyPy 3-64
OK
TESTS
59
77
0
n1=int(input()) x1=input() l1=[] l2=["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"] for i1 in x1: if i1.lower() not in l1: i2=i1.lower() l1.append(i2) if sorted(l1)==l2: print("YES") else: print("NO")
Title: Pangram Time Limit: None seconds Memory Limit: None megabytes Problem Description: A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices. ...
```python n1=int(input()) x1=input() l1=[] l2=["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"] for i1 in x1: if i1.lower() not in l1: i2=i1.lower() l1.append(i2) if sorted(l1)==l2: print("YES") else: print("NO") ```
3
677
A
Vanya and Fence
PROGRAMMING
800
[ "implementation" ]
null
null
Vanya and his friends are walking along the fence of height *h* and they do not want the guard to notice them. In order to achieve this the height of each of the friends should not exceed *h*. If the height of some person is greater than *h* he can bend down and then he surely won't be noticed by the guard. The height ...
The first line of the input contains two integers *n* and *h* (1<=≤<=*n*<=≤<=1000, 1<=≤<=*h*<=≤<=1000) — the number of friends and the height of the fence, respectively. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=2*h*), the *i*-th of them is equal to the height of the *i*-th person.
Print a single integer — the minimum possible valid width of the road.
[ "3 7\n4 5 14\n", "6 1\n1 1 1 1 1 1\n", "6 5\n7 6 8 9 10 5\n" ]
[ "4\n", "6\n", "11\n" ]
In the first sample, only person number 3 must bend down, so the required width is equal to 1 + 1 + 2 = 4. In the second sample, all friends are short enough and no one has to bend, so the width 1 + 1 + 1 + 1 + 1 + 1 = 6 is enough. In the third sample, all the persons have to bend, except the last one. The required m...
500
[ { "input": "3 7\n4 5 14", "output": "4" }, { "input": "6 1\n1 1 1 1 1 1", "output": "6" }, { "input": "6 5\n7 6 8 9 10 5", "output": "11" }, { "input": "10 420\n214 614 297 675 82 740 174 23 255 15", "output": "13" }, { "input": "10 561\n657 23 1096 487 785 66 481...
1,698,408,867
2,147,483,647
Python 3
OK
TESTS
29
31
0
n,h=map(int,input().split()) my_list=list(map(int,input().split())) s=0 for item in my_list: if item<=h: s+=1 else: s+=2 print(s)
Title: Vanya and Fence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya and his friends are walking along the fence of height *h* and they do not want the guard to notice them. In order to achieve this the height of each of the friends should not exceed *h*. If the height of some pers...
```python n,h=map(int,input().split()) my_list=list(map(int,input().split())) s=0 for item in my_list: if item<=h: s+=1 else: s+=2 print(s) ```
3
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,596,209,015
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
154
6,656,000
n=int(input("")) Xi,Yi,Zi=0,0,0 for j in range (n): Xi+= int(input("")) Yi+= int(input("")) Zi+= int(input("")) if (Xi==0)& (Yi==0)&(Zi==0) : print("YES") else : print("NO")
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python n=int(input("")) Xi,Yi,Zi=0,0,0 for j in range (n): Xi+= int(input("")) Yi+= int(input("")) Zi+= int(input("")) if (Xi==0)& (Yi==0)&(Zi==0) : print("YES") else : print("NO") ```
-1
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,517,963,095
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
34
62
5,632,000
word = "hello" index = 0 st = input('') for i in range(0, len(st)): if (index >= 4): print( "YES") break if (st[i] == word[index]): index += 1 if (index <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 word = "hello" index = 0 st = input('') for i in range(0, len(st)): if (index >= 4): print( "YES") break if (st[i] == word[index]): index += 1 if (index <4) : print ("NO") ```
0
407
E
k-d-sequence
PROGRAMMING
3,100
[ "data structures" ]
null
null
We'll call a sequence of integers a good *k*-*d* sequence if we can add to it at most *k* numbers in such a way that after the sorting the sequence will be an arithmetic progression with difference *d*. You got hold of some sequence *a*, consisting of *n* integers. Your task is to find its longest contiguous subsegmen...
The first line contains three space-separated integers *n*,<=*k*,<=*d* (1<=≤<=*n*<=≤<=2·105; 0<=≤<=*k*<=≤<=2·105; 0<=≤<=*d*<=≤<=109). The second line contains *n* space-separated integers: *a*1,<=*a*2,<=...,<=*a**n* (<=-<=109<=≤<=*a**i*<=≤<=109) — the actual sequence.
Print two space-separated integers *l*,<=*r* (1<=≤<=*l*<=≤<=*r*<=≤<=*n*) show that sequence *a**l*,<=*a**l*<=+<=1,<=...,<=*a**r* is the longest subsegment that is a good *k*-*d* sequence. If there are multiple optimal answers, print the one with the minimum value of *l*.
[ "6 1 2\n4 3 2 8 6 2\n" ]
[ "3 5\n" ]
In the first test sample the answer is the subsegment consisting of numbers 2, 8, 6 — after adding number 4 and sorting it becomes sequence 2, 4, 6, 8 — the arithmetic progression with difference 2.
2,500
[]
1,696,691,884
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
n, k, d = map(int, input().split()) a = list(map(int, input().split())) left, right = 1, 1 current_subseq = [a[0]] max_len = 1 max_start = 0 for i in range(1, n): if a[i] % d == current_subseq[-1] % d: current_subseq.append(a[i]) right += 1 else: if a[i] > current_subseq...
Title: k-d-sequence Time Limit: None seconds Memory Limit: None megabytes Problem Description: We'll call a sequence of integers a good *k*-*d* sequence if we can add to it at most *k* numbers in such a way that after the sorting the sequence will be an arithmetic progression with difference *d*. You got hold of so...
```python n, k, d = map(int, input().split()) a = list(map(int, input().split())) left, right = 1, 1 current_subseq = [a[0]] max_len = 1 max_start = 0 for i in range(1, n): if a[i] % d == current_subseq[-1] % d: current_subseq.append(a[i]) right += 1 else: if a[i] > curr...
-1
912
A
Tricky Alchemy
PROGRAMMING
800
[ "implementation" ]
null
null
During the winter holidays, the demand for Christmas balls is exceptionally high. Since it's already 2018, the advances in alchemy allow easy and efficient ball creation by utilizing magic crystals. Grisha needs to obtain some yellow, green and blue balls. It's known that to produce a yellow ball one needs two yellow ...
The first line features two integers *A* and *B* (0<=≤<=*A*,<=*B*<=≤<=109), denoting the number of yellow and blue crystals respectively at Grisha's disposal. The next line contains three integers *x*, *y* and *z* (0<=≤<=*x*,<=*y*,<=*z*<=≤<=109) — the respective amounts of yellow, green and blue balls to be obtained.
Print a single integer — the minimum number of crystals that Grisha should acquire in addition.
[ "4 3\n2 1 1\n", "3 9\n1 1 3\n", "12345678 87654321\n43043751 1000000000 53798715\n" ]
[ "2\n", "1\n", "2147483648\n" ]
In the first sample case, Grisha needs five yellow and four blue crystals to create two yellow balls, one green ball, and one blue ball. To do that, Grisha needs to obtain two additional crystals: one yellow and one blue.
500
[ { "input": "4 3\n2 1 1", "output": "2" }, { "input": "3 9\n1 1 3", "output": "1" }, { "input": "12345678 87654321\n43043751 1000000000 53798715", "output": "2147483648" }, { "input": "12 12\n3 5 2", "output": "0" }, { "input": "770 1390\n170 442 311", "output"...
1,536,043,903
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
108
0
A, B = map(int, input().split()) x, y, z = map(int, input().split()) output = 0 if (((2*x + y)-A) + ((y + 3*z)-B)>0) : output = ((2*x + y)-A) + ((y + 3*z)-B) print (output)
Title: Tricky Alchemy Time Limit: None seconds Memory Limit: None megabytes Problem Description: During the winter holidays, the demand for Christmas balls is exceptionally high. Since it's already 2018, the advances in alchemy allow easy and efficient ball creation by utilizing magic crystals. Grisha needs to obta...
```python A, B = map(int, input().split()) x, y, z = map(int, input().split()) output = 0 if (((2*x + y)-A) + ((y + 3*z)-B)>0) : output = ((2*x + y)-A) + ((y + 3*z)-B) print (output) ```
0
180
C
Letter
PROGRAMMING
1,400
[ "dp" ]
null
null
Patrick has just finished writing a message to his sweetheart Stacey when he noticed that the message didn't look fancy. Patrick was nervous while writing the message, so some of the letters there were lowercase and some of them were uppercase. Patrick believes that a message is fancy if any uppercase letter stands to...
The only line of the input contains a non-empty string consisting of uppercase and lowercase letters. The string's length does not exceed 105.
Print a single number — the least number of actions needed to make the message fancy.
[ "PRuvetSTAaYA\n", "OYPROSTIYAOPECHATALSYAPRIVETSTASYA\n", "helloworld\n" ]
[ "5\n", "0\n", "0\n" ]
none
0
[ { "input": "PRuvetSTAaYA", "output": "5" }, { "input": "OYPROSTIYAOPECHATALSYAPRIVETSTASYA", "output": "0" }, { "input": "helloworld", "output": "0" }, { "input": "P", "output": "0" }, { "input": "t", "output": "0" }, { "input": "XdJ", "output": "1...
1,630,605,774
2,147,483,647
PyPy 3
OK
TESTS
40
248
24,166,400
n = input() cases = [] count = 0 x = 1 for letter in n: if x == 1 and letter != letter.upper(): cases.append(count) count = 0 x *= -1 elif x == -1 and letter != letter.lower(): cases.append(count) count = 0 x *= -1 count += 1 cases.append(count...
Title: Letter Time Limit: None seconds Memory Limit: None megabytes Problem Description: Patrick has just finished writing a message to his sweetheart Stacey when he noticed that the message didn't look fancy. Patrick was nervous while writing the message, so some of the letters there were lowercase and some of them...
```python n = input() cases = [] count = 0 x = 1 for letter in n: if x == 1 and letter != letter.upper(): cases.append(count) count = 0 x *= -1 elif x == -1 and letter != letter.lower(): cases.append(count) count = 0 x *= -1 count += 1 cases.ap...
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,658,690,464
2,147,483,647
PyPy 3-64
OK
TESTS
20
46
0
m, n, a = map(int, input().split()) if m%a == 0: val1 = m//a else: val1 = m//a+1 if n%a == 0: val2 = n//a else: val2 = n//a+1 print(val1*val2)
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 m, n, a = map(int, input().split()) if m%a == 0: val1 = m//a else: val1 = m//a+1 if n%a == 0: val2 = n//a else: val2 = n//a+1 print(val1*val2) ```
3.977
680
B
Bear and Finding Criminals
PROGRAMMING
1,000
[ "constructive algorithms", "implementation" ]
null
null
There are *n* cities in Bearland, numbered 1 through *n*. Cities are arranged in one long row. The distance between cities *i* and *j* is equal to |*i*<=-<=*j*|. Limak is a police officer. He lives in a city *a*. His job is to catch criminals. It's hard because he doesn't know in which cities criminals are. Though, he...
The first line of the input contains two integers *n* and *a* (1<=≤<=*a*<=≤<=*n*<=≤<=100) — the number of cities and the index of city where Limak lives. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (0<=≤<=*t**i*<=≤<=1). There are *t**i* criminals in the *i*-th city.
Print the number of criminals Limak will catch.
[ "6 3\n1 1 1 0 1 0\n", "5 2\n0 0 0 1 0\n" ]
[ "3\n", "1\n" ]
In the first sample, there are six cities and Limak lives in the third one (blue arrow below). Criminals are in cities marked red. Using the BCD gives Limak the following information: - There is one criminal at distance 0 from the third city — Limak is sure that this criminal is exactly in the third city. - There i...
1,000
[ { "input": "6 3\n1 1 1 0 1 0", "output": "3" }, { "input": "5 2\n0 0 0 1 0", "output": "1" }, { "input": "1 1\n1", "output": "1" }, { "input": "1 1\n0", "output": "0" }, { "input": "9 3\n1 1 1 1 1 1 1 1 0", "output": "8" }, { "input": "9 5\n1 0 1 0 1 0...
1,623,022,187
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
93
0
n,m=map(int,input().split()) ans=0 l=list(map(int,input().split())) p=m-1 if li[p]==1: ans+=1 q=max(m-1,n-m) for i in range(1,q+1): if p+i<=n-1 and p-i>=0: if l[p+i]+l[p-i]==2: ans+=2 elif p+i>n-1 and p-i>=0: if l[p-i]==1: ans+=1 elif p+i<=n-1 and p-...
Title: Bear and Finding Criminals Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* cities in Bearland, numbered 1 through *n*. Cities are arranged in one long row. The distance between cities *i* and *j* is equal to |*i*<=-<=*j*|. Limak is a police officer. He lives in a city...
```python n,m=map(int,input().split()) ans=0 l=list(map(int,input().split())) p=m-1 if li[p]==1: ans+=1 q=max(m-1,n-m) for i in range(1,q+1): if p+i<=n-1 and p-i>=0: if l[p+i]+l[p-i]==2: ans+=2 elif p+i>n-1 and p-i>=0: if l[p-i]==1: ans+=1 elif p+i<=...
-1
27
E
Number With The Given Amount Of Divisors
PROGRAMMING
2,000
[ "brute force", "dp", "number theory" ]
E. Number With The Given Amount Of Divisors
2
256
Given the number *n*, find the smallest positive integer which has exactly *n* divisors. It is guaranteed that for the given *n* the answer will not exceed 1018.
The first line of the input contains integer *n* (1<=≤<=*n*<=≤<=1000).
Output the smallest positive integer with exactly *n* divisors.
[ "4\n", "6\n" ]
[ "6\n", "12\n" ]
none
2,500
[ { "input": "1", "output": "1" }, { "input": "7", "output": "64" }, { "input": "8", "output": "24" }, { "input": "9", "output": "36" }, { "input": "10", "output": "48" }, { "input": "15", "output": "144" }, { "input": "20", "output": "24...
1,551,752,755
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
216
409,600
from functools import reduce from operator import mul primes = [2,3,5,7,11,13,17,19,23,29,31,37] s, c = int(input()), [] for p in range(2, s): while s % p == 0: c.append(p) s //= p if p*p > s: if s > 1: c.append(s) break print(sorted(c)) print(reduce(lambda p, e: p*e[0]**(e[1]-1), zip(primes, ...
Title: Number With The Given Amount Of Divisors Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Given the number *n*, find the smallest positive integer which has exactly *n* divisors. It is guaranteed that for the given *n* the answer will not exceed 1018. Input Specification: The first line...
```python from functools import reduce from operator import mul primes = [2,3,5,7,11,13,17,19,23,29,31,37] s, c = int(input()), [] for p in range(2, s): while s % p == 0: c.append(p) s //= p if p*p > s: if s > 1: c.append(s) break print(sorted(c)) print(reduce(lambda p, e: p*e[0]**(e[1]-1), zi...
0
221
A
Little Elephant and Function
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
The Little Elephant enjoys recursive functions. This time he enjoys the sorting function. Let *a* is a permutation of an integers from 1 to *n*, inclusive, and *a**i* denotes the *i*-th element of the permutation. The Little Elephant's recursive function *f*(*x*), that sorts the first *x* permutation's elements, works...
A single line contains integer *n* (1<=≤<=*n*<=≤<=1000) — the size of permutation.
In a single line print *n* distinct integers from 1 to *n* — the required permutation. Numbers in a line should be separated by spaces. It is guaranteed that the answer exists.
[ "1\n", "2\n" ]
[ "1 ", "2 1 " ]
none
500
[ { "input": "1", "output": "1 " }, { "input": "2", "output": "2 1 " }, { "input": "3", "output": "3 1 2 " }, { "input": "4", "output": "4 1 2 3 " }, { "input": "5", "output": "5 1 2 3 4 " }, { "input": "6", "output": "6 1 2 3 4 5 " }, { "inp...
1,688,454,484
2,147,483,647
Python 3
OK
TESTS
34
62
0
n = int(input()) f = map(str, [n] + list(range(1, n))) print(" ".join(f))
Title: Little Elephant and Function Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant enjoys recursive functions. This time he enjoys the sorting function. Let *a* is a permutation of an integers from 1 to *n*, inclusive, and *a**i* denotes the *i*-th element of the perm...
```python n = int(input()) f = map(str, [n] + list(range(1, n))) print(" ".join(f)) ```
3
855
A
Tom Riddle's Diary
PROGRAMMING
800
[ "brute force", "implementation", "strings" ]
null
null
Harry Potter is on a mission to destroy You-Know-Who's Horcruxes. The first Horcrux that he encountered in the Chamber of Secrets is Tom Riddle's diary. The diary was with Ginny and it forced her to open the Chamber of Secrets. Harry wants to know the different people who had ever possessed the diary to make sure they ...
First line of input contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of names in the list. Next *n* lines each contain a string *s**i*, consisting of lowercase English letters. The length of each string is between 1 and 100.
Output *n* lines each containing either "YES" or "NO" (without quotes), depending on whether this string was already present in the stream or not. You can print each letter in any case (upper or lower).
[ "6\ntom\nlucius\nginny\nharry\nginny\nharry\n", "3\na\na\na\n" ]
[ "NO\nNO\nNO\nNO\nYES\nYES\n", "NO\nYES\nYES\n" ]
In test case 1, for *i* = 5 there exists *j* = 3 such that *s*<sub class="lower-index">*i*</sub> = *s*<sub class="lower-index">*j*</sub> and *j* &lt; *i*, which means that answer for *i* = 5 is "YES".
500
[ { "input": "6\ntom\nlucius\nginny\nharry\nginny\nharry", "output": "NO\nNO\nNO\nNO\nYES\nYES" }, { "input": "3\na\na\na", "output": "NO\nYES\nYES" }, { "input": "1\nzn", "output": "NO" }, { "input": "9\nliyzmbjwnzryjokufuxcqtzwworjeoxkbaqrujrhdidqdvwdfzilwszgnzglnnbogaclckfnb...
1,661,902,321
2,147,483,647
Python 3
OK
TESTS
55
46
0
n = int(input()) names = [] for i in range(n): new_name = input() if names.count(new_name) == 0: print("NO") else: print("YES") names.append(new_name)
Title: Tom Riddle's Diary Time Limit: None seconds Memory Limit: None megabytes Problem Description: Harry Potter is on a mission to destroy You-Know-Who's Horcruxes. The first Horcrux that he encountered in the Chamber of Secrets is Tom Riddle's diary. The diary was with Ginny and it forced her to open the Chamber ...
```python n = int(input()) names = [] for i in range(n): new_name = input() if names.count(new_name) == 0: print("NO") else: print("YES") names.append(new_name) ```
3
75
C
Modified GCD
PROGRAMMING
1,600
[ "binary search", "number theory" ]
C. Modified GCD
2
256
Well, here is another math class task. In mathematics, GCD is the greatest common divisor, and it's an easy task to calculate the GCD between two positive integers. A common divisor for two positive numbers is a number which both numbers are divisible by. But your teacher wants to give you a harder task, in this task...
The first line contains two integers *a* and *b*, the two integers as described above (1<=≤<=*a*,<=*b*<=≤<=109). The second line contains one integer *n*, the number of queries (1<=≤<=*n*<=≤<=104). Then *n* lines follow, each line contains one query consisting of two integers, *low* and *high* (1<=≤<=*low*<=≤<=*high*<=...
Print *n* lines. The *i*-th of them should contain the result of the *i*-th query in the input. If there is no common divisor in the given range for any query, you should print -1 as a result for this query.
[ "9 27\n3\n1 5\n10 11\n9 11\n" ]
[ "3\n-1\n9\n" ]
none
1,500
[ { "input": "9 27\n3\n1 5\n10 11\n9 11", "output": "3\n-1\n9" }, { "input": "48 72\n2\n8 29\n29 37", "output": "24\n-1" }, { "input": "90 100\n10\n51 61\n6 72\n1 84\n33 63\n37 69\n18 21\n9 54\n49 90\n14 87\n37 90", "output": "-1\n10\n10\n-1\n-1\n-1\n10\n-1\n-1\n-1" }, { "input...
1,623,469,783
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
10
2,000
0
import math def hcf(a, b): minm = min(a, b) maxm = max(a, b) rem = maxm % minm if rem == 0: return minm else: return hcf(rem, minm) a, b = map(int, input().split()) q = int(input()) for query in range(q): low, high = map(int, input().split()) divisor = hcf(a, b) if divisor >=...
Title: Modified GCD Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Well, here is another math class task. In mathematics, GCD is the greatest common divisor, and it's an easy task to calculate the GCD between two positive integers. A common divisor for two positive numbers is a number which ...
```python import math def hcf(a, b): minm = min(a, b) maxm = max(a, b) rem = maxm % minm if rem == 0: return minm else: return hcf(rem, minm) a, b = map(int, input().split()) q = int(input()) for query in range(q): low, high = map(int, input().split()) divisor = hcf(a, b) if ...
0
534
A
Exam
PROGRAMMING
1,100
[ "constructive algorithms", "implementation", "math" ]
null
null
An exam for *n* students will take place in a long and narrow room, so the students will sit in a line in some order. The teacher suspects that students with adjacent numbers (*i* and *i*<=+<=1) always studied side by side and became friends and if they take an exam sitting next to each other, they will help each other...
A single line contains integer *n* (1<=≤<=*n*<=≤<=5000) — the number of students at an exam.
In the first line print integer *k* — the maximum number of students who can be seated so that no two students with adjacent numbers sit next to each other. In the second line print *k* distinct integers *a*1,<=*a*2,<=...,<=*a**k* (1<=≤<=*a**i*<=≤<=*n*), where *a**i* is the number of the student on the *i*-th position...
[ "6", "3\n" ]
[ "6\n1 5 3 6 2 4", "2\n1 3" ]
none
500
[ { "input": "6", "output": "6\n5 3 1 6 4 2 " }, { "input": "3", "output": "2\n1 3" }, { "input": "1", "output": "1\n1 " }, { "input": "2", "output": "1\n1" }, { "input": "4", "output": "4\n3 1 4 2 " }, { "input": "5", "output": "5\n5 3 1 4 2 " }, ...
1,496,505,102
2,147,483,647
Python 3
OK
TESTS
36
62
614,400
n=int(input()) if n==1: print("1") print("1") elif n==2: print("1") print("1") elif n==3: print("2") print("1 3") elif n>=4: l=list() print(n) if n%2==0: j=n i=n-1 else: j=n-1 i=n while(i>0): l.append(i) i=i-2 while(j>0): l.append(j) j=j-2 print(*l)
Title: Exam Time Limit: None seconds Memory Limit: None megabytes Problem Description: An exam for *n* students will take place in a long and narrow room, so the students will sit in a line in some order. The teacher suspects that students with adjacent numbers (*i* and *i*<=+<=1) always studied side by side and bec...
```python n=int(input()) if n==1: print("1") print("1") elif n==2: print("1") print("1") elif n==3: print("2") print("1 3") elif n>=4: l=list() print(n) if n%2==0: j=n i=n-1 else: j=n-1 i=n while(i>0): l.append(i) i=i-2 while(j>0): l.append(j) j=j-2 print(*l) ```
3
140
A
New Year Table
PROGRAMMING
1,700
[ "geometry", "math" ]
null
null
Gerald is setting the New Year table. The table has the form of a circle; its radius equals *R*. Gerald invited many guests and is concerned whether the table has enough space for plates for all those guests. Consider all plates to be round and have the same radii that equal *r*. Each plate must be completely inside th...
The first line contains three integers *n*, *R* and *r* (1<=≤<=*n*<=≤<=100, 1<=≤<=*r*,<=*R*<=≤<=1000) — the number of plates, the radius of the table and the plates' radius.
Print "YES" (without the quotes) if it is possible to place *n* plates on the table by the rules given above. If it is impossible, print "NO". Remember, that each plate must touch the edge of the table.
[ "4 10 4\n", "5 10 4\n", "1 10 10\n" ]
[ "YES\n", "NO\n", "YES\n" ]
The possible arrangement of the plates for the first sample is:
500
[ { "input": "4 10 4", "output": "YES" }, { "input": "5 10 4", "output": "NO" }, { "input": "1 10 10", "output": "YES" }, { "input": "3 10 20", "output": "NO" }, { "input": "2 20 11", "output": "NO" }, { "input": "6 9 3", "output": "YES" }, { ...
1,556,278,355
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
3
218
0
from math import * n,R,r=map(int,input().strip().split()) #print(R,r,n) if R==r: if n==1: print("YES") else: print("NO") exit(0) alpha=asin(r/(R-r)) #print(floor(pi/alpha)) if floor(pi/alpha)>=n: print("YES") else: print("NO")
Title: New Year Table Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gerald is setting the New Year table. The table has the form of a circle; its radius equals *R*. Gerald invited many guests and is concerned whether the table has enough space for plates for all those guests. Consider al...
```python from math import * n,R,r=map(int,input().strip().split()) #print(R,r,n) if R==r: if n==1: print("YES") else: print("NO") exit(0) alpha=asin(r/(R-r)) #print(floor(pi/alpha)) if floor(pi/alpha)>=n: print("YES") else: print("NO") ```
-1
426
A
Sereja and Mugs
PROGRAMMING
800
[ "implementation" ]
null
null
Sereja showed an interesting game to his friends. The game goes like that. Initially, there is a table with an empty cup and *n* water mugs on it. Then all players take turns to move. During a move, a player takes a non-empty mug of water and pours all water from it into the cup. If the cup overfills, then we assume th...
The first line contains integers *n* and *s* (2<=≤<=*n*<=≤<=100; 1<=≤<=*s*<=≤<=1000) — the number of mugs and the volume of the cup. The next line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=10). Number *a**i* means the volume of the *i*-th mug.
In a single line, print "YES" (without the quotes) if his friends can play in the described manner, and "NO" (without the quotes) otherwise.
[ "3 4\n1 1 1\n", "3 4\n3 1 3\n", "3 4\n4 4 4\n" ]
[ "YES\n", "YES\n", "NO\n" ]
none
500
[ { "input": "3 4\n1 1 1", "output": "YES" }, { "input": "3 4\n3 1 3", "output": "YES" }, { "input": "3 4\n4 4 4", "output": "NO" }, { "input": "2 1\n1 10", "output": "YES" }, { "input": "3 12\n5 6 6", "output": "YES" }, { "input": "4 10\n6 3 8 7", "...
1,490,114,274
2,147,483,647
Python 3
OK
TESTS
42
62
4,608,000
(n,s) = map(int,input().split()) a = list(map(int,input().split())) total = sum(a) possible = False for i in range(0, len(a)): if(total - a[i] <= s): possible = True break if(possible): print("YES") else: print("NO")
Title: Sereja and Mugs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja showed an interesting game to his friends. The game goes like that. Initially, there is a table with an empty cup and *n* water mugs on it. Then all players take turns to move. During a move, a player takes a non...
```python (n,s) = map(int,input().split()) a = list(map(int,input().split())) total = sum(a) possible = False for i in range(0, len(a)): if(total - a[i] <= s): possible = True break if(possible): print("YES") else: print("NO") ```
3
1,005
B
Delete from the Left
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
You are given two strings $s$ and $t$. In a single move, you can choose any of two strings and delete the first (that is, the leftmost) character. After a move, the length of the string decreases by $1$. You can't choose a string if it is empty. For example: - by applying a move to the string "where", the result is ...
The first line of the input contains $s$. In the second line of the input contains $t$. Both strings consist only of lowercase Latin letters. The number of letters in each string is between 1 and $2\cdot10^5$, inclusive.
Output the fewest number of moves required. It is possible that, in the end, both strings will be equal to the empty string, and so, are equal to each other. In this case, the answer is obviously the sum of the lengths of the given strings.
[ "test\nwest\n", "codeforces\nyes\n", "test\nyes\n", "b\nab\n" ]
[ "2\n", "9\n", "7\n", "1\n" ]
In the first example, you should apply the move once to the first string and apply the move once to the second string. As a result, both strings will be equal to "est". In the second example, the move should be applied to the string "codeforces" $8$ times. As a result, the string becomes "codeforces" $\to$ "es". The m...
0
[ { "input": "test\nwest", "output": "2" }, { "input": "codeforces\nyes", "output": "9" }, { "input": "test\nyes", "output": "7" }, { "input": "b\nab", "output": "1" }, { "input": "z\nz", "output": "0" }, { "input": "abacabadabacaba\nabacabadacaba", ...
1,643,711,719
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
s = input() t=input() cnt=0 for x in range(len(s)+len(t),0,-1): if s[x]==t[x]: cnt+=1 else: break print(len(s)+len(t)-2*cnt)
Title: Delete from the Left Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two strings $s$ and $t$. In a single move, you can choose any of two strings and delete the first (that is, the leftmost) character. After a move, the length of the string decreases by $1$. You can't ...
```python s = input() t=input() cnt=0 for x in range(len(s)+len(t),0,-1): if s[x]==t[x]: cnt+=1 else: break print(len(s)+len(t)-2*cnt) ```
-1
923
B
Producing Snow
PROGRAMMING
1,600
[ "binary search", "data structures" ]
null
null
Alice likes snow a lot! Unfortunately, this year's winter is already over, and she can't expect to have any more of it. Bob has thus bought her a gift — a large snow maker. He plans to make some amount of snow every day. On day *i* he will make a pile of snow of volume *V**i* and put it in her garden. Each day, every ...
The first line contains a single integer *N* (1<=≤<=*N*<=≤<=105) — the number of days. The second line contains *N* integers *V*1,<=*V*2,<=...,<=*V**N* (0<=≤<=*V**i*<=≤<=109), where *V**i* is the initial size of a snow pile made on the day *i*. The third line contains *N* integers *T*1,<=*T*2,<=...,<=*T**N* (0<=≤<=*...
Output a single line with *N* integers, where the *i*-th integer represents the total volume of snow melted on day *i*.
[ "3\n10 10 5\n5 7 2\n", "5\n30 25 20 15 10\n9 10 12 4 13\n" ]
[ "5 12 4\n", "9 20 35 11 25\n" ]
In the first sample, Bob first makes a snow pile of volume 10, which melts to the size of 5 on the same day. On the second day, he makes another pile of size 10. Since it is a bit warmer than the day before, the first pile disappears completely while the second pile shrinks to 3. At the end of the second day, he has on...
1,000
[ { "input": "3\n10 10 5\n5 7 2", "output": "5 12 4" }, { "input": "5\n30 25 20 15 10\n9 10 12 4 13", "output": "9 20 35 11 25" }, { "input": "4\n0 0 0 0\n1 2 3 4", "output": "0 0 0 0" }, { "input": "10\n11 39 16 34 25 3 12 11 31 16\n10 0 4 9 8 9 7 8 9 2", "output": "10 0 9...
1,520,697,987
1,887
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
3
1,000
15,360,000
# -*- coding: utf-8 -*- """ Created on Sat Mar 10 18:46:55 2018 @author: timpl """ n = int(input()) V = list(map(int, input().split())) T = list(map(int, input().split())) tae = [] su = 0 for i in range(0, n): su = 0 for j in range(0, i + 1): if (V[j] >= T[i]): V[j] -= T[i]...
Title: Producing Snow Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alice likes snow a lot! Unfortunately, this year's winter is already over, and she can't expect to have any more of it. Bob has thus bought her a gift — a large snow maker. He plans to make some amount of snow every day....
```python # -*- coding: utf-8 -*- """ Created on Sat Mar 10 18:46:55 2018 @author: timpl """ n = int(input()) V = list(map(int, input().split())) T = list(map(int, input().split())) tae = [] su = 0 for i in range(0, n): su = 0 for j in range(0, i + 1): if (V[j] >= T[i]): V[...
0
688
A
Opponents
PROGRAMMING
800
[ "implementation" ]
null
null
Arya has *n* opponents in the school. Each day he will fight with all opponents who are present this day. His opponents have some fighting plan that guarantees they will win, but implementing this plan requires presence of them all. That means if one day at least one of Arya's opponents is absent at the school, then Ar...
The first line of the input contains two integers *n* and *d* (1<=≤<=*n*,<=*d*<=≤<=100) — the number of opponents and the number of days, respectively. The *i*-th of the following *d* lines contains a string of length *n* consisting of characters '0' and '1'. The *j*-th character of this string is '0' if the *j*-th op...
Print the only integer — the maximum number of consecutive days that Arya will beat all present opponents.
[ "2 2\n10\n00\n", "4 1\n0100\n", "4 5\n1101\n1111\n0110\n1011\n1111\n" ]
[ "2\n", "1\n", "2\n" ]
In the first and the second samples, Arya will beat all present opponents each of the *d* days. In the third sample, Arya will beat his opponents on days 1, 3 and 4 and his opponents will beat him on days 2 and 5. Thus, the maximum number of consecutive winning days is 2, which happens on days 3 and 4.
500
[ { "input": "2 2\n10\n00", "output": "2" }, { "input": "4 1\n0100", "output": "1" }, { "input": "4 5\n1101\n1111\n0110\n1011\n1111", "output": "2" }, { "input": "3 2\n110\n110", "output": "2" }, { "input": "10 6\n1111111111\n0100110101\n1111111111\n0000011010\n1111...
1,593,539,857
2,147,483,647
Python 3
OK
TESTS
56
109
0
m,n=map(int,input().split()) l=[] c=0 for i in range(n): s=input() if(s.count('1')<m): c=c+1 else: l.append(c) c=0 l.append(c) print(max(l))
Title: Opponents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Arya has *n* opponents in the school. Each day he will fight with all opponents who are present this day. His opponents have some fighting plan that guarantees they will win, but implementing this plan requires presence of th...
```python m,n=map(int,input().split()) l=[] c=0 for i in range(n): s=input() if(s.count('1')<m): c=c+1 else: l.append(c) c=0 l.append(c) print(max(l)) ```
3
146
A
Lucky Ticket
PROGRAMMING
800
[ "implementation" ]
null
null
Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya loves tickets very much. As we know, each ticket has a number that is a positive integer. It...
The first line contains an even integer *n* (2<=≤<=*n*<=≤<=50) — the length of the ticket number that needs to be checked. The second line contains an integer whose length equals exactly *n* — the ticket number. The number may contain leading zeros.
On the first line print "YES" if the given ticket number is lucky. Otherwise, print "NO" (without the quotes).
[ "2\n47\n", "4\n4738\n", "4\n4774\n" ]
[ "NO\n", "NO\n", "YES\n" ]
In the first sample the sum of digits in the first half does not equal the sum of digits in the second half (4 ≠ 7). In the second sample the ticket number is not the lucky number.
500
[ { "input": "2\n47", "output": "NO" }, { "input": "4\n4738", "output": "NO" }, { "input": "4\n4774", "output": "YES" }, { "input": "4\n4570", "output": "NO" }, { "input": "6\n477477", "output": "YES" }, { "input": "6\n777777", "output": "YES" }, ...
1,640,033,832
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
62
0
n = int(input()) s = input() if s.count('4') + s.count('7') == n: if sum(list(map(int, list(s[0:n//2])))) == sum(list(map(int, list(s[n//2:])))): print("YES") else: print('NO')
Title: Lucky Ticket Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python n = int(input()) s = input() if s.count('4') + s.count('7') == n: if sum(list(map(int, list(s[0:n//2])))) == sum(list(map(int, list(s[n//2:])))): print("YES") else: print('NO') ```
0
349
A
Cinema Line
PROGRAMMING
1,100
[ "greedy", "implementation" ]
null
null
The new "Die Hard" movie has just been released! There are *n* people at the cinema box office standing in a huge line. Each of them has a single 100, 50 or 25 ruble bill. A "Die Hard" ticket costs 25 rubles. Can the booking clerk sell a ticket to each person and give the change if he initially has no money and sells t...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of people in the line. The next line contains *n* integers, each of them equals 25, 50 or 100 — the values of the bills the people have. The numbers are given in the order from the beginning of the line (at the box office) to the end of the line.
Print "YES" (without the quotes) if the booking clerk can sell a ticket to each person and give the change. Otherwise print "NO".
[ "4\n25 25 50 50\n", "2\n25 100\n", "4\n50 50 25 25\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "4\n25 25 50 50", "output": "YES" }, { "input": "2\n25 100", "output": "NO" }, { "input": "4\n50 50 25 25", "output": "NO" }, { "input": "3\n25 50 100", "output": "NO" }, { "input": "10\n25 25 25 25 25 25 25 25 25 25", "output": "YES" }, { "...
1,652,985,218
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
12
186
9,830,400
n = int(input()) row = list(map(int, input().split())) a, b= 0, 0 money = True for num in row: change = num - 25 if change == 25: if a == 0: money = False break a -= 1 elif change == 75: if a == 0 or b == 0: money = False ...
Title: Cinema Line Time Limit: None seconds Memory Limit: None megabytes Problem Description: The new "Die Hard" movie has just been released! There are *n* people at the cinema box office standing in a huge line. Each of them has a single 100, 50 or 25 ruble bill. A "Die Hard" ticket costs 25 rubles. Can the bookin...
```python n = int(input()) row = list(map(int, input().split())) a, b= 0, 0 money = True for num in row: change = num - 25 if change == 25: if a == 0: money = False break a -= 1 elif change == 75: if a == 0 or b == 0: money = False ...
0
620
B
Grandfather Dovlet’s calculator
PROGRAMMING
1,000
[ "implementation" ]
null
null
Once Max found an electronic calculator from his grandfather Dovlet's chest. He noticed that the numbers were written with seven-segment indicators ([https://en.wikipedia.org/wiki/Seven-segment_display](https://en.wikipedia.org/wiki/Seven-segment_display)). Max starts to type all the values from *a* to *b*. After typi...
The only line contains two integers *a*,<=*b* (1<=≤<=*a*<=≤<=*b*<=≤<=106) — the first and the last number typed by Max.
Print the only integer *a* — the total number of printed segments.
[ "1 3\n", "10 15\n" ]
[ "12\n", "39\n" ]
none
0
[ { "input": "1 3", "output": "12" }, { "input": "10 15", "output": "39" }, { "input": "1 100", "output": "928" }, { "input": "100 10000", "output": "188446" }, { "input": "213 221442", "output": "5645356" }, { "input": "1 1000000", "output": "287333...
1,503,254,354
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
0
v = [8,2,5,5,4,5,6,3,7,6] p = input() p = p.split(' ') answer = 0 for k in range(int(p[0]),int(p[1])+1,1): for q in str(k): answer += int(v[int(q)]) print(answer)
Title: Grandfather Dovlet’s calculator Time Limit: None seconds Memory Limit: None megabytes Problem Description: Once Max found an electronic calculator from his grandfather Dovlet's chest. He noticed that the numbers were written with seven-segment indicators ([https://en.wikipedia.org/wiki/Seven-segment_display](...
```python v = [8,2,5,5,4,5,6,3,7,6] p = input() p = p.split(' ') answer = 0 for k in range(int(p[0]),int(p[1])+1,1): for q in str(k): answer += int(v[int(q)]) print(answer) ```
0
277
A
Learning Languages
PROGRAMMING
1,400
[ "dfs and similar", "dsu" ]
null
null
The "BerCorp" company has got *n* employees. These employees can use *m* approved official languages for the formal correspondence. The languages are numbered with integers from 1 to *m*. For each employee we have the list of languages, which he knows. This list could be empty, i. e. an employee may know no official la...
The first line contains two integers *n* and *m* (2<=≤<=*n*,<=*m*<=≤<=100) — the number of employees and the number of languages. Then *n* lines follow — each employee's language list. At the beginning of the *i*-th line is integer *k**i* (0<=≤<=*k**i*<=≤<=*m*) — the number of languages the *i*-th employee knows. Next...
Print a single integer — the minimum amount of money to pay so that in the end every employee could write a letter to every other one (other employees can help out translating).
[ "5 5\n1 2\n2 2 3\n2 3 4\n2 4 5\n1 5\n", "8 7\n0\n3 1 2 3\n1 1\n2 5 4\n2 6 7\n1 3\n2 7 4\n1 1\n", "2 2\n1 2\n0\n" ]
[ "0\n", "2\n", "1\n" ]
In the second sample the employee 1 can learn language 2, and employee 8 can learn language 4. In the third sample employee 2 must learn language 2.
500
[ { "input": "5 5\n1 2\n2 2 3\n2 3 4\n2 4 5\n1 5", "output": "0" }, { "input": "8 7\n0\n3 1 2 3\n1 1\n2 5 4\n2 6 7\n1 3\n2 7 4\n1 1", "output": "2" }, { "input": "2 2\n1 2\n0", "output": "1" }, { "input": "2 2\n0\n0", "output": "2" }, { "input": "5 5\n1 3\n0\n0\n2 4...
1,647,437,869
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
def dfs_recursive(graph, node, seen): #print node seen[node]=True for neighbor in graph[node]: if not seen[neighbor]: #print neighbor dfs_recursive(graph,neighbor,seen) n,m=map(int,input().split()) g=[[]for _ in range (n)] t=[[]for _ in range (n)] for i in range (n): ch=input() t[i].append()...
Title: Learning Languages Time Limit: None seconds Memory Limit: None megabytes Problem Description: The "BerCorp" company has got *n* employees. These employees can use *m* approved official languages for the formal correspondence. The languages are numbered with integers from 1 to *m*. For each employee we have th...
```python def dfs_recursive(graph, node, seen): #print node seen[node]=True for neighbor in graph[node]: if not seen[neighbor]: #print neighbor dfs_recursive(graph,neighbor,seen) n,m=map(int,input().split()) g=[[]for _ in range (n)] t=[[]for _ in range (n)] for i in range (n): ch=input() t[i...
-1
609
A
USB Flash Drives
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
Sean is trying to save a large file to a USB flash drive. He has *n* USB flash drives with capacities equal to *a*1,<=*a*2,<=...,<=*a**n* megabytes. The file size is equal to *m* megabytes. Find the minimum number of USB flash drives needed to write Sean's file, if he can split the file between drives.
The first line contains positive integer *n* (1<=≤<=*n*<=≤<=100) — the number of USB flash drives. The second line contains positive integer *m* (1<=≤<=*m*<=≤<=105) — the size of Sean's file. Each of the next *n* lines contains positive integer *a**i* (1<=≤<=*a**i*<=≤<=1000) — the sizes of USB flash drives in megabyt...
Print the minimum number of USB flash drives to write Sean's file, if he can split the file between drives.
[ "3\n5\n2\n1\n3\n", "3\n6\n2\n3\n2\n", "2\n5\n5\n10\n" ]
[ "2\n", "3\n", "1\n" ]
In the first example Sean needs only two USB flash drives — the first and the third. In the second example Sean needs all three USB flash drives. In the third example Sean needs only one USB flash drive and he can use any available USB flash drive — the first or the second.
0
[ { "input": "3\n5\n2\n1\n3", "output": "2" }, { "input": "3\n6\n2\n3\n2", "output": "3" }, { "input": "2\n5\n5\n10", "output": "1" }, { "input": "5\n16\n8\n1\n3\n4\n9", "output": "2" }, { "input": "10\n121\n10\n37\n74\n56\n42\n39\n6\n68\n8\n100", "output": "2" ...
1,567,814,183
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
93
0
num = input() file = int(input()) sizes = [] for i in range(int(num)): size = input() sizes.append(int(size)) sizes = sorted(sizes, reverse=True) count = 0 for size in sizes: file -= size if file < 0: break else: count += 1 print(count)
Title: USB Flash Drives Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sean is trying to save a large file to a USB flash drive. He has *n* USB flash drives with capacities equal to *a*1,<=*a*2,<=...,<=*a**n* megabytes. The file size is equal to *m* megabytes. Find the minimum number of...
```python num = input() file = int(input()) sizes = [] for i in range(int(num)): size = input() sizes.append(int(size)) sizes = sorted(sizes, reverse=True) count = 0 for size in sizes: file -= size if file < 0: break else: count += 1 print(count) ...
0
858
A
k-rounding
PROGRAMMING
1,100
[ "brute force", "math", "number theory" ]
null
null
For a given positive integer *n* denote its *k*-rounding as the minimum positive integer *x*, such that *x* ends with *k* or more zeros in base 10 and is divisible by *n*. For example, 4-rounding of 375 is 375·80<==<=30000. 30000 is the minimum integer such that it ends with 4 or more zeros and is divisible by 375. W...
The only line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=109, 0<=≤<=*k*<=≤<=8).
Print the *k*-rounding of *n*.
[ "375 4\n", "10000 1\n", "38101 0\n", "123456789 8\n" ]
[ "30000\n", "10000\n", "38101\n", "12345678900000000\n" ]
none
750
[ { "input": "375 4", "output": "30000" }, { "input": "10000 1", "output": "10000" }, { "input": "38101 0", "output": "38101" }, { "input": "123456789 8", "output": "12345678900000000" }, { "input": "1 0", "output": "1" }, { "input": "2 0", "output":...
1,600,960,918
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
124
0
from math import gcd a,b=map(int,input().split()) print(a*10*b//gcd(a,10*b))
Title: k-rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: For a given positive integer *n* denote its *k*-rounding as the minimum positive integer *x*, such that *x* ends with *k* or more zeros in base 10 and is divisible by *n*. For example, 4-rounding of 375 is 375·80<==<=30000....
```python from math import gcd a,b=map(int,input().split()) print(a*10*b//gcd(a,10*b)) ```
0
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,528,287,660
2,147,483,647
Python 3
OK
TESTS
106
280
10,956,800
x=input() x=int(x) if 0<x<200001: randVar=1 else: print('No. of days cannot be greater than 200000') exit() ashu=input().split() while x>0: x=x-1 ashu[x]=int(ashu[x]) if 0<ashu[x]<10001: randVar1=1 else: print('No. of assignment cannot be greater than 10000') ...
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 x=input() x=int(x) if 0<x<200001: randVar=1 else: print('No. of days cannot be greater than 200000') exit() ashu=input().split() while x>0: x=x-1 ashu[x]=int(ashu[x]) if 0<ashu[x]<10001: randVar1=1 else: print('No. of assignment cannot be greater than ...
3
0
none
none
none
0
[ "none" ]
null
null
The GCD table *G* of size *n*<=×<=*n* for an array of positive integers *a* of length *n* is defined by formula Let us remind you that the greatest common divisor (GCD) of two positive integers *x* and *y* is the greatest integer that is divisor of both *x* and *y*, it is denoted as . For example, for array *a*<==<={...
The first line contains number *n* (1<=≤<=*n*<=≤<=500) — the length of array *a*. The second line contains *n*2 space-separated numbers — the elements of the GCD table of *G* for array *a*. All the numbers in the table are positive integers, not exceeding 109. Note that the elements are given in an arbitrary order. I...
In the single line print *n* positive integers — the elements of array *a*. If there are multiple possible solutions, you are allowed to print any of them.
[ "4\n2 1 2 3 4 3 2 6 1 1 2 2 1 2 3 2\n", "1\n42\n", "2\n1 1 1 1\n" ]
[ "4 3 6 2", "42 ", "1 1 " ]
none
0
[ { "input": "4\n2 1 2 3 4 3 2 6 1 1 2 2 1 2 3 2", "output": "2 3 4 6 " }, { "input": "1\n42", "output": "42 " }, { "input": "2\n1 1 1 1", "output": "1 1 " }, { "input": "2\n54748096 1 641009859 1", "output": "54748096 641009859 " }, { "input": "3\n1 7 923264237 374...
1,443,894,506
3,806
Python 3
TIME_LIMIT_EXCEEDED
PRETESTS
6
2,000
4,710,400
n=int(input()) a=list(map(int,input().split())) s=[] m=[] for i in a: k=a.count(i) if (not(i in s))and(k%2==1): s.append(i) if not((k,i) in m): m.append((k,i)) k=n-len(s) m.sort(reverse=1) for i in range(k): s.append(m[0][1]) for i in s: print(i,end=' ')
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: The GCD table *G* of size *n*<=×<=*n* for an array of positive integers *a* of length *n* is defined by formula Let us remind you that the greatest common divisor (GCD) of two positive integers *x* and *y* is the greatest intege...
```python n=int(input()) a=list(map(int,input().split())) s=[] m=[] for i in a: k=a.count(i) if (not(i in s))and(k%2==1): s.append(i) if not((k,i) in m): m.append((k,i)) k=n-len(s) m.sort(reverse=1) for i in range(k): s.append(m[0][1]) for i in s: print(i,end=' ') ```
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,508,592,439
2,147,483,647
Python 3
OK
TESTS
40
62
5,529,600
a=input() b=a.lower() x=0 if 1<=len(a)<=100 and a==b: while x<len(a): if a[x]=='h': break x=x+1 if x==len(a): print('NO') break y=x+1 if y==len(a): print('NO') while y<len(a): if a[y]=='e': break ...
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 a=input() b=a.lower() x=0 if 1<=len(a)<=100 and a==b: while x<len(a): if a[x]=='h': break x=x+1 if x==len(a): print('NO') break y=x+1 if y==len(a): print('NO') while y<len(a): if a[y]=='e': ...
3.9587
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,943,870
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
31
0
n = int(input()) Max = input() ruth = list(map(str , input().split())) count = 0 for i in range(n): ruth01 = ruth[i] m = len(ruth01) for j in range(m): if ruth01[j] == Max: count = count + 1 print(count)
Title: Good Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number eve...
```python n = int(input()) Max = input() ruth = list(map(str , input().split())) count = 0 for i in range(n): ruth01 = ruth[i] m = len(ruth01) for j in range(m): if ruth01[j] == Max: count = count + 1 print(count) ```
-1
558
A
Lala Land and Apple Trees
PROGRAMMING
1,100
[ "brute force", "implementation", "sortings" ]
null
null
Amr lives in Lala Land. Lala Land is a very beautiful country that is located on a coordinate line. Lala Land is famous with its apple trees growing everywhere. Lala Land has exactly *n* apple trees. Tree number *i* is located in a position *x**i* and has *a**i* apples growing on it. Amr wants to collect apples from t...
The first line contains one number *n* (1<=≤<=*n*<=≤<=100), the number of apple trees in Lala Land. The following *n* lines contains two integers each *x**i*, *a**i* (<=-<=105<=≤<=*x**i*<=≤<=105, *x**i*<=≠<=0, 1<=≤<=*a**i*<=≤<=105), representing the position of the *i*-th tree and number of apples on it. It's guarant...
Output the maximum number of apples Amr can collect.
[ "2\n-1 5\n1 5\n", "3\n-2 2\n1 4\n-1 3\n", "3\n1 9\n3 5\n7 10\n" ]
[ "10", "9", "9" ]
In the first sample test it doesn't matter if Amr chose at first to go left or right. In both cases he'll get all the apples. In the second sample test the optimal solution is to go left to *x* =  - 1, collect apples from there, then the direction will be reversed, Amr has to go to *x* = 1, collect apples from there, ...
500
[ { "input": "2\n-1 5\n1 5", "output": "10" }, { "input": "3\n-2 2\n1 4\n-1 3", "output": "9" }, { "input": "3\n1 9\n3 5\n7 10", "output": "9" }, { "input": "1\n1 1", "output": "1" }, { "input": "4\n10000 100000\n-1000 100000\n-2 100000\n-1 100000", "output": "3...
1,610,041,061
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
93
307,200
n=int(input()) dic={} nl=[] pl=[] finalsum=0 while n: n-=1 x,a=map(int,input().split()) finalsum+=a dic[x]=a if x <0: nl.append(x) else: pl.append(x) nl.sort() pl.sort() ans=0 if len(pl) >len(nl): for i in range(len(nl)+1): ans +=dic[pl[i]] ...
Title: Lala Land and Apple Trees Time Limit: None seconds Memory Limit: None megabytes Problem Description: Amr lives in Lala Land. Lala Land is a very beautiful country that is located on a coordinate line. Lala Land is famous with its apple trees growing everywhere. Lala Land has exactly *n* apple trees. Tree num...
```python n=int(input()) dic={} nl=[] pl=[] finalsum=0 while n: n-=1 x,a=map(int,input().split()) finalsum+=a dic[x]=a if x <0: nl.append(x) else: pl.append(x) nl.sort() pl.sort() ans=0 if len(pl) >len(nl): for i in range(len(nl)+1): ans +=dic[pl[i]...
0
1
A
Theatre Square
PROGRAMMING
1,000
[ "math" ]
A. Theatre Square
1
256
Theatre Square in the capital city of Berland has a rectangular shape with the size *n*<=×<=*m* meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size *a*<=×<=*a*. What is the least number of flagstones needed to pave the...
The input contains three positive integer numbers in the first line: *n*,<=<=*m* and *a* (1<=≤<=<=*n*,<=*m*,<=*a*<=≤<=109).
Write the needed number of flagstones.
[ "6 6 4\n" ]
[ "4\n" ]
none
0
[ { "input": "6 6 4", "output": "4" }, { "input": "1 1 1", "output": "1" }, { "input": "2 1 1", "output": "2" }, { "input": "1 2 1", "output": "2" }, { "input": "2 2 1", "output": "4" }, { "input": "2 1 2", "output": "1" }, { "input": "1 1 3"...
1,663,617,991
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
n=int(input()) m=int(input()) a=int(input()) x=(n*m)/(a*a) if(x.is_integer()): print(x) else: print((int(n/a)+1)*(int(m/a)+1))
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 n=int(input()) m=int(input()) a=int(input()) x=(n*m)/(a*a) if(x.is_integer()): print(x) else: print((int(n/a)+1)*(int(m/a)+1)) ```
-1
476
A
Dreamoon and Stairs
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Dreamoon wants to climb up a stair of *n* steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer *m*. What is the minimal number of moves making him climb to the top of the stairs that satisfies his condition?
The single line contains two space separated integers *n*, *m* (0<=&lt;<=*n*<=≤<=10000,<=1<=&lt;<=*m*<=≤<=10).
Print a single integer — the minimal number of moves being a multiple of *m*. If there is no way he can climb satisfying condition print <=-<=1 instead.
[ "10 2\n", "3 5\n" ]
[ "6\n", "-1\n" ]
For the first sample, Dreamoon could climb in 6 moves with following sequence of steps: {2, 2, 2, 2, 1, 1}. For the second sample, there are only three valid sequence of steps {2, 1}, {1, 2}, {1, 1, 1} with 2, 2, and 3 steps respectively. All these numbers are not multiples of 5.
500
[ { "input": "10 2", "output": "6" }, { "input": "3 5", "output": "-1" }, { "input": "29 7", "output": "21" }, { "input": "2 2", "output": "2" }, { "input": "1 2", "output": "-1" }, { "input": "10000 2", "output": "5000" }, { "input": "10000 ...
1,689,699,393
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
0
n, m = map(int, input().split()) if n < m or n % (2 * m) == 0: min_moves = n // 2 elif n % (2 * m) <= m: min_moves = (n + m - 1) // (2 * m) else: min_moves = (n + m) // (2 * m) if min_moves * m > n: min_moves = -1 print(min_moves)
Title: Dreamoon and Stairs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dreamoon wants to climb up a stair of *n* steps. He can climb 1 or 2 steps at each move. Dreamoon wants the number of moves to be a multiple of an integer *m*. What is the minimal number of moves making him climb ...
```python n, m = map(int, input().split()) if n < m or n % (2 * m) == 0: min_moves = n // 2 elif n % (2 * m) <= m: min_moves = (n + m - 1) // (2 * m) else: min_moves = (n + m) // (2 * m) if min_moves * m > n: min_moves = -1 print(min_moves) ```
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,689,740,296
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
n=int(input()) for i in range(n): if(n%i==0): count=count+1 if(count>=2): print('Yes') break else: count=count if(count<2): prin...
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 n=int(input()) for i in range(n): if(n%i==0): count=count+1 if(count>=2): print('Yes') break else: count=count if(count<2): ...
-1
600
B
Queries about less or equal elements
PROGRAMMING
1,300
[ "binary search", "data structures", "sortings", "two pointers" ]
null
null
You are given two arrays of integers *a* and *b*. For each element of the second array *b**j* you should find the number of elements in array *a* that are less than or equal to the value *b**j*.
The first line contains two integers *n*,<=*m* (1<=≤<=*n*,<=*m*<=≤<=2·105) — the sizes of arrays *a* and *b*. The second line contains *n* integers — the elements of array *a* (<=-<=109<=≤<=*a**i*<=≤<=109). The third line contains *m* integers — the elements of array *b* (<=-<=109<=≤<=*b**j*<=≤<=109).
Print *m* integers, separated by spaces: the *j*-th of which is equal to the number of such elements in array *a* that are less than or equal to the value *b**j*.
[ "5 4\n1 3 5 7 9\n6 4 2 8\n", "5 5\n1 2 1 2 5\n3 1 4 1 5\n" ]
[ "3 2 1 4\n", "4 2 4 2 5\n" ]
none
0
[ { "input": "5 4\n1 3 5 7 9\n6 4 2 8", "output": "3 2 1 4" }, { "input": "5 5\n1 2 1 2 5\n3 1 4 1 5", "output": "4 2 4 2 5" }, { "input": "1 1\n-1\n-2", "output": "0" }, { "input": "1 1\n-80890826\n686519510", "output": "1" }, { "input": "11 11\n237468511 -77918754...
1,649,013,321
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
n,m = input().split() n,m = int(n),int(m) a = list(map(int,input().split())) b = list(map(int,input().split())) print(a) a.sort() for i in b: l = 0 r = n-1 x = i while l <= r: mid = (r+l//2) if a[mid] <= x: l = mid + 1 else: r = mid - 1 ...
Title: Queries about less or equal elements Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two arrays of integers *a* and *b*. For each element of the second array *b**j* you should find the number of elements in array *a* that are less than or equal to the value *b**j*. In...
```python n,m = input().split() n,m = int(n),int(m) a = list(map(int,input().split())) b = list(map(int,input().split())) print(a) a.sort() for i in b: l = 0 r = n-1 x = i while l <= r: mid = (r+l//2) if a[mid] <= x: l = mid + 1 else: r = mi...
0
246
B
Increase and Decrease
PROGRAMMING
1,300
[ "greedy", "math" ]
null
null
Polycarpus has an array, consisting of *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Polycarpus likes it when numbers in an array match. That's why he wants the array to have as many equal numbers as possible. For that Polycarpus performs the following operation multiple times: - he chooses two elements of the array *a**i...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the array size. The second line contains space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (|*a**i*|<=≤<=104) — the original array.
Print a single integer — the maximum number of equal array elements he can get if he performs an arbitrary number of the given operation.
[ "2\n2 1\n", "3\n1 4 1\n" ]
[ "1\n", "3\n" ]
none
1,000
[ { "input": "2\n2 1", "output": "1" }, { "input": "3\n1 4 1", "output": "3" }, { "input": "4\n2 -7 -2 -6", "output": "3" }, { "input": "4\n2 0 -2 -1", "output": "3" }, { "input": "6\n-1 1 0 0 -1 -1", "output": "5" }, { "input": "5\n0 0 0 0 0", "outp...
1,628,182,772
2,147,483,647
Python 3
OK
TESTS
30
186
10,240,000
a=input() b=list(map(int,input().split())) c=sum(b) d=c//len(b) def ok(): if c%len(b)==0: return len(b) else: return len(b)-1 print(ok())
Title: Increase and Decrease Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has an array, consisting of *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Polycarpus likes it when numbers in an array match. That's why he wants the array to have as many equal numbers as possible. For that...
```python a=input() b=list(map(int,input().split())) c=sum(b) d=c//len(b) def ok(): if c%len(b)==0: return len(b) else: return len(b)-1 print(ok()) ```
3
520
A
Pangram
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices. You are given a string consisting of lowercase and uppercase Latin letters. Check whether thi...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of characters in the string. The second line contains the string. The string consists only of uppercase and lowercase Latin letters.
Output "YES", if the string is a pangram and "NO" otherwise.
[ "12\ntoosmallword\n", "35\nTheQuickBrownFoxJumpsOverTheLazyDog\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "12\ntoosmallword", "output": "NO" }, { "input": "35\nTheQuickBrownFoxJumpsOverTheLazyDog", "output": "YES" }, { "input": "1\na", "output": "NO" }, { "input": "26\nqwertyuiopasdfghjklzxcvbnm", "output": "YES" }, { "input": "26\nABCDEFGHIJKLMNOPQRSTUVWXY...
1,696,401,739
2,147,483,647
Python 3
OK
TESTS
59
46
0
x=int(input()) s=input() s=s.lower() a=[] for i in s: if i not in a: a.append(i) elif i in a: continue if len(a)==26: print("YES") else: print("NO")
Title: Pangram Time Limit: None seconds Memory Limit: None megabytes Problem Description: A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices. ...
```python x=int(input()) s=input() s=s.lower() a=[] for i in s: if i not in a: a.append(i) elif i in a: continue if len(a)==26: print("YES") else: print("NO") ```
3
157
B
Trace
PROGRAMMING
1,000
[ "geometry", "sortings" ]
null
null
One day, as Sherlock Holmes was tracking down one very important criminal, he found a wonderful painting on the wall. This wall could be represented as a plane. The painting had several concentric circles that divided the wall into several parts. Some parts were painted red and all the other were painted blue. Besides,...
The first line contains the single integer *n* (1<=≤<=*n*<=≤<=100). The second line contains *n* space-separated integers *r**i* (1<=≤<=*r**i*<=≤<=1000) — the circles' radii. It is guaranteed that all circles are different.
Print the single real number — total area of the part of the wall that is painted red. The answer is accepted if absolute or relative error doesn't exceed 10<=-<=4.
[ "1\n1\n", "3\n1 4 2\n" ]
[ "3.1415926536\n", "40.8407044967\n" ]
In the first sample the picture is just one circle of radius 1. Inner part of the circle is painted red. The area of the red part equals π × 1<sup class="upper-index">2</sup> = π. In the second sample there are three circles of radii 1, 4 and 2. Outside part of the second circle is painted blue. Part between the secon...
1,000
[ { "input": "1\n1", "output": "3.1415926536" }, { "input": "3\n1 4 2", "output": "40.8407044967" }, { "input": "4\n4 1 3 2", "output": "31.4159265359" }, { "input": "4\n100 10 2 1", "output": "31111.1920484997" }, { "input": "10\n10 9 8 7 6 5 4 3 2 1", "output"...
1,655,239,163
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
124
0
import math n = int(input()) rads = list(map(int, input().split())) reds = 0 rads.sort() if not(n % 2): rads.pop() turn = 0 while rads: r = rads.pop() if not (turn % 2): reds += r ** 2 * math.pi else: reds -= r ** 2 * math.pi turn += 1 print(reds)
Title: Trace Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day, as Sherlock Holmes was tracking down one very important criminal, he found a wonderful painting on the wall. This wall could be represented as a plane. The painting had several concentric circles that divided the wall in...
```python import math n = int(input()) rads = list(map(int, input().split())) reds = 0 rads.sort() if not(n % 2): rads.pop() turn = 0 while rads: r = rads.pop() if not (turn % 2): reds += r ** 2 * math.pi else: reds -= r ** 2 * math.pi turn += 1 print(reds) ```
0
186
A
Comparing Strings
PROGRAMMING
1,100
[ "implementation", "strings" ]
null
null
Some dwarves that are finishing the StUDY (State University for Dwarven Youngsters) Bachelor courses, have been told "no genome, no degree". That means that all dwarves should write a thesis on genome. Dwarven genome is far from simple. It is represented by a string that consists of lowercase Latin letters. Dwarf Mish...
The first line contains the first dwarf's genome: a non-empty string, consisting of lowercase Latin letters. The second line contains the second dwarf's genome: a non-empty string, consisting of lowercase Latin letters. The number of letters in each genome doesn't exceed 105. It is guaranteed that the strings that co...
Print "YES", if the dwarves belong to the same race. Otherwise, print "NO".
[ "ab\nba\n", "aa\nab\n" ]
[ "YES\n", "NO\n" ]
- First example: you can simply swap two letters in string "ab". So we get "ba". - Second example: we can't change string "aa" into string "ab", because "aa" does not contain letter "b".
500
[ { "input": "ab\nba", "output": "YES" }, { "input": "aa\nab", "output": "NO" }, { "input": "a\nza", "output": "NO" }, { "input": "vvea\nvvae", "output": "YES" }, { "input": "rtfabanpc\natfabrnpc", "output": "YES" }, { "input": "mt\ntm", "output": "Y...
1,608,735,896
2,147,483,647
PyPy 3
OK
TESTS
53
312
2,560,000
from sys import stdin as sin def gint():return int(sin.readline()) def gmap():return map(int,sin.readline().split()) def glist():return list(map(int,sin.readline().split())) def gstr():return sin.readline() s1 = input() s2 = input() d1={} d2={} for i in range(97,123): d1[chr(i)]=0 d2[chr(i)]=0 ...
Title: Comparing Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Some dwarves that are finishing the StUDY (State University for Dwarven Youngsters) Bachelor courses, have been told "no genome, no degree". That means that all dwarves should write a thesis on genome. Dwarven genome ...
```python from sys import stdin as sin def gint():return int(sin.readline()) def gmap():return map(int,sin.readline().split()) def glist():return list(map(int,sin.readline().split())) def gstr():return sin.readline() s1 = input() s2 = input() d1={} d2={} for i in range(97,123): d1[chr(i)]=0 d2[ch...
3
31
B
Sysadmin Bob
PROGRAMMING
1,500
[ "greedy", "implementation", "strings" ]
B. Sysadmin Bob
0
256
Email address in Berland is a string of the form *A*@*B*, where *A* and *B* are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list of email addresses of the company's staff. This list is as a large string, where all addresses are written in arbitra...
The first line contains the list of addresses without separators. The length of this string is between 1 and 200, inclusive. The string consists only from small Latin letters and characters «@».
If there is no list of the valid (according to the Berland rules) email addresses such that after removing all commas it coincides with the given string, output No solution. In the other case, output the list. The same address can be written in this list more than once. If there are several solutions, output any of the...
[ "a@aa@a\n", "a@a@a\n", "@aa@a\n" ]
[ "a@a,a@a\n", "No solution\n", "No solution\n" ]
none
1,000
[ { "input": "a@aa@a", "output": "a@a,a@a" }, { "input": "a@a@a", "output": "No solution" }, { "input": "@aa@a", "output": "No solution" }, { "input": "aba@caba@daba", "output": "aba@c,aba@daba" }, { "input": "asd@qwasd@qwasd@qwasd@qwasd@qw", "output": "asd@q,wa...
1,607,961,514
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
124
0
s=input() x="" c=True if(s[0]=="@" or s[len(s)-1]=="@"): print("No solution") else: i=0 l=0 while(i<len(s)): if(s[i]=="@" and l==1): x+=s[i]+s[i+1]+"," i+=2 l=0 elif(l==0 and s[i]!="@"): l=1 x+=s[i] i...
Title: Sysadmin Bob Time Limit: 0 seconds Memory Limit: 256 megabytes Problem Description: Email address in Berland is a string of the form *A*@*B*, where *A* and *B* are arbitrary strings consisting of small Latin letters. Bob is a system administrator in «Bersoft» company. He keeps a list of email addresses of t...
```python s=input() x="" c=True if(s[0]=="@" or s[len(s)-1]=="@"): print("No solution") else: i=0 l=0 while(i<len(s)): if(s[i]=="@" and l==1): x+=s[i]+s[i+1]+"," i+=2 l=0 elif(l==0 and s[i]!="@"): l=1 x+=s[i] ...
0
397
A
On Segment's Own Points
PROGRAMMING
0
[ "implementation" ]
null
null
Our old friend Alexey has finally entered the University of City N — the Berland capital. Alexey expected his father to get him a place to live in but his father said it was high time for Alexey to practice some financial independence. So, Alexey is living in a dorm. The dorm has exactly one straight dryer — a 100 ce...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100). The (*i*<=+<=1)-th line contains integers *l**i* and *r**i* (0<=≤<=*l**i*<=&lt;<=*r**i*<=≤<=100) — the endpoints of the corresponding segment for the *i*-th student.
On a single line print a single number *k*, equal to the sum of lengths of the parts of the dryer which are inside Alexey's segment and are outside all other segments.
[ "3\n0 5\n2 8\n1 6\n", "3\n0 10\n1 5\n7 15\n" ]
[ "1\n", "3\n" ]
Note that it's not important are clothes drying on the touching segments (e.g. (0, 1) and (1, 2)) considered to be touching or not because you need to find the length of segments. In the first test sample Alexey may use the only segment (0, 1). In such case his clothes will not touch clothes on the segments (1, 6) and...
500
[ { "input": "3\n0 5\n2 8\n1 6", "output": "1" }, { "input": "3\n0 10\n1 5\n7 15", "output": "3" }, { "input": "1\n0 100", "output": "100" }, { "input": "2\n1 9\n1 9", "output": "0" }, { "input": "2\n1 9\n5 10", "output": "4" }, { "input": "2\n1 9\n3 5",...
1,554,126,361
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
186
1,024,000
students = int(input()) segment = input().split(' ') alsegment = list() for i in range(int(list(segment[0])),int(list(segment[1]))+1): alsegment.append(i) for i in range(1,students): segment = input().split(' ') for i in range(int(list(segment[0])),int(list(segment[1]))): if i in alsegment: ...
Title: On Segment's Own Points Time Limit: None seconds Memory Limit: None megabytes Problem Description: Our old friend Alexey has finally entered the University of City N — the Berland capital. Alexey expected his father to get him a place to live in but his father said it was high time for Alexey to practice some...
```python students = int(input()) segment = input().split(' ') alsegment = list() for i in range(int(list(segment[0])),int(list(segment[1]))+1): alsegment.append(i) for i in range(1,students): segment = input().split(' ') for i in range(int(list(segment[0])),int(list(segment[1]))): if i in a...
-1
898
A
Rounding
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5 Vasya can round it to 0 or to 10. Both ways are correct. For given *n* find out to which int...
The first line contains single integer *n* (0<=≤<=*n*<=≤<=109) — number that Vasya has.
Print result of rounding *n*. Pay attention that in some cases answer isn't unique. In that case print any correct answer.
[ "5\n", "113\n", "1000000000\n", "5432359\n" ]
[ "0\n", "110\n", "1000000000\n", "5432360\n" ]
In the first example *n* = 5. Nearest integers, that ends up with zero are 0 and 10. Any of these answers is correct, so you can print 0 or 10.
500
[ { "input": "5", "output": "0" }, { "input": "113", "output": "110" }, { "input": "1000000000", "output": "1000000000" }, { "input": "5432359", "output": "5432360" }, { "input": "999999994", "output": "999999990" }, { "input": "10", "output": "10" ...
1,616,854,467
2,147,483,647
Python 3
OK
TESTS
64
77
0
n = int(input()) last = n%10 if last == 0 : print(n) elif last <= 5 and last>=1: print(n-last) else: print(n-last + 10)
Title: Rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has a non-negative integer *n*. He wants to round it to nearest integer, which ends up with 0. If *n* already ends up with 0, Vasya considers it already rounded. For example, if *n*<==<=4722 answer is 4720. If *n*<==<=5...
```python n = int(input()) last = n%10 if last == 0 : print(n) elif last <= 5 and last>=1: print(n-last) else: print(n-last + 10) ```
3
581
A
Vasya the Hipster
PROGRAMMING
800
[ "implementation", "math" ]
null
null
One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red one on the left foot, a blue one on the right foot. Every day Vasya puts on new socks in the morning ...
The single line of the input contains two positive integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=100) — the number of red and blue socks that Vasya's got.
Print two space-separated integers — the maximum number of days when Vasya can wear different socks and the number of days when he can wear the same socks until he either runs out of socks or cannot make a single pair from the socks he's got. Keep in mind that at the end of the day Vasya throws away the socks that he'...
[ "3 1\n", "2 3\n", "7 3\n" ]
[ "1 1\n", "2 0\n", "3 2\n" ]
In the first sample Vasya can first put on one pair of different socks, after that he has two red socks left to wear on the second day.
500
[ { "input": "3 1", "output": "1 1" }, { "input": "2 3", "output": "2 0" }, { "input": "7 3", "output": "3 2" }, { "input": "100 100", "output": "100 0" }, { "input": "4 10", "output": "4 3" }, { "input": "6 10", "output": "6 2" }, { "input":...
1,686,155,628
2,147,483,647
Python 3
OK
TESTS
30
46
0
a,b=map(int,input().split()) print(min(a,b),int((max(a,b)-min(a,b))/2))
Title: Vasya the Hipster Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red...
```python a,b=map(int,input().split()) print(min(a,b),int((max(a,b)-min(a,b))/2)) ```
3
234
A
Lefthanders and Righthanders
PROGRAMMING
1,200
[ "implementation" ]
null
null
One fine October day a mathematics teacher Vasily Petrov went to a class and saw there *n* pupils who sat at the desks, two people at each desk. Vasily quickly realized that number *n* is even. Like all true mathematicians, Vasily has all students numbered from 1 to *n*. But Vasily Petrov did not like the way the chi...
The first input line contains a single even integer *n* (4<=≤<=*n*<=≤<=100) — the number of students in the class. The second line contains exactly *n* capital English letters "L" and "R". If the *i*-th letter at the second line equals "L", then the student number *i* is a lefthander, otherwise he is a righthander.
Print integer pairs, one pair per line. In the *i*-th line print the numbers of students that will sit at the *i*-th desk. The first number in the pair stands for the student who is sitting to the left, and the second number stands for the student who is sitting to the right. Separate the numbers in the pairs by space...
[ "6\nLLRLLL\n", "4\nRRLL\n" ]
[ "1 4\n2 5\n6 3\n", "3 1\n4 2\n" ]
none
0
[ { "input": "6\nLLRLLL", "output": "1 4\n2 5\n6 3" }, { "input": "4\nRRLL", "output": "3 1\n4 2" }, { "input": "4\nLLRR", "output": "1 3\n2 4" }, { "input": "6\nRLLRRL", "output": "1 4\n2 5\n3 6" }, { "input": "8\nLRLRLLLR", "output": "1 5\n6 2\n3 7\n4 8" }, ...
1,620,518,733
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
61
6,963,200
number = input() arrangement = input() f = open("input.txt","a") f.write(number) f.close() f = open("input.txt","w") f.write(arrangement) f.close() f = open("input.txt","r") f.read() arrangement = list(arrangement) f = open("output.txt","a") f.close() pair = [] for i in range(len(arrangement)): for j in ran...
Title: Lefthanders and Righthanders Time Limit: None seconds Memory Limit: None megabytes Problem Description: One fine October day a mathematics teacher Vasily Petrov went to a class and saw there *n* pupils who sat at the desks, two people at each desk. Vasily quickly realized that number *n* is even. Like all t...
```python number = input() arrangement = input() f = open("input.txt","a") f.write(number) f.close() f = open("input.txt","w") f.write(arrangement) f.close() f = open("input.txt","r") f.read() arrangement = list(arrangement) f = open("output.txt","a") f.close() pair = [] for i in range(len(arrangement)): fo...
-1
59
E
Shortest Path
PROGRAMMING
2,000
[ "graphs", "shortest paths" ]
E. Shortest Path
3
256
In Ancient Berland there were *n* cities and *m* two-way roads of equal length. The cities are numbered with integers from 1 to *n* inclusively. According to an ancient superstition, if a traveller visits three cities *a**i*, *b**i*, *c**i* in row, without visiting other cities between them, a great disaster awaits him...
The first line contains three integers *n*, *m*, *k* (2<=≤<=*n*<=≤<=3000,<=1<=≤<=*m*<=≤<=20000,<=0<=≤<=*k*<=≤<=105) which are the number of cities, the number of roads and the number of the forbidden triplets correspondingly. Then follow *m* lines each containing two integers *x**i*, *y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<...
If there are no path from 1 to *n* print -1. Otherwise on the first line print the number of roads *d* along the shortest path from the city 1 to the city *n*. On the second line print *d*<=+<=1 numbers — any of the possible shortest paths for Vasya. The path should start in the city 1 and end in the city *n*.
[ "4 4 1\n1 2\n2 3\n3 4\n1 3\n1 4 3\n", "3 1 0\n1 2\n", "4 4 2\n1 2\n2 3\n3 4\n1 3\n1 2 3\n1 3 4\n" ]
[ "2\n1 3 4\n", "-1\n", "4\n1 3 2 3 4\n" ]
none
2,500
[ { "input": "4 4 1\n1 2\n2 3\n3 4\n1 3\n1 4 3", "output": "2\n1 3 4" }, { "input": "3 1 0\n1 2", "output": "-1" }, { "input": "4 4 2\n1 2\n2 3\n3 4\n1 3\n1 2 3\n1 3 4", "output": "4\n1 3 2 3 4" }, { "input": "4 4 1\n1 2\n2 3\n3 4\n1 3\n1 2 3", "output": "2\n1 3 4" }, {...
1,695,636,297
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
124
0
n, m, k = map(int, input().split()) edges = [] for i in range(m): edge = tuple(input().split()) edges.append(edge) triplets = [] for j in range(k): triplet = tuple(input().split()) triplets.append(triplet) print(-1)
Title: Shortest Path Time Limit: 3 seconds Memory Limit: 256 megabytes Problem Description: In Ancient Berland there were *n* cities and *m* two-way roads of equal length. The cities are numbered with integers from 1 to *n* inclusively. According to an ancient superstition, if a traveller visits three cities *a**i*,...
```python n, m, k = map(int, input().split()) edges = [] for i in range(m): edge = tuple(input().split()) edges.append(edge) triplets = [] for j in range(k): triplet = tuple(input().split()) triplets.append(triplet) print(-1) ```
0
900
A
Find Extra One
PROGRAMMING
800
[ "geometry", "implementation" ]
null
null
You have *n* distinct points on a plane, none of them lie on *OY* axis. Check that there is a point after removal of which the remaining points are located on one side of the *OY* axis.
The first line contains a single positive integer *n* (2<=≤<=*n*<=≤<=105). The following *n* lines contain coordinates of the points. The *i*-th of these lines contains two single integers *x**i* and *y**i* (|*x**i*|,<=|*y**i*|<=≤<=109, *x**i*<=≠<=0). No two points coincide.
Print "Yes" if there is such a point, "No" — otherwise. You can print every letter in any case (upper or lower).
[ "3\n1 1\n-1 -1\n2 -1\n", "4\n1 1\n2 2\n-1 1\n-2 2\n", "3\n1 2\n2 1\n4 60\n" ]
[ "Yes", "No", "Yes" ]
In the first example the second point can be removed. In the second example there is no suitable for the condition point. In the third example any point can be removed.
500
[ { "input": "3\n1 1\n-1 -1\n2 -1", "output": "Yes" }, { "input": "4\n1 1\n2 2\n-1 1\n-2 2", "output": "No" }, { "input": "3\n1 2\n2 1\n4 60", "output": "Yes" }, { "input": "10\n1 1\n2 2\n3 3\n4 4\n5 5\n6 6\n7 7\n8 8\n9 9\n-1 -1", "output": "Yes" }, { "input": "2\n1...
1,647,430,078
2,147,483,647
PyPy 3
OK
TESTS
71
857
9,420,800
m = [] p = [] for i in range(int(input())): a,b= list(map(int,input().split())) if (a) <0: m.append((a)) else: p.append(b) if len(m) == 0 or len(m) == 1 or len(p) == 0 or len(p)==1: print("YES") else: print("NO")
Title: Find Extra One Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have *n* distinct points on a plane, none of them lie on *OY* axis. Check that there is a point after removal of which the remaining points are located on one side of the *OY* axis. Input Specification: The first li...
```python m = [] p = [] for i in range(int(input())): a,b= list(map(int,input().split())) if (a) <0: m.append((a)) else: p.append(b) if len(m) == 0 or len(m) == 1 or len(p) == 0 or len(p)==1: print("YES") else: print("NO") ```
3
413
B
Spyke Chatting
PROGRAMMING
1,300
[ "implementation" ]
null
null
The R2 company has *n* employees working for it. The work involves constant exchange of ideas, sharing the stories of success and upcoming challenging. For that, R2 uses a famous instant messaging program Spyke. R2 has *m* Spyke chats just to discuss all sorts of issues. In each chat, some group of employees exchanges...
The first line contains three space-separated integers *n*, *m* and *k* (2<=≤<=*n*<=≤<=2·104; 1<=≤<=*m*<=≤<=10; 1<=≤<=*k*<=≤<=2·105) — the number of the employees, the number of chats and the number of events in the log, correspondingly. Next *n* lines contain matrix *a* of size *n*<=×<=*m*, consisting of numbers zer...
Print in the single line *n* space-separated integers, where the *i*-th integer shows the number of message notifications the *i*-th employee receives.
[ "3 4 5\n1 1 1 1\n1 0 1 1\n1 1 0 0\n1 1\n3 1\n1 3\n2 4\n3 2\n", "4 3 4\n0 1 1\n1 0 1\n1 1 1\n0 0 0\n1 2\n2 1\n3 1\n1 3\n" ]
[ "3 3 1 ", "0 2 3 0 " ]
none
1,000
[ { "input": "3 4 5\n1 1 1 1\n1 0 1 1\n1 1 0 0\n1 1\n3 1\n1 3\n2 4\n3 2", "output": "3 3 1 " }, { "input": "4 3 4\n0 1 1\n1 0 1\n1 1 1\n0 0 0\n1 2\n2 1\n3 1\n1 3", "output": "0 2 3 0 " }, { "input": "2 1 1\n1\n1\n1 1", "output": "0 1 " }, { "input": "3 3 1\n1 1 1\n1 1 1\n1 1 1\...
1,682,680,929
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
1,000
819,200
def readString(): return input().split(" ") def readInts(): return list(map(lambda s: int(s), readString())) def readInt(): return int(input()) def intsToString(ints): return " ".join(intsToStrings(ints)) def intsToStrings(ints): return list(map(lambda i: str(i), ints)) #Spyke чат n,m,k = tup...
Title: Spyke Chatting Time Limit: None seconds Memory Limit: None megabytes Problem Description: The R2 company has *n* employees working for it. The work involves constant exchange of ideas, sharing the stories of success and upcoming challenging. For that, R2 uses a famous instant messaging program Spyke. R2 has ...
```python def readString(): return input().split(" ") def readInts(): return list(map(lambda s: int(s), readString())) def readInt(): return int(input()) def intsToString(ints): return " ".join(intsToStrings(ints)) def intsToStrings(ints): return list(map(lambda i: str(i), ints)) #Spyke чат n...
0
250
C
Movie Critics
PROGRAMMING
1,600
[ "greedy" ]
null
null
A film festival is coming up in the city N. The festival will last for exactly *n* days and each day will have a premiere of exactly one film. Each film has a genre — an integer from 1 to *k*. On the *i*-th day the festival will show a movie of genre *a**i*. We know that a movie of each of *k* genres occurs in the fes...
The first line of the input contains two integers *n* and *k* (2<=≤<=*k*<=≤<=*n*<=≤<=105), where *n* is the number of movies and *k* is the number of genres. The second line of the input contains a sequence of *n* positive integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=*k*), where *a**i* is the genre of the *i*-th...
Print a single number — the number of the genre (from 1 to *k*) of the excluded films. If there are multiple answers, print the genre with the minimum number.
[ "10 3\n1 1 2 3 2 3 3 1 1 3\n", "7 3\n3 1 3 2 3 1 2\n" ]
[ "3", "1" ]
In the first sample if we exclude the movies of the 1st genre, the genres 2, 3, 2, 3, 3, 3 remain, that is 3 stresses; if we exclude the movies of the 2nd genre, the genres 1, 1, 3, 3, 3, 1, 1, 3 remain, that is 3 stresses; if we exclude the movies of the 3rd genre the genres 1, 1, 2, 2, 1, 1 remain, that is 2 stresses...
1,500
[ { "input": "10 3\n1 1 2 3 2 3 3 1 1 3", "output": "3" }, { "input": "7 3\n3 1 3 2 3 1 2", "output": "1" }, { "input": "2 2\n1 2", "output": "1" }, { "input": "10 2\n1 2 2 1 1 2 1 1 2 2", "output": "1" }, { "input": "10 10\n5 7 8 2 4 10 1 3 9 6", "output": "1" ...
1,682,448,130
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
102,400
import heapq from collections import defaultdict import math import collections mod=10**9+7 alp='#abcdefghijklmnopqrstuvwxyz' cap='ABCDEFGHIJKLMNOPQRSTUVWXYZ' digit='1234567890' #math.facorial(n)------>gives the factorial for _ in range(1): #n =int(input()) n , k =m...
Title: Movie Critics Time Limit: None seconds Memory Limit: None megabytes Problem Description: A film festival is coming up in the city N. The festival will last for exactly *n* days and each day will have a premiere of exactly one film. Each film has a genre — an integer from 1 to *k*. On the *i*-th day the festi...
```python import heapq from collections import defaultdict import math import collections mod=10**9+7 alp='#abcdefghijklmnopqrstuvwxyz' cap='ABCDEFGHIJKLMNOPQRSTUVWXYZ' digit='1234567890' #math.facorial(n)------>gives the factorial for _ in range(1): #n =int(input()) ...
0
719
B
Anatoly and Cockroaches
PROGRAMMING
1,400
[ "greedy" ]
null
null
Anatoly lives in the university dorm as many other students do. As you know, cockroaches are also living there together with students. Cockroaches might be of two colors: black and red. There are *n* cockroaches living in Anatoly's room. Anatoly just made all his cockroaches to form a single line. As he is a perfectio...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of cockroaches. The second line contains a string of length *n*, consisting of characters 'b' and 'r' that denote black cockroach and red cockroach respectively.
Print one integer — the minimum number of moves Anatoly has to perform in order to make the colors of cockroaches in the line to alternate.
[ "5\nrbbrr\n", "5\nbbbbb\n", "3\nrbr\n" ]
[ "1\n", "2\n", "0\n" ]
In the first sample, Anatoly has to swap third and fourth cockroaches. He needs 1 turn to do this. In the second sample, the optimum answer is to paint the second and the fourth cockroaches red. This requires 2 turns. In the third sample, the colors of cockroaches in the line are alternating already, thus the answer ...
1,000
[ { "input": "5\nrbbrr", "output": "1" }, { "input": "5\nbbbbb", "output": "2" }, { "input": "3\nrbr", "output": "0" }, { "input": "13\nrbbbrbrrbrrbb", "output": "3" }, { "input": "18\nrrrrrrrrrrrrrrrrrb", "output": "8" }, { "input": "100\nbrbbbrrrbbrbrb...
1,585,815,901
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
78
0
n = int(input()) s = input() tot = 0 cnt = 1 prev = s[0] for i,x in enumerate(s): if i == 0:continue if x == prev: cnt+=1 else: tot += cnt cnt = 1 prev = x tot-=1 if s[n-1] == prev:tot += cnt print(tot//2)
Title: Anatoly and Cockroaches Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anatoly lives in the university dorm as many other students do. As you know, cockroaches are also living there together with students. Cockroaches might be of two colors: black and red. There are *n* cockroaches...
```python n = int(input()) s = input() tot = 0 cnt = 1 prev = s[0] for i,x in enumerate(s): if i == 0:continue if x == prev: cnt+=1 else: tot += cnt cnt = 1 prev = x tot-=1 if s[n-1] == prev:tot += cnt print(tot//2) ```
0
915
C
Permute Digits
PROGRAMMING
1,700
[ "dp", "greedy" ]
null
null
You are given two positive integer numbers *a* and *b*. Permute (change order) of the digits of *a* to construct maximal number not exceeding *b*. No number in input and/or output can start with the digit 0. It is allowed to leave *a* as it is.
The first line contains integer *a* (1<=≤<=*a*<=≤<=1018). The second line contains integer *b* (1<=≤<=*b*<=≤<=1018). Numbers don't have leading zeroes. It is guaranteed that answer exists.
Print the maximum possible number that is a permutation of digits of *a* and is not greater than *b*. The answer can't have any leading zeroes. It is guaranteed that the answer exists. The number in the output should have exactly the same length as number *a*. It should be a permutation of digits of *a*.
[ "123\n222\n", "3921\n10000\n", "4940\n5000\n" ]
[ "213\n", "9321\n", "4940\n" ]
none
0
[ { "input": "123\n222", "output": "213" }, { "input": "3921\n10000", "output": "9321" }, { "input": "4940\n5000", "output": "4940" }, { "input": "23923472834\n23589234723", "output": "23498743322" }, { "input": "102391019\n491010301", "output": "399211100" },...
1,516,438,418
2,147,483,647
Python 3
OK
TESTS
157
62
5,632,000
a = list(input()) b = int(input()) a.sort() for i in range(len(a) - 1): for j in range(len(a) - 1, i - 1, -1): c = int("".join(a[:i] + a[j: j +1] + a[i:j] + a[j+1:])) if c <= b: a = a[:i] + a[j: j +1] + a[i:j] + a[j+1:] break print("".join(a))
Title: Permute Digits Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two positive integer numbers *a* and *b*. Permute (change order) of the digits of *a* to construct maximal number not exceeding *b*. No number in input and/or output can start with the digit 0. It is allow...
```python a = list(input()) b = int(input()) a.sort() for i in range(len(a) - 1): for j in range(len(a) - 1, i - 1, -1): c = int("".join(a[:i] + a[j: j +1] + a[i:j] + a[j+1:])) if c <= b: a = a[:i] + a[j: j +1] + a[i:j] + a[j+1:] break print("".join(a)) ```
3
263
A
Beautiful Matrix
PROGRAMMING
800
[ "implementation" ]
null
null
You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to right. In one move, you are allowed to apply one of the two following transformations to the matrix: 1....
The input consists of five lines, each line contains five integers: the *j*-th integer in the *i*-th line of the input represents the element of the matrix that is located on the intersection of the *i*-th row and the *j*-th column. It is guaranteed that the matrix consists of 24 zeroes and a single number one.
Print a single integer — the minimum number of moves needed to make the matrix beautiful.
[ "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n", "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n" ]
[ "3\n", "1\n" ]
none
500
[ { "input": "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "3" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "1" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 0 1 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "0" }, { "input": "0 0 0 0 0...
1,694,693,883
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
124
0
# Beautiful Matrix Difficulty:800 list=[] for i in range(5): a,b,c,d,e=map(int,input().split()) list.append(a) list.append(b) list.append(c) list.append(d) list.append(e) for j in range(25): if list[j] == 1: step=abs((j+1)%5-3)+abs((j+1)//5+1-3) print(step)
Title: Beautiful Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to ri...
```python # Beautiful Matrix Difficulty:800 list=[] for i in range(5): a,b,c,d,e=map(int,input().split()) list.append(a) list.append(b) list.append(c) list.append(d) list.append(e) for j in range(25): if list[j] == 1: step=abs((j+1)%5-3)+abs((j+1)//5+1-3) pri...
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,595,145,913
2,147,483,647
Python 3
OK
TESTS
102
109
6,656,000
a=input() b=input() c=[] for i in range(len(a)): for j in range(len(b)): if i==j: if a[i]==b[j]: c.append('0') break else: c.append('1') break else: continue d=''.join(c) print(d)
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() c=[] for i in range(len(a)): for j in range(len(b)): if i==j: if a[i]==b[j]: c.append('0') break else: c.append('1') break else: continue d=''.join(c) prin...
3.960352
664
A
Complicated GCD
PROGRAMMING
800
[ "math", "number theory" ]
null
null
Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find greatest common divisor *GCD*(*a*,<=*b*), for example, Euclid algorithm. Formally, find the biggest in...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10100).
Output one integer — greatest common divisor of all integers from *a* to *b* inclusive.
[ "1 2\n", "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576\n" ]
[ "1\n", "61803398874989484820458683436563811772030917980576\n" ]
none
500
[ { "input": "1 2", "output": "1" }, { "input": "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576", "output": "61803398874989484820458683436563811772030917980576" }, { "input": "1 100", "output": "1" }, { "input": "100 100000...
1,558,606,400
2,147,483,647
Python 3
OK
TESTS
28
109
0
def gcd(a,b): if a==b: print(str(a)) else: print(1) a,b = map(int,input().split(" ")) gcd(a,b)
Title: Complicated GCD Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find gre...
```python def gcd(a,b): if a==b: print(str(a)) else: print(1) a,b = map(int,input().split(" ")) gcd(a,b) ```
3
399
A
Pages
PROGRAMMING
0
[ "implementation" ]
null
null
User ainta is making a web site. This time he is going to make a navigation of the pages. In his site, there are *n* pages numbered by integers from 1 to *n*. Assume that somebody is on the *p*-th page now. The navigation will look like this: When someone clicks the button "&lt;&lt;" he is redirected to page 1, and wh...
The first and the only line contains three integers *n*, *p*, *k* (3<=≤<=*n*<=≤<=100; 1<=≤<=*p*<=≤<=*n*; 1<=≤<=*k*<=≤<=*n*)
Print the proper navigation. Follow the format of the output from the test samples.
[ "17 5 2\n", "6 5 2\n", "6 1 2\n", "6 2 2\n", "9 6 3\n", "10 6 3\n", "8 5 4\n" ]
[ "&lt;&lt; 3 4 (5) 6 7 &gt;&gt; ", "&lt;&lt; 3 4 (5) 6 ", "(1) 2 3 &gt;&gt; ", "1 (2) 3 4 &gt;&gt;", "&lt;&lt; 3 4 5 (6) 7 8 9", "&lt;&lt; 3 4 5 (6) 7 8 9 &gt;&gt;", "1 2 3 4 (5) 6 7 8 " ]
none
500
[ { "input": "17 5 2", "output": "<< 3 4 (5) 6 7 >> " }, { "input": "6 5 2", "output": "<< 3 4 (5) 6 " }, { "input": "6 1 2", "output": "(1) 2 3 >> " }, { "input": "6 2 2", "output": "1 (2) 3 4 >> " }, { "input": "9 6 3", "output": "<< 3 4 5 (6) 7 8 9 " }, {...
1,555,866,956
2,147,483,647
Python 3
OK
TESTS
26
93
0
n,p,k=map(int,input().split(" ")) ans="" if p-k>1: ans+='<< ' for i in range(p-k, p+k+1): if i>0 and i<=n: if i==p: ans+='('+str(p)+') ' else: ans+=str(i)+' ' if p+k<n: ans+='>>' if ans[len(ans)-1]==" ": print(ans[0:len(ans)-1]) else: print(ans)...
Title: Pages Time Limit: None seconds Memory Limit: None megabytes Problem Description: User ainta is making a web site. This time he is going to make a navigation of the pages. In his site, there are *n* pages numbered by integers from 1 to *n*. Assume that somebody is on the *p*-th page now. The navigation will lo...
```python n,p,k=map(int,input().split(" ")) ans="" if p-k>1: ans+='<< ' for i in range(p-k, p+k+1): if i>0 and i<=n: if i==p: ans+='('+str(p)+') ' else: ans+=str(i)+' ' if p+k<n: ans+='>>' if ans[len(ans)-1]==" ": print(ans[0:len(ans)-1]) else: ...
3
787
A
The Monster
PROGRAMMING
1,200
[ "brute force", "math", "number theory" ]
null
null
A monster is chasing after Rick and Morty on another planet. They're so frightened that sometimes they scream. More accurately, Rick screams at times *b*,<=*b*<=+<=*a*,<=*b*<=+<=2*a*,<=*b*<=+<=3*a*,<=... and Morty screams at times *d*,<=*d*<=+<=*c*,<=*d*<=+<=2*c*,<=*d*<=+<=3*c*,<=.... The Monster will catch them if a...
The first line of input contains two integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=100). The second line contains two integers *c* and *d* (1<=≤<=*c*,<=*d*<=≤<=100).
Print the first time Rick and Morty will scream at the same time, or <=-<=1 if they will never scream at the same time.
[ "20 2\n9 19\n", "2 1\n16 12\n" ]
[ "82\n", "-1\n" ]
In the first sample testcase, Rick's 5th scream and Morty's 8th time are at time 82. In the second sample testcase, all Rick's screams will be at odd times and Morty's will be at even times, so they will never scream at the same time.
500
[ { "input": "20 2\n9 19", "output": "82" }, { "input": "2 1\n16 12", "output": "-1" }, { "input": "39 52\n88 78", "output": "1222" }, { "input": "59 96\n34 48", "output": "1748" }, { "input": "87 37\n91 29", "output": "211" }, { "input": "11 81\n49 7", ...
1,490,712,055
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
22
77
4,608,000
a, b = map(int,input().split()) #b + a, b + 2a c, d = map(int,input().split()) #c + d, c + 2d e = [b] f = [d] g = 1 h = 0 for i in range(0, 1000): x = b + g * a e.append(x) y = d + g * c f.append(y) g += 1 while h < 1000: h += 1 if e[h] in f: print(e[h]) ...
Title: The Monster Time Limit: None seconds Memory Limit: None megabytes Problem Description: A monster is chasing after Rick and Morty on another planet. They're so frightened that sometimes they scream. More accurately, Rick screams at times *b*,<=*b*<=+<=*a*,<=*b*<=+<=2*a*,<=*b*<=+<=3*a*,<=... and Morty screams a...
```python a, b = map(int,input().split()) #b + a, b + 2a c, d = map(int,input().split()) #c + d, c + 2d e = [b] f = [d] g = 1 h = 0 for i in range(0, 1000): x = b + g * a e.append(x) y = d + g * c f.append(y) g += 1 while h < 1000: h += 1 if e[h] in f: pri...
0
483
A
Counterexample
PROGRAMMING
1,100
[ "brute force", "implementation", "math", "number theory" ]
null
null
Your friend has recently learned about coprime numbers. A pair of numbers {*a*,<=*b*} is called coprime if the maximum number that divides both *a* and *b* is equal to one. Your friend often comes up with different statements. He has recently supposed that if the pair (*a*,<=*b*) is coprime and the pair (*b*,<=*c*) i...
The single line contains two positive space-separated integers *l*, *r* (1<=≤<=*l*<=≤<=*r*<=≤<=1018; *r*<=-<=*l*<=≤<=50).
Print three positive space-separated integers *a*, *b*, *c* — three distinct numbers (*a*,<=*b*,<=*c*) that form the counterexample. If there are several solutions, you are allowed to print any of them. The numbers must be printed in ascending order. If the counterexample does not exist, print the single number -1.
[ "2 4\n", "10 11\n", "900000000000000009 900000000000000029\n" ]
[ "2 3 4\n", "-1\n", "900000000000000009 900000000000000010 900000000000000021\n" ]
In the first sample pair (2, 4) is not coprime and pairs (2, 3) and (3, 4) are. In the second sample you cannot form a group of three distinct integers, so the answer is -1. In the third sample it is easy to see that numbers 900000000000000009 and 900000000000000021 are divisible by three.
500
[ { "input": "2 4", "output": "2 3 4" }, { "input": "10 11", "output": "-1" }, { "input": "900000000000000009 900000000000000029", "output": "900000000000000009 900000000000000010 900000000000000021" }, { "input": "640097987171091791 640097987171091835", "output": "64009798...
1,418,445,809
2,147,483,647
Python 3
OK
TESTS
42
171
5,836,800
from fractions import gcd raw=input() raw=raw.split(" ") raw=[int(x) for x in raw] flag=0 for x in range(raw[0],(raw[1]-1)): if flag==1: break for y in range((x+1),(raw[1])): if flag==1: break if gcd(x,y)==1: f...
Title: Counterexample Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your friend has recently learned about coprime numbers. A pair of numbers {*a*,<=*b*} is called coprime if the maximum number that divides both *a* and *b* is equal to one. Your friend often comes up with different st...
```python from fractions import gcd raw=input() raw=raw.split(" ") raw=[int(x) for x in raw] flag=0 for x in range(raw[0],(raw[1]-1)): if flag==1: break for y in range((x+1),(raw[1])): if flag==1: break if gcd(x,y)==1: ...
3
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,699,535,211
2,147,483,647
Python 3
OK
TESTS
27
46
0
n = int(input()) count = 0 for i in range(n): s = input().split() p = int(s[0]) q = int(s[1]) diff = abs(p - q) if (diff > 1): count += 1 print(count)
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 = int(input()) count = 0 for i in range(n): s = input().split() p = int(s[0]) q = int(s[1]) diff = abs(p - q) if (diff > 1): count += 1 print(count) ```
3
409
H
A + B Strikes Back
PROGRAMMING
1,500
[ "*special", "brute force", "constructive algorithms", "dsu", "implementation" ]
null
null
A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try?
The input contains two integers *a* and *b* (0<=≤<=*a*,<=*b*<=≤<=103), separated by a single space.
Output the sum of the given integers.
[ "5 14\n", "381 492\n" ]
[ "19\n", "873\n" ]
none
0
[ { "input": "5 14", "output": "19" }, { "input": "381 492", "output": "873" }, { "input": "536 298", "output": "834" }, { "input": "143 522", "output": "665" }, { "input": "433 126", "output": "559" }, { "input": "723 350", "output": "1073" }, {...
1,632,741,837
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
0
0
a,b = input().split() sum1 = int(a)+int(b) print(sum1)
Title: A + B Strikes Back Time Limit: None seconds Memory Limit: None megabytes Problem Description: A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try? Input ...
```python a,b = input().split() sum1 = int(a)+int(b) print(sum1) ```
0
171
D
Broken checker
PROGRAMMING
1,300
[ "*special", "brute force" ]
null
null
"This problem is rubbish! There is not statement, and there are only 5 test cases. The problemsetter took liberties with this problem!" — people complained in the comments to one round on Codeforces. And even more... No, wait, the checker for the problem was alright, that's a mercy.
The only line of the input contains an integer between 1 and 5, inclusive. All tests for this problem are different. The contents of the test case doesn't need to be equal to its index.
The only line of the output contains an integer between 1 and 3, inclusive.
[]
[]
This problem has no samples, since there so few test cases.
0
[ { "input": "3", "output": "1" }, { "input": "1", "output": "2" }, { "input": "4", "output": "2" }, { "input": "2", "output": "3" }, { "input": "5", "output": "1" } ]
1,617,115,508
4,208
Python 3
WRONG_ANSWER
TESTS
0
92
0
x = int(input()) if x == 1: print(x) elif x == 2: print(x) elif x == 3: print(x) elif x == 4: print(1) elif x == 5: print(2)
Title: Broken checker Time Limit: None seconds Memory Limit: None megabytes Problem Description: "This problem is rubbish! There is not statement, and there are only 5 test cases. The problemsetter took liberties with this problem!" — people complained in the comments to one round on Codeforces. And even more... No,...
```python x = int(input()) if x == 1: print(x) elif x == 2: print(x) elif x == 3: print(x) elif x == 4: print(1) elif x == 5: print(2) ```
0
797
C
Minimal string
PROGRAMMING
1,700
[ "data structures", "greedy", "strings" ]
null
null
Petya recieved a gift of a string *s* with length up to 105 characters for his birthday. He took two more empty strings *t* and *u* and decided to play a game. This game has two possible moves: - Extract the first character of *s* and append *t* with this character. - Extract the last character of *t* and append *u*...
First line contains non-empty string *s* (1<=≤<=|*s*|<=≤<=105), consisting of lowercase English letters.
Print resulting string *u*.
[ "cab\n", "acdb\n" ]
[ "abc\n", "abdc\n" ]
none
0
[ { "input": "cab", "output": "abc" }, { "input": "acdb", "output": "abdc" }, { "input": "a", "output": "a" }, { "input": "ab", "output": "ab" }, { "input": "ba", "output": "ab" }, { "input": "dijee", "output": "deeji" }, { "input": "bhrmc", ...
1,676,129,370
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
8
46
1,228,800
s=input() s=list(s) t,u='','' for c in s: t+=c if c==min(s): u+=c s.remove(c) n=len(s) for i in range(n): u+=s[n-1-i] print(u)
Title: Minimal string Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya recieved a gift of a string *s* with length up to 105 characters for his birthday. He took two more empty strings *t* and *u* and decided to play a game. This game has two possible moves: - Extract the first char...
```python s=input() s=list(s) t,u='','' for c in s: t+=c if c==min(s): u+=c s.remove(c) n=len(s) for i in range(n): u+=s[n-1-i] print(u) ```
0
302
A
Eugeny and Array
PROGRAMMING
800
[ "implementation" ]
null
null
Eugeny has array *a*<==<=*a*1,<=*a*2,<=...,<=*a**n*, consisting of *n* integers. Each integer *a**i* equals to -1, or to 1. Also, he has *m* queries: - Query number *i* is given as a pair of integers *l**i*, *r**i* (1<=≤<=*l**i*<=≤<=*r**i*<=≤<=*n*). - The response to the query will be integer 1, if the elements of a...
The first line contains integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=2·105). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (*a**i*<==<=-1,<=1). Next *m* lines contain Eugene's queries. The *i*-th line contains integers *l**i*,<=*r**i* (1<=≤<=*l**i*<=≤<=*r**i*<=≤<=*n*).
Print *m* integers — the responses to Eugene's queries in the order they occur in the input.
[ "2 3\n1 -1\n1 1\n1 2\n2 2\n", "5 5\n-1 1 1 1 -1\n1 1\n2 3\n3 5\n2 5\n1 5\n" ]
[ "0\n1\n0\n", "0\n1\n0\n1\n0\n" ]
none
500
[ { "input": "2 3\n1 -1\n1 1\n1 2\n2 2", "output": "0\n1\n0" }, { "input": "5 5\n-1 1 1 1 -1\n1 1\n2 3\n3 5\n2 5\n1 5", "output": "0\n1\n0\n1\n0" }, { "input": "3 3\n1 1 1\n2 2\n1 1\n1 1", "output": "0\n0\n0" }, { "input": "4 4\n-1 -1 -1 -1\n1 3\n1 2\n1 2\n1 1", "output": "...
1,626,804,476
2,147,483,647
PyPy 3
COMPILATION_ERROR
TESTS
0
0
0
I=lambda:map(int,input().split()) n,m=I() x=sum(x>0 for x in I()) x=min(x,n-x) o=[] while m: l,r=I() o+=[[0,1][(r-l)%2 and (r-l+1)//2<=x]] m-=1 print(*o)
Title: Eugeny and Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eugeny has array *a*<==<=*a*1,<=*a*2,<=...,<=*a**n*, consisting of *n* integers. Each integer *a**i* equals to -1, or to 1. Also, he has *m* queries: - Query number *i* is given as a pair of integers *l**i*, *r**i* (...
```python I=lambda:map(int,input().split()) n,m=I() x=sum(x>0 for x in I()) x=min(x,n-x) o=[] while m: l,r=I() o+=[[0,1][(r-l)%2 and (r-l+1)//2<=x]] m-=1 print(*o) ```
-1
921
05
Labyrinth-5
PROGRAMMING
3,200
[]
null
null
See the problem statement here: [http://codeforces.com/contest/921/problem/01](//codeforces.com/contest/921/problem/01).
none
none
[]
[]
none
81.614
[]
1,517,509,379
8,579
Python 3
PARTIAL
TESTS
1
46
5,632,000
print("""for-351 move-left if-ok for-350 move-down move-left move-up move-left end move-down move-down else move-down for-350 move-right move-up move-right move-down end move-right move-down endif end move-up""")
Title: Labyrinth-5 Time Limit: None seconds Memory Limit: None megabytes Problem Description: See the problem statement here: [http://codeforces.com/contest/921/problem/01](//codeforces.com/contest/921/problem/01). Input Specification: none Output Specification: none Note: none
```python print("""for-351 move-left if-ok for-350 move-down move-left move-up move-left end move-down move-down else move-down for-350 move-right move-up move-right move-down end move-right move-down endif end mo...
2
920
C
Swap Adjacent Elements
PROGRAMMING
1,400
[ "dfs and similar", "greedy", "math", "sortings", "two pointers" ]
null
null
You have an array *a* consisting of *n* integers. Each integer from 1 to *n* appears exactly once in this array. For some indices *i* (1<=≤<=*i*<=≤<=*n*<=-<=1) it is possible to swap *i*-th element with (*i*<=+<=1)-th, for other indices it is not possible. You may perform any number of swapping operations any order. T...
The first line contains one integer *n* (2<=≤<=*n*<=≤<=200000) — the number of elements in the array. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=200000) — the elements of the array. Each integer from 1 to *n* appears exactly once. The third line contains a string of *n*<=-<=1 char...
If it is possible to sort the array in ascending order using any sequence of swaps you are allowed to make, print YES. Otherwise, print NO.
[ "6\n1 2 5 3 4 6\n01110\n", "6\n1 2 5 3 4 6\n01010\n" ]
[ "YES\n", "NO\n" ]
In the first example you may swap *a*<sub class="lower-index">3</sub> and *a*<sub class="lower-index">4</sub>, and then swap *a*<sub class="lower-index">4</sub> and *a*<sub class="lower-index">5</sub>.
0
[ { "input": "6\n1 2 5 3 4 6\n01110", "output": "YES" }, { "input": "6\n1 2 5 3 4 6\n01010", "output": "NO" }, { "input": "6\n1 6 3 4 5 2\n01101", "output": "NO" }, { "input": "6\n2 3 1 4 5 6\n01111", "output": "NO" }, { "input": "4\n2 3 1 4\n011", "output": "NO...
1,655,390,631
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
10
1,000
13,721,600
n=int(input()) a=list(map(int, input().split())) c=input() q=0 s=sorted(a) for i in range(1,n): if a[i]<s[i]: for j in range(i,0,-1): #print(i,j) if s[j]==a[i]: break if c[j-1]=='0': q+=1 break if q==1: break if q==0: print('YES') else: print(...
Title: Swap Adjacent Elements Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have an array *a* consisting of *n* integers. Each integer from 1 to *n* appears exactly once in this array. For some indices *i* (1<=≤<=*i*<=≤<=*n*<=-<=1) it is possible to swap *i*-th element with (*i*<=+<...
```python n=int(input()) a=list(map(int, input().split())) c=input() q=0 s=sorted(a) for i in range(1,n): if a[i]<s[i]: for j in range(i,0,-1): #print(i,j) if s[j]==a[i]: break if c[j-1]=='0': q+=1 break if q==1: break if q==0: print('YES') else:...
0
505
B
Mr. Kitayuta's Colorful Graph
PROGRAMMING
1,400
[ "dfs and similar", "dp", "dsu", "graphs" ]
null
null
Mr. Kitayuta has just bought an undirected graph consisting of *n* vertices and *m* edges. The vertices of the graph are numbered from 1 to *n*. Each edge, namely edge *i*, has a color *c**i*, connecting vertex *a**i* and *b**i*. Mr. Kitayuta wants you to process the following *q* queries. In the *i*-th query, he giv...
The first line of the input contains space-separated two integers — *n* and *m* (2<=≤<=*n*<=≤<=100,<=1<=≤<=*m*<=≤<=100), denoting the number of the vertices and the number of the edges, respectively. The next *m* lines contain space-separated three integers — *a**i*, *b**i* (1<=≤<=*a**i*<=&lt;<=*b**i*<=≤<=*n*) and *c*...
For each query, print the answer in a separate line.
[ "4 5\n1 2 1\n1 2 2\n2 3 1\n2 3 3\n2 4 3\n3\n1 2\n3 4\n1 4\n", "5 7\n1 5 1\n2 5 1\n3 5 1\n4 5 1\n1 2 2\n2 3 2\n3 4 2\n5\n1 5\n5 1\n2 5\n1 5\n1 4\n" ]
[ "2\n1\n0\n", "1\n1\n1\n1\n2\n" ]
Let's consider the first sample. - Vertex 1 and vertex 2 are connected by color 1 and 2. - Vertex 3 and vertex 4 are connected by color 3. - Vertex 1 and vertex 4 are not connected by any single color.
1,000
[ { "input": "4 5\n1 2 1\n1 2 2\n2 3 1\n2 3 3\n2 4 3\n3\n1 2\n3 4\n1 4", "output": "2\n1\n0" }, { "input": "5 7\n1 5 1\n2 5 1\n3 5 1\n4 5 1\n1 2 2\n2 3 2\n3 4 2\n5\n1 5\n5 1\n2 5\n1 5\n1 4", "output": "1\n1\n1\n1\n2" }, { "input": "2 1\n1 2 1\n1\n1 2", "output": "1" }, { "input...
1,688,133,255
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
326
6,860,800
def dfs(v ,u, par, col): if(visited[v] == True): return 0 visited[v] = True if(u in adj[v]): clrs = adj[v][u] inr = clrs.intersection(col) return len(inr) count = 0 for nei in adj[v]: clrs = adj[v][nei] if(par != nei and visited[nei] == False): count += dfs(nei,u,v,...
Title: Mr. Kitayuta's Colorful Graph Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mr. Kitayuta has just bought an undirected graph consisting of *n* vertices and *m* edges. The vertices of the graph are numbered from 1 to *n*. Each edge, namely edge *i*, has a color *c**i*, connecting v...
```python def dfs(v ,u, par, col): if(visited[v] == True): return 0 visited[v] = True if(u in adj[v]): clrs = adj[v][u] inr = clrs.intersection(col) return len(inr) count = 0 for nei in adj[v]: clrs = adj[v][nei] if(par != nei and visited[nei] == False): count += df...
0
686
A
Free Ice Cream
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, people start standing in the queue before Kay and Gerda's house even in the night. Each person in the...
The first line contains two space-separated integers *n* and *x* (1<=≤<=*n*<=≤<=1000, 0<=≤<=*x*<=≤<=109). Each of the next *n* lines contains a character '+' or '-', and an integer *d**i*, separated by a space (1<=≤<=*d**i*<=≤<=109). Record "+ *d**i*" in *i*-th line means that a carrier with *d**i* ice cream packs occ...
Print two space-separated integers — number of ice cream packs left after all operations, and number of kids that left the house in distress.
[ "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20\n", "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98\n" ]
[ "22 1\n", "3 2\n" ]
Consider the first sample. 1. Initially Kay and Gerda have 7 packs of ice cream. 1. Carrier brings 5 more, so now they have 12 packs. 1. A kid asks for 10 packs and receives them. There are only 2 packs remaining. 1. Another kid asks for 20 packs. Kay and Gerda do not have them, so the kid goes away distressed. 1....
500
[ { "input": "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20", "output": "22 1" }, { "input": "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98", "output": "3 2" }, { "input": "6 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000", "output": "7000000000 0" }, { ...
1,615,665,140
2,147,483,647
Python 3
OK
TESTS
34
62
0
n, k = map(int,input().split()) d=0 for x in range(n): s = input() if s[0]=="+": k+=int(s[2:len(s)]) else : if k<int(s[2:len(s)]): d+=1 else: k-=int(s[2:len(s)]) print(k,d)
Title: Free Ice Cream Time Limit: None seconds Memory Limit: None megabytes Problem Description: After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, p...
```python n, k = map(int,input().split()) d=0 for x in range(n): s = input() if s[0]=="+": k+=int(s[2:len(s)]) else : if k<int(s[2:len(s)]): d+=1 else: k-=int(s[2:len(s)]) print(k,d) ```
3
734
B
Anton and Digits
PROGRAMMING
800
[ "brute force", "greedy", "implementation", "math" ]
null
null
Recently Anton found a box with digits in his room. There are *k*2 digits 2, *k*3 digits 3, *k*5 digits 5 and *k*6 digits 6. Anton's favorite integers are 32 and 256. He decided to compose this integers from digits he has. He wants to make the sum of these integers as large as possible. Help him solve this task! Each...
The only line of the input contains four integers *k*2, *k*3, *k*5 and *k*6 — the number of digits 2, 3, 5 and 6 respectively (0<=≤<=*k*2,<=*k*3,<=*k*5,<=*k*6<=≤<=5·106).
Print one integer — maximum possible sum of Anton's favorite integers that can be composed using digits from the box.
[ "5 1 3 4\n", "1 1 1 1\n" ]
[ "800\n", "256\n" ]
In the first sample, there are five digits 2, one digit 3, three digits 5 and four digits 6. Anton can compose three integers 256 and one integer 32 to achieve the value 256 + 256 + 256 + 32 = 800. Note, that there is one unused integer 2 and one unused integer 6. They are not counted in the answer. In the second samp...
750
[ { "input": "5 1 3 4", "output": "800" }, { "input": "1 1 1 1", "output": "256" }, { "input": "10 2 1 5", "output": "320" }, { "input": "4 2 7 2", "output": "576" }, { "input": "489 292 127 263", "output": "41856" }, { "input": "9557 5242 1190 7734", ...
1,698,046,145
2,147,483,647
Python 3
OK
TESTS
60
46
0
numbers = list(map(int, input().split())) result = 0 if numbers[0] > 0 and numbers[2] > 0 and numbers[3] > 0: step = min(numbers[0], numbers[2], numbers[3]) result += 256 * step numbers[0] -= 1 * step numbers[2] -= 1 * step numbers[3] -= 1 * step if numbers[0] > 0 and numbers[1] > 0: ...
Title: Anton and Digits Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently Anton found a box with digits in his room. There are *k*2 digits 2, *k*3 digits 3, *k*5 digits 5 and *k*6 digits 6. Anton's favorite integers are 32 and 256. He decided to compose this integers from digits he...
```python numbers = list(map(int, input().split())) result = 0 if numbers[0] > 0 and numbers[2] > 0 and numbers[3] > 0: step = min(numbers[0], numbers[2], numbers[3]) result += 256 * step numbers[0] -= 1 * step numbers[2] -= 1 * step numbers[3] -= 1 * step if numbers[0] > 0 and numbers...
3
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,681,727,906
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
n = input() x=[] f=["h","e","l","o"] for i in n: if i not in x and i in f : x.append(i) word = ''.join(x) if word =="helo": print("yes") else: print("No")
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python n = input() x=[] f=["h","e","l","o"] for i in n: if i not in x and i in f : x.append(i) word = ''.join(x) if word =="helo": print("yes") else: print("No") ```
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,453,709,764
2,147,483,647
Python 3
OK
TESTS
32
122
0
n=eval(input()) l=list(map(int,input().split())) i=0 while(i<n-2): if((l[i]%2==0 and l[i+1]%2==1 and l[i+2]%2==1) or (l[i]%2==1 and l[i+1]%2==0 and l[i+2]%2==0) ): print(i+1) elif((l[i]%2==1 and l[i+1]%2==0 and l[i+2]%2==1) or (l[i]%2==0 and l[i+1]%2==1 and l[i+2]%2==0) ): print(i+2) elif((l[i]%2=...
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=eval(input()) l=list(map(int,input().split())) i=0 while(i<n-2): if((l[i]%2==0 and l[i+1]%2==1 and l[i+2]%2==1) or (l[i]%2==1 and l[i+1]%2==0 and l[i+2]%2==0) ): print(i+1) elif((l[i]%2==1 and l[i+1]%2==0 and l[i+2]%2==1) or (l[i]%2==0 and l[i+1]%2==1 and l[i+2]%2==0) ): print(i+2) eli...
3.9695
20
B
Equation
PROGRAMMING
2,000
[ "math" ]
B. Equation
1
256
You are given an equation: Your task is to find the number of distinct roots of the equation and print all of them in ascending order.
The first line contains three integer numbers *A*,<=*B* and *C* (<=-<=105<=≤<=*A*,<=*B*,<=*C*<=≤<=105). Any coefficient may be equal to 0.
In case of infinite root count print the only integer -1. In case of no roots print the only integer 0. In other cases print the number of root on the first line and the roots on the following lines in the ascending order. Print roots with at least 5 digits after the decimal point.
[ "1 -5 6\n" ]
[ "2\n2.0000000000\n3.0000000000" ]
none
1,000
[ { "input": "1 -5 6", "output": "2\n2.0000000000\n3.0000000000" }, { "input": "1 1 1", "output": "0" }, { "input": "1 2 1", "output": "1\n-1.0000000000" }, { "input": "0 0 0", "output": "-1" }, { "input": "0 -2 1", "output": "1\n0.5000000000" }, { "inpu...
1,686,127,739
2,147,483,647
Python 3
OK
TESTS
34
46
0
import math # Read the input coefficients a, b, c = map(int, input().split()) if a < 0: b = -b c = -c a = -a d = b*b - 4*a*c if a == 0: if b == 0: if c == 0: print(-1) else: print(0) else: print(1) print("{:.7f}".format(...
Title: Equation Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: You are given an equation: Your task is to find the number of distinct roots of the equation and print all of them in ascending order. Input Specification: The first line contains three integer numbers *A*,<=*B* and *C* (<=-<=1...
```python import math # Read the input coefficients a, b, c = map(int, input().split()) if a < 0: b = -b c = -c a = -a d = b*b - 4*a*c if a == 0: if b == 0: if c == 0: print(-1) else: print(0) else: print(1) print("{:.7f...
3.977
217
A
Ice Skating
PROGRAMMING
1,200
[ "brute force", "dfs and similar", "dsu", "graphs" ]
null
null
Bajtek is learning to skate on ice. He's a beginner, so his only mode of transportation is pushing off from a snow drift to the north, east, south or west and sliding until he lands in another snow drift. He has noticed that in this way it's impossible to get from some snow drifts to some other by any sequence of moves...
The first line of input contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of snow drifts. Each of the following *n* lines contains two integers *x**i* and *y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<=1000) — the coordinates of the *i*-th snow drift. Note that the north direction coinсides with the direction of *Oy* ...
Output the minimal number of snow drifts that need to be created in order for Bajtek to be able to reach any snow drift from any other one.
[ "2\n2 1\n1 2\n", "2\n2 1\n4 1\n" ]
[ "1\n", "0\n" ]
none
500
[ { "input": "2\n2 1\n1 2", "output": "1" }, { "input": "2\n2 1\n4 1", "output": "0" }, { "input": "24\n171 35\n261 20\n4 206\n501 446\n961 912\n581 748\n946 978\n463 514\n841 889\n341 466\n842 967\n54 102\n235 261\n925 889\n682 672\n623 636\n268 94\n635 710\n474 510\n697 794\n586 663\n182...
1,573,602,207
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
248
0
x = [0] * 1005 y = [0] * 1005 visitados = [False] * 105 n = int(input()) def dfs(j): visitados[j] = True for i in range(1, n - 1): if (not visitados[i] and (x[i] == x[j] or y[i] == y[j])): dfs(i) for i in range(1, n - 1): tmp = input().split() x[i] = tmp[0] y[i] = tmp[1] result ...
Title: Ice Skating Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bajtek is learning to skate on ice. He's a beginner, so his only mode of transportation is pushing off from a snow drift to the north, east, south or west and sliding until he lands in another snow drift. He has noticed tha...
```python x = [0] * 1005 y = [0] * 1005 visitados = [False] * 105 n = int(input()) def dfs(j): visitados[j] = True for i in range(1, n - 1): if (not visitados[i] and (x[i] == x[j] or y[i] == y[j])): dfs(i) for i in range(1, n - 1): tmp = input().split() x[i] = tmp[0] y[i] = tmp[1] ...
0
181
B
Number of Triplets
PROGRAMMING
1,300
[ "binary search", "brute force" ]
null
null
You are given *n* points on a plane. All points are different. Find the number of different groups of three points (*A*,<=*B*,<=*C*) such that point *B* is the middle of segment *AC*. The groups of three points are considered unordered, that is, if point *B* is the middle of segment *AC*, then groups (*A*,<=*B*,<=*C...
The first line contains a single integer *n* (3<=≤<=*n*<=≤<=3000) — the number of points. Next *n* lines contain the points. The *i*-th line contains coordinates of the *i*-th point: two space-separated integers *x**i*,<=*y**i* (<=-<=1000<=≤<=*x**i*,<=*y**i*<=≤<=1000). It is guaranteed that all given points are diff...
Print the single number — the answer to the problem.
[ "3\n1 1\n2 2\n3 3\n", "3\n0 0\n-1 0\n0 1\n" ]
[ "1\n", "0\n" ]
none
1,000
[ { "input": "3\n1 1\n2 2\n3 3", "output": "1" }, { "input": "3\n0 0\n-1 0\n0 1", "output": "0" }, { "input": "4\n0 0\n1 0\n2 0\n3 0", "output": "2" }, { "input": "5\n0 -1\n0 -2\n0 -3\n0 -4\n0 -5", "output": "4" }, { "input": "7\n1 1\n-1 -1\n1 0\n0 1\n-1 0\n0 -1\n0 ...
1,580,196,921
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
278
0
n=int(input()) x=list() y=list() c=0 for i in range(n): xco,yco=map(int, input().split()) x.append(xco) y.append(yco) for i in range(n): for j in range(n): if j==i: continue for k in range(n): if k==j: continue if x[j] == (x[k]+x[i])/2 and y[j] == (y...
Title: Number of Triplets Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given *n* points on a plane. All points are different. Find the number of different groups of three points (*A*,<=*B*,<=*C*) such that point *B* is the middle of segment *AC*. The groups of three points ar...
```python n=int(input()) x=list() y=list() c=0 for i in range(n): xco,yco=map(int, input().split()) x.append(xco) y.append(yco) for i in range(n): for j in range(n): if j==i: continue for k in range(n): if k==j: continue if x[j] == (x[k]+x[i])/2 and ...
0
484
A
Bits
PROGRAMMING
1,700
[ "bitmasks", "constructive algorithms" ]
null
null
Let's denote as the number of bits set ('1' bits) in the binary representation of the non-negative integer *x*. You are given multiple queries consisting of pairs of integers *l* and *r*. For each query, find the *x*, such that *l*<=≤<=*x*<=≤<=*r*, and is maximum possible. If there are multiple such numbers find the...
The first line contains integer *n* — the number of queries (1<=≤<=*n*<=≤<=10000). Each of the following *n* lines contain two integers *l**i*,<=*r**i* — the arguments for the corresponding query (0<=≤<=*l**i*<=≤<=*r**i*<=≤<=1018).
For each query print the answer in a separate line.
[ "3\n1 2\n2 4\n1 10\n" ]
[ "1\n3\n7\n" ]
The binary representations of numbers from 1 to 10 are listed below: 1<sub class="lower-index">10</sub> = 1<sub class="lower-index">2</sub> 2<sub class="lower-index">10</sub> = 10<sub class="lower-index">2</sub> 3<sub class="lower-index">10</sub> = 11<sub class="lower-index">2</sub> 4<sub class="lower-index">10</su...
500
[ { "input": "3\n1 2\n2 4\n1 10", "output": "1\n3\n7" }, { "input": "55\n1 1\n1 2\n1 3\n1 4\n1 5\n1 6\n1 7\n1 8\n1 9\n1 10\n2 2\n2 3\n2 4\n2 5\n2 6\n2 7\n2 8\n2 9\n2 10\n3 3\n3 4\n3 5\n3 6\n3 7\n3 8\n3 9\n3 10\n4 4\n4 5\n4 6\n4 7\n4 8\n4 9\n4 10\n5 5\n5 6\n5 7\n5 8\n5 9\n5 10\n6 6\n6 7\n6 8\n6 9\n6 10...
1,694,189,265
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
2
1,000
0
def count_set(n): count= 0 for i in range(32): if n >> i & 1 == 1: count += 1 return count # print(count_set(n)) # l,r = map(int,input().split()) def min_max_setbit(l,r): lis = [] max_cou = 0 for i in range(l,r+1): cou = count_set(i) if ma...
Title: Bits Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's denote as the number of bits set ('1' bits) in the binary representation of the non-negative integer *x*. You are given multiple queries consisting of pairs of integers *l* and *r*. For each query, find the *x*, such that ...
```python def count_set(n): count= 0 for i in range(32): if n >> i & 1 == 1: count += 1 return count # print(count_set(n)) # l,r = map(int,input().split()) def min_max_setbit(l,r): lis = [] max_cou = 0 for i in range(l,r+1): cou = count_set(i) ...
0
817
B
Makes And The Product
PROGRAMMING
1,500
[ "combinatorics", "implementation", "math", "sortings" ]
null
null
After returning from the army Makes received a gift — an array *a* consisting of *n* positive integer numbers. He hadn't been solving problems for a long time, so he became interested to answer a particular question: how many triples of indices (*i*,<= *j*,<= *k*) (*i*<=&lt;<=*j*<=&lt;<=*k*), such that *a**i*·*a**j*·*a...
The first line of input contains a positive integer number *n* (3<=≤<=*n*<=≤<=105) — the number of elements in array *a*. The second line contains *n* positive integer numbers *a**i* (1<=≤<=*a**i*<=≤<=109) — the elements of a given array.
Print one number — the quantity of triples (*i*,<= *j*,<= *k*) such that *i*,<= *j* and *k* are pairwise distinct and *a**i*·*a**j*·*a**k* is minimum possible.
[ "4\n1 1 1 1\n", "5\n1 3 2 3 4\n", "6\n1 3 3 1 3 2\n" ]
[ "4\n", "2\n", "1\n" ]
In the first example Makes always chooses three ones out of four, and the number of ways to choose them is 4. In the second example a triple of numbers (1, 2, 3) is chosen (numbers, not indices). Since there are two ways to choose an element 3, then the answer is 2. In the third example a triple of numbers (1, 1, 2) ...
0
[ { "input": "4\n1 1 1 1", "output": "4" }, { "input": "5\n1 3 2 3 4", "output": "2" }, { "input": "6\n1 3 3 1 3 2", "output": "1" }, { "input": "3\n1000000000 1000000000 1000000000", "output": "1" }, { "input": "4\n1 1 2 2", "output": "2" }, { "input": ...
1,684,698,600
2,147,483,647
PyPy 3
OK
TESTS
80
1,075
15,974,400
import sys, functools, bisect, collections, string, math from math import factorial as fact input = sys.stdin.readline rs = lambda: input().strip() ri = lambda: int(input()) rmi = lambda: map(int, input().split()) ra = lambda: [int(x) for x in input().split()] INF = 10**18 MOD = 10**9+7 N = 10**12 def ...
Title: Makes And The Product Time Limit: None seconds Memory Limit: None megabytes Problem Description: After returning from the army Makes received a gift — an array *a* consisting of *n* positive integer numbers. He hadn't been solving problems for a long time, so he became interested to answer a particular questi...
```python import sys, functools, bisect, collections, string, math from math import factorial as fact input = sys.stdin.readline rs = lambda: input().strip() ri = lambda: int(input()) rmi = lambda: map(int, input().split()) ra = lambda: [int(x) for x in input().split()] INF = 10**18 MOD = 10**9+7 N = 10...
3
948
A
Protect Sheep
PROGRAMMING
900
[ "brute force", "dfs and similar", "graphs", "implementation" ]
null
null
Bob is a farmer. He has a large pasture with many sheep. Recently, he has lost some of them due to wolf attacks. He thus decided to place some shepherd dogs in such a way that all his sheep are protected. The pasture is a rectangle consisting of *R*<=×<=*C* cells. Each cell is either empty, contains a sheep, a wolf or...
First line contains two integers *R* (1<=≤<=*R*<=≤<=500) and *C* (1<=≤<=*C*<=≤<=500), denoting the number of rows and the numbers of columns respectively. Each of the following *R* lines is a string consisting of exactly *C* characters, representing one row of the pasture. Here, 'S' means a sheep, 'W' a wolf and '.' a...
If it is impossible to protect all sheep, output a single line with the word "No". Otherwise, output a line with the word "Yes". Then print *R* lines, representing the pasture after placing dogs. Again, 'S' means a sheep, 'W' a wolf, 'D' is a dog and '.' an empty space. You are not allowed to move, remove or add a she...
[ "6 6\n..S...\n..S.W.\n.S....\n..W...\n...W..\n......\n", "1 2\nSW\n", "5 5\n.S...\n...S.\nS....\n...S.\n.S...\n" ]
[ "Yes\n..SD..\n..SDW.\n.SD...\n.DW...\nDD.W..\n......\n", "No\n", "Yes\n.S...\n...S.\nS.D..\n...S.\n.S...\n" ]
In the first example, we can split the pasture into two halves, one containing wolves and one containing sheep. Note that the sheep at (2,1) is safe, as wolves cannot move diagonally. In the second example, there are no empty spots to put dogs that would guard the lone sheep. In the third example, there are no wolves...
500
[ { "input": "1 2\nSW", "output": "No" }, { "input": "10 10\n....W.W.W.\n.........S\n.S.S...S..\nW.......SS\n.W..W.....\n.W...W....\nS..S...S.S\n....W...S.\n..S..S.S.S\nSS.......S", "output": "Yes\nDDDDWDWDWD\nDDDDDDDDDS\nDSDSDDDSDD\nWDDDDDDDSS\nDWDDWDDDDD\nDWDDDWDDDD\nSDDSDDDSDS\nDDDDWDDDSD\nDDSD...
1,601,094,792
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
109
0
def graph_check(g, row, col): r_i = [-1, 0, 0, 1] c_i = [0, 1, -1, 0] for r in range(row): for c in range(col): if g[r][c]=='S': for ri in r_i: for ci in c_i: if 0<=ri+r<row and 0<=ci+c<col: ...
Title: Protect Sheep Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bob is a farmer. He has a large pasture with many sheep. Recently, he has lost some of them due to wolf attacks. He thus decided to place some shepherd dogs in such a way that all his sheep are protected. The pasture is ...
```python def graph_check(g, row, col): r_i = [-1, 0, 0, 1] c_i = [0, 1, -1, 0] for r in range(row): for c in range(col): if g[r][c]=='S': for ri in r_i: for ci in c_i: if 0<=ri+r<row and 0<=ci+c<col: ...
0
0
none
none
none
0
[ "none" ]
null
null
From beginning till end, this message has been waiting to be conveyed. For a given unordered multiset of *n* lowercase English letters ("multi" means that a letter may appear more than once), we treat all letters as strings of length 1, and repeat the following operation *n*<=-<=1 times: - Remove any two elements *s...
The first and only line of input contains a non-negative integer *k* (0<=≤<=*k*<=≤<=100<=000) — the required minimum cost.
Output a non-empty string of no more than 100<=000 lowercase English letters — any multiset satisfying the requirements, concatenated to be a string. Note that the printed string doesn't need to be the final concatenated string. It only needs to represent an unordered multiset of letters.
[ "12\n", "3\n" ]
[ "abababab\n", "codeforces\n" ]
For the multiset {'a', 'b', 'a', 'b', 'a', 'b', 'a', 'b'}, one of the ways to complete the process is as follows: - {"ab", "a", "b", "a", "b", "a", "b"}, with a cost of 0; - {"aba", "b", "a", "b", "a", "b"}, with a cost of 1; - {"abab", "a", "b", "a", "b"}, with a cost of 1; - {"abab", "ab", "a", "b"}, with a cost...
0
[ { "input": "12", "output": "abababab" }, { "input": "3", "output": "codeforces" }, { "input": "0", "output": "o" }, { "input": "2", "output": "aabb" }, { "input": "5", "output": "aaabbcc" }, { "input": "10", "output": "aaaaa" }, { "input": ...
1,508,462,387
2,147,483,647
Python 3
OK
TESTS
25
77
6,041,600
# -*- coding: utf-8 -*- import math import collections import bisect import heapq import time import random import itertools """ created by shhuan at 2017/10/20 09:16 """ K = int(input()) ans = "" for i in range(26): cnt = 1 while (cnt+1)*cnt//2 <= K: cnt += 1 K -= cnt*(cn...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: From beginning till end, this message has been waiting to be conveyed. For a given unordered multiset of *n* lowercase English letters ("multi" means that a letter may appear more than once), we treat all letters as strings of le...
```python # -*- coding: utf-8 -*- import math import collections import bisect import heapq import time import random import itertools """ created by shhuan at 2017/10/20 09:16 """ K = int(input()) ans = "" for i in range(26): cnt = 1 while (cnt+1)*cnt//2 <= K: cnt += 1 K ...
3
653
A
Bear and Three Balls
PROGRAMMING
900
[ "brute force", "implementation", "sortings" ]
null
null
Limak is a little polar bear. He has *n* balls, the *i*-th ball has size *t**i*. Limak wants to give one ball to each of his three friends. Giving gifts isn't easy — there are two rules Limak must obey to make friends happy: - No two friends can get balls of the same size. - No two friends can get balls of sizes th...
The first line of the input contains one integer *n* (3<=≤<=*n*<=≤<=50) — the number of balls Limak has. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=1000) where *t**i* denotes the size of the *i*-th ball.
Print "YES" (without quotes) if Limak can choose three balls of distinct sizes, such that any two of them differ by no more than 2. Otherwise, print "NO" (without quotes).
[ "4\n18 55 16 17\n", "6\n40 41 43 44 44 44\n", "8\n5 972 3 4 1 4 970 971\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first sample, there are 4 balls and Limak is able to choose three of them to satisfy the rules. He must must choose balls with sizes 18, 16 and 17. In the second sample, there is no way to give gifts to three friends without breaking the rules. In the third sample, there is even more than one way to choose bal...
500
[ { "input": "4\n18 55 16 17", "output": "YES" }, { "input": "6\n40 41 43 44 44 44", "output": "NO" }, { "input": "8\n5 972 3 4 1 4 970 971", "output": "YES" }, { "input": "3\n959 747 656", "output": "NO" }, { "input": "4\n1 2 2 3", "output": "YES" }, { ...
1,668,238,525
2,147,483,647
PyPy 3-64
OK
TESTS
84
77
0
def solve(): n=int(input()) a=list(map(int,input().split())) c=[0 for i in range(1010)] for i in a: c[i]+=1 for i in range(1,1000): if c[i+1]>0 and c[i]>0 and c[i+2]>0: print("YES") return print("NO") def main(): solve() if __name__ == '__main__': ...
Title: Bear and Three Balls Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is a little polar bear. He has *n* balls, the *i*-th ball has size *t**i*. Limak wants to give one ball to each of his three friends. Giving gifts isn't easy — there are two rules Limak must obey to make fri...
```python def solve(): n=int(input()) a=list(map(int,input().split())) c=[0 for i in range(1010)] for i in a: c[i]+=1 for i in range(1,1000): if c[i+1]>0 and c[i]>0 and c[i+2]>0: print("YES") return print("NO") def main(): solve() if __name__ == '_...
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,674,263,042
2,147,483,647
Python 3
OK
TESTS
20
46
0
n = int(input()) while(n>0): string = input() if(len(string)<11): print(string) else: number = len(string)-2 number = str(number) print(string[0]+number+string[-1]) n = n -1
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python n = int(input()) while(n>0): string = input() if(len(string)<11): print(string) else: number = len(string)-2 number = str(number) print(string[0]+number+string[-1]) n = n -1 ```
3.977
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,621,221,866
2,147,483,647
Python 3
OK
TESTS
44
77
0
n,k = map(int, input().split()) w = n//2 d = 0 c = 0 if k < n: d = w//(k+1) c = k*d print(f'{d} {c} {n-c-d}')
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 n,k = map(int, input().split()) w = n//2 d = 0 c = 0 if k < n: d = w//(k+1) c = k*d print(f'{d} {c} {n-c-d}') ```
3
334
B
Eight Point Sets
PROGRAMMING
1,400
[ "sortings" ]
null
null
Gerald is very particular to eight point sets. He thinks that any decent eight point set must consist of all pairwise intersections of three distinct integer vertical straight lines and three distinct integer horizontal straight lines, except for the average of these nine points. In other words, there must be three int...
The input consists of eight lines, the *i*-th line contains two space-separated integers *x**i* and *y**i* (0<=≤<=*x**i*,<=*y**i*<=≤<=106). You do not have any other conditions for these points.
In a single line print word "respectable", if the given set of points corresponds to Gerald's decency rules, and "ugly" otherwise.
[ "0 0\n0 1\n0 2\n1 0\n1 2\n2 0\n2 1\n2 2\n", "0 0\n1 0\n2 0\n3 0\n4 0\n5 0\n6 0\n7 0\n", "1 1\n1 2\n1 3\n2 1\n2 2\n2 3\n3 1\n3 2\n" ]
[ "respectable\n", "ugly\n", "ugly\n" ]
none
1,000
[ { "input": "0 0\n0 1\n0 2\n1 0\n1 2\n2 0\n2 1\n2 2", "output": "respectable" }, { "input": "0 0\n1 0\n2 0\n3 0\n4 0\n5 0\n6 0\n7 0", "output": "ugly" }, { "input": "1 1\n1 2\n1 3\n2 1\n2 2\n2 3\n3 1\n3 2", "output": "ugly" }, { "input": "0 0\n0 0\n0 0\n0 0\n0 0\n0 0\n0 0\n0 0...
1,544,253,108
2,147,483,647
Python 3
OK
TESTS
45
218
0
# Codeforces: 334B - Eight Point Sets class point: def __init__(self, x, y): self.x = x self.y = y def __lt__(self, other): if (self.x < other.x) or (self.x == other.x and self.y < other.y): return True return False if __name__ == '__main__': n = 8...
Title: Eight Point Sets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gerald is very particular to eight point sets. He thinks that any decent eight point set must consist of all pairwise intersections of three distinct integer vertical straight lines and three distinct integer horizonta...
```python # Codeforces: 334B - Eight Point Sets class point: def __init__(self, x, y): self.x = x self.y = y def __lt__(self, other): if (self.x < other.x) or (self.x == other.x and self.y < other.y): return True return False if __name__ == '__main__': ...
3
292
B
Network Topology
PROGRAMMING
1,200
[ "graphs", "implementation" ]
null
null
This problem uses a simplified network topology model, please read the problem statement carefully and use it as a formal document as you develop the solution. Polycarpus continues working as a system administrator in a large corporation. The computer network of this corporation consists of *n* computers, some of them...
The first line contains two space-separated integers *n* and *m* (4<=≤<=*n*<=≤<=105; 3<=≤<=*m*<=≤<=105) — the number of nodes and edges in the graph, correspondingly. Next *m* lines contain the description of the graph's edges. The *i*-th line contains a space-separated pair of integers *x**i*, *y**i* (1<=≤<=*x**i*,<=*...
In a single line print the network topology name of the given graph. If the answer is the bus, print "bus topology" (without the quotes), if the answer is the ring, print "ring topology" (without the quotes), if the answer is the star, print "star topology" (without the quotes). If no answer fits, print "unknown topolo...
[ "4 3\n1 2\n2 3\n3 4\n", "4 4\n1 2\n2 3\n3 4\n4 1\n", "4 3\n1 2\n1 3\n1 4\n", "4 4\n1 2\n2 3\n3 1\n1 4\n" ]
[ "bus topology\n", "ring topology\n", "star topology\n", "unknown topology\n" ]
none
1,000
[ { "input": "4 3\n1 2\n2 3\n3 4", "output": "bus topology" }, { "input": "4 4\n1 2\n2 3\n3 4\n4 1", "output": "ring topology" }, { "input": "4 3\n1 2\n1 3\n1 4", "output": "star topology" }, { "input": "4 4\n1 2\n2 3\n3 1\n1 4", "output": "unknown topology" }, { "i...
1,694,870,721
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
62
0
def main(): n, m = map(int, input().split()) graph = dict() for _ in range(m): x, y = map(int, input().split()) res = graph.get(x, []) res.append(y) graph[x] = res one_connect_count = 0 for key in graph: if len(graph[key]) =...
Title: Network Topology Time Limit: None seconds Memory Limit: None megabytes Problem Description: This problem uses a simplified network topology model, please read the problem statement carefully and use it as a formal document as you develop the solution. Polycarpus continues working as a system administrator in...
```python def main(): n, m = map(int, input().split()) graph = dict() for _ in range(m): x, y = map(int, input().split()) res = graph.get(x, []) res.append(y) graph[x] = res one_connect_count = 0 for key in graph: if len(gra...
0
784
D
Touchy-Feely Palindromes
PROGRAMMING
1,900
[ "*special", "implementation" ]
null
null
The only line of the input contains a string of digits. The length of the string is between 1 and 10, inclusive. Output "Yes" or "No".
The only line of the input contains a string of digits. The length of the string is between 1 and 10, inclusive.
Output "Yes" or "No".
[ "373\n", "121\n", "436\n" ]
[ "Yes\n", "No\n", "Yes\n" ]
none
0
[ { "input": "373", "output": "Yes" }, { "input": "121", "output": "No" }, { "input": "436", "output": "Yes" }, { "input": "7", "output": "Yes" }, { "input": "8", "output": "No" }, { "input": "4357087936", "output": "Yes" }, { "input": "80697...
1,699,586,953
2,147,483,647
PyPy 3-64
OK
TESTS
25
46
0
import sys input = lambda: sys.stdin.readline().strip() s2 = str(input()) if "1" in s2 or "2" in s2: print("No") else: an = "" s = list(s2) for i in range(len(s)): if s2[i] == "4": s[i] = "6" elif s2[i] == "5": s[i] = "9" elif s2[i] == "8": ...
Title: Touchy-Feely Palindromes Time Limit: None seconds Memory Limit: None megabytes Problem Description: The only line of the input contains a string of digits. The length of the string is between 1 and 10, inclusive. Output "Yes" or "No". Input Specification: The only line of the input contains a string of digi...
```python import sys input = lambda: sys.stdin.readline().strip() s2 = str(input()) if "1" in s2 or "2" in s2: print("No") else: an = "" s = list(s2) for i in range(len(s)): if s2[i] == "4": s[i] = "6" elif s2[i] == "5": s[i] = "9" elif s2[i] ...
3