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
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,515,414,741
2,147,483,647
PyPy 3
COMPILATION_ERROR
TESTS
0
0
0
y,b=list(map(int,input().split())) ny,ng,nb=list(map(int,input().split())) print(max(ng+ny*2-y,0)+max(ng+3*nb-b,0))
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 y,b=list(map(int,input().split())) ny,ng,nb=list(map(int,input().split())) print(max(ng+ny*2-y,0)+max(ng+3*nb-b,0)) ```
-1
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,695,288,914
2,147,483,647
Python 3
OK
TESTS
40
92
0
x=input;print("YNEOS"[x()!=x()[::-1]::2])
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python x=input;print("YNEOS"[x()!=x()[::-1]::2]) ```
3.977
797
A
k-Factorization
PROGRAMMING
1,100
[ "implementation", "math", "number theory" ]
null
null
Given a positive integer *n*, find *k* integers (not necessary distinct) such that all these integers are strictly greater than 1, and their product is equal to *n*.
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=100000, 1<=≤<=*k*<=≤<=20).
If it's impossible to find the representation of *n* as a product of *k* numbers, print -1. Otherwise, print *k* integers in any order. Their product must be equal to *n*. If there are multiple answers, print any of them.
[ "100000 2\n", "100000 20\n", "1024 5\n" ]
[ "2 50000 \n", "-1\n", "2 64 2 2 2 \n" ]
none
0
[ { "input": "100000 2", "output": "2 50000 " }, { "input": "100000 20", "output": "-1" }, { "input": "1024 5", "output": "2 64 2 2 2 " }, { "input": "100000 10", "output": "2 2 2 2 2 5 5 5 5 5 " }, { "input": "99999 3", "output": "3 813 41 " }, { "input...
1,631,919,687
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
46
6,963,200
import sympy def printPrimos(n): p = [] for i in range (2, n+1): p.append(i) for x in p: if (x**2) > n: break for y in p: if (y % x == 0) and (y != x): p.remove(y) return p def fact(n, k): v = [] primo = printPr...
Title: k-Factorization Time Limit: None seconds Memory Limit: None megabytes Problem Description: Given a positive integer *n*, find *k* integers (not necessary distinct) such that all these integers are strictly greater than 1, and their product is equal to *n*. Input Specification: The first line contains two int...
```python import sympy def printPrimos(n): p = [] for i in range (2, n+1): p.append(i) for x in p: if (x**2) > n: break for y in p: if (y % x == 0) and (y != x): p.remove(y) return p def fact(n, k): v = [] primo...
-1
557
A
Ilya and Diplomas
PROGRAMMING
1,100
[ "greedy", "implementation", "math" ]
null
null
Soon a school Olympiad in Informatics will be held in Berland, *n* schoolchildren will participate there. At a meeting of the jury of the Olympiad it was decided that each of the *n* participants, depending on the results, will get a diploma of the first, second or third degree. Thus, each student will receive exactly...
The first line of the input contains a single integer *n* (3<=≤<=*n*<=≤<=3·106) — the number of schoolchildren who will participate in the Olympiad. The next line of the input contains two integers *min*1 and *max*1 (1<=≤<=*min*1<=≤<=*max*1<=≤<=106) — the minimum and maximum limits on the number of diplomas of the fir...
In the first line of the output print three numbers, showing how many diplomas of the first, second and third degree will be given to students in the optimal variant of distributing diplomas. The optimal variant of distributing diplomas is the one that maximizes the number of students who receive diplomas of the first...
[ "6\n1 5\n2 6\n3 7\n", "10\n1 2\n1 3\n1 5\n", "6\n1 3\n2 2\n2 2\n" ]
[ "1 2 3 \n", "2 3 5 \n", "2 2 2 \n" ]
none
500
[ { "input": "6\n1 5\n2 6\n3 7", "output": "1 2 3 " }, { "input": "10\n1 2\n1 3\n1 5", "output": "2 3 5 " }, { "input": "6\n1 3\n2 2\n2 2", "output": "2 2 2 " }, { "input": "55\n1 1000000\n40 50\n10 200", "output": "5 40 10 " }, { "input": "3\n1 1\n1 1\n1 1", "o...
1,445,199,517
2,147,483,647
Python 3
OK
TESTS
56
62
0
n = int(input()) min1, max1 = map(int, input().split()) min2, max2 = map(int, input().split()) min3, max3 = map(int, input().split()) a1 = min(max1, n - min2 - min3) n -= a1 a2 = min(max2, n - min3) a3 = n - a2 print(a1, a2, a3)
Title: Ilya and Diplomas Time Limit: None seconds Memory Limit: None megabytes Problem Description: Soon a school Olympiad in Informatics will be held in Berland, *n* schoolchildren will participate there. At a meeting of the jury of the Olympiad it was decided that each of the *n* participants, depending on the re...
```python n = int(input()) min1, max1 = map(int, input().split()) min2, max2 = map(int, input().split()) min3, max3 = map(int, input().split()) a1 = min(max1, n - min2 - min3) n -= a1 a2 = min(max2, n - min3) a3 = n - a2 print(a1, a2, a3) ```
3
350
A
TL
PROGRAMMING
1,200
[ "brute force", "greedy", "implementation" ]
null
null
Valera wanted to prepare a Codesecrof round. He's already got one problem and he wants to set a time limit (TL) on it. Valera has written *n* correct solutions. For each correct solution, he knows its running time (in seconds). Valera has also wrote *m* wrong solutions and for each wrong solution he knows its running ...
The first line contains two integers *n*, *m* (1<=≤<=*n*,<=*m*<=≤<=100). The second line contains *n* space-separated positive integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100) — the running time of each of the *n* correct solutions in seconds. The third line contains *m* space-separated positive integers *b*1...
If there is a valid TL value, print it. Otherwise, print -1.
[ "3 6\n4 5 2\n8 9 6 10 7 11\n", "3 1\n3 4 5\n6\n" ]
[ "5", "-1\n" ]
none
500
[ { "input": "3 6\n4 5 2\n8 9 6 10 7 11", "output": "5" }, { "input": "3 1\n3 4 5\n6", "output": "-1" }, { "input": "2 5\n45 99\n49 41 77 83 45", "output": "-1" }, { "input": "50 50\n18 13 5 34 10 36 36 12 15 11 16 17 14 36 23 45 32 24 31 18 24 32 7 1 31 3 49 8 16 23 3 39 47 43...
1,684,267,520
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
92
0
#Keshika Patwari #Indian Institute Of Technology, Jodhpur # 2022 import sys input=sys.stdin.readline def exe(): a.sort() b.sort() v=a[n-1] if(2*a[0]<=v and v>0): if(b[0]>v): return v return -1 n,m=map(int,input().split()) a=list(map(int,input().split())) b=list(...
Title: TL Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera wanted to prepare a Codesecrof round. He's already got one problem and he wants to set a time limit (TL) on it. Valera has written *n* correct solutions. For each correct solution, he knows its running time (in seconds). Val...
```python #Keshika Patwari #Indian Institute Of Technology, Jodhpur # 2022 import sys input=sys.stdin.readline def exe(): a.sort() b.sort() v=a[n-1] if(2*a[0]<=v and v>0): if(b[0]>v): return v return -1 n,m=map(int,input().split()) a=list(map(int,input().split())...
0
784
A
Numbers Joke
PROGRAMMING
1,700
[ "*special" ]
null
null
The input contains a single integer *a* (1<=≤<=*a*<=≤<=30). Output a single integer.
The input contains a single integer *a* (1<=≤<=*a*<=≤<=30).
Output a single integer.
[ "3\n" ]
[ "27\n" ]
none
0
[ { "input": "3", "output": "27" }, { "input": "1", "output": "4" }, { "input": "2", "output": "22" }, { "input": "4", "output": "58" }, { "input": "5", "output": "85" }, { "input": "6", "output": "94" }, { "input": "7", "output": "121" ...
1,554,139,605
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
77
0
def integer(): inp = int(input()) return inp ** 3 integer()
Title: Numbers Joke Time Limit: None seconds Memory Limit: None megabytes Problem Description: The input contains a single integer *a* (1<=≤<=*a*<=≤<=30). Output a single integer. Input Specification: The input contains a single integer *a* (1<=≤<=*a*<=≤<=30). Output Specification: Output a single integer. Demo ...
```python def integer(): inp = int(input()) return inp ** 3 integer() ```
0
114
A
Cifera
PROGRAMMING
1,000
[ "math" ]
null
null
When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousand and "tma tmyschaya" (which literally means "the tma of tmas") used to stand for a million...
The first input line contains integer number *k*, the second line contains integer number *l* (2<=≤<=*k*,<=*l*<=≤<=231<=-<=1).
You should print in the first line of the output "YES", if the number belongs to the set petriciumus cifera and otherwise print "NO". If the number belongs to the set, then print on the seconds line the only number — the importance of number *l*.
[ "5\n25\n", "3\n8\n" ]
[ "YES\n1\n", "NO\n" ]
none
500
[ { "input": "5\n25", "output": "YES\n1" }, { "input": "3\n8", "output": "NO" }, { "input": "123\n123", "output": "YES\n0" }, { "input": "99\n970300", "output": "NO" }, { "input": "1000\n6666666", "output": "NO" }, { "input": "59\n3571", "output": "N...
1,518,678,554
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
19
124
5,632,000
import math a=int(input()) b=int(input()) c=math.log(b,a) if c==int(c): print("YES") print(int(c-1)) else : print("NO")
Title: Cifera Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Petya went to school, he got interested in large numbers and what they were called in ancient times. For instance, he learned that the Russian word "tma" (which now means "too much to be counted") used to stand for a thousa...
```python import math a=int(input()) b=int(input()) c=math.log(b,a) if c==int(c): print("YES") print(int(c-1)) else : print("NO") ```
0
47
A
Triangular numbers
PROGRAMMING
800
[ "brute force", "math" ]
A. Triangular numbers
2
256
A triangular number is the number of dots in an equilateral triangle uniformly filled with dots. For example, three dots can be arranged in a triangle; thus three is a triangular number. The *n*-th triangular number is the number of dots in a triangle with *n* dots on a side. . You can learn more about these numbers fr...
The first line contains the single number *n* (1<=≤<=*n*<=≤<=500) — the given integer.
If the given integer is a triangular number output YES, otherwise output NO.
[ "1\n", "2\n", "3\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
500
[ { "input": "1", "output": "YES" }, { "input": "2", "output": "NO" }, { "input": "3", "output": "YES" }, { "input": "4", "output": "NO" }, { "input": "5", "output": "NO" }, { "input": "6", "output": "YES" }, { "input": "7", "output": "NO...
1,659,148,973
2,147,483,647
PyPy 3-64
OK
TESTS
71
124
0
n = int(input()) k = [] for i in range(n+1): k+=[(i*(i+1))//2] if n in k: print("YES") else: print("NO")
Title: Triangular numbers Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A triangular number is the number of dots in an equilateral triangle uniformly filled with dots. For example, three dots can be arranged in a triangle; thus three is a triangular number. The *n*-th triangular number is t...
```python n = int(input()) k = [] for i in range(n+1): k+=[(i*(i+1))//2] if n in k: print("YES") else: print("NO") ```
3.969
615
A
Bulbs
PROGRAMMING
800
[ "implementation" ]
null
null
Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is pressed, it turns on all the bulbs it's connected to. Can Vasya light up all the bulbs? I...
The first line of the input contains integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of buttons and the number of bulbs respectively. Each of the next *n* lines contains *x**i* (0<=≤<=*x**i*<=≤<=*m*) — the number of bulbs that are turned on by the *i*-th button, and then *x**i* numbers *y**ij* (1<=≤<=*y**...
If it's possible to turn on all *m* bulbs print "YES", otherwise print "NO".
[ "3 4\n2 1 4\n3 1 3 1\n1 2\n", "3 3\n1 1\n1 2\n1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample you can press each button once and turn on all the bulbs. In the 2 sample it is impossible to turn on the 3-rd lamp.
500
[ { "input": "3 4\n2 1 4\n3 1 3 1\n1 2", "output": "YES" }, { "input": "3 3\n1 1\n1 2\n1 1", "output": "NO" }, { "input": "3 4\n1 1\n1 2\n1 3", "output": "NO" }, { "input": "1 5\n5 1 2 3 4 5", "output": "YES" }, { "input": "1 5\n5 4 4 1 2 3", "output": "NO" },...
1,634,745,399
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
4
62
17,715,200
n,m = [int(x) for x in input().split()] a = [0]*m for i in range(n): x = [int(x) for x in input().split()] for j in x: a[j-1] = 1 if (a.count(1) == m): print('YES') else : print('NO')
Title: Bulbs Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya wants to turn on Christmas lights consisting of *m* bulbs. Initially, all bulbs are turned off. There are *n* buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is...
```python n,m = [int(x) for x in input().split()] a = [0]*m for i in range(n): x = [int(x) for x in input().split()] for j in x: a[j-1] = 1 if (a.count(1) == m): print('YES') else : print('NO') ```
0
991
B
Getting an A
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
Translator's note: in Russia's most widespread grading system, there are four grades: 5, 4, 3, 2, the higher the better, roughly corresponding to A, B, C and F respectively in American grading system. The term is coming to an end and students start thinking about their grades. Today, a professor told his students that...
The first line contains a single integer $n$ — the number of Vasya's grades ($1 \leq n \leq 100$). The second line contains $n$ integers from $2$ to $5$ — Vasya's grades for his lab works.
Output a single integer — the minimum amount of lab works that Vasya has to redo. It can be shown that Vasya can always redo enough lab works to get a $5$.
[ "3\n4 4 4\n", "4\n5 4 5 5\n", "4\n5 3 3 5\n" ]
[ "2\n", "0\n", "1\n" ]
In the first sample, it is enough to redo two lab works to make two $4$s into $5$s. In the second sample, Vasya's average is already $4.75$ so he doesn't have to redo anything to get a $5$. In the second sample Vasya has to redo one lab work to get rid of one of the $3$s, that will make the average exactly $4.5$ so t...
1,000
[ { "input": "3\n4 4 4", "output": "2" }, { "input": "4\n5 4 5 5", "output": "0" }, { "input": "4\n5 3 3 5", "output": "1" }, { "input": "1\n5", "output": "0" }, { "input": "4\n3 2 5 4", "output": "2" }, { "input": "5\n5 4 3 2 5", "output": "2" }, ...
1,631,458,290
2,147,483,647
PyPy 3
OK
TESTS
61
93
21,299,200
n = int(input()) marks = sorted(list(map(int, input().split()))) i = 0 while round(sum(marks)/len(marks)) < 5 and i<len(marks): if sum(marks)/len(marks) == 4.5: break marks[i] = 5 i += 1 print(i)
Title: Getting an A Time Limit: None seconds Memory Limit: None megabytes Problem Description: Translator's note: in Russia's most widespread grading system, there are four grades: 5, 4, 3, 2, the higher the better, roughly corresponding to A, B, C and F respectively in American grading system. The term is coming t...
```python n = int(input()) marks = sorted(list(map(int, input().split()))) i = 0 while round(sum(marks)/len(marks)) < 5 and i<len(marks): if sum(marks)/len(marks) == 4.5: break marks[i] = 5 i += 1 print(i) ```
3
300
B
Coach
PROGRAMMING
1,500
[ "brute force", "dfs and similar", "graphs" ]
null
null
A programming coach has *n* students to teach. We know that *n* is divisible by 3. Let's assume that all students are numbered from 1 to *n*, inclusive. Before the university programming championship the coach wants to split all students into groups of three. For some pairs of students we know that they want to be on ...
The first line of the input contains integers *n* and *m* (3<=≤<=*n*<=≤<=48, . Then follow *m* lines, each contains a pair of integers *a**i*,<=*b**i* (1<=≤<=*a**i*<=&lt;<=*b**i*<=≤<=*n*) — the pair *a**i*,<=*b**i* means that students with numbers *a**i* and *b**i* want to be on the same team. It is guaranteed that *n...
If the required division into teams doesn't exist, print number -1. Otherwise, print lines. In each line print three integers *x**i*, *y**i*, *z**i* (1<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=*n*) — the *i*-th team. If there are multiple answers, you are allowed to print any of them.
[ "3 0\n", "6 4\n1 2\n2 3\n3 4\n5 6\n", "3 3\n1 2\n2 3\n1 3\n" ]
[ "3 2 1 \n", "-1\n", "3 2 1 \n" ]
none
1,000
[ { "input": "3 0", "output": "3 2 1 " }, { "input": "6 4\n1 2\n2 3\n3 4\n5 6", "output": "-1" }, { "input": "3 3\n1 2\n2 3\n1 3", "output": "3 2 1 " }, { "input": "6 3\n1 2\n3 4\n5 6", "output": "-1" }, { "input": "15 9\n1 4\n1 6\n2 7\n2 11\n4 6\n5 12\n7 11\n9 14\n...
1,629,901,842
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
26
248
23,552,000
from collections import defaultdict,deque n,m=map(int,input().split()) d=defaultdict(list) present=[False]*(n+1) here=set() for i in range(m): u,v=map(int,input().split()) d[u].append(v) d[v].append(u) present[u]=True present[v]=True here.add(u) here.add(v) here=list(here) here...
Title: Coach Time Limit: None seconds Memory Limit: None megabytes Problem Description: A programming coach has *n* students to teach. We know that *n* is divisible by 3. Let's assume that all students are numbered from 1 to *n*, inclusive. Before the university programming championship the coach wants to split all...
```python from collections import defaultdict,deque n,m=map(int,input().split()) d=defaultdict(list) present=[False]*(n+1) here=set() for i in range(m): u,v=map(int,input().split()) d[u].append(v) d[v].append(u) present[u]=True present[v]=True here.add(u) here.add(v) here=list(h...
0
660
A
Co-prime Array
PROGRAMMING
1,200
[ "greedy", "implementation", "math", "number theory" ]
null
null
You are given an array of *n* elements, you must make it a co-prime array in as few moves as possible. In each move you can insert any positive integral number you want not greater than 109 in any place in the array. An array is co-prime if any two adjacent numbers of it are co-prime. In the number theory, two integ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of elements in the given array. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=109) — the elements of the array *a*.
Print integer *k* on the first line — the least number of elements needed to add to the array *a* to make it co-prime. The second line should contain *n*<=+<=*k* integers *a**j* — the elements of the array *a* after adding *k* elements to it. Note that the new array should be co-prime, so any two adjacent values shoul...
[ "3\n2 7 28\n" ]
[ "1\n2 7 9 28\n" ]
none
0
[ { "input": "3\n2 7 28", "output": "1\n2 7 1 28" }, { "input": "1\n1", "output": "0\n1" }, { "input": "1\n548", "output": "0\n548" }, { "input": "1\n963837006", "output": "0\n963837006" }, { "input": "10\n1 1 1 1 1 1 1 1 1 1", "output": "0\n1 1 1 1 1 1 1 1 1 1"...
1,594,892,050
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
124
20,172,800
import math x = 4#int(input()) y = [2,7,28]#list(map(int, input().split())) l = [y[0]] for i in range(1,len(y)): if math.gcd(y[i],y[i-1]) != 1: y.insert(i,1) for k in y: print(k, end = " ") print()
Title: Co-prime Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array of *n* elements, you must make it a co-prime array in as few moves as possible. In each move you can insert any positive integral number you want not greater than 109 in any place in the array. A...
```python import math x = 4#int(input()) y = [2,7,28]#list(map(int, input().split())) l = [y[0]] for i in range(1,len(y)): if math.gcd(y[i],y[i-1]) != 1: y.insert(i,1) for k in y: print(k, end = " ") print() ```
0
630
F
Selection of Personnel
PROGRAMMING
1,300
[ "combinatorics", "math" ]
null
null
One company of IT City decided to create a group of innovative developments consisting from 5 to 7 people and hire new employees for it. After placing an advertisment the company received *n* resumes. Now the HR department has to evaluate each possible group composition and select one of them. Your task is to count the...
The only line of the input contains one integer *n* (7<=≤<=*n*<=≤<=777) — the number of potential employees that sent resumes.
Output one integer — the number of different variants of group composition.
[ "7\n" ]
[ "29" ]
none
0
[ { "input": "7", "output": "29" }, { "input": "8", "output": "92" }, { "input": "9", "output": "246" }, { "input": "10", "output": "582" }, { "input": "321", "output": "66715035255088" }, { "input": "624", "output": "7147161340917624" }, { "...
1,695,279,781
2,147,483,647
PyPy 3-64
OK
TESTS
10
62
0
def bin(n,k): res=1 for i in range(n-k+1,n+1):res*=i for i in range(1,k+1):res//=i return res n=int(input()) print(bin(n,5)+bin(n,6)+bin(n,7))
Title: Selection of Personnel Time Limit: None seconds Memory Limit: None megabytes Problem Description: One company of IT City decided to create a group of innovative developments consisting from 5 to 7 people and hire new employees for it. After placing an advertisment the company received *n* resumes. Now the HR ...
```python def bin(n,k): res=1 for i in range(n-k+1,n+1):res*=i for i in range(1,k+1):res//=i return res n=int(input()) print(bin(n,5)+bin(n,6)+bin(n,7)) ```
3
4
A
Watermelon
PROGRAMMING
800
[ "brute force", "math" ]
A. Watermelon
1
64
One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem. Pete and ...
The first (and the only) input line contains integer number *w* (1<=≤<=*w*<=≤<=100) — the weight of the watermelon bought by the boys.
Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.
[ "8\n" ]
[ "YES\n" ]
For example, the boys can divide the watermelon into two parts of 2 and 6 kilos respectively (another variant — two parts of 4 and 4 kilos).
0
[ { "input": "8", "output": "YES" }, { "input": "5", "output": "NO" }, { "input": "4", "output": "YES" }, { "input": "3", "output": "NO" }, { "input": "2", "output": "NO" }, { "input": "1", "output": "NO" }, { "input": "7", "output": "NO"...
1,690,275,035
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
w=int(input()) if w%2==0 and print('yes') else: print('no')
Title: Watermelon Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dyin...
```python w=int(input()) if w%2==0 and print('yes') else: print('no') ```
-1
925
A
Stairs and Elevators
PROGRAMMING
1,600
[ "binary search" ]
null
null
In the year of $30XX$ participants of some world programming championship live in a single large hotel. The hotel has $n$ floors. Each floor has $m$ sections with a single corridor connecting all of them. The sections are enumerated from $1$ to $m$ along the corridor, and all sections with equal numbers on different fl...
The first line contains five integers $n, m, c_l, c_e, v$ ($2 \leq n, m \leq 10^8$, $0 \leq c_l, c_e \leq 10^5$, $1 \leq c_l + c_e \leq m - 1$, $1 \leq v \leq n - 1$) — the number of floors and section on each floor, the number of stairs, the number of elevators and the maximum speed of an elevator, respectively. The ...
Print $q$ integers, one per line — the answers for the queries.
[ "5 6 1 1 3\n2\n5\n3\n1 1 5 6\n1 3 5 4\n3 3 5 3\n" ]
[ "7\n5\n4\n" ]
In the first query the optimal way is to go to the elevator in the 5-th section in four time units, use it to go to the fifth floor in two time units and go to the destination in one more time unit. In the second query it is still optimal to use the elevator, but in the third query it is better to use the stairs in th...
500
[ { "input": "5 6 1 1 3\n2\n5\n3\n1 1 5 6\n1 3 5 4\n3 3 5 3", "output": "7\n5\n4" }, { "input": "2 2 0 1 1\n\n1\n1\n1 2 2 2", "output": "3" }, { "input": "4 4 1 0 1\n4\n\n5\n1 1 2 2\n1 3 2 2\n3 3 4 3\n3 2 2 2\n1 2 2 3", "output": "6\n4\n3\n5\n4" }, { "input": "10 10 1 8 4\n10\n...
1,643,367,117
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
6
2,000
16,281,600
import math import sys import queue from heapq import heappop, heappush import random def solve(): def bs(array, param): left, right = 0, len(array) - 1 while left <= right: m = (left + right) // 2 if array[m] <= param: left = m + 1 ...
Title: Stairs and Elevators Time Limit: None seconds Memory Limit: None megabytes Problem Description: In the year of $30XX$ participants of some world programming championship live in a single large hotel. The hotel has $n$ floors. Each floor has $m$ sections with a single corridor connecting all of them. The secti...
```python import math import sys import queue from heapq import heappop, heappush import random def solve(): def bs(array, param): left, right = 0, len(array) - 1 while left <= right: m = (left + right) // 2 if array[m] <= param: left = m + 1 ...
0
358
A
Dima and Continuous Line
PROGRAMMING
1,400
[ "brute force", "implementation" ]
null
null
Dima and Seryozha live in an ordinary dormitory room for two. One day Dima had a date with his girl and he asked Seryozha to leave the room. As a compensation, Seryozha made Dima do his homework. The teacher gave Seryozha the coordinates of *n* distinct points on the abscissa axis and asked to consecutively connect th...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=103). The second line contains *n* distinct integers *x*1,<=*x*2,<=...,<=*x**n* (<=-<=106<=≤<=*x**i*<=≤<=106) — the *i*-th point has coordinates (*x**i*,<=0). The points are not necessarily sorted by their *x* coordinate.
In the single line print "yes" (without the quotes), if the line has self-intersections. Otherwise, print "no" (without the quotes).
[ "4\n0 10 5 15\n", "4\n0 15 5 10\n" ]
[ "yes\n", "no\n" ]
The first test from the statement is on the picture to the left, the second test is on the picture to the right.
500
[ { "input": "4\n0 10 5 15", "output": "yes" }, { "input": "4\n0 15 5 10", "output": "no" }, { "input": "5\n0 1000 2000 3000 1500", "output": "yes" }, { "input": "5\n-724093 710736 -383722 -359011 439613", "output": "no" }, { "input": "50\n384672 661179 -775591 -989...
1,589,466,563
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
21
155
20,480,000
a=int(input()) z=list(map(int,input().split())) from collections import defaultdict al=defaultdict(int) for i in range(1,len(z)): al[min(z[i],z[i-1])]=max(z[i],z[i-1]) z.sort() flag=0 border=al[z[0]] for i in range(1,len(z)): if(z[i]<border): if(al[z[i]]>border): flag=1 ...
Title: Dima and Continuous Line Time Limit: None seconds Memory Limit: None megabytes Problem Description: Dima and Seryozha live in an ordinary dormitory room for two. One day Dima had a date with his girl and he asked Seryozha to leave the room. As a compensation, Seryozha made Dima do his homework. The teacher g...
```python a=int(input()) z=list(map(int,input().split())) from collections import defaultdict al=defaultdict(int) for i in range(1,len(z)): al[min(z[i],z[i-1])]=max(z[i],z[i-1]) z.sort() flag=0 border=al[z[0]] for i in range(1,len(z)): if(z[i]<border): if(al[z[i]]>border): flag=1...
0
0
none
none
none
0
[ "none" ]
null
null
You are given three sticks with positive integer lengths of *a*,<=*b*, and *c* centimeters. You can increase length of some of them by some positive integer number of centimeters (different sticks can be increased by a different length), but in total by at most *l* centimeters. In particular, it is allowed not to incre...
The single line contains 4 integers *a*,<=*b*,<=*c*,<=*l* (1<=≤<=*a*,<=*b*,<=*c*<=≤<=3·105, 0<=≤<=*l*<=≤<=3·105).
Print a single integer — the number of ways to increase the sizes of the sticks by the total of at most *l* centimeters, so that you can make a non-degenerate triangle from it.
[ "1 1 1 2\n", "1 2 3 1\n", "10 2 1 7\n" ]
[ "4\n", "2\n", "0\n" ]
In the first sample test you can either not increase any stick or increase any two sticks by 1 centimeter. In the second sample test you can increase either the first or the second stick by one centimeter. Note that the triangle made from the initial sticks is degenerate and thus, doesn't meet the conditions.
0
[ { "input": "1 1 1 2", "output": "4" }, { "input": "1 2 3 1", "output": "2" }, { "input": "10 2 1 7", "output": "0" }, { "input": "1 2 1 5", "output": "20" }, { "input": "10 15 17 10", "output": "281" }, { "input": "5 5 5 10000", "output": "41841675...
1,440,405,262
3,622
Python 3
OK
TESTS
43
997
0
def f(a, b, c, l): k = min(l, a - b - c) return 0 if a < b + c else (k + 1) * (k + 2) // 2 solve = lambda i: f(a + i, b, c, l - i) + f(b + i, c, a, l - i) + f(c + i, a, b, l - i) a, b, c, l = map(int, input().split()) ans = (l + 1) * (l + 2) * (l + 3) // 6 - sum(solve(i) for i in range(l + 1)) print(ans...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given three sticks with positive integer lengths of *a*,<=*b*, and *c* centimeters. You can increase length of some of them by some positive integer number of centimeters (different sticks can be increased by a different l...
```python def f(a, b, c, l): k = min(l, a - b - c) return 0 if a < b + c else (k + 1) * (k + 2) // 2 solve = lambda i: f(a + i, b, c, l - i) + f(b + i, c, a, l - i) + f(c + i, a, b, l - i) a, b, c, l = map(int, input().split()) ans = (l + 1) * (l + 2) * (l + 3) // 6 - sum(solve(i) for i in range(l + 1)) ...
3
822
A
I'm bored with life
PROGRAMMING
800
[ "implementation", "math", "number theory" ]
null
null
Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormitory for the period of university studies. Consequently Noora had to leave Vičkopolis and move to Pavlopo...
The first and single line contains two integers *A* and *B* (1<=≤<=*A*,<=*B*<=≤<=109,<=*min*(*A*,<=*B*)<=≤<=12).
Print a single integer denoting the greatest common divisor of integers *A*! and *B*!.
[ "4 3\n" ]
[ "6\n" ]
Consider the sample. 4! = 1·2·3·4 = 24. 3! = 1·2·3 = 6. The greatest common divisor of integers 24 and 6 is exactly 6.
500
[ { "input": "4 3", "output": "6" }, { "input": "10 399603090", "output": "3628800" }, { "input": "6 973151934", "output": "720" }, { "input": "2 841668075", "output": "2" }, { "input": "7 415216919", "output": "5040" }, { "input": "3 283733059", "ou...
1,659,794,542
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
///////// #include <bits/stdc++.h> using namespace std; int main() { int a,b; scanf("%d%d",&a,&b); int x = min(a,b); long long ans = 1; for(int i=1;i<=x;i++) ans = ans*(long long)i; cout<<ans<<endl; return 0; }
Title: I'm bored with life Time Limit: None seconds Memory Limit: None megabytes Problem Description: Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormi...
```python ///////// #include <bits/stdc++.h> using namespace std; int main() { int a,b; scanf("%d%d",&a,&b); int x = min(a,b); long long ans = 1; for(int i=1;i<=x;i++) ans = ans*(long long)i; cout<<ans<<endl; return 0; } ```
-1
580
A
Kefa and First Steps
PROGRAMMING
900
[ "brute force", "dp", "implementation" ]
null
null
Kefa decided to make some money doing business on the Internet for exactly *n* days. He knows that on the *i*-th day (1<=≤<=*i*<=≤<=*n*) he makes *a**i* money. Kefa loves progress, that's why he wants to know the length of the maximum non-decreasing subsegment in sequence *a**i*. Let us remind you that the subsegment o...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105). The second line contains *n* integers *a*1,<=<=*a*2,<=<=...,<=<=*a**n* (1<=≤<=*a**i*<=≤<=109).
Print a single integer — the length of the maximum non-decreasing subsegment of sequence *a*.
[ "6\n2 2 1 3 4 1\n", "3\n2 2 9\n" ]
[ "3", "3" ]
In the first test the maximum non-decreasing subsegment is the numbers from the third to the fifth one. In the second test the maximum non-decreasing subsegment is the numbers from the first to the third one.
750
[ { "input": "6\n2 2 1 3 4 1", "output": "3" }, { "input": "3\n2 2 9", "output": "3" }, { "input": "5\n10 100 111 1 2", "output": "3" }, { "input": "10\n1 2 3 4 1 2 3 4 5 6", "output": "6" }, { "input": "50\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
1,691,488,914
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
46
1,024,000
# ALLAH HO AKBAR # PROPHET HAZRAT MUHAMMAD S.A.W # CODE # BY # HASHIM count = 1 ; org_count = 0 t = int ( input ( ) ) ; ls = list ( map ( int , input ( ) . split ( ) ) ) for i in range ( len ( ls ) - 1 ) : if ls [ i ] <= ls [ i + 1 ] : count += 1 else : count = 1 org_coun...
Title: Kefa and First Steps Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kefa decided to make some money doing business on the Internet for exactly *n* days. He knows that on the *i*-th day (1<=≤<=*i*<=≤<=*n*) he makes *a**i* money. Kefa loves progress, that's why he wants to know the l...
```python # ALLAH HO AKBAR # PROPHET HAZRAT MUHAMMAD S.A.W # CODE # BY # HASHIM count = 1 ; org_count = 0 t = int ( input ( ) ) ; ls = list ( map ( int , input ( ) . split ( ) ) ) for i in range ( len ( ls ) - 1 ) : if ls [ i ] <= ls [ i + 1 ] : count += 1 else : count = 1 ...
0
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,694,389,817
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
156
3,379,200
list_s = list(input()) list_t = list(input()) ls = len(list_s) lt = len(list_t) n = 0 if ls == lt: for i in range(list_len): if list_s[i] == list_t[-(i+1)]: pass else: n += 1 if n == 0: print("YES") else: print("NO") else: print("NO...
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python list_s = list(input()) list_t = list(input()) ls = len(list_s) lt = len(list_t) n = 0 if ls == lt: for i in range(list_len): if list_s[i] == list_t[-(i+1)]: pass else: n += 1 if n == 0: print("YES") else: print("NO") else: ...
-1
40
A
Find Color
PROGRAMMING
1,300
[ "constructive algorithms", "geometry", "implementation", "math" ]
A. Find Color
2
256
Not so long ago as a result of combat operations the main Berland place of interest — the magic clock — was damaged. The cannon's balls made several holes in the clock, that's why the residents are concerned about the repair. The magic clock can be represented as an infinite Cartesian plane, where the origin correspond...
The first and single line contains two integers *x* and *y* — the coordinates of the hole made in the clock by the ball. Each of the numbers *x* and *y* has an absolute value that does not exceed 1000.
Find the required color. All the points between which and the origin of coordinates the distance is integral-value are painted black.
[ "-2 1\n", "2 1\n", "4 3\n" ]
[ "white\n", "black\n", "black\n" ]
none
500
[ { "input": "-2 1", "output": "white" }, { "input": "2 1", "output": "black" }, { "input": "4 3", "output": "black" }, { "input": "3 3", "output": "black" }, { "input": "4 4", "output": "white" }, { "input": "-4 4", "output": "black" }, { "i...
1,598,959,970
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
218
0
x,y=map(int,input().split()) dis=pow(abs(x),2)+pow(abs(y),2) dis=pow(dis,0.5) if dis==int(dis): print('black') else: if(int(dis)%2==0): print('white') else: print('black')
Title: Find Color Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Not so long ago as a result of combat operations the main Berland place of interest — the magic clock — was damaged. The cannon's balls made several holes in the clock, that's why the residents are concerned about the repair. Th...
```python x,y=map(int,input().split()) dis=pow(abs(x),2)+pow(abs(y),2) dis=pow(dis,0.5) if dis==int(dis): print('black') else: if(int(dis)%2==0): print('white') else: print('black') ```
0
573
B
Bear and Blocks
PROGRAMMING
1,600
[ "binary search", "data structures", "dp", "math" ]
null
null
Limak is a little bear who loves to play. Today he is playing by destroying block towers. He built *n* towers in a row. The *i*-th tower is made of *h**i* identical blocks. For clarification see picture for the first sample. Limak will repeat the following operation till everything is destroyed. Block is called inter...
The first line contains single integer *n* (1<=≤<=*n*<=≤<=105). The second line contains *n* space-separated integers *h*1,<=*h*2,<=...,<=*h**n* (1<=≤<=*h**i*<=≤<=109) — sizes of towers.
Print the number of operations needed to destroy all towers.
[ "6\n2 1 4 6 2 2\n", "7\n3 3 3 1 3 3 3\n" ]
[ "3\n", "2\n" ]
The picture below shows all three operations for the first sample test. Each time boundary blocks are marked with red color.
1,000
[ { "input": "6\n2 1 4 6 2 2", "output": "3" }, { "input": "7\n3 3 3 1 3 3 3", "output": "2" }, { "input": "7\n5128 5672 5805 5452 5882 5567 5032", "output": "4" }, { "input": "10\n1 2 2 3 5 5 5 4 2 1", "output": "5" }, { "input": "14\n20 20 20 20 20 20 3 20 20 20 2...
1,578,553,008
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
6
1,000
19,456,000
# -*- coding:utf-8 -*- """ created by shuangquan.huang at 1/9/20 """ import collections import time import os import sys import bisect import heapq from typing import List def check(H, N, K): newheight = [v for v in H] for i in range(1, N+1): if i <= K or N-i+1 <= K: newheight[i] = 0 ...
Title: Bear and Blocks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is a little bear who loves to play. Today he is playing by destroying block towers. He built *n* towers in a row. The *i*-th tower is made of *h**i* identical blocks. For clarification see picture for the first sa...
```python # -*- coding:utf-8 -*- """ created by shuangquan.huang at 1/9/20 """ import collections import time import os import sys import bisect import heapq from typing import List def check(H, N, K): newheight = [v for v in H] for i in range(1, N+1): if i <= K or N-i+1 <= K: newheigh...
0
266
B
Queue at the School
PROGRAMMING
800
[ "constructive algorithms", "graph matchings", "implementation", "shortest paths" ]
null
null
During the break the schoolchildren, boys and girls, formed a queue of *n* people in the canteen. Initially the children stood in the order they entered the canteen. However, after a while the boys started feeling awkward for standing in front of the girls in the queue and they started letting the girls move forward ea...
The first line contains two integers *n* and *t* (1<=≤<=*n*,<=*t*<=≤<=50), which represent the number of children in the queue and the time after which the queue will transform into the arrangement you need to find. The next line contains string *s*, which represents the schoolchildren's initial arrangement. If the *...
Print string *a*, which describes the arrangement after *t* seconds. If the *i*-th position has a boy after the needed time, then the *i*-th character *a* must equal "B", otherwise it must equal "G".
[ "5 1\nBGGBG\n", "5 2\nBGGBG\n", "4 1\nGGGB\n" ]
[ "GBGGB\n", "GGBGB\n", "GGGB\n" ]
none
500
[ { "input": "5 1\nBGGBG", "output": "GBGGB" }, { "input": "5 2\nBGGBG", "output": "GGBGB" }, { "input": "4 1\nGGGB", "output": "GGGB" }, { "input": "2 1\nBB", "output": "BB" }, { "input": "2 1\nBG", "output": "GB" }, { "input": "6 2\nBBGBBG", "outpu...
1,696,923,805
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
122
0
n,t=map(int,input().split()) s=input() for i in range(t): S=s.replace("BG","GB") print(S)
Title: Queue at the School Time Limit: None seconds Memory Limit: None megabytes Problem Description: During the break the schoolchildren, boys and girls, formed a queue of *n* people in the canteen. Initially the children stood in the order they entered the canteen. However, after a while the boys started feeling a...
```python n,t=map(int,input().split()) s=input() for i in range(t): S=s.replace("BG","GB") print(S) ```
0
618
C
Constellation
PROGRAMMING
1,600
[ "geometry", "implementation" ]
null
null
Cat Noku has obtained a map of the night sky. On this map, he found a constellation with *n* stars numbered from 1 to *n*. For each *i*, the *i*-th star is located at coordinates (*x**i*,<=*y**i*). No two stars are located at the same position. In the evening Noku is going to take a look at the night sky. He would lik...
The first line of the input contains a single integer *n* (3<=≤<=*n*<=≤<=100<=000). Each of the next *n* lines contains two integers *x**i* and *y**i* (<=-<=109<=≤<=*x**i*,<=*y**i*<=≤<=109). It is guaranteed that no two stars lie at the same point, and there does not exist a line such that all stars lie on that line.
Print three distinct integers on a single line — the indices of the three points that form a triangle that satisfies the conditions stated in the problem. If there are multiple possible answers, you may print any of them.
[ "3\n0 1\n1 0\n1 1\n", "5\n0 0\n0 2\n2 0\n2 2\n1 1\n" ]
[ "1 2 3\n", "1 3 5\n" ]
In the first sample, we can print the three indices in any order. In the second sample, we have the following picture. Note that the triangle formed by starts 1, 4 and 3 doesn't satisfy the conditions stated in the problem, as point 5 is not strictly outside of this triangle (it lies on it's border).
1,500
[ { "input": "3\n0 1\n1 0\n1 1", "output": "1 2 3" }, { "input": "5\n0 0\n0 2\n2 0\n2 2\n1 1", "output": "1 3 5" }, { "input": "3\n819934317 939682125\n487662889 8614219\n-557136619 382982369", "output": "1 3 2" }, { "input": "10\n25280705 121178189\n219147240 -570920213\n-8298...
1,520,760,193
1,393
Python 3
WRONG_ANSWER
TESTS
10
530
16,486,400
R = lambda : map(int, input().split()) n = int(input()) p = [] for i in range(n): x,y = R() p.append((x,y,i+1)) p = sorted(p) for i in range(n-2): if p[i][0] != p[i+2][0]: print(p[i][2],p[i+1][2],p[i+2][2]) exit()
Title: Constellation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Cat Noku has obtained a map of the night sky. On this map, he found a constellation with *n* stars numbered from 1 to *n*. For each *i*, the *i*-th star is located at coordinates (*x**i*,<=*y**i*). No two stars are locate...
```python R = lambda : map(int, input().split()) n = int(input()) p = [] for i in range(n): x,y = R() p.append((x,y,i+1)) p = sorted(p) for i in range(n-2): if p[i][0] != p[i+2][0]: print(p[i][2],p[i+1][2],p[i+2][2]) exit() ```
0
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,693,808,771
2,147,483,647
Python 3
OK
TESTS
35
92
0
m,n=map(int,input().split()) x=m*n print(x//2) #5a2
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python m,n=map(int,input().split()) x=m*n print(x//2) #5a2 ```
3.977
381
A
Sereja and Dima
PROGRAMMING
800
[ "greedy", "implementation", "two pointers" ]
null
null
Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. During his turn a player can take one card: either the leftmost card in a row, or the rightmost one. Th...
The first line contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of cards on the table. The second line contains space-separated numbers on the cards from left to right. The numbers on the cards are distinct integers from 1 to 1000.
On a single line, print two integers. The first number is the number of Sereja's points at the end of the game, the second number is the number of Dima's points at the end of the game.
[ "4\n4 1 2 10\n", "7\n1 2 3 4 5 6 7\n" ]
[ "12 5\n", "16 12\n" ]
In the first sample Sereja will take cards with numbers 10 and 2, so Sereja's sum is 12. Dima will take cards with numbers 4 and 1, so Dima's sum is 5.
500
[ { "input": "4\n4 1 2 10", "output": "12 5" }, { "input": "7\n1 2 3 4 5 6 7", "output": "16 12" }, { "input": "42\n15 29 37 22 16 5 26 31 6 32 19 3 45 36 33 14 25 20 48 7 42 11 24 28 9 18 8 21 47 17 38 40 44 4 35 1 43 39 41 27 12 13", "output": "613 418" }, { "input": "43\n32 ...
1,698,598,299
2,147,483,647
Python 3
OK
TESTS
34
46
0
n=int(input()) l=list(map(int,input().split())) s1=0 s2=len(l)-1 c=0 se=0 sd=0 while s1<=s2: m=max(l[s1],l[s2]) if(m==l[s2]): s2-=1 else: s1+=1 if(c%2==0): se+=m else: sd+=m c+=1 print(se,sd)
Title: Sereja and Dima Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. Du...
```python n=int(input()) l=list(map(int,input().split())) s1=0 s2=len(l)-1 c=0 se=0 sd=0 while s1<=s2: m=max(l[s1],l[s2]) if(m==l[s2]): s2-=1 else: s1+=1 if(c%2==0): se+=m else: sd+=m c+=1 print(se,sd) ```
3
248
A
Cupboards
PROGRAMMING
800
[ "implementation" ]
null
null
One foggy Stockholm morning, Karlsson decided to snack on some jam in his friend Lillebror Svantenson's house. Fortunately for Karlsson, there wasn't anybody in his friend's house. Karlsson was not going to be hungry any longer, so he decided to get some food in the house. Karlsson's gaze immediately fell on *n* woode...
The first input line contains a single integer *n* — the number of cupboards in the kitchen (2<=≤<=*n*<=≤<=104). Then follow *n* lines, each containing two integers *l**i* and *r**i* (0<=≤<=*l**i*,<=*r**i*<=≤<=1). Number *l**i* equals one, if the left door of the *i*-th cupboard is opened, otherwise number *l**i* equal...
In the only output line print a single integer *t* — the minimum number of seconds Karlsson needs to change the doors of all cupboards to the position he needs.
[ "5\n0 1\n1 0\n0 1\n1 1\n0 1\n" ]
[ "3\n" ]
none
500
[ { "input": "5\n0 1\n1 0\n0 1\n1 1\n0 1", "output": "3" }, { "input": "2\n0 0\n0 0", "output": "0" }, { "input": "3\n0 1\n1 1\n1 1", "output": "1" }, { "input": "8\n0 1\n1 0\n0 1\n1 1\n0 1\n1 0\n0 1\n1 0", "output": "7" }, { "input": "8\n1 0\n1 0\n1 0\n0 1\n0 1\n1 ...
1,607,506,701
2,147,483,647
PyPy 3
OK
TESTS
57
530
3,481,600
from collections import defaultdict left = defaultdict(int) right = defaultdict(int) n = int(input()) for _ in range(n): l,r = map(int,input().split()) left[l] += 1 right[r] += 1 print(n-max(left.values())+n-max(right.values()))
Title: Cupboards Time Limit: None seconds Memory Limit: None megabytes Problem Description: One foggy Stockholm morning, Karlsson decided to snack on some jam in his friend Lillebror Svantenson's house. Fortunately for Karlsson, there wasn't anybody in his friend's house. Karlsson was not going to be hungry any long...
```python from collections import defaultdict left = defaultdict(int) right = defaultdict(int) n = int(input()) for _ in range(n): l,r = map(int,input().split()) left[l] += 1 right[r] += 1 print(n-max(left.values())+n-max(right.values())) ```
3
985
F
Isomorphic Strings
PROGRAMMING
2,300
[ "hashing", "strings" ]
null
null
You are given a string *s* of length *n* consisting of lowercase English letters. For two given strings *s* and *t*, say *S* is the set of distinct characters of *s* and *T* is the set of distinct characters of *t*. The strings *s* and *t* are isomorphic if their lengths are equal and there is a one-to-one mapping (bi...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*n*<=≤<=2·105, 1<=≤<=*m*<=≤<=2·105) — the length of the string *s* and the number of queries. The second line contains string *s* consisting of *n* lowercase English letters. The following *m* lines contain a single query on each line: *x**i*, *y...
For each query in a separate line print "YES" if substrings *s*[*x**i*... *x**i*<=+<=*len**i*<=-<=1] and *s*[*y**i*... *y**i*<=+<=*len**i*<=-<=1] are isomorphic and "NO" otherwise.
[ "7 4\nabacaba\n1 1 1\n1 4 2\n2 1 3\n2 4 3\n" ]
[ "YES\nYES\nNO\nYES\n" ]
The queries in the example are following: 1. substrings "a" and "a" are isomorphic: *f*(*a*) = *a*; 1. substrings "ab" and "ca" are isomorphic: *f*(*a*) = *c*, *f*(*b*) = *a*; 1. substrings "bac" and "aba" are not isomorphic since *f*(*b*) and *f*(*c*) must be equal to *a* at same time; 1. substrings "bac" and "c...
0
[ { "input": "7 4\nabacaba\n1 1 1\n1 4 2\n2 1 3\n2 4 3", "output": "YES\nYES\nNO\nYES" }, { "input": "1 2\nz\n1 1 1\n1 1 1", "output": "YES\nYES" }, { "input": "36 4\naababcbbcbczaaawwwwwaaaabbbbtestbest\n1 7 6\n13 18 5\n23 26 3\n29 33 4", "output": "YES\nYES\nNO\nNO" }, { "inp...
1,586,918,309
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
3,000
512,000
import sys def check(s, t): ds = {} dt = {} for char in 'abcdefghijklmnopqrstuvwxyz': ds[char] = None dt[char] = None ls = len(s) for i in range(ls): s_char = s[i] t_char = t[i] if ds[s_char] is None: ds[s_char] = t_char else: ...
Title: Isomorphic Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string *s* of length *n* consisting of lowercase English letters. For two given strings *s* and *t*, say *S* is the set of distinct characters of *s* and *T* is the set of distinct characters of *t*....
```python import sys def check(s, t): ds = {} dt = {} for char in 'abcdefghijklmnopqrstuvwxyz': ds[char] = None dt[char] = None ls = len(s) for i in range(ls): s_char = s[i] t_char = t[i] if ds[s_char] is None: ds[s_char] = t_char else: ...
0
887
C
Solution for Cube
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
During the breaks between competitions, top-model Izabella tries to develop herself and not to be bored. For example, now she tries to solve Rubik's cube 2x2x2. It's too hard to learn to solve Rubik's cube instantly, so she learns to understand if it's possible to solve the cube in some state using 90-degrees rotation...
In first line given a sequence of 24 integers *a**i* (1<=≤<=*a**i*<=≤<=6), where *a**i* denotes color of *i*-th square. There are exactly 4 occurrences of all colors in this sequence.
Print «YES» (without quotes) if it's possible to solve cube using one rotation and «NO» (without quotes) otherwise.
[ "2 5 4 6 1 3 6 2 5 5 1 2 3 5 3 1 1 2 4 6 6 4 3 4\n", "5 3 5 3 2 5 2 5 6 2 6 2 4 4 4 4 1 1 1 1 6 3 6 3\n" ]
[ "NO", "YES" ]
In first test case cube looks like this: In second test case cube looks like this: It's possible to solve cube by rotating face with squares with numbers 13, 14, 15, 16.
1,500
[ { "input": "2 5 4 6 1 3 6 2 5 5 1 2 3 5 3 1 1 2 4 6 6 4 3 4", "output": "NO" }, { "input": "5 3 5 3 2 5 2 5 6 2 6 2 4 4 4 4 1 1 1 1 6 3 6 3", "output": "YES" }, { "input": "2 6 3 3 5 5 2 6 1 1 6 4 4 4 2 4 6 5 3 1 2 5 3 1", "output": "NO" }, { "input": "3 4 2 3 5 5 6 6 4 5 4 6...
1,509,733,186
8,086
Python 3
WRONG_ANSWER
PRETESTS
6
62
0
c = list(map(int, input().split())) c.insert(0, 0) res = False if (c[1] == c[3] and c[5] == c[7] and c[9] == c[11] and c[22] == c[24] and c[2] == c[4] and c[6] == c[8] and c[10] == c[12] and c[21] == c[23]): if c[1] != c[2] and (c[1] == c[6] or c[1] == c[21]): res = True if (c[1] == c[2] and c[18...
Title: Solution for Cube Time Limit: None seconds Memory Limit: None megabytes Problem Description: During the breaks between competitions, top-model Izabella tries to develop herself and not to be bored. For example, now she tries to solve Rubik's cube 2x2x2. It's too hard to learn to solve Rubik's cube instantly,...
```python c = list(map(int, input().split())) c.insert(0, 0) res = False if (c[1] == c[3] and c[5] == c[7] and c[9] == c[11] and c[22] == c[24] and c[2] == c[4] and c[6] == c[8] and c[10] == c[12] and c[21] == c[23]): if c[1] != c[2] and (c[1] == c[6] or c[1] == c[21]): res = True if (c[1] == c[2...
0
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,662,231,251
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
1,122
15,974,400
from urllib import request req = request.Request("https://www.codeforces.com") resp = request.urlopen(req,timeout=1) input() print(resp.code)
Title: Word Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it ei...
```python from urllib import request req = request.Request("https://www.codeforces.com") resp = request.urlopen(req,timeout=1) input() print(resp.code) ```
-1
0
none
none
none
0
[ "none" ]
null
null
Mojtaba and Arpa are playing a game. They have a list of *n* numbers in the game. In a player's turn, he chooses a number *p**k* (where *p* is a prime number and *k* is a positive integer) such that *p**k* divides at least one number in the list. For each number in the list divisible by *p**k*, call it *x*, the player...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in the list. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the elements of the list.
If Mojtaba wins, print "Mojtaba", otherwise print "Arpa" (without quotes). You can print each letter in any case (upper or lower).
[ "4\n1 1 1 1\n", "4\n1 1 17 17\n", "4\n1 1 17 289\n", "5\n1 2 3 4 5\n" ]
[ "Arpa\n", "Mojtaba\n", "Arpa\n", "Arpa\n" ]
In the first sample test, Mojtaba can't move. In the second sample test, Mojtaba chooses *p* = 17 and *k* = 1, then the list changes to [1, 1, 1, 1]. In the third sample test, if Mojtaba chooses *p* = 17 and *k* = 1, then Arpa chooses *p* = 17 and *k* = 1 and wins, if Mojtaba chooses *p* = 17 and *k* = 2, then Arpa c...
0
[]
1,505,478,311
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
78
0
import itertools import sys def pFactors(n): """Finds the prime factors of 'n'""" from math import sqrt pFact, limit, check, num = [], int(sqrt(n)) + 1, 2, n if n == 1: return [1] for check in range(2, limit): while num % check == 0: pFact.append(check) num /= check...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mojtaba and Arpa are playing a game. They have a list of *n* numbers in the game. In a player's turn, he chooses a number *p**k* (where *p* is a prime number and *k* is a positive integer) such that *p**k* divides at least one nu...
```python import itertools import sys def pFactors(n): """Finds the prime factors of 'n'""" from math import sqrt pFact, limit, check, num = [], int(sqrt(n)) + 1, 2, n if n == 1: return [1] for check in range(2, limit): while num % check == 0: pFact.append(check) nu...
0
467
B
Fedor and New Game
PROGRAMMING
1,100
[ "bitmasks", "brute force", "constructive algorithms", "implementation" ]
null
null
After you had helped George and Alex to move in the dorm, they went to help their friend Fedor play a new computer game «Call of Soldiers 3». The game has (*m*<=+<=1) players and *n* types of soldiers in total. Players «Call of Soldiers 3» are numbered form 1 to (*m*<=+<=1). Types of soldiers are numbered from 0 to *n...
The first line contains three integers *n*, *m*, *k* (1<=≤<=*k*<=≤<=*n*<=≤<=20; 1<=≤<=*m*<=≤<=1000). The *i*-th of the next (*m*<=+<=1) lines contains a single integer *x**i* (1<=≤<=*x**i*<=≤<=2*n*<=-<=1), that describes the *i*-th player's army. We remind you that Fedor is the (*m*<=+<=1)-th player.
Print a single integer — the number of Fedor's potential friends.
[ "7 3 1\n8\n5\n111\n17\n", "3 3 3\n1\n2\n3\n4\n" ]
[ "0\n", "3\n" ]
none
1,000
[ { "input": "7 3 1\n8\n5\n111\n17", "output": "0" }, { "input": "3 3 3\n1\n2\n3\n4", "output": "3" }, { "input": "4 2 2\n5\n6\n7", "output": "2" }, { "input": "4 7 4\n9\n10\n5\n12\n4\n12\n7\n10", "output": "7" }, { "input": "2 7 2\n1\n1\n1\n1\n1\n1\n1\n1", "out...
1,693,641,621
2,147,483,647
Python 3
OK
TESTS
43
46
0
n, m, k = map(int, input().split()) armies = [] # Read and store the binary representations of armies for _ in range(m + 1): army = bin(int(input()))[2:].zfill(n) armies.append(army) fedor_army = armies.pop() # Remove Fedor's army from the list friends_count = 0 # Compare Fedor's army with the ...
Title: Fedor and New Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: After you had helped George and Alex to move in the dorm, they went to help their friend Fedor play a new computer game «Call of Soldiers 3». The game has (*m*<=+<=1) players and *n* types of soldiers in total. Play...
```python n, m, k = map(int, input().split()) armies = [] # Read and store the binary representations of armies for _ in range(m + 1): army = bin(int(input()))[2:].zfill(n) armies.append(army) fedor_army = armies.pop() # Remove Fedor's army from the list friends_count = 0 # Compare Fedor's army...
3
832
A
Sasha and Sticks
PROGRAMMING
800
[ "games", "math" ]
null
null
It's one more school day now. Sasha doesn't like classes and is always bored at them. So, each day he invents some game and plays in it alone or with friends. Today he invented one simple game to play with Lena, with whom he shares a desk. The rules are simple. Sasha draws *n* sticks in a row. After that the players t...
The first line contains two integers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=1018, *k*<=≤<=*n*) — the number of sticks drawn by Sasha and the number *k* — the number of sticks to be crossed out on each turn.
If Sasha wins, print "YES" (without quotes), otherwise print "NO" (without quotes). You can print each letter in arbitrary case (upper of lower).
[ "1 1\n", "10 4\n" ]
[ "YES\n", "NO\n" ]
In the first example Sasha crosses out 1 stick, and then there are no sticks. So Lena can't make a move, and Sasha wins. In the second example Sasha crosses out 4 sticks, then Lena crosses out 4 sticks, and after that there are only 2 sticks left. Sasha can't make a move. The players make equal number of moves, so Sas...
500
[ { "input": "1 1", "output": "YES" }, { "input": "10 4", "output": "NO" }, { "input": "251656215122324104 164397544865601257", "output": "YES" }, { "input": "963577813436662285 206326039287271924", "output": "NO" }, { "input": "1000000000000000000 1", "output":...
1,650,312,945
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
# # https://codeforces.com/contest/832/problem/A # A. Саша и палочки # ограничение по времени на тест2 секунды # ограничение по памяти на тест256 мегабайт # вводстандартный ввод # выводстандартный вывод # Сегодня очередной учебный день. Саша, как и многие из школьников, # очень не любит уроки и ему постоянно с...
Title: Sasha and Sticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: It's one more school day now. Sasha doesn't like classes and is always bored at them. So, each day he invents some game and plays in it alone or with friends. Today he invented one simple game to play with Lena, with ...
```python # # https://codeforces.com/contest/832/problem/A # A. Саша и палочки # ограничение по времени на тест2 секунды # ограничение по памяти на тест256 мегабайт # вводстандартный ввод # выводстандартный вывод # Сегодня очередной учебный день. Саша, как и многие из школьников, # очень не любит уроки и ему п...
0
593
A
2Char
PROGRAMMING
1,200
[ "brute force", "implementation" ]
null
null
Andrew often reads articles in his favorite magazine 2Char. The main feature of these articles is that each of them uses at most two distinct letters. Andrew decided to send an article to the magazine, but as he hasn't written any article, he just decided to take a random one from magazine 26Char. However, before sendi...
The first line of the input contains number *n* (1<=≤<=*n*<=≤<=100) — the number of words in the article chosen by Andrew. Following are *n* lines, each of them contains one word. All the words consist only of small English letters and their total length doesn't exceed 1000. The words are not guaranteed to be distinct,...
Print a single integer — the maximum possible total length of words in Andrew's article.
[ "4\nabb\ncacc\naaa\nbbb\n", "5\na\na\nbcbcb\ncdecdecdecdecdecde\naaaa\n" ]
[ "9", "6" ]
In the first sample the optimal way to choose words is {'abb', 'aaa', 'bbb'}. In the second sample the word 'cdecdecdecdecdecde' consists of three distinct letters, and thus cannot be used in the article. The optimal answer is {'a', 'a', 'aaaa'}.
250
[ { "input": "4\nabb\ncacc\naaa\nbbb", "output": "9" }, { "input": "5\na\na\nbcbcb\ncdecdecdecdecdecde\naaaa", "output": "6" }, { "input": "1\na", "output": "1" }, { "input": "2\nz\nz", "output": "2" }, { "input": "5\nabcde\nfghij\nklmno\npqrst\nuvwxy", "output"...
1,681,540,005
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
46
0
n = int(input()) s = input() max_len = 0 for c in range(26): first = second = -1 curr_len = 0 for i in range(n): if s[i] == chr(c + 97): if second != -1 and s[i] != s[second]: curr_len = i - first first = second second = i elif s[i] !...
Title: 2Char Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrew often reads articles in his favorite magazine 2Char. The main feature of these articles is that each of them uses at most two distinct letters. Andrew decided to send an article to the magazine, but as he hasn't written an...
```python n = int(input()) s = input() max_len = 0 for c in range(26): first = second = -1 curr_len = 0 for i in range(n): if s[i] == chr(c + 97): if second != -1 and s[i] != s[second]: curr_len = i - first first = second second = i e...
-1
496
A
Minimum Difficulty
PROGRAMMING
900
[ "brute force", "implementation", "math" ]
null
null
Mike is trying rock climbing but he is awful at it. There are *n* holds on the wall, *i*-th hold is at height *a**i* off the ground. Besides, let the sequence *a**i* increase, that is, *a**i*<=&lt;<=*a**i*<=+<=1 for all *i* from 1 to *n*<=-<=1; we will call such sequence a track. Mike thinks that the track *a*1, ...,...
The first line contains a single integer *n* (3<=≤<=*n*<=≤<=100) — the number of holds. The next line contains *n* space-separated integers *a**i* (1<=≤<=*a**i*<=≤<=1000), where *a**i* is the height where the hold number *i* hangs. The sequence *a**i* is increasing (i.e. each element except for the first one is strict...
Print a single number — the minimum difficulty of the track after removing a single hold.
[ "3\n1 4 6\n", "5\n1 2 3 4 5\n", "5\n1 2 3 7 8\n" ]
[ "5\n", "2\n", "4\n" ]
In the first sample you can remove only the second hold, then the sequence looks like (1, 6), the maximum difference of the neighboring elements equals 5. In the second test after removing every hold the difficulty equals 2. In the third test you can obtain sequences (1, 3, 7, 8), (1, 2, 7, 8), (1, 2, 3, 8), for whic...
500
[ { "input": "3\n1 4 6", "output": "5" }, { "input": "5\n1 2 3 4 5", "output": "2" }, { "input": "5\n1 2 3 7 8", "output": "4" }, { "input": "3\n1 500 1000", "output": "999" }, { "input": "10\n1 2 3 4 5 6 7 8 9 10", "output": "2" }, { "input": "10\n1 4 9...
1,480,901,838
2,147,483,647
Python 3
OK
TESTS
19
61
0
"""http://codeforces.com/problemset/problem/496/A""" def solve(n, l): difficulties = [] _max = 0 for i in range(1, n): d = l[i] - l[i - 1] difficulties.append(d) _max = max(_max, d) new_difficult = 1000 * 2 for i in range(1, len(difficulties)): new_difficult = min(ne...
Title: Minimum Difficulty Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mike is trying rock climbing but he is awful at it. There are *n* holds on the wall, *i*-th hold is at height *a**i* off the ground. Besides, let the sequence *a**i* increase, that is, *a**i*<=&lt;<=*a**i*<=+<=1 fo...
```python """http://codeforces.com/problemset/problem/496/A""" def solve(n, l): difficulties = [] _max = 0 for i in range(1, n): d = l[i] - l[i - 1] difficulties.append(d) _max = max(_max, d) new_difficult = 1000 * 2 for i in range(1, len(difficulties)): new_difficul...
3
837
A
Text Volume
PROGRAMMING
800
[ "implementation" ]
null
null
You are given a text of single-space separated words, consisting of small and capital Latin letters. Volume of the word is number of capital letters in the word. Volume of the text is maximum volume of all words in the text. Calculate the volume of the given text.
The first line contains one integer number *n* (1<=≤<=*n*<=≤<=200) — length of the text. The second line contains text of single-space separated words *s*1,<=*s*2,<=...,<=*s**i*, consisting only of small and capital Latin letters.
Print one integer number — volume of text.
[ "7\nNonZERO\n", "24\nthis is zero answer text\n", "24\nHarbour Space University\n" ]
[ "5\n", "0\n", "1\n" ]
In the first example there is only one word, there are 5 capital letters in it. In the second example all of the words contain 0 capital letters.
0
[ { "input": "7\nNonZERO", "output": "5" }, { "input": "24\nthis is zero answer text", "output": "0" }, { "input": "24\nHarbour Space University", "output": "1" }, { "input": "2\nWM", "output": "2" }, { "input": "200\nLBmJKQLCKUgtTxMoDsEerwvLOXsxASSydOqWyULsRcjMYDWd...
1,513,685,220
2,147,483,647
Python 3
OK
TESTS
29
93
6,656,000
# =============================== # (c) MidAndFeed aka ASilentVoice # =============================== import math, fractions # =============================== n = int(input()) words = [str(x) for x in input().split()] volume = [] for y in words: volume.append(sum([1 for x in y if ord(x) >= ord("A") and ord(x)...
Title: Text Volume Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a text of single-space separated words, consisting of small and capital Latin letters. Volume of the word is number of capital letters in the word. Volume of the text is maximum volume of all words in the tex...
```python # =============================== # (c) MidAndFeed aka ASilentVoice # =============================== import math, fractions # =============================== n = int(input()) words = [str(x) for x in input().split()] volume = [] for y in words: volume.append(sum([1 for x in y if ord(x) >= ord("A") ...
3
236
A
Boy or Girl
PROGRAMMING
800
[ "brute force", "implementation", "strings" ]
null
null
Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he thought so). After that they talked very often and eventually they became a couple in the network. Bu...
The first line contains a non-empty string, that contains only lowercase English letters — the user name. This string contains at most 100 letters.
If it is a female by our hero's method, print "CHAT WITH HER!" (without the quotes), otherwise, print "IGNORE HIM!" (without the quotes).
[ "wjmzbmr\n", "xiaodao\n", "sevenkplus\n" ]
[ "CHAT WITH HER!\n", "IGNORE HIM!\n", "CHAT WITH HER!\n" ]
For the first example. There are 6 distinct characters in "wjmzbmr". These characters are: "w", "j", "m", "z", "b", "r". So wjmzbmr is a female and you should print "CHAT WITH HER!".
500
[ { "input": "wjmzbmr", "output": "CHAT WITH HER!" }, { "input": "xiaodao", "output": "IGNORE HIM!" }, { "input": "sevenkplus", "output": "CHAT WITH HER!" }, { "input": "pezu", "output": "CHAT WITH HER!" }, { "input": "wnemlgppy", "output": "CHAT WITH HER!" },...
1,696,349,401
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
counter=0 string=input() for i in range(len(string)-1): if string[i]==string[i+1]: counter+=1 else: continue if (len(string)-counter)%2==0: print("CHAT WITH HER!") else: print("IGNORE HIM!")
Title: Boy or Girl Time Limit: None seconds Memory Limit: None megabytes Problem Description: Those days, many boys use beautiful girls' photos as avatars in forums. So it is pretty hard to tell the gender of a user at the first glance. Last year, our hero went to a forum and had a nice chat with a beauty (he though...
```python counter=0 string=input() for i in range(len(string)-1): if string[i]==string[i+1]: counter+=1 else: continue if (len(string)-counter)%2==0: print("CHAT WITH HER!") else: print("IGNORE HIM!") ```
0
429
D
Tricky Function
PROGRAMMING
2,200
[ "data structures", "divide and conquer", "geometry" ]
null
null
Iahub and Sorin are the best competitive programmers in their town. However, they can't both qualify to an important contest. The selection will be made with the help of a single problem. Blatnatalag, a friend of Iahub, managed to get hold of the problem before the contest. Because he wants to make sure Iahub will be t...
The first line of input contains a single integer *n* (2<=≤<=*n*<=≤<=100000). Next line contains *n* integers *a*[1], *a*[2], ..., *a*[*n*] (<=-<=104<=≤<=*a*[*i*]<=≤<=104).
Output a single integer — the value of *min**i*<=≠<=*j*  *f*(*i*,<=*j*).
[ "4\n1 0 0 -1\n", "2\n1 -1\n" ]
[ "1\n", "2\n" ]
none
2,000
[ { "input": "4\n1 0 0 -1", "output": "1" }, { "input": "2\n1 -1", "output": "2" }, { "input": "100\n-57 -64 83 76 80 27 60 76 -80 -56 52 72 -17 92 -96 87 41 -88 94 89 12 42 36 34 -100 -43 -42 62 3 87 -69 -6 -27 -59 -7 5 -90 -23 63 -87 -60 -92 -40 54 -16 -47 67 -64 10 33 -19 53 -7 -62 16 -...
1,612,810,287
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
77
1,945,600
from math import sqrt n = int(input()) A = tuple(map(int, input().split())) B = [] sum = 0 for a in A: sum += a B.append((a, sum)) def dist(x1,x2,y1,y2): return sqrt((x1-x2)**2 + (y1-y2)**2) C = [] for i in range(n): for j in range(i+1, n): x1 = B[i][0] y1 = B[i][1] x2 = ...
Title: Tricky Function Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub and Sorin are the best competitive programmers in their town. However, they can't both qualify to an important contest. The selection will be made with the help of a single problem. Blatnatalag, a friend of Iahub,...
```python from math import sqrt n = int(input()) A = tuple(map(int, input().split())) B = [] sum = 0 for a in A: sum += a B.append((a, sum)) def dist(x1,x2,y1,y2): return sqrt((x1-x2)**2 + (y1-y2)**2) C = [] for i in range(n): for j in range(i+1, n): x1 = B[i][0] y1 = B[i][1] ...
0
731
A
Night at the Museum
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devise that allows to "print" the text of a plastic tape. Text is printed sequentially, character by character...
The only line of input contains the name of some exhibit — the non-empty string consisting of no more than 100 characters. It's guaranteed that the string consists of only lowercase English letters.
Print one integer — the minimum number of rotations of the wheel, required to print the name given in the input.
[ "zeus\n", "map\n", "ares\n" ]
[ "18\n", "35\n", "34\n" ]
To print the string from the first sample it would be optimal to perform the following sequence of rotations: 1. from 'a' to 'z' (1 rotation counterclockwise), 1. from 'z' to 'e' (5 clockwise rotations), 1. from 'e' to 'u' (10 rotations counterclockwise), 1. from 'u' to 's' (2 counterclockwise rotations).
500
[ { "input": "zeus", "output": "18" }, { "input": "map", "output": "35" }, { "input": "ares", "output": "34" }, { "input": "l", "output": "11" }, { "input": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuv", "...
1,626,151,745
2,147,483,647
Python 3
OK
TESTS
44
62
6,963,200
alphabets = 'abcdefghijklmnopqrstuvwxyz' alphabet_dict = {} counter = 1 for alphabet in alphabets: alphabet_dict[alphabet] = counter counter += 1 name = list(input()) num_1 = 1 total_distance = 0 for alphabet in name: num_2 = alphabet_dict[alphabet] distance_1 = abs(num_1 - num_2) dist...
Title: Night at the Museum Time Limit: None seconds Memory Limit: None megabytes Problem Description: Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devis...
```python alphabets = 'abcdefghijklmnopqrstuvwxyz' alphabet_dict = {} counter = 1 for alphabet in alphabets: alphabet_dict[alphabet] = counter counter += 1 name = list(input()) num_1 = 1 total_distance = 0 for alphabet in name: num_2 = alphabet_dict[alphabet] distance_1 = abs(num_1 - num_2)...
3
498
C
Array and Operations
PROGRAMMING
2,100
[ "flows", "graph matchings", "number theory" ]
null
null
You have written on a piece of paper an array of *n* positive integers *a*[1],<=*a*[2],<=...,<=*a*[*n*] and *m* good pairs of integers (*i*1,<=*j*1),<=(*i*2,<=*j*2),<=...,<=(*i**m*,<=*j**m*). Each good pair (*i**k*,<=*j**k*) meets the following conditions: *i**k*<=+<=*j**k* is an odd number and 1<=≤<=*i**k*<=&lt;<=*j**...
The first line contains two space-separated integers *n*, *m* (2<=≤<=*n*<=≤<=100, 1<=≤<=*m*<=≤<=100). The second line contains *n* space-separated integers *a*[1],<=*a*[2],<=...,<=*a*[*n*] (1<=≤<=*a*[*i*]<=≤<=109) — the description of the array. The following *m* lines contain the description of good pairs. The *k*-t...
Output the answer for the problem.
[ "3 2\n8 3 8\n1 2\n2 3\n", "3 2\n8 12 8\n1 2\n2 3\n" ]
[ "0\n", "2\n" ]
none
1,000
[ { "input": "3 2\n8 3 8\n1 2\n2 3", "output": "0" }, { "input": "3 2\n8 12 8\n1 2\n2 3", "output": "2" }, { "input": "6 4\n35 33 46 58 7 61\n4 5\n3 6\n5 6\n1 6", "output": "0" }, { "input": "10 25\n262144 262144 64 64 16 134217728 32 512 32 8192\n1 2\n3 10\n5 8\n9 10\n2 5\n5 1...
1,692,209,850
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
46
0
print("_RANDOM_GUESS_1692209850.2563071")# 1692209850.2563186
Title: Array and Operations Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have written on a piece of paper an array of *n* positive integers *a*[1],<=*a*[2],<=...,<=*a*[*n*] and *m* good pairs of integers (*i*1,<=*j*1),<=(*i*2,<=*j*2),<=...,<=(*i**m*,<=*j**m*). Each good pair (*i**k*...
```python print("_RANDOM_GUESS_1692209850.2563071")# 1692209850.2563186 ```
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,587,544,428
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
109
409,600
import collections a,b=map(int,input().split()) c,d=map(int,input().split()) v=collections.defaultdict(int) i=0 while True: if ((b-d)+a*i)%c==0: print(b+a*i) break if ((b-d)+a*i)%d not in v: v[((b-d)+a*i)%d]+=1 else: print(-1) break i+=1
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 import collections a,b=map(int,input().split()) c,d=map(int,input().split()) v=collections.defaultdict(int) i=0 while True: if ((b-d)+a*i)%c==0: print(b+a*i) break if ((b-d)+a*i)%d not in v: v[((b-d)+a*i)%d]+=1 else: print(-1) break i+=1 ...
0
448
A
Rewards
PROGRAMMING
800
[ "implementation" ]
null
null
Bizon the Champion is called the Champion for a reason. Bizon the Champion has recently got a present — a new glass cupboard with *n* shelves and he decided to put all his presents there. All the presents can be divided into two types: medals and cups. Bizon the Champion has *a*1 first prize cups, *a*2 second prize c...
The first line contains integers *a*1, *a*2 and *a*3 (0<=≤<=*a*1,<=*a*2,<=*a*3<=≤<=100). The second line contains integers *b*1, *b*2 and *b*3 (0<=≤<=*b*1,<=*b*2,<=*b*3<=≤<=100). The third line contains integer *n* (1<=≤<=*n*<=≤<=100). The numbers in the lines are separated by single spaces.
Print "YES" (without the quotes) if all the rewards can be put on the shelves in the described manner. Otherwise, print "NO" (without the quotes).
[ "1 1 1\n1 1 1\n4\n", "1 1 3\n2 3 4\n2\n", "1 0 0\n1 0 0\n1\n" ]
[ "YES\n", "YES\n", "NO\n" ]
none
500
[ { "input": "1 1 1\n1 1 1\n4", "output": "YES" }, { "input": "1 1 3\n2 3 4\n2", "output": "YES" }, { "input": "1 0 0\n1 0 0\n1", "output": "NO" }, { "input": "0 0 0\n0 0 0\n1", "output": "YES" }, { "input": "100 100 100\n100 100 100\n100", "output": "YES" }, ...
1,624,369,872
2,147,483,647
Python 3
OK
TESTS
25
77
0
import math if __name__ == "__main__": (a1,a2,a3) = map(int,input().split()) (b1,b2,b3) = map(int,input().split()) n = int(input()) cups = a1 + a2 + a3 medals = b1 + b2 + b3 count = 0 count += math.ceil(cups/5) + math.ceil(medals/10) if(count <= n): print("Y...
Title: Rewards Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bizon the Champion is called the Champion for a reason. Bizon the Champion has recently got a present — a new glass cupboard with *n* shelves and he decided to put all his presents there. All the presents can be divided into ...
```python import math if __name__ == "__main__": (a1,a2,a3) = map(int,input().split()) (b1,b2,b3) = map(int,input().split()) n = int(input()) cups = a1 + a2 + a3 medals = b1 + b2 + b3 count = 0 count += math.ceil(cups/5) + math.ceil(medals/10) if(count <= n): ...
3
131
A
cAPS lOCK
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in the first passage. Let's consider that a word has been typed with the Caps lock key accidentall...
The first line of the input data contains a word consisting of uppercase and lowercase Latin letters. The word's length is from 1 to 100 characters, inclusive.
Print the result of the given word's processing.
[ "cAPS\n", "Lock\n" ]
[ "Caps", "Lock\n" ]
none
500
[ { "input": "cAPS", "output": "Caps" }, { "input": "Lock", "output": "Lock" }, { "input": "cAPSlOCK", "output": "cAPSlOCK" }, { "input": "CAPs", "output": "CAPs" }, { "input": "LoCK", "output": "LoCK" }, { "input": "OOPS", "output": "oops" }, { ...
1,696,185,448
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
31
0
word = str(input()) if word[1:].upper() == word[1:]: print(word.title()) else: print(word)
Title: cAPS lOCK Time Limit: None seconds Memory Limit: None megabytes Problem Description: wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in th...
```python word = str(input()) if word[1:].upper() == word[1:]: print(word.title()) else: print(word) ```
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,478,862,293
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
18
77
0
s=input() c=0 x="" while(c!=len(s)): if(s[c]=='h' or s[c]=='e' or s[c]=='l' or s[c]=='o'): x=x+s[c] c=c+1 a=x.find('h') b=x.find('e',a+1) c=x.find('l',b+1) d=x.find('l',c+1) e=x.find('o',d+1) z= x[a] + x[b] + x[c] + x[d] + x[e] if(z=="hello"): 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() c=0 x="" while(c!=len(s)): if(s[c]=='h' or s[c]=='e' or s[c]=='l' or s[c]=='o'): x=x+s[c] c=c+1 a=x.find('h') b=x.find('e',a+1) c=x.find('l',b+1) d=x.find('l',c+1) e=x.find('o',d+1) z= x[a] + x[b] + x[c] + x[d] + x[e] if(z=="hello"): print("YES") else: print("...
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,614,236,471
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
108
2,150,400
n, x = map(int, input().split()) o = 0 for i in range(n): s, d = map(str, input().split()) if s == '+': x += int(d) elif s == '-': if x - d > 0: x -= int(d) else: o += 1 print(x, o)
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, x = map(int, input().split()) o = 0 for i in range(n): s, d = map(str, input().split()) if s == '+': x += int(d) elif s == '-': if x - d > 0: x -= int(d) else: o += 1 print(x, o) ```
-1
772
A
Voltage Keepsake
PROGRAMMING
1,800
[ "binary search", "math" ]
null
null
You have *n* devices that you want to use simultaneously. The *i*-th device uses *a**i* units of power per second. This usage is continuous. That is, in λ seconds, the device will use λ·*a**i* units of power. The *i*-th device currently has *b**i* units of power stored. All devices can store an arbitrary amount of pow...
The first line contains two integers, *n* and *p* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*p*<=≤<=109) — the number of devices and the power of the charger. This is followed by *n* lines which contain two integers each. Line *i* contains the integers *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=100<=000) — the power of the dev...
If you can use the devices indefinitely, print -1. Otherwise, print the maximum amount of time before any one device hits 0 power. Your answer will be considered correct if its absolute or relative error does not exceed 10<=-<=4. Namely, let's assume that your answer is *a* and the answer of the jury is *b*. The chec...
[ "2 1\n2 2\n2 1000\n", "1 100\n1 1\n", "3 5\n4 3\n5 2\n6 1\n" ]
[ "2.0000000000", "-1\n", "0.5000000000" ]
In sample test 1, you can charge the first device for the entire time until it hits zero power. The second device has enough power to last this time without being charged. In sample test 2, you can use the device indefinitely. In sample test 3, we can charge the third device for 2 / 5 of a second, then switch to char...
500
[ { "input": "2 1\n2 2\n2 1000", "output": "2.0000000000" }, { "input": "1 100\n1 1", "output": "-1" }, { "input": "3 5\n4 3\n5 2\n6 1", "output": "0.5000000000" }, { "input": "1 1\n1 87", "output": "-1" }, { "input": "1 1\n100 77", "output": "0.7777777778" },...
1,697,032,019
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; typedef long long ll; int main(){ ll n,p; scanf("%lld %lld",&n,&p); ll arr[n][2]; for (int i=0;i<n;i++){ scanf("%lld %lld",&arr[i][0],&arr[i][1]); } double lo = 0; double hi = 1e10; do...
Title: Voltage Keepsake Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have *n* devices that you want to use simultaneously. The *i*-th device uses *a**i* units of power per second. This usage is continuous. That is, in λ seconds, the device will use λ·*a**i* units of power. The *i*-...
```python #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; typedef long long ll; int main(){ ll n,p; scanf("%lld %lld",&n,&p); ll arr[n][2]; for (int i=0;i<n;i++){ scanf("%lld %lld",&arr[i][0],&arr[i][1]); } double lo = 0; double hi = ...
-1
753
A
Santa Claus and Candies
PROGRAMMING
1,000
[ "dp", "greedy", "math" ]
null
null
Santa Claus has *n* candies, he dreams to give them as gifts to children. What is the maximal number of children for whose he can give candies if Santa Claus want each kid should get distinct positive integer number of candies. Santa Class wants to give all *n* candies he has.
The only line contains positive integer number *n* (1<=≤<=*n*<=≤<=1000) — number of candies Santa Claus has.
Print to the first line integer number *k* — maximal number of kids which can get candies. Print to the second line *k* distinct integer numbers: number of candies for each of *k* kid. The sum of *k* printed numbers should be exactly *n*. If there are many solutions, print any of them.
[ "5\n", "9\n", "2\n" ]
[ "2\n2 3\n", "3\n3 5 1\n", "1\n2 \n" ]
none
500
[ { "input": "5", "output": "2\n1 4 " }, { "input": "9", "output": "3\n1 2 6 " }, { "input": "2", "output": "1\n2 " }, { "input": "1", "output": "1\n1 " }, { "input": "3", "output": "2\n1 2 " }, { "input": "1000", "output": "44\n1 2 3 4 5 6 7 8 9 10 ...
1,574,196,962
2,147,483,647
Python 3
OK
TESTS
49
109
0
n= int(input()) a=[] i=1 while i<=n: a.append(i) n-=i i+=1 a[-1]+=n print(len(a)) print(*a)
Title: Santa Claus and Candies Time Limit: None seconds Memory Limit: None megabytes Problem Description: Santa Claus has *n* candies, he dreams to give them as gifts to children. What is the maximal number of children for whose he can give candies if Santa Claus want each kid should get distinct positive integer n...
```python n= int(input()) a=[] i=1 while i<=n: a.append(i) n-=i i+=1 a[-1]+=n print(len(a)) print(*a) ```
3
34
B
Sale
PROGRAMMING
900
[ "greedy", "sortings" ]
B. Sale
2
256
Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can «buy» any TV sets he wants. Though he's very strong, Bob can carry at most *m* TV set...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*m*<=≤<=*n*<=≤<=100) — amount of TV sets at the sale, and amount of TV sets that Bob can carry. The following line contains *n* space-separated integers *a**i* (<=-<=1000<=≤<=*a**i*<=≤<=1000) — prices of the TV sets.
Output the only number — the maximum sum of money that Bob can earn, given that he can carry at most *m* TV sets.
[ "5 3\n-6 0 35 -2 4\n", "4 2\n7 0 0 -7\n" ]
[ "8\n", "7\n" ]
none
1,000
[ { "input": "5 3\n-6 0 35 -2 4", "output": "8" }, { "input": "4 2\n7 0 0 -7", "output": "7" }, { "input": "6 6\n756 -611 251 -66 572 -818", "output": "1495" }, { "input": "5 5\n976 437 937 788 518", "output": "0" }, { "input": "5 3\n-2 -2 -2 -2 -2", "output": "...
1,645,347,723
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
0
n, m = [int(i) for i in input().split()] s = [int(j) for j in input().split()] l = sorted(s)[:m] out = -sum(l) print(out)
Title: Sale Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can...
```python n, m = [int(i) for i in input().split()] s = [int(j) for j in input().split()] l = sorted(s)[:m] out = -sum(l) print(out) ```
0
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,613,066,292
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
m=int(input()) n=int(input()) a=m*n r=a//2 print(r)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python m=int(input()) n=int(input()) a=m*n r=a//2 print(r) ```
-1
131
A
cAPS lOCK
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in the first passage. Let's consider that a word has been typed with the Caps lock key accidentall...
The first line of the input data contains a word consisting of uppercase and lowercase Latin letters. The word's length is from 1 to 100 characters, inclusive.
Print the result of the given word's processing.
[ "cAPS\n", "Lock\n" ]
[ "Caps", "Lock\n" ]
none
500
[ { "input": "cAPS", "output": "Caps" }, { "input": "Lock", "output": "Lock" }, { "input": "cAPSlOCK", "output": "cAPSlOCK" }, { "input": "CAPs", "output": "CAPs" }, { "input": "LoCK", "output": "LoCK" }, { "input": "OOPS", "output": "oops" }, { ...
1,691,985,827
2,147,483,647
PyPy 3-64
OK
TESTS
56
62
0
word = input() if word[0].islower() and word[1:].isupper(): print(word.title()) elif word.isupper(): print(word.lower()) elif len(word) == 1 and word.islower(): print(word.upper()) else: print(word)
Title: cAPS lOCK Time Limit: None seconds Memory Limit: None megabytes Problem Description: wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in th...
```python word = input() if word[0].islower() and word[1:].isupper(): print(word.title()) elif word.isupper(): print(word.lower()) elif len(word) == 1 and word.islower(): print(word.upper()) else: print(word) ```
3
378
A
Playing with Dice
PROGRAMMING
800
[ "brute force" ]
null
null
Two players are playing a game. First each of them writes an integer from 1 to 6, and then a dice is thrown. The player whose written number got closer to the number on the dice wins. If both payers have the same difference, it's a draw. The first player wrote number *a*, the second player wrote number *b*. How many w...
The single line contains two integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=6) — the numbers written on the paper by the first and second player, correspondingly.
Print three integers: the number of ways to throw the dice at which the first player wins, the game ends with a draw or the second player wins, correspondingly.
[ "2 5\n", "2 4\n" ]
[ "3 0 3\n", "2 1 3\n" ]
The dice is a standard cube-shaped six-sided object with each side containing a number from 1 to 6, and where all numbers on all sides are distinct. You can assume that number *a* is closer to number *x* than number *b*, if |*a* - *x*| &lt; |*b* - *x*|.
500
[ { "input": "2 5", "output": "3 0 3" }, { "input": "2 4", "output": "2 1 3" }, { "input": "5 3", "output": "2 1 3" }, { "input": "1 6", "output": "3 0 3" }, { "input": "5 1", "output": "3 1 2" }, { "input": "6 3", "output": "2 0 4" }, { "inp...
1,567,807,915
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
def dicegame(a,b): l=[0,0,0] for i in range(1, 7): if abs(a-i)<abs(b-i): l(1)=l(1)+1 elif abs(a-i)=abs(b-i): l(2)=l(2)+1 else: l(3)=l(3)+1 return l
Title: Playing with Dice Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two players are playing a game. First each of them writes an integer from 1 to 6, and then a dice is thrown. The player whose written number got closer to the number on the dice wins. If both payers have the same diff...
```python def dicegame(a,b): l=[0,0,0] for i in range(1, 7): if abs(a-i)<abs(b-i): l(1)=l(1)+1 elif abs(a-i)=abs(b-i): l(2)=l(2)+1 else: l(3)=l(3)+1 return l ```
-1
309
C
Memory for Arrays
PROGRAMMING
1,900
[ "binary search", "bitmasks", "greedy" ]
null
null
You get to work and turn on the computer. You start coding and give little thought to the RAM role in the whole process. In this problem your task is to solve one of the problems you encounter in your computer routine. We'll consider the RAM as a sequence of cells that can contain data. Some cells already contain some...
The first line of the input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=106). The next line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109). The next line contains *m* integers *b*1,<=*b*2,<=...,<=*b**m* (1<=≤<=2*b**i*<=≤<=109).
Print a single integer — the answer to the problem.
[ "5 3\n8 4 3 2 2\n3 2 2\n", "10 6\n1 1 1 1 1 1 1 1 1 1\n0 0 0 0 0 0\n" ]
[ "2\n", "6\n" ]
In the first example you are given memory clusters with sizes 8, 4, 3, 2, 2 and arrays with sizes 8, 4, 4. There are few ways to obtain an answer equals 2: you can locate array with size 8 to the cluster with size 8, and one of the arrays with size 4 to the cluster with size 4. Another way is to locate two arrays with ...
1,000
[ { "input": "5 3\n8 4 3 2 2\n3 2 2", "output": "2" }, { "input": "10 6\n1 1 1 1 1 1 1 1 1 1\n0 0 0 0 0 0", "output": "6" }, { "input": "5 10\n4 4 3 3 3\n0 0 0 0 0 2 0 2 0 0", "output": "10" }, { "input": "5 10\n3 4 5 4 3\n1 2 1 0 1 2 1 0 2 0", "output": "9" }, { "i...
1,696,854,103
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
122
2,764,800
n, m = map(int, input().split()) # Считываем количество участков памяти и массивов # Инициализация списков для хранения участков памяти и массивов a = [0] * 33 b = [0] * 33 # Заполняем список a информацией о участках памяти for _ in range(n): v = int(input()) i = 31 # Преобразуем число v в ...
Title: Memory for Arrays Time Limit: None seconds Memory Limit: None megabytes Problem Description: You get to work and turn on the computer. You start coding and give little thought to the RAM role in the whole process. In this problem your task is to solve one of the problems you encounter in your computer routine...
```python n, m = map(int, input().split()) # Считываем количество участков памяти и массивов # Инициализация списков для хранения участков памяти и массивов a = [0] * 33 b = [0] * 33 # Заполняем список a информацией о участках памяти for _ in range(n): v = int(input()) i = 31 # Преобразуем ...
-1
488
A
Giga Tower
PROGRAMMING
1,100
[ "brute force" ]
null
null
Giga Tower is the tallest and deepest building in Cyberland. There are 17<=777<=777<=777 floors, numbered from <=-<=8<=888<=888<=888 to 8<=888<=888<=888. In particular, there is floor 0 between floor <=-<=1 and floor 1. Every day, thousands of tourists come to this place to enjoy the wonderful view. In Cyberland, it ...
The only line of input contains an integer *a* (<=-<=109<=≤<=*a*<=≤<=109).
Print the minimum *b* in a line.
[ "179\n", "-1\n", "18\n" ]
[ "1\n", "9\n", "10\n" ]
For the first sample, he has to arrive at the floor numbered 180. For the second sample, he will arrive at 8. Note that *b* should be positive, so the answer for the third sample is 10, not 0.
500
[ { "input": "179", "output": "1" }, { "input": "-1", "output": "9" }, { "input": "18", "output": "10" }, { "input": "-410058385", "output": "1" }, { "input": "-586825624", "output": "1" }, { "input": "852318890", "output": "1" }, { "input": ...
1,442,509,530
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
0
n = int(input()) i = 0 while True: if '8' in str(n + i): print(i) exit(0) i += 1
Title: Giga Tower Time Limit: None seconds Memory Limit: None megabytes Problem Description: Giga Tower is the tallest and deepest building in Cyberland. There are 17<=777<=777<=777 floors, numbered from <=-<=8<=888<=888<=888 to 8<=888<=888<=888. In particular, there is floor 0 between floor <=-<=1 and floor 1. Ever...
```python n = int(input()) i = 0 while True: if '8' in str(n + i): print(i) exit(0) i += 1 ```
0
246
D
Colorful Graph
PROGRAMMING
1,600
[ "brute force", "dfs and similar", "graphs" ]
null
null
You've got an undirected graph, consisting of *n* vertices and *m* edges. We will consider the graph's vertices numbered with integers from 1 to *n*. Each vertex of the graph has a color. The color of the *i*-th vertex is an integer *c**i*. Let's consider all vertices of the graph, that are painted some color *k*. Let...
The first line contains two space-separated integers *n*,<=*m* (1<=≤<=*n*,<=*m*<=≤<=105) — the number of vertices end edges of the graph, correspondingly. The second line contains a sequence of integers *c*1,<=*c*2,<=...,<=*c**n* (1<=≤<=*c**i*<=≤<=105) — the colors of the graph vertices. The numbers on the line are sep...
Print the number of the color which has the set of neighbours with the maximum cardinality. It there are multiple optimal colors, print the color with the minimum number. Please note, that you want to find such color, that the graph has at least one vertex with such color.
[ "6 6\n1 1 2 3 5 8\n1 2\n3 2\n1 4\n4 3\n4 5\n4 6\n", "5 6\n4 2 5 2 4\n1 2\n2 3\n3 1\n5 3\n5 4\n3 4\n" ]
[ "3\n", "2\n" ]
none
2,000
[ { "input": "6 6\n1 1 2 3 5 8\n1 2\n3 2\n1 4\n4 3\n4 5\n4 6", "output": "3" }, { "input": "5 6\n4 2 5 2 4\n1 2\n2 3\n3 1\n5 3\n5 4\n3 4", "output": "2" }, { "input": "3 1\n13 13 4\n1 2", "output": "4" }, { "input": "2 1\n500 300\n1 2", "output": "300" }, { "input":...
1,691,378,402
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
62
307,200
from collections import defaultdict def solve(n,colors,edges): graph=defaultdict(set) for u,v in edges: u-=1 v-=1 graph[colors[u]].add(colors[v]) graph[colors[v]].add(colors[u]) ans=None curr=0 for k,v in graph.items(): if len(v)>curr: ...
Title: Colorful Graph Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got an undirected graph, consisting of *n* vertices and *m* edges. We will consider the graph's vertices numbered with integers from 1 to *n*. Each vertex of the graph has a color. The color of the *i*-th vertex i...
```python from collections import defaultdict def solve(n,colors,edges): graph=defaultdict(set) for u,v in edges: u-=1 v-=1 graph[colors[u]].add(colors[v]) graph[colors[v]].add(colors[u]) ans=None curr=0 for k,v in graph.items(): if len(v)...
0
999
C
Alphabetic Removals
PROGRAMMING
1,200
[ "implementation" ]
null
null
You are given a string $s$ consisting of $n$ lowercase Latin letters. Polycarp wants to remove exactly $k$ characters ($k \le n$) from the string $s$. Polycarp uses the following algorithm $k$ times: - if there is at least one letter 'a', remove the leftmost occurrence and stop the algorithm, otherwise go to next ite...
The first line of input contains two integers $n$ and $k$ ($1 \le k \le n \le 4 \cdot 10^5$) — the length of the string and the number of letters Polycarp will remove. The second line contains the string $s$ consisting of $n$ lowercase Latin letters.
Print the string that will be obtained from $s$ after Polycarp removes exactly $k$ letters using the above algorithm $k$ times. If the resulting string is empty, print nothing. It is allowed to print nothing or an empty line (line break).
[ "15 3\ncccaabababaccbc\n", "15 9\ncccaabababaccbc\n", "1 1\nu\n" ]
[ "cccbbabaccbc\n", "cccccc\n", "" ]
none
0
[ { "input": "15 3\ncccaabababaccbc", "output": "cccbbabaccbc" }, { "input": "15 9\ncccaabababaccbc", "output": "cccccc" }, { "input": "5 2\nzyzyx", "output": "zzy" }, { "input": "4 3\nhack", "output": "k" }, { "input": "4 3\nzzzz", "output": "z" }, { "i...
1,650,619,699
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
4
2,000
37,580,800
n, k = list(map(int, input().split())) s = input() a = list(s) a.sort() a = a[:k] v = {} for i in range(len(a)): if a[i] in v: v[a[i]] += 1 else: v[a[i]] = 1 new = '' for i in range(len(s)): if s[i] in v and v[s[i]] > 0: v[s[i]] -= 1 else: new += s[i] print(new)
Title: Alphabetic Removals Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string $s$ consisting of $n$ lowercase Latin letters. Polycarp wants to remove exactly $k$ characters ($k \le n$) from the string $s$. Polycarp uses the following algorithm $k$ times: - if there is...
```python n, k = list(map(int, input().split())) s = input() a = list(s) a.sort() a = a[:k] v = {} for i in range(len(a)): if a[i] in v: v[a[i]] += 1 else: v[a[i]] = 1 new = '' for i in range(len(s)): if s[i] in v and v[s[i]] > 0: v[s[i]] -= 1 else: new += s[i] print(ne...
0
978
B
File Name
PROGRAMMING
800
[ "greedy", "strings" ]
null
null
You can not just take the file and send it. When Polycarp trying to send a file in the social network "Codehorses", he encountered an unexpected problem. If the name of the file contains three or more "x" (lowercase Latin letters "x") in a row, the system considers that the file content does not correspond to the socia...
The first line contains integer $n$ $(3 \le n \le 100)$ — the length of the file name. The second line contains a string of length $n$ consisting of lowercase Latin letters only — the file name.
Print the minimum number of characters to remove from the file name so after that the name does not contain "xxx" as a substring. If initially the file name dost not contain a forbidden substring "xxx", print 0.
[ "6\nxxxiii\n", "5\nxxoxx\n", "10\nxxxxxxxxxx\n" ]
[ "1\n", "0\n", "8\n" ]
In the first example Polycarp tried to send a file with name contains number $33$, written in Roman numerals. But he can not just send the file, because it name contains three letters "x" in a row. To send the file he needs to remove any one of this letters.
0
[ { "input": "6\nxxxiii", "output": "1" }, { "input": "5\nxxoxx", "output": "0" }, { "input": "10\nxxxxxxxxxx", "output": "8" }, { "input": "100\nxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", "output": "98" }, { ...
1,655,982,144
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
61
0
n=int(input()) w=input() t=0 i=0 c=0 while t==0: if i==len(w)-1: if c>2: print(c-1) else: print(0) break if w[i]!='x': t+=1 else: c+=1 i+=1 if c>2: print(c-2) else: print(0)
Title: File Name Time Limit: None seconds Memory Limit: None megabytes Problem Description: You can not just take the file and send it. When Polycarp trying to send a file in the social network "Codehorses", he encountered an unexpected problem. If the name of the file contains three or more "x" (lowercase Latin let...
```python n=int(input()) w=input() t=0 i=0 c=0 while t==0: if i==len(w)-1: if c>2: print(c-1) else: print(0) break if w[i]!='x': t+=1 else: c+=1 i+=1 if c>2: print(c-2) else: print(0) ```
0
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,635,862,975
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
62
5,017,600
from fractions import Fraction as frac m=[int(i) for i in input().split()] a=max(m) arr=[1,2,3,4,5,6] count=0 for i in range(0, len(arr)): if arr[i] >= a: count+=1 d=frac(count, len(arr)) if d==1: print("1/1") if d==0: print("0/1") if d!=1 or d!=0: print(d)
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python from fractions import Fraction as frac m=[int(i) for i in input().split()] a=max(m) arr=[1,2,3,4,5,6] count=0 for i in range(0, len(arr)): if arr[i] >= a: count+=1 d=frac(count, len(arr)) if d==1: print("1/1") if d==0: print("0/1") if d!=1 or d!=0: print(d) ```
0
67
A
Partial Teacher
PROGRAMMING
1,800
[ "dp", "graphs", "greedy", "implementation" ]
A. Partial Teacher
1
256
A teacher decides to give toffees to his students. He asks *n* students to stand in a queue. Since the teacher is very partial, he follows the following rule to distribute toffees. He looks at the first two students and gives more toffees to the student having higher marks than the other one. If they have the same mar...
The first line of input contains the number of students *n* (2<=≤<=*n*<=≤<=1000). The second line gives (*n*<=-<=1) characters consisting of "L", "R" and "=". For each pair of adjacent students "L" means that the left student has higher marks, "R" means that the right student has higher marks and "=" means that both ha...
Output consists of *n* integers separated by a space representing the number of toffees each student receives in the queue starting from the first one to the last one.
[ "5\nLRLR\n", "5\n=RRR\n" ]
[ "2 1 2 1 2\n", "1 1 2 3 4\n" ]
none
500
[ { "input": "5\nLRLR", "output": "2 1 2 1 2" }, { "input": "5\n=RRR", "output": "1 1 2 3 4" }, { "input": "6\nRLRL=", "output": "1 2 1 2 1 1" }, { "input": "3\nR=", "output": "1 2 2" }, { "input": "7\nRR==RR", "output": "1 2 3 3 3 4 5" }, { "input": "16...
1,534,709,685
2,147,483,647
PyPy 3
OK
TESTS
43
342
716,800
n = int(input()) s = input() ans = [1] * n t = True while t: t = False for i in range(n - 1): if s[i] == '=' and ans[i] != ans[i + 1]: ans[i] = ans[i + 1] = max(ans[i], ans[i + 1]) t = True elif s[i] == 'R' and ans[i] >= ans[i + 1]: ans[i + 1] += ...
Title: Partial Teacher Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: A teacher decides to give toffees to his students. He asks *n* students to stand in a queue. Since the teacher is very partial, he follows the following rule to distribute toffees. He looks at the first two students and gi...
```python n = int(input()) s = input() ans = [1] * n t = True while t: t = False for i in range(n - 1): if s[i] == '=' and ans[i] != ans[i + 1]: ans[i] = ans[i + 1] = max(ans[i], ans[i + 1]) t = True elif s[i] == 'R' and ans[i] >= ans[i + 1]: ans[...
3.827665
337
A
Puzzles
PROGRAMMING
900
[ "greedy" ]
null
null
The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, as wikipedia states, is a tiling puzzle that requires the assembly of numerous small, often od...
The first line contains space-separated integers *n* and *m* (2<=≤<=*n*<=≤<=*m*<=≤<=50). The second line contains *m* space-separated integers *f*1,<=*f*2,<=...,<=*f**m* (4<=≤<=*f**i*<=≤<=1000) — the quantities of pieces in the puzzles sold in the shop.
Print a single integer — the least possible difference the teacher can obtain.
[ "4 6\n10 12 10 7 5 22\n" ]
[ "5\n" ]
Sample 1. The class has 4 students. The shop sells 6 puzzles. If Ms. Manana buys the first four puzzles consisting of 10, 12, 10 and 7 pieces correspondingly, then the difference between the sizes of the largest and the smallest puzzle will be equal to 5. It is impossible to obtain a smaller difference. Note that the t...
500
[ { "input": "4 6\n10 12 10 7 5 22", "output": "5" }, { "input": "2 2\n4 4", "output": "0" }, { "input": "2 10\n4 5 6 7 8 9 10 11 12 12", "output": "0" }, { "input": "4 5\n818 136 713 59 946", "output": "759" }, { "input": "3 20\n446 852 783 313 549 965 40 88 86 617...
1,687,691,574
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
60
0
n, m = [int(i) for i in input().split()] a = sorted([int(i) for i in input().split()]) res = 1001 for i in range(0,m-n): if a[i+n-1] - a[i] < res: res = a[i+n-1] - a[i] print(res)
Title: Puzzles Time Limit: None seconds Memory Limit: None megabytes Problem Description: The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye present for her *n* students and give each of them a jigsaw puzzle (which, a...
```python n, m = [int(i) for i in input().split()] a = sorted([int(i) for i in input().split()]) res = 1001 for i in range(0,m-n): if a[i+n-1] - a[i] < res: res = a[i+n-1] - a[i] print(res) ```
0
509
A
Maximum in Table
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
An *n*<=×<=*n* table *a* is defined as follows: - The first row and the first column contain ones, that is: *a**i*,<=1<==<=*a*1,<=*i*<==<=1 for all *i*<==<=1,<=2,<=...,<=*n*. - Each of the remaining numbers in the table is equal to the sum of the number above it and the number to the left of it. In other words, the ...
The only line of input contains a positive integer *n* (1<=≤<=*n*<=≤<=10) — the number of rows and columns of the table.
Print a single line containing a positive integer *m* — the maximum value in the table.
[ "1\n", "5\n" ]
[ "1", "70" ]
In the second test the rows of the table look as follows:
0
[ { "input": "1", "output": "1" }, { "input": "5", "output": "70" }, { "input": "2", "output": "2" }, { "input": "3", "output": "6" }, { "input": "4", "output": "20" }, { "input": "6", "output": "252" }, { "input": "7", "output": "924" ...
1,698,294,609
2,147,483,647
Python 3
OK
TESTS
10
31
0
import math def glitchinthematrix(f,x): if f==1 or x==1: return 1 else: return glitchinthematrix(f-1,x)+glitchinthematrix(f,x-1) t=int(input()) print(glitchinthematrix(t,t))
Title: Maximum in Table Time Limit: None seconds Memory Limit: None megabytes Problem Description: An *n*<=×<=*n* table *a* is defined as follows: - The first row and the first column contain ones, that is: *a**i*,<=1<==<=*a*1,<=*i*<==<=1 for all *i*<==<=1,<=2,<=...,<=*n*. - Each of the remaining numbers in the t...
```python import math def glitchinthematrix(f,x): if f==1 or x==1: return 1 else: return glitchinthematrix(f-1,x)+glitchinthematrix(f,x-1) t=int(input()) print(glitchinthematrix(t,t)) ```
3
35
B
Warehouse
PROGRAMMING
1,700
[ "implementation" ]
B. Warehouse
2
64
Once upon a time, when the world was more beautiful, the sun shone brighter, the grass was greener and the sausages tasted better Arlandia was the most powerful country. And its capital was the place where our hero DravDe worked. He couldn’t program or make up problems (in fact, few people saw a computer those days) bu...
The first input line contains integers *n*, *m* and *k* (1<=≤<=*n*,<=*m*<=≤<=30, 1<=≤<=*k*<=≤<=2000) — the height, the width of shelving and the amount of the operations in the warehouse that you need to analyze. In the following *k* lines the queries are given in the order of appearance in the format described above.
For each query of the «-1 id» type output two numbers in a separate line — index of the shelf and index of the section where the box with this identifier lay. If there was no such box in the warehouse when the query was made, output «-1 -1» without quotes.
[ "2 2 9\n+1 1 1 cola\n+1 1 1 fanta\n+1 1 1 sevenup\n+1 1 1 whitekey\n-1 cola\n-1 fanta\n-1 sevenup\n-1 whitekey\n-1 cola\n", "2 2 8\n+1 1 1 cola\n-1 cola\n+1 1 1 fanta\n-1 fanta\n+1 1 1 sevenup\n-1 sevenup\n+1 1 1 whitekey\n-1 whitekey\n" ]
[ "1 1\n1 2\n2 1\n2 2\n-1 -1\n", "1 1\n1 1\n1 1\n1 1\n" ]
none
1,000
[ { "input": "2 2 9\n+1 1 1 cola\n+1 1 1 fanta\n+1 1 1 sevenup\n+1 1 1 whitekey\n-1 cola\n-1 fanta\n-1 sevenup\n-1 whitekey\n-1 cola", "output": "1 1\n1 2\n2 1\n2 2\n-1 -1" }, { "input": "2 2 8\n+1 1 1 cola\n-1 cola\n+1 1 1 fanta\n-1 fanta\n+1 1 1 sevenup\n-1 sevenup\n+1 1 1 whitekey\n-1 whitekey", ...
1,691,128,713
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
62
0
print("_RANDOM_GUESS_1691128713.4401124")# 1691128713.440128
Title: Warehouse Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Once upon a time, when the world was more beautiful, the sun shone brighter, the grass was greener and the sausages tasted better Arlandia was the most powerful country. And its capital was the place where our hero DravDe worked. ...
```python print("_RANDOM_GUESS_1691128713.4401124")# 1691128713.440128 ```
0
385
A
Bear and Raspberry
PROGRAMMING
1,000
[ "brute force", "greedy", "implementation" ]
null
null
The bear decided to store some raspberry for the winter. He cunningly found out the price for a barrel of honey in kilos of raspberry for each of the following *n* days. According to the bear's data, on the *i*-th (1<=≤<=*i*<=≤<=*n*) day, the price for one barrel of honey is going to is *x**i* kilos of raspberry. Unfo...
The first line contains two space-separated integers, *n* and *c* (2<=≤<=*n*<=≤<=100,<=0<=≤<=*c*<=≤<=100), — the number of days and the number of kilos of raspberry that the bear should give for borrowing the barrel. The second line contains *n* space-separated integers *x*1,<=*x*2,<=...,<=*x**n* (0<=≤<=*x**i*<=≤<=100...
Print a single integer — the answer to the problem.
[ "5 1\n5 10 7 3 20\n", "6 2\n100 1 10 40 10 40\n", "3 0\n1 2 3\n" ]
[ "3\n", "97\n", "0\n" ]
In the first sample the bear will lend a honey barrel at day 3 and then sell it for 7. Then the bear will buy a barrel for 3 and return it to the friend. So, the profit is (7 - 3 - 1) = 3. In the second sample bear will lend a honey barrel at day 1 and then sell it for 100. Then the bear buy the barrel for 1 at the da...
500
[ { "input": "5 1\n5 10 7 3 20", "output": "3" }, { "input": "6 2\n100 1 10 40 10 40", "output": "97" }, { "input": "3 0\n1 2 3", "output": "0" }, { "input": "2 0\n2 1", "output": "1" }, { "input": "10 5\n10 1 11 2 12 3 13 4 14 5", "output": "4" }, { "in...
1,638,422,895
2,147,483,647
Python 3
OK
TESTS
32
46
0
def solve(n, c, arr): mx = 0 for i in range(len(arr)-1): if (arr[i] - arr[i+1] - c) > 0: mx = max(mx, arr[i] - arr[i+1] - c) return mx n, c = map(int, (input().split())) arr = list(map(int, input().split())) print(solve(n, c, arr))
Title: Bear and Raspberry Time Limit: None seconds Memory Limit: None megabytes Problem Description: The bear decided to store some raspberry for the winter. He cunningly found out the price for a barrel of honey in kilos of raspberry for each of the following *n* days. According to the bear's data, on the *i*-th (1...
```python def solve(n, c, arr): mx = 0 for i in range(len(arr)-1): if (arr[i] - arr[i+1] - c) > 0: mx = max(mx, arr[i] - arr[i+1] - c) return mx n, c = map(int, (input().split())) arr = list(map(int, input().split())) print(solve(n, c, arr)) ```
3
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,579,185,650
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
25
124
512,000
A, B, C = map(int, input().split()) if A == 0 and B == 0 and C == 0: print(-1) elif A == 0 and B == 0: print(0) elif A == 0 and C == 0: print(1) print(0) elif B == 0 and C == 0: print(1) print(0) elif A == 0: print(1) print(-(C / B)) elif B == 0: print(2) Ans1 = -...
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 A, B, C = map(int, input().split()) if A == 0 and B == 0 and C == 0: print(-1) elif A == 0 and B == 0: print(0) elif A == 0 and C == 0: print(1) print(0) elif B == 0 and C == 0: print(1) print(0) elif A == 0: print(1) print(-(C / B)) elif B == 0: print(2) ...
0
34
B
Sale
PROGRAMMING
900
[ "greedy", "sortings" ]
B. Sale
2
256
Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can «buy» any TV sets he wants. Though he's very strong, Bob can carry at most *m* TV set...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*m*<=≤<=*n*<=≤<=100) — amount of TV sets at the sale, and amount of TV sets that Bob can carry. The following line contains *n* space-separated integers *a**i* (<=-<=1000<=≤<=*a**i*<=≤<=1000) — prices of the TV sets.
Output the only number — the maximum sum of money that Bob can earn, given that he can carry at most *m* TV sets.
[ "5 3\n-6 0 35 -2 4\n", "4 2\n7 0 0 -7\n" ]
[ "8\n", "7\n" ]
none
1,000
[ { "input": "5 3\n-6 0 35 -2 4", "output": "8" }, { "input": "4 2\n7 0 0 -7", "output": "7" }, { "input": "6 6\n756 -611 251 -66 572 -818", "output": "1495" }, { "input": "5 5\n976 437 937 788 518", "output": "0" }, { "input": "5 3\n-2 -2 -2 -2 -2", "output": "...
1,610,055,006
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
218
307,200
a,b=map(int,input().split()) c=list(map(int,input().split())) ea=[] ans=0 for _ in c: if(_<0): ea.append(_) if(len(ea)<=b): print(sum(ea)*-1) else: ea=sorted(ea) for _ in range(b): ans+=ea[_] print(ea*-1) # CodeBy: RAHUL MAHAJAN # A2OJ: rahulmahajan # CC: anonymous0...
Title: Sale Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can...
```python a,b=map(int,input().split()) c=list(map(int,input().split())) ea=[] ans=0 for _ in c: if(_<0): ea.append(_) if(len(ea)<=b): print(sum(ea)*-1) else: ea=sorted(ea) for _ in range(b): ans+=ea[_] print(ea*-1) # CodeBy: RAHUL MAHAJAN # A2OJ: rahulmahajan # CC: ...
0
959
A
Mahmoud and Ehab and the even-odd game
PROGRAMMING
800
[ "games", "math" ]
null
null
Mahmoud and Ehab play a game called the even-odd game. Ehab chooses his favorite integer *n* and then they take turns, starting from Mahmoud. In each player's turn, he has to choose an integer *a* and subtract it from *n* such that: - 1<=≤<=*a*<=≤<=*n*. - If it's Mahmoud's turn, *a* has to be even, but if it's Ehab'...
The only line contains an integer *n* (1<=≤<=*n*<=≤<=109), the number at the beginning of the game.
Output "Mahmoud" (without quotes) if Mahmoud wins and "Ehab" (without quotes) otherwise.
[ "1\n", "2\n" ]
[ "Ehab", "Mahmoud" ]
In the first sample, Mahmoud can't choose any integer *a* initially because there is no positive even integer less than or equal to 1 so Ehab wins. In the second sample, Mahmoud has to choose *a* = 2 and subtract it from *n*. It's Ehab's turn and *n* = 0. There is no positive odd integer less than or equal to 0 so Mah...
500
[ { "input": "1", "output": "Ehab" }, { "input": "2", "output": "Mahmoud" }, { "input": "10000", "output": "Mahmoud" }, { "input": "33333", "output": "Ehab" }, { "input": "5", "output": "Ehab" }, { "input": "1000000000", "output": "Mahmoud" }, { ...
1,674,032,188
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
n=int(input()) e=[] for num in range(0, n + 1,2): e.append(num) e.remove(0) print(e) l=len(e) if(l>=(n-l)): print("Mahmoud") else: print("Ehab")
Title: Mahmoud and Ehab and the even-odd game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mahmoud and Ehab play a game called the even-odd game. Ehab chooses his favorite integer *n* and then they take turns, starting from Mahmoud. In each player's turn, he has to choose an integer *a*...
```python n=int(input()) e=[] for num in range(0, n + 1,2): e.append(num) e.remove(0) print(e) l=len(e) if(l>=(n-l)): print("Mahmoud") else: print("Ehab") ```
0
0
none
none
none
0
[ "none" ]
null
null
Yaroslav is playing a game called "Time". The game has a timer showing the lifespan he's got left. As soon as the timer shows 0, Yaroslav's character dies and the game ends. Also, the game has *n* clock stations, station number *i* is at point (*x**i*,<=*y**i*) of the plane. As the player visits station number *i*, he ...
The first line contains integers *n* and *d* (3<=≤<=*n*<=≤<=100,<=103<=≤<=*d*<=≤<=105) — the number of stations and the constant from the statement. The second line contains *n*<=-<=2 integers: *a*2,<=*a*3,<=...,<=*a**n*<=-<=1 (1<=≤<=*a**i*<=≤<=103). The next *n* lines contain the coordinates of the stations. The *i*-...
In a single line print an integer — the answer to the problem.
[ "3 1000\n1000\n0 0\n0 1\n0 3\n", "3 1000\n1000\n1 0\n1 1\n1 2\n" ]
[ "2000\n", "1000\n" ]
none
0
[ { "input": "3 1000\n1000\n0 0\n0 1\n0 3", "output": "2000" }, { "input": "3 1000\n1000\n1 0\n1 1\n1 2", "output": "1000" }, { "input": "5 1421\n896 448 727\n-19 -40\n-87 40\n69 51\n-55 61\n-7 67", "output": "169099" }, { "input": "6 1000\n142 712 254 869\n7 0\n95 38\n96 -20\n...
1,643,087,513
2,147,483,647
PyPy 3-64
OK
TESTS
53
312
9,011,200
from collections import defaultdict as dd from collections import deque import bisect from heapq import heappop, heappush def ri(): return int(input()) def rl(): return list(map(int, input().split())) def dijkstra(G, s): if s not in G: return "starting node not found" dist = {} f...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Yaroslav is playing a game called "Time". The game has a timer showing the lifespan he's got left. As soon as the timer shows 0, Yaroslav's character dies and the game ends. Also, the game has *n* clock stations, station number *i...
```python from collections import defaultdict as dd from collections import deque import bisect from heapq import heappop, heappush def ri(): return int(input()) def rl(): return list(map(int, input().split())) def dijkstra(G, s): if s not in G: return "starting node not found" dist =...
3
551
A
GukiZ and Contest
PROGRAMMING
800
[ "brute force", "implementation", "sortings" ]
null
null
Professor GukiZ likes programming contests. He especially likes to rate his students on the contests he prepares. Now, he has decided to prepare a new contest. In total, *n* students will attend, and before the start, every one of them has some positive integer rating. Students are indexed from 1 to *n*. Let's denote...
The first line contains integer *n* (1<=≤<=*n*<=≤<=2000), number of GukiZ's students. The second line contains *n* numbers *a*1,<=*a*2,<=... *a**n* (1<=≤<=*a**i*<=≤<=2000) where *a**i* is the rating of *i*-th student (1<=≤<=*i*<=≤<=*n*).
In a single line, print the position after the end of the contest for each of *n* students in the same order as they appear in the input.
[ "3\n1 3 3\n", "1\n1\n", "5\n3 5 3 4 5\n" ]
[ "3 1 1\n", "1\n", "4 1 4 3 1\n" ]
In the first sample, students 2 and 3 are positioned first (there is no other student with higher rating), and student 1 is positioned third since there are two students with higher rating. In the second sample, first student is the only one on the contest. In the third sample, students 2 and 5 share the first positi...
500
[ { "input": "3\n1 3 3", "output": "3 1 1" }, { "input": "1\n1", "output": "1" }, { "input": "5\n3 5 3 4 5", "output": "4 1 4 3 1" }, { "input": "7\n1 3 5 4 2 2 1", "output": "6 3 1 2 4 4 6" }, { "input": "11\n5 6 4 2 9 7 6 6 6 6 7", "output": "9 4 10 11 1 2 4 4...
1,434,128,561
1,061
Python 3
WRONG_ANSWER
PRETESTS
0
46
0
n = int(input()) a = [int(x) for x in input().split()] print (a) for i in range(n): a[i] = 1 + len([0 for x in a if int(x) > int(a[i])]) a = [str(x) for x in a] print(' '.join(a))
Title: GukiZ and Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Professor GukiZ likes programming contests. He especially likes to rate his students on the contests he prepares. Now, he has decided to prepare a new contest. In total, *n* students will attend, and before the star...
```python n = int(input()) a = [int(x) for x in input().split()] print (a) for i in range(n): a[i] = 1 + len([0 for x in a if int(x) > int(a[i])]) a = [str(x) for x in a] print(' '.join(a)) ```
0
484
B
Maximum Value
PROGRAMMING
2,100
[ "binary search", "math", "sortings", "two pointers" ]
null
null
You are given a sequence *a* consisting of *n* integers. Find the maximum possible value of (integer remainder of *a**i* divided by *a**j*), where 1<=≤<=*i*,<=*j*<=≤<=*n* and *a**i*<=≥<=*a**j*.
The first line contains integer *n* — the length of the sequence (1<=≤<=*n*<=≤<=2·105). The second line contains *n* space-separated integers *a**i* (1<=≤<=*a**i*<=≤<=106).
Print the answer to the problem.
[ "3\n3 4 5\n" ]
[ "2\n" ]
none
1,000
[ { "input": "3\n3 4 5", "output": "2" }, { "input": "3\n1 2 4", "output": "0" }, { "input": "1\n1", "output": "0" }, { "input": "1\n1000000", "output": "0" }, { "input": "2\n1000000 999999", "output": "1" }, { "input": "12\n4 4 10 13 28 30 41 43 58 61 7...
1,490,176,830
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
1,000
18,841,600
import math def jm(i): return math.floor((i/2)+1) def maxmod(i): return (i-1)//2 def g(a): b = set(a) a.sort(reverse=True) maxa = 0 endi = len(a)-1 i = 0 while i < endi: for j in range(a[i]//2): if (jm(a[i])+j) in b: maxa = maxmod(a...
Title: Maximum Value Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a sequence *a* consisting of *n* integers. Find the maximum possible value of (integer remainder of *a**i* divided by *a**j*), where 1<=≤<=*i*,<=*j*<=≤<=*n* and *a**i*<=≥<=*a**j*. Input Specification: The ...
```python import math def jm(i): return math.floor((i/2)+1) def maxmod(i): return (i-1)//2 def g(a): b = set(a) a.sort(reverse=True) maxa = 0 endi = len(a)-1 i = 0 while i < endi: for j in range(a[i]//2): if (jm(a[i])+j) in b: maxa ...
0
45
A
Codecraft III
PROGRAMMING
900
[ "implementation" ]
A. Codecraft III
2
256
Today Vasya visited a widely known site and learned that the continuation of his favourite game Codecraft II will appear after exactly *k* months. He looked at the calendar and learned that at the moment is the month number *s*. Vasya immediately got interested in what month Codecraft III will appear. Help him understa...
The first input line contains the name of the current month. It is guaranteed that it is a proper English name of one of twelve months. The first letter is uppercase, the rest are lowercase. The second line contains integer *k* (0<=≤<=*k*<=≤<=100) — the number of months left till the appearance of Codecraft III.
Print starting from an uppercase letter the name of the month in which the continuation of Codeforces II will appear. The printed name must be contained in the list January, February, March, April, May, June, July, August, September, October, November, December.
[ "November\n3\n", "May\n24\n" ]
[ "February\n", "May\n" ]
none
0
[ { "input": "November\n3", "output": "February" }, { "input": "May\n24", "output": "May" }, { "input": "April\n0", "output": "April" }, { "input": "September\n0", "output": "September" }, { "input": "August\n0", "output": "August" }, { "input": "June\n1...
1,659,022,482
2,147,483,647
PyPy 3-64
OK
TESTS
25
124
0
a = ['January' , 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] b = (a.index(input()) + int(input())) % 12 print(a[b])
Title: Codecraft III Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Today Vasya visited a widely known site and learned that the continuation of his favourite game Codecraft II will appear after exactly *k* months. He looked at the calendar and learned that at the moment is the month number *...
```python a = ['January' , 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] b = (a.index(input()) + int(input())) % 12 print(a[b]) ```
3.969
620
A
Professor GukiZ's Robot
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Professor GukiZ makes a new robot. The robot are in the point with coordinates (*x*1,<=*y*1) and should go to the point (*x*2,<=*y*2). In a single step the robot can change any of its coordinates (maybe both of them) by one (decrease or increase). So the robot can move in one of the 8 directions. Find the minimal numbe...
The first line contains two integers *x*1,<=*y*1 (<=-<=109<=≤<=*x*1,<=*y*1<=≤<=109) — the start position of the robot. The second line contains two integers *x*2,<=*y*2 (<=-<=109<=≤<=*x*2,<=*y*2<=≤<=109) — the finish position of the robot.
Print the only integer *d* — the minimal number of steps to get the finish position.
[ "0 0\n4 5\n", "3 4\n6 1\n" ]
[ "5\n", "3\n" ]
In the first example robot should increase both of its coordinates by one four times, so it will be in position (4, 4). After that robot should simply increase its *y* coordinate and get the finish position. In the second example robot should simultaneously increase *x* coordinate and decrease *y* coordinate by one th...
0
[ { "input": "0 0\n4 5", "output": "5" }, { "input": "3 4\n6 1", "output": "3" }, { "input": "0 0\n4 6", "output": "6" }, { "input": "1 1\n-3 -5", "output": "6" }, { "input": "-1 -1\n-10 100", "output": "101" }, { "input": "1 -1\n100 -100", "output":...
1,671,757,887
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
30
0
x1, y1 = map(int, input().split()) x2, y2 = map(int, input().split()) moo = 0 por = x1 blu = y1 while x2 < por and y2 < blu: por -= 1 blu -= 1 moo += 1 while x2 > por and y2 > blu: por += 1 blu += 1 moo += 1 if x2 == por: if y2 < blu: while y2 < blu: blu -...
Title: Professor GukiZ's Robot Time Limit: None seconds Memory Limit: None megabytes Problem Description: Professor GukiZ makes a new robot. The robot are in the point with coordinates (*x*1,<=*y*1) and should go to the point (*x*2,<=*y*2). In a single step the robot can change any of its coordinates (maybe both of ...
```python x1, y1 = map(int, input().split()) x2, y2 = map(int, input().split()) moo = 0 por = x1 blu = y1 while x2 < por and y2 < blu: por -= 1 blu -= 1 moo += 1 while x2 > por and y2 > blu: por += 1 blu += 1 moo += 1 if x2 == por: if y2 < blu: while y2 < blu: ...
0
366
B
Dima and To-do List
PROGRAMMING
1,200
[ "brute force", "implementation" ]
null
null
You helped Dima to have a great weekend, but it's time to work. Naturally, Dima, as all other men who have girlfriends, does everything wrong. Inna and Dima are now in one room. Inna tells Dima off for everything he does in her presence. After Inna tells him off for something, she goes to another room, walks there in ...
The first line of the input contains two integers *n*,<=*k* (1<=≤<=*k*<=≤<=*n*<=≤<=105). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=103), where *a**i* is the power Inna tells Dima off with if she is present in the room while he is doing the *i*-th task. It is guaranteed that *n*...
In a single line print the number of the task Dima should start with to get told off with as little power as possible. If there are multiple solutions, print the one with the minimum number of the first task to do.
[ "6 2\n3 2 1 6 5 4\n", "10 5\n1 3 5 7 9 9 4 1 8 5\n" ]
[ "1\n", "3\n" ]
Explanation of the first example. If Dima starts from the first task, Inna tells him off with power 3, then Dima can do one more task (as *k* = 2), then Inna tells him off for the third task with power 1, then she tells him off for the fifth task with power 5. Thus, Dima gets told off with total power 3 + 1 + 5 = 9. I...
1,000
[ { "input": "6 2\n3 2 1 6 5 4", "output": "1" }, { "input": "10 5\n1 3 5 7 9 9 4 1 8 5", "output": "3" }, { "input": "20 4\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1", "output": "1" }, { "input": "10 10\n8 4 5 7 6 9 2 2 3 5", "output": "7" }, { "input": "50 10\n1 2 3...
1,612,956,563
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
6,553,600
def todo_list(n, k, arr): b = arr[0] count = 0 result = 10000*10000 ans = 0 for x in range(0,n): if arr[x] > b: pass else: index = x b = arr[index] while count != (n/k)-1: if b >= result: break else: index = (index+k)%n b += arr[index] count += 1 count = 0 if b < r...
Title: Dima and To-do List Time Limit: None seconds Memory Limit: None megabytes Problem Description: You helped Dima to have a great weekend, but it's time to work. Naturally, Dima, as all other men who have girlfriends, does everything wrong. Inna and Dima are now in one room. Inna tells Dima off for everything h...
```python def todo_list(n, k, arr): b = arr[0] count = 0 result = 10000*10000 ans = 0 for x in range(0,n): if arr[x] > b: pass else: index = x b = arr[index] while count != (n/k)-1: if b >= result: break else: index = (index+k)%n b += arr[index] count += 1 count = 0 ...
0
731
A
Night at the Museum
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devise that allows to "print" the text of a plastic tape. Text is printed sequentially, character by character...
The only line of input contains the name of some exhibit — the non-empty string consisting of no more than 100 characters. It's guaranteed that the string consists of only lowercase English letters.
Print one integer — the minimum number of rotations of the wheel, required to print the name given in the input.
[ "zeus\n", "map\n", "ares\n" ]
[ "18\n", "35\n", "34\n" ]
To print the string from the first sample it would be optimal to perform the following sequence of rotations: 1. from 'a' to 'z' (1 rotation counterclockwise), 1. from 'z' to 'e' (5 clockwise rotations), 1. from 'e' to 'u' (10 rotations counterclockwise), 1. from 'u' to 's' (2 counterclockwise rotations).
500
[ { "input": "zeus", "output": "18" }, { "input": "map", "output": "35" }, { "input": "ares", "output": "34" }, { "input": "l", "output": "11" }, { "input": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuv", "...
1,685,961,712
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
s = str(input()) alphabet = "abcdefghijklmnopqrstuvwxyz"; initialPos = "a" moves = 0 for i in s: distance = min(abs(ord(initialPos) - ord(i)), abs(26 - (ord(initialPos) - ord(i)))) moves += distance initialPos = i print(moves)
Title: Night at the Museum Time Limit: None seconds Memory Limit: None megabytes Problem Description: Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devis...
```python s = str(input()) alphabet = "abcdefghijklmnopqrstuvwxyz"; initialPos = "a" moves = 0 for i in s: distance = min(abs(ord(initialPos) - ord(i)), abs(26 - (ord(initialPos) - ord(i)))) moves += distance initialPos = i print(moves) ```
0
801
A
Vicious Keyboard
PROGRAMMING
1,100
[ "brute force" ]
null
null
Tonio has a keyboard with only two letters, "V" and "K". One day, he has typed out a string *s* with only these two letters. He really likes it when the string "VK" appears, so he wishes to change at most one letter in the string (or do no changes) to maximize the number of occurrences of that string. Compute the maxi...
The first line will contain a string *s* consisting only of uppercase English letters "V" and "K" with length not less than 1 and not greater than 100.
Output a single integer, the maximum number of times "VK" can appear as a substring of the given string after changing at most one character.
[ "VK\n", "VV\n", "V\n", "VKKKKKKKKKVVVVVVVVVK\n", "KVKV\n" ]
[ "1\n", "1\n", "0\n", "3\n", "1\n" ]
For the first case, we do not change any letters. "VK" appears once, which is the maximum number of times it could appear. For the second case, we can change the second character from a "V" to a "K". This will give us the string "VK". This has one occurrence of the string "VK" as a substring. For the fourth case, we ...
500
[ { "input": "VK", "output": "1" }, { "input": "VV", "output": "1" }, { "input": "V", "output": "0" }, { "input": "VKKKKKKKKKVVVVVVVVVK", "output": "3" }, { "input": "KVKV", "output": "1" }, { "input": "VKKVVVKVKVK", "output": "5" }, { "input...
1,492,357,246
346
Python 3
OK
TESTS
63
62
5,529,600
s = input() maxx = 0 for i in range(len(s)): news = s[:i] + 'V' + s[i+1:] maxx = max(news.count('VK'), maxx) news = s[:i] + 'K' + s[i + 1:] maxx = max(news.count('VK'), maxx) print(maxx)
Title: Vicious Keyboard Time Limit: None seconds Memory Limit: None megabytes Problem Description: Tonio has a keyboard with only two letters, "V" and "K". One day, he has typed out a string *s* with only these two letters. He really likes it when the string "VK" appears, so he wishes to change at most one letter i...
```python s = input() maxx = 0 for i in range(len(s)): news = s[:i] + 'V' + s[i+1:] maxx = max(news.count('VK'), maxx) news = s[:i] + 'K' + s[i + 1:] maxx = max(news.count('VK'), maxx) print(maxx) ```
3
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,691,099,958
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
62
0
def main(): x = [int(k) for k in input().split()] n = x[0] m = x[1] if (n//2)%m == 0: print(n//2) elif n%2 == 0 and ((n//2) + (n//2)%m) % m == 0: print((n//2) + (n//2)%m) else: if ((n//2) + (n%2)%m) % m == 0: print((n//2) + (n%2)%m) ...
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 def main(): x = [int(k) for k in input().split()] n = x[0] m = x[1] if (n//2)%m == 0: print(n//2) elif n%2 == 0 and ((n//2) + (n//2)%m) % m == 0: print((n//2) + (n//2)%m) else: if ((n//2) + (n%2)%m) % m == 0: print((n//2) + (n%2...
0
462
A
Appleman and Easy Task
PROGRAMMING
1,000
[ "brute force", "implementation" ]
null
null
Toastman came up with a very easy task. He gives it to Appleman, but Appleman doesn't know how to solve it. Can you help him? Given a *n*<=×<=*n* checkerboard. Each cell of the board has either character 'x', or character 'o'. Is it true that each cell of the board has even number of adjacent cells with 'o'? Two cells...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Then *n* lines follow containing the description of the checkerboard. Each of them contains *n* characters (either 'x' or 'o') without spaces.
Print "YES" or "NO" (without the quotes) depending on the answer to the problem.
[ "3\nxxo\nxox\noxx\n", "4\nxxxo\nxoxo\noxox\nxxxx\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "3\nxxo\nxox\noxx", "output": "YES" }, { "input": "4\nxxxo\nxoxo\noxox\nxxxx", "output": "NO" }, { "input": "1\no", "output": "YES" }, { "input": "2\nox\nxo", "output": "YES" }, { "input": "2\nxx\nxo", "output": "NO" }, { "input": "3\nooo\no...
1,687,971,969
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
n, l = int(input()), [] for i in range(n): l.append(input()) flag = True for i in l: if i[::2].replace(i[0], "") != i[1::2].replace(i[1], "") or i[0]==i[1]: flag = False break if not flag: print('NO') else: print('YES')
Title: Appleman and Easy Task Time Limit: None seconds Memory Limit: None megabytes Problem Description: Toastman came up with a very easy task. He gives it to Appleman, but Appleman doesn't know how to solve it. Can you help him? Given a *n*<=×<=*n* checkerboard. Each cell of the board has either character 'x', or...
```python n, l = int(input()), [] for i in range(n): l.append(input()) flag = True for i in l: if i[::2].replace(i[0], "") != i[1::2].replace(i[1], "") or i[0]==i[1]: flag = False break if not flag: print('NO') else: print('YES') ```
0
371
C
Hamburgers
PROGRAMMING
1,600
[ "binary search", "brute force" ]
null
null
Polycarpus loves hamburgers very much. He especially adores the hamburgers he makes with his own hands. Polycarpus thinks that there are only three decent ingredients to make hamburgers from: a bread, sausage and cheese. He writes down the recipe of his favorite "Le Hamburger de Polycarpus" as a string of letters 'B' (...
The first line of the input contains a non-empty string that describes the recipe of "Le Hamburger de Polycarpus". The length of the string doesn't exceed 100, the string contains only letters 'B' (uppercase English B), 'S' (uppercase English S) and 'C' (uppercase English C). The second line contains three integers *n...
Print the maximum number of hamburgers Polycarpus can make. If he can't make any hamburger, print 0.
[ "BBBSSC\n6 4 1\n1 2 3\n4\n", "BBC\n1 10 1\n1 10 1\n21\n", "BSC\n1 1 1\n1 1 3\n1000000000000\n" ]
[ "2\n", "7\n", "200000000001\n" ]
none
1,500
[ { "input": "BBBSSC\n6 4 1\n1 2 3\n4", "output": "2" }, { "input": "BBC\n1 10 1\n1 10 1\n21", "output": "7" }, { "input": "BSC\n1 1 1\n1 1 3\n1000000000000", "output": "200000000001" }, { "input": "B\n1 1 1\n1 1 1\n381", "output": "382" }, { "input": "BSC\n3 5 6\n7...
1,633,542,871
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
s = input().strip() n = list(map(int,input().strip().split())) p = list(map(int,input().strip().split())) money = int(input()) a = [s.count(_) for _ in 'BSC'] l =0,r=10**13 while(l+1<r): mid = (l+r)/2 cost = 0 for i in range(3): cost+= p[i]*(max((a[i]*mid-n[i]),0)) if(cost...
Title: Hamburgers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus loves hamburgers very much. He especially adores the hamburgers he makes with his own hands. Polycarpus thinks that there are only three decent ingredients to make hamburgers from: a bread, sausage and cheese. He ...
```python s = input().strip() n = list(map(int,input().strip().split())) p = list(map(int,input().strip().split())) money = int(input()) a = [s.count(_) for _ in 'BSC'] l =0,r=10**13 while(l+1<r): mid = (l+r)/2 cost = 0 for i in range(3): cost+= p[i]*(max((a[i]*mid-n[i]),0)) ...
-1
20
C
Dijkstra?
PROGRAMMING
1,900
[ "graphs", "shortest paths" ]
C. Dijkstra?
1
64
You are given a weighted undirected graph. The vertices are enumerated from 1 to *n*. Your task is to find the shortest path between the vertex 1 and the vertex *n*.
The first line contains two integers *n* and *m* (2<=≤<=*n*<=≤<=105,<=0<=≤<=*m*<=≤<=105), where *n* is the number of vertices and *m* is the number of edges. Following *m* lines contain one edge each in form *a**i*, *b**i* and *w**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*,<=1<=≤<=*w**i*<=≤<=106), where *a**i*,<=*b**i* are edge...
Write the only integer -1 in case of no path. Write the shortest path in opposite case. If there are many solutions, print any of them.
[ "5 6\n1 2 2\n2 5 5\n2 3 4\n1 4 1\n4 3 3\n3 5 1\n", "5 6\n1 2 2\n2 5 5\n2 3 4\n1 4 1\n4 3 3\n3 5 1\n" ]
[ "1 4 3 5 ", "1 4 3 5 " ]
none
1,500
[ { "input": "5 6\n1 2 2\n2 5 5\n2 3 4\n1 4 1\n4 3 3\n3 5 1", "output": "1 4 3 5 " }, { "input": "5 6\n1 2 2\n2 5 5\n2 3 4\n1 4 1\n4 3 3\n3 5 1", "output": "1 4 3 5 " }, { "input": "2 1\n1 2 1", "output": "1 2 " }, { "input": "3 1\n1 2 1", "output": "-1" }, { "input...
1,575,064,312
2,147,483,647
Python 3
OK
TESTS
33
608
34,201,600
import heapq def dijkstra(start, maxval, adj): queue = [(0, start, -1)] dist = [(maxval, -1)] * len(adj) visited = [False] * len(adj) while len(queue) > 0: d, n, f = heapq.heappop(queue) if not visited[n]: visited[n] = True dist[n] = (d, f) for m, w ...
Title: Dijkstra? Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: You are given a weighted undirected graph. The vertices are enumerated from 1 to *n*. Your task is to find the shortest path between the vertex 1 and the vertex *n*. Input Specification: The first line contains two integers *n* a...
```python import heapq def dijkstra(start, maxval, adj): queue = [(0, start, -1)] dist = [(maxval, -1)] * len(adj) visited = [False] * len(adj) while len(queue) > 0: d, n, f = heapq.heappop(queue) if not visited[n]: visited[n] = True dist[n] = (d, f) ...
3.441178
867
A
Between the Offices
PROGRAMMING
800
[ "implementation" ]
null
null
As you may know, MemSQL has American offices in both San Francisco and Seattle. Being a manager in the company, you travel a lot between the two cities, always by plane. You prefer flying from Seattle to San Francisco than in the other direction, because it's warmer in San Francisco. You are so busy that you don't rem...
The first line of input contains single integer *n* (2<=≤<=*n*<=≤<=100) — the number of days. The second line contains a string of length *n* consisting of only capital 'S' and 'F' letters. If the *i*-th letter is 'S', then you were in Seattle office on that day. Otherwise you were in San Francisco. The days are given...
Print "YES" if you flew more times from Seattle to San Francisco, and "NO" otherwise. You can print each letter in any case (upper or lower).
[ "4\nFSSF\n", "2\nSF\n", "10\nFFFFFFFFFF\n", "10\nSSFFSFFSFF\n" ]
[ "NO\n", "YES\n", "NO\n", "YES\n" ]
In the first example you were initially at San Francisco, then flew to Seattle, were there for two days and returned to San Francisco. You made one flight in each direction, so the answer is "NO". In the second example you just flew from Seattle to San Francisco, so the answer is "YES". In the third example you staye...
500
[ { "input": "4\nFSSF", "output": "NO" }, { "input": "2\nSF", "output": "YES" }, { "input": "10\nFFFFFFFFFF", "output": "NO" }, { "input": "10\nSSFFSFFSFF", "output": "YES" }, { "input": "20\nSFSFFFFSSFFFFSSSSFSS", "output": "NO" }, { "input": "20\nSSFFF...
1,630,599,864
2,147,483,647
PyPy 3
OK
TESTS
34
109
20,172,800
n=int(input()) x=input() p=x[0] sf=0 fs=0 for i in range(1,n): if x[i]=='F': if p=='S': sf+=1 else: if p=='F': fs+=1 p=x[i] if sf>fs: print('YES') else: print('NO')
Title: Between the Offices Time Limit: None seconds Memory Limit: None megabytes Problem Description: As you may know, MemSQL has American offices in both San Francisco and Seattle. Being a manager in the company, you travel a lot between the two cities, always by plane. You prefer flying from Seattle to San Franci...
```python n=int(input()) x=input() p=x[0] sf=0 fs=0 for i in range(1,n): if x[i]=='F': if p=='S': sf+=1 else: if p=='F': fs+=1 p=x[i] if sf>fs: print('YES') else: print('NO') ```
3
115
A
Party
PROGRAMMING
900
[ "dfs and similar", "graphs", "trees" ]
null
null
A company has *n* employees numbered from 1 to *n*. Each employee either has no immediate manager or exactly one immediate manager, who is another employee with a different number. An employee *A* is said to be the superior of another employee *B* if at least one of the following is true: - Employee *A* is the immedi...
The first line contains integer *n* (1<=≤<=*n*<=≤<=2000) — the number of employees. The next *n* lines contain the integers *p**i* (1<=≤<=*p**i*<=≤<=*n* or *p**i*<==<=-1). Every *p**i* denotes the immediate manager for the *i*-th employee. If *p**i* is -1, that means that the *i*-th employee does not have an immediate...
Print a single integer denoting the minimum number of groups that will be formed in the party.
[ "5\n-1\n1\n2\n1\n-1\n" ]
[ "3\n" ]
For the first example, three groups are sufficient, for example: - Employee 1 - Employees 2 and 4 - Employees 3 and 5
500
[ { "input": "5\n-1\n1\n2\n1\n-1", "output": "3" }, { "input": "4\n-1\n1\n2\n3", "output": "4" }, { "input": "12\n-1\n1\n2\n3\n-1\n5\n6\n7\n-1\n9\n10\n11", "output": "4" }, { "input": "6\n-1\n-1\n2\n3\n1\n1", "output": "3" }, { "input": "3\n-1\n1\n1", "output": ...
1,659,640,640
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
92
0
n=int(input()) l=[] for i in range (0,n): l.append(int(input())) print(len(set(l)))
Title: Party Time Limit: None seconds Memory Limit: None megabytes Problem Description: A company has *n* employees numbered from 1 to *n*. Each employee either has no immediate manager or exactly one immediate manager, who is another employee with a different number. An employee *A* is said to be the superior of an...
```python n=int(input()) l=[] for i in range (0,n): l.append(int(input())) print(len(set(l))) ```
0
604
B
More Cowbell
PROGRAMMING
1,400
[ "binary search", "greedy" ]
null
null
Kevin Sun wants to move his precious collection of *n* cowbells from Naperthrill to Exeter, where there is actually grass instead of corn. Before moving, he must pack his cowbells into *k* boxes of a fixed size. In order to keep his collection safe during transportation, he won't place more than two cowbells into a sin...
The first line of the input contains two space-separated integers *n* and *k* (1<=≤<=*n*<=≤<=2·*k*<=≤<=100<=000), denoting the number of cowbells and the number of boxes, respectively. The next line contains *n* space-separated integers *s*1,<=*s*2,<=...,<=*s**n* (1<=≤<=*s*1<=≤<=*s*2<=≤<=...<=≤<=*s**n*<=≤<=1<=000<=000...
Print a single integer, the smallest *s* for which it is possible for Kevin to put all of his cowbells into *k* boxes of size *s*.
[ "2 1\n2 5\n", "4 3\n2 3 5 9\n", "3 2\n3 5 7\n" ]
[ "7\n", "9\n", "8\n" ]
In the first sample, Kevin must pack his two cowbells into the same box. In the second sample, Kevin can pack together the following sets of cowbells: {2, 3}, {5} and {9}. In the third sample, the optimal solution is {3, 5} and {7}.
1,000
[ { "input": "2 1\n2 5", "output": "7" }, { "input": "4 3\n2 3 5 9", "output": "9" }, { "input": "3 2\n3 5 7", "output": "8" }, { "input": "20 11\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1", "output": "2" }, { "input": "10 10\n3 15 31 61 63 63 68 94 98 100", "outp...
1,562,600,738
2,147,483,647
PyPy 3
OK
TESTS
54
218
10,240,000
n, k = [int(i) for i in input().split()] s = [int(i) for i in input().split()] couples = n - k size = 0 if 2 * k - n > 0: size = s[n - 1] for i in range(2 * couples - 1, -1, -1): size = max(size, s[i] + s[2 * couples - i - 1]) print(size)
Title: More Cowbell Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kevin Sun wants to move his precious collection of *n* cowbells from Naperthrill to Exeter, where there is actually grass instead of corn. Before moving, he must pack his cowbells into *k* boxes of a fixed size. In order t...
```python n, k = [int(i) for i in input().split()] s = [int(i) for i in input().split()] couples = n - k size = 0 if 2 * k - n > 0: size = s[n - 1] for i in range(2 * couples - 1, -1, -1): size = max(size, s[i] + s[2 * couples - i - 1]) print(size) ```
3
822
A
I'm bored with life
PROGRAMMING
800
[ "implementation", "math", "number theory" ]
null
null
Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormitory for the period of university studies. Consequently Noora had to leave Vičkopolis and move to Pavlopo...
The first and single line contains two integers *A* and *B* (1<=≤<=*A*,<=*B*<=≤<=109,<=*min*(*A*,<=*B*)<=≤<=12).
Print a single integer denoting the greatest common divisor of integers *A*! and *B*!.
[ "4 3\n" ]
[ "6\n" ]
Consider the sample. 4! = 1·2·3·4 = 24. 3! = 1·2·3 = 6. The greatest common divisor of integers 24 and 6 is exactly 6.
500
[ { "input": "4 3", "output": "6" }, { "input": "10 399603090", "output": "3628800" }, { "input": "6 973151934", "output": "720" }, { "input": "2 841668075", "output": "2" }, { "input": "7 415216919", "output": "5040" }, { "input": "3 283733059", "ou...
1,661,108,806
2,147,483,647
Python 3
OK
TESTS
59
62
0
from math import factorial, gcd x , y = [int(x) for x in input().split()] print(factorial(min(x, y)))
Title: I'm bored with life Time Limit: None seconds Memory Limit: None megabytes Problem Description: Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormi...
```python from math import factorial, gcd x , y = [int(x) for x in input().split()] print(factorial(min(x, y))) ```
3
716
A
Crazy Computer
PROGRAMMING
800
[ "implementation" ]
null
null
ZS the Coder is coding on a crazy computer. If you don't type in a word for a *c* consecutive seconds, everything you typed disappear! More formally, if you typed a word at second *a* and then the next word at second *b*, then if *b*<=-<=*a*<=≤<=*c*, just the new word is appended to other words on the screen. If *b*<...
The first line contains two integers *n* and *c* (1<=≤<=*n*<=≤<=100<=000,<=1<=≤<=*c*<=≤<=109) — the number of words ZS the Coder typed and the crazy computer delay respectively. The next line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t*1<=&lt;<=*t*2<=&lt;<=...<=&lt;<=*t**n*<=≤<=109), where *t**i* denote...
Print a single positive integer, the number of words that remain on the screen after all *n* words was typed, in other words, at the second *t**n*.
[ "6 5\n1 3 8 14 19 20\n", "6 1\n1 3 5 7 9 10\n" ]
[ "3", "2" ]
The first sample is already explained in the problem statement. For the second sample, after typing the first word at the second 1, it disappears because the next word is typed at the second 3 and 3 - 1 &gt; 1. Similarly, only 1 word will remain at the second 9. Then, a word is typed at the second 10, so there will be...
500
[ { "input": "6 5\n1 3 8 14 19 20", "output": "3" }, { "input": "6 1\n1 3 5 7 9 10", "output": "2" }, { "input": "1 1\n1000000000", "output": "1" }, { "input": "5 5\n1 7 12 13 14", "output": "4" }, { "input": "2 1000000000\n1 1000000000", "output": "2" }, { ...
1,665,200,676
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
n,c = map(int,input().split()) timeperiod = list(map(int,input().split())) ctr = 0 for i in range(1,n): if timeperiod[i]-c <= timeperiod[i-1]: ctr+=1 else: ctr=1 print(ctr)
Title: Crazy Computer Time Limit: None seconds Memory Limit: None megabytes Problem Description: ZS the Coder is coding on a crazy computer. If you don't type in a word for a *c* consecutive seconds, everything you typed disappear! More formally, if you typed a word at second *a* and then the next word at second *...
```python n,c = map(int,input().split()) timeperiod = list(map(int,input().split())) ctr = 0 for i in range(1,n): if timeperiod[i]-c <= timeperiod[i-1]: ctr+=1 else: ctr=1 print(ctr) ```
0
750
A
New Year and Hurry
PROGRAMMING
800
[ "binary search", "brute force", "implementation", "math" ]
null
null
Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem 1 is the easiest and problem *n* is the hardest. Limak knows it will take him 5·*i* minutes to solve th...
The only line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=10, 1<=≤<=*k*<=≤<=240) — the number of the problems in the contest and the number of minutes Limak needs to get to the party from his house.
Print one integer, denoting the maximum possible number of problems Limak can solve so that he could get to the party at midnight or earlier.
[ "3 222\n", "4 190\n", "7 1\n" ]
[ "2\n", "4\n", "7\n" ]
In the first sample, there are 3 problems and Limak needs 222 minutes to get to the party. The three problems require 5, 10 and 15 minutes respectively. Limak can spend 5 + 10 = 15 minutes to solve first two problems. Then, at 20:15 he can leave his house to get to the party at 23:57 (after 222 minutes). In this scenar...
500
[ { "input": "3 222", "output": "2" }, { "input": "4 190", "output": "4" }, { "input": "7 1", "output": "7" }, { "input": "10 135", "output": "6" }, { "input": "10 136", "output": "5" }, { "input": "1 1", "output": "1" }, { "input": "1 240", ...
1,684,794,385
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
a=int (input ()) b=int (input ()) c=int (b/60) d=int (b%60) g=(c*60)+d n=0 if g>=240 : print (0) if g<240 : while n<a : if g>=240 : break g+=5*(n+1) if g<=240 : n+=1 print(n)
Title: New Year and Hurry Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem...
```python a=int (input ()) b=int (input ()) c=int (b/60) d=int (b%60) g=(c*60)+d n=0 if g>=240 : print (0) if g<240 : while n<a : if g>=240 : break g+=5*(n+1) if g<=240 : n+=1 print(n) ```
-1
112
A
Petya and Strings
PROGRAMMING
800
[ "implementation", "strings" ]
A. Petya and Strings
2
256
Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. The letters' case does not matter, that is an uppercase letter is considered equivalent to the corr...
Each of the first two lines contains a bought string. The strings' lengths range from 1 to 100 inclusive. It is guaranteed that the strings are of the same length and also consist of uppercase and lowercase Latin letters.
If the first string is less than the second one, print "-1". If the second string is less than the first one, print "1". If the strings are equal, print "0". Note that the letters' case is not taken into consideration when the strings are compared.
[ "aaaa\naaaA\n", "abs\nAbz\n", "abcdefg\nAbCdEfF\n" ]
[ "0\n", "-1\n", "1\n" ]
If you want more formal information about the lexicographical order (also known as the "dictionary order" or "alphabetical order"), you can visit the following site: - http://en.wikipedia.org/wiki/Lexicographical_order
500
[ { "input": "aaaa\naaaA", "output": "0" }, { "input": "abs\nAbz", "output": "-1" }, { "input": "abcdefg\nAbCdEfF", "output": "1" }, { "input": "asadasdasd\nasdwasdawd", "output": "-1" }, { "input": "aslkjlkasdd\nasdlkjdajwi", "output": "1" }, { "input":...
1,698,120,843
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
124
0
def lexicographic(alphabet): if alphabet == 'a': return 1 elif alphabet == 'b': return 2 elif alphabet == 'c': return 3 elif alphabet == 'd': return 4 elif alphabet == 'e': return 5 elif alphabet == 'f': return 6 elif alphabet == '...
Title: Petya and Strings Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. ...
```python def lexicographic(alphabet): if alphabet == 'a': return 1 elif alphabet == 'b': return 2 elif alphabet == 'c': return 3 elif alphabet == 'd': return 4 elif alphabet == 'e': return 5 elif alphabet == 'f': return 6 elif alp...
0
846
A
Curriculum Vitae
PROGRAMMING
1,500
[ "brute force", "implementation" ]
null
null
Hideo Kojima has just quit his job at Konami. Now he is going to find a new place to work. Despite being such a well-known person, he still needs a CV to apply for a job. During all his career Hideo has produced *n* games. Some of them were successful, some were not. Hideo wants to remove several of them (possibly zer...
The first line contains one integer number *n* (1<=≤<=*n*<=≤<=100). The second line contains *n* space-separated integer numbers *s*1,<=*s*2,<=...,<=*s**n* (0<=≤<=*s**i*<=≤<=1). 0 corresponds to an unsuccessful game, 1 — to a successful one.
Print one integer — the maximum number of games Hideo can leave in his CV so that no unsuccessful game comes after a successful one.
[ "4\n1 1 0 1\n", "6\n0 1 0 0 1 0\n", "1\n0\n" ]
[ "3\n", "4\n", "1\n" ]
none
0
[ { "input": "4\n1 1 0 1", "output": "3" }, { "input": "6\n0 1 0 0 1 0", "output": "4" }, { "input": "1\n0", "output": "1" }, { "input": "100\n0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
1,504,624,918
1,018
Python 3
WRONG_ANSWER
TESTS
4
46
0
n = int(input()) s = [int(i) for i in input().split()] activate_flag = False ans = 1 for i in range(1, len(s)): if not (s[i-1] == 1 and s[i] == 0 ): ans += 1 print(ans)
Title: Curriculum Vitae Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hideo Kojima has just quit his job at Konami. Now he is going to find a new place to work. Despite being such a well-known person, he still needs a CV to apply for a job. During all his career Hideo has produced *n* g...
```python n = int(input()) s = [int(i) for i in input().split()] activate_flag = False ans = 1 for i in range(1, len(s)): if not (s[i-1] == 1 and s[i] == 0 ): ans += 1 print(ans) ```
0
44
A
Indian Summer
PROGRAMMING
900
[ "implementation" ]
A. Indian Summer
2
256
Indian summer is such a beautiful time of the year! A girl named Alyona is walking in the forest and picking a bouquet from fallen leaves. Alyona is very choosy — she doesn't take a leaf if it matches the color and the species of the tree of one of the leaves she already has. Find out how many leaves Alyona has picked.
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of leaves Alyona has found. The next *n* lines contain the leaves' descriptions. Each leaf is characterized by the species of the tree it has fallen from and by the color. The species of the trees and colors are given in names, consisting of no mor...
Output the single number — the number of Alyona's leaves.
[ "5\nbirch yellow\nmaple red\nbirch yellow\nmaple yellow\nmaple green\n", "3\noak yellow\noak yellow\noak yellow\n" ]
[ "4\n", "1\n" ]
none
0
[ { "input": "5\nbirch yellow\nmaple red\nbirch yellow\nmaple yellow\nmaple green", "output": "4" }, { "input": "3\noak yellow\noak yellow\noak yellow", "output": "1" }, { "input": "5\nxbnbkzn hp\nkaqkl vrgzbvqstu\nj aqidx\nhos gyul\nwefxmh tygpluae", "output": "5" }, { "input"...
1,645,890,720
2,147,483,647
Python 3
OK
TESTS
29
92
0
t=int(input()) l=[] for _ in range(t): s=input() l.append(s) l1=set(l) print(len(l1))
Title: Indian Summer Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Indian summer is such a beautiful time of the year! A girl named Alyona is walking in the forest and picking a bouquet from fallen leaves. Alyona is very choosy — she doesn't take a leaf if it matches the color and the specie...
```python t=int(input()) l=[] for _ in range(t): s=input() l.append(s) l1=set(l) print(len(l1)) ```
3.977
6
A
Triangle
PROGRAMMING
900
[ "brute force", "geometry" ]
A. Triangle
2
64
Johnny has a younger sister Anne, who is very clever and smart. As she came home from the kindergarten, she told his brother about the task that her kindergartener asked her to solve. The task was just to construct a triangle out of four sticks of different colours. Naturally, one of the sticks is extra. It is not allo...
The first line of the input contains four space-separated positive integer numbers not exceeding 100 — lengthes of the sticks.
Output TRIANGLE if it is possible to construct a non-degenerate triangle. Output SEGMENT if the first case cannot take place and it is possible to construct a degenerate triangle. Output IMPOSSIBLE if it is impossible to construct any triangle. Remember that you are to use three sticks. It is not allowed to break the s...
[ "4 2 1 3\n", "7 2 2 4\n", "3 5 9 1\n" ]
[ "TRIANGLE\n", "SEGMENT\n", "IMPOSSIBLE\n" ]
none
0
[ { "input": "4 2 1 3", "output": "TRIANGLE" }, { "input": "7 2 2 4", "output": "SEGMENT" }, { "input": "3 5 9 1", "output": "IMPOSSIBLE" }, { "input": "3 1 5 1", "output": "IMPOSSIBLE" }, { "input": "10 10 10 10", "output": "TRIANGLE" }, { "input": "11 ...
1,474,449,760
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
122
0
a= [] for i in range(0, 4): a.append(int(input())) q=2 for i in range(0, 4): if (a[i] + a[(i+1)%4] >= a[(i+2)%4]) and (a[(i+1)%4]+a[(i+2)%4] >= a[i]) and (a[(i+2)%4]+a[i] >=a[(i+1)%4]): if (a[i] + a[(i+1)%4] ==a[(i+2)%4]) or (a[(i+1)%4] + a[(i+2)%4] == a[i]) or (a[(i+2)%4]+ a[i] == a[(i+1)%4]): if q > 1...
Title: Triangle Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Johnny has a younger sister Anne, who is very clever and smart. As she came home from the kindergarten, she told his brother about the task that her kindergartener asked her to solve. The task was just to construct a triangle out o...
```python a= [] for i in range(0, 4): a.append(int(input())) q=2 for i in range(0, 4): if (a[i] + a[(i+1)%4] >= a[(i+2)%4]) and (a[(i+1)%4]+a[(i+2)%4] >= a[i]) and (a[(i+2)%4]+a[i] >=a[(i+1)%4]): if (a[i] + a[(i+1)%4] ==a[(i+2)%4]) or (a[(i+1)%4] + a[(i+2)%4] == a[i]) or (a[(i+2)%4]+ a[i] == a[(i+1)%4]): ...
-1
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,626,529,048
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n,a = map(int,input().split()) arr = list(map(int,input().split()))[:n] count = 0 if(arr[a-1]==1): count +=1 int i = 1 while(a-i>=0 & a+i<n): if(arr[a-i] == 1 & arr[a+i]==1): count += 2 i+=1 while(i<n): if(arr[i+a]==1): count+=1 i+=1 print(count)
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,a = map(int,input().split()) arr = list(map(int,input().split()))[:n] count = 0 if(arr[a-1]==1): count +=1 int i = 1 while(a-i>=0 & a+i<n): if(arr[a-i] == 1 & arr[a+i]==1): count += 2 i+=1 while(i<n): if(arr[i+a]==1): count+=1 i+=1 print(count) ```
-1
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,671,983,825
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
nums = input().split() nums = [int(num) for num in nums] prob = (max(nums[0],nums[1])) answers = ["0/0","1/6","1/3","1/2","2/3","5/6","1/1"] print(answers[prob])
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python nums = input().split() nums = [int(num) for num in nums] prob = (max(nums[0],nums[1])) answers = ["0/0","1/6","1/3","1/2","2/3","5/6","1/1"] print(answers[prob]) ```
0
16
C
Monitor
PROGRAMMING
1,800
[ "binary search", "number theory" ]
C. Monitor
0
64
Reca company makes monitors, the most popular of their models is AB999 with the screen size *a*<=×<=*b* centimeters. Because of some production peculiarities a screen parameters are integer numbers. Recently the screen sides ratio *x*:<=*y* became popular with users. That's why the company wants to reduce monitor AB999...
The first line of the input contains 4 integers — *a*, *b*, *x* and *y* (1<=≤<=*a*,<=*b*,<=*x*,<=*y*<=≤<=2·109).
If the answer exists, output 2 positive integers — screen parameters of the reduced size model. Output 0 0 otherwise.
[ "800 600 4 3\n", "1920 1200 16 9\n", "1 1 1 2\n" ]
[ "800 600\n", "1920 1080\n", "0 0\n" ]
none
0
[ { "input": "800 600 4 3", "output": "800 600" }, { "input": "1920 1200 16 9", "output": "1920 1080" }, { "input": "1 1 1 2", "output": "0 0" }, { "input": "1002105126 227379125 179460772 1295256518", "output": "0 0" }, { "input": "625166755 843062051 1463070160 19...
1,537,346,895
2,147,483,647
Python 3
OK
TESTS
39
140
0
def dt(a,b): while b !=0: a,b = b, a%b return a a1,b1,x,y = map(int, input().split()) t = dt(x,y) x1 = x//t y1 = y//t d = min(a1//x1,b1//y1) print("{} {}".format(d*x1, d*y1))
Title: Monitor Time Limit: 0 seconds Memory Limit: 64 megabytes Problem Description: Reca company makes monitors, the most popular of their models is AB999 with the screen size *a*<=×<=*b* centimeters. Because of some production peculiarities a screen parameters are integer numbers. Recently the screen sides ratio *...
```python def dt(a,b): while b !=0: a,b = b, a%b return a a1,b1,x,y = map(int, input().split()) t = dt(x,y) x1 = x//t y1 = y//t d = min(a1//x1,b1//y1) print("{} {}".format(d*x1, d*y1)) ```
3
550
A
Two Substrings
PROGRAMMING
1,500
[ "brute force", "dp", "greedy", "implementation", "strings" ]
null
null
You are given string *s*. Your task is to determine if the given string *s* contains two non-overlapping substrings "AB" and "BA" (the substrings can go in any order).
The only line of input contains a string *s* of length between 1 and 105 consisting of uppercase Latin letters.
Print "YES" (without the quotes), if string *s* contains two non-overlapping substrings "AB" and "BA", and "NO" otherwise.
[ "ABA\n", "BACFAB\n", "AXBYBXA\n" ]
[ "NO\n", "YES\n", "NO\n" ]
In the first sample test, despite the fact that there are substrings "AB" and "BA", their occurrences overlap, so the answer is "NO". In the second sample test there are the following occurrences of the substrings: BACFAB. In the third sample test there is no substring "AB" nor substring "BA".
1,000
[ { "input": "ABA", "output": "NO" }, { "input": "BACFAB", "output": "YES" }, { "input": "AXBYBXA", "output": "NO" }, { "input": "ABABAB", "output": "YES" }, { "input": "BBBBBBBBBB", "output": "NO" }, { "input": "ABBA", "output": "YES" }, { "...
1,686,952,131
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
s = input() n = len(s) found_ab = found_ba = False for i in range(n-1): if s[i:i+2] == 'AB': found_ab = True for j in range(i+2, n-1): if s[j:j+2] == 'BA': found_ba = True break if found_ab and found_ba: break elif s...
Title: Two Substrings Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given string *s*. Your task is to determine if the given string *s* contains two non-overlapping substrings "AB" and "BA" (the substrings can go in any order). Input Specification: The only line of input contain...
```python s = input() n = len(s) found_ab = found_ba = False for i in range(n-1): if s[i:i+2] == 'AB': found_ab = True for j in range(i+2, n-1): if s[j:j+2] == 'BA': found_ba = True break if found_ab and found_ba: break ...
0
961
A
Tetris
PROGRAMMING
900
[ "implementation" ]
null
null
You are given a following process. There is a platform with $n$ columns. $1 \times 1$ squares are appearing one after another in some columns on this platform. If there are no squares in the column, a square will occupy the bottom row. Otherwise a square will appear at the top of the highest square of this column. ...
The first line of input contain 2 integer numbers $n$ and $m$ ($1 \le n, m \le 1000$) — the length of the platform and the number of the squares. The next line contain $m$ integer numbers $c_1, c_2, \dots, c_m$ ($1 \le c_i \le n$) — column in which $i$-th square will appear.
Print one integer — the amount of points you will receive.
[ "3 9\n1 1 2 2 2 3 1 2 3\n" ]
[ "2\n" ]
In the sample case the answer will be equal to $2$ because after the appearing of $6$-th square will be removed one row (counts of the squares on the platform will look like $[2~ 3~ 1]$, and after removing one row will be $[1~ 2~ 0]$). After the appearing of $9$-th square counts will be $[2~ 3~ 1]$, and after removing...
0
[ { "input": "3 9\n1 1 2 2 2 3 1 2 3", "output": "2" }, { "input": "1 7\n1 1 1 1 1 1 1", "output": "7" }, { "input": "1 1\n1", "output": "1" }, { "input": "3 5\n1 1 1 2 3", "output": "1" }, { "input": "4 6\n4 4 4 4 4 4", "output": "0" }, { "input": "4 6\...
1,548,014,032
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
93
0
input() X = list(map(int, input().split())) Y = set(X) MIN =10000000 for i in Y: if MIN > X.count(i): MIN = X.count(i) print(MIN)
Title: Tetris Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a following process. There is a platform with $n$ columns. $1 \times 1$ squares are appearing one after another in some columns on this platform. If there are no squares in the column, a square will occupy the bo...
```python input() X = list(map(int, input().split())) Y = set(X) MIN =10000000 for i in Y: if MIN > X.count(i): MIN = X.count(i) print(MIN) ```
0
1,003
A
Polycarp's Pockets
PROGRAMMING
800
[ "implementation" ]
null
null
Polycarp has $n$ coins, the value of the $i$-th coin is $a_i$. Polycarp wants to distribute all the coins between his pockets, but he cannot put two coins with the same value into the same pocket. For example, if Polycarp has got six coins represented as an array $a = [1, 2, 4, 3, 3, 2]$, he can distribute the coins i...
The first line of the input contains one integer $n$ ($1 \le n \le 100$) — the number of coins. The second line of the input contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 100$) — values of coins.
Print only one integer — the minimum number of pockets Polycarp needs to distribute all the coins so no two coins with the same value are put into the same pocket.
[ "6\n1 2 4 3 3 2\n", "1\n100\n" ]
[ "2\n", "1\n" ]
none
0
[ { "input": "6\n1 2 4 3 3 2", "output": "2" }, { "input": "1\n100", "output": "1" }, { "input": "100\n100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100...
1,609,261,120
2,147,483,647
Python 3
OK
TESTS
37
108
0
n=int(input()) l=list(map(int,input().split())) d={} for i in l: d[i]=d.get(i,0)+1 v=d.values() print(max(v))
Title: Polycarp's Pockets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp has $n$ coins, the value of the $i$-th coin is $a_i$. Polycarp wants to distribute all the coins between his pockets, but he cannot put two coins with the same value into the same pocket. For example, if Po...
```python n=int(input()) l=list(map(int,input().split())) d={} for i in l: d[i]=d.get(i,0)+1 v=d.values() print(max(v)) ```
3
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,653,965,170
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
def tl(w, a): if w[::-1] != a: return 'NO' else: return 'YES'
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python def tl(w, a): if w[::-1] != a: return 'NO' else: return 'YES' ```
0
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,698,838,806
2,147,483,647
Python 3
OK
TESTS
25
92
0
Rows = 5 Columns = 5 matrix = [] for a in range(Rows): row = list(map(int, input().split())) matrix.append(row) for i in range(Rows): for j in range(Columns): if matrix[i][j] == 1: r, c = i , j r_index = abs(2-r) c_index = abs(2-c) moves = r_index + c_index p...
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 Rows = 5 Columns = 5 matrix = [] for a in range(Rows): row = list(map(int, input().split())) matrix.append(row) for i in range(Rows): for j in range(Columns): if matrix[i][j] == 1: r, c = i , j r_index = abs(2-r) c_index = abs(2-c) moves = r_index + c_...
3
54
D
Writing a Song
PROGRAMMING
2,100
[ "brute force", "dp", "strings" ]
D. Writing a Song
2
256
One of the Hedgehog and his friend's favorite entertainments is to take some sentence or a song and replace half of the words (sometimes even all of them) with each other's names. The friend's birthday is approaching and the Hedgehog decided to make a special present to his friend: a very long song, where his name wil...
The first line contains numbers *N* and *K* which are the length of the required string and the alphabet size accordingly. The limitations are: 1<=≤<=*N*<=≤<=100, 2<=≤<=*K*<=≤<=26. The second line contains the name *P* which is a non-empty string whose length does not exceed *N* characters. The string consists only of...
Print the desired word *S*. If there are several answers, print any of them. If there is no solution, then print "No solution".
[ "5 2\naba\n101\n", "5 2\na\n10001\n", "6 2\nabba\n101\n" ]
[ "ababa", "abbba", "No solution" ]
none
2,000
[ { "input": "5 2\naba\n101", "output": "ababa" }, { "input": "5 2\na\n10001", "output": "abbba" }, { "input": "6 2\nabba\n101", "output": "No solution" }, { "input": "12 5\nabacaba\n010001", "output": "aabacabacaba" }, { "input": "9 3\nac\n10100101", "output": ...
1,666,442,406
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
92
0
I,P,G=input,print,range;n,k=map(int,I().split());p,s=I(),I();m=len(p);z=['_']*n for i,c in enumerate(s): if c=='1': for j in G(m): if z[i+j]=='_':z[i+j]=p[j] elif z[i+j]!=p[j]:exit(P('No solution')) for i in G(n): if z[i]=='_':z[i]='a' P(''.join(z))
Title: Writing a Song Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One of the Hedgehog and his friend's favorite entertainments is to take some sentence or a song and replace half of the words (sometimes even all of them) with each other's names. The friend's birthday is approaching and th...
```python I,P,G=input,print,range;n,k=map(int,I().split());p,s=I(),I();m=len(p);z=['_']*n for i,c in enumerate(s): if c=='1': for j in G(m): if z[i+j]=='_':z[i+j]=p[j] elif z[i+j]!=p[j]:exit(P('No solution')) for i in G(n): if z[i]=='_':z[i]='a' P(''.join(z)) ```
0
353
A
Domino
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
Valera has got *n* domino pieces in a row. Each piece consists of two halves — the upper one and the lower one. Each of the halves contains a number from 1 to 6. Valera loves even integers very much, so he wants the sum of the numbers on the upper halves and the sum of the numbers on the lower halves to be even. To do...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100), denoting the number of dominoes Valera has. Next *n* lines contain two space-separated integers *x**i*,<=*y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<=6). Number *x**i* is initially written on the upper half of the *i*-th domino, *y**i* is initially written on the lower half...
Print a single number — the minimum required number of seconds. If Valera can't do the task in any time, print <=-<=1.
[ "2\n4 2\n6 4\n", "1\n2 3\n", "3\n1 4\n2 3\n4 4\n" ]
[ "0\n", "-1\n", "1\n" ]
In the first test case the sum of the numbers on the upper halves equals 10 and the sum of the numbers on the lower halves equals 6. Both numbers are even, so Valera doesn't required to do anything. In the second sample Valera has only one piece of domino. It is written 3 on the one of its halves, therefore one of the...
500
[ { "input": "2\n4 2\n6 4", "output": "0" }, { "input": "1\n2 3", "output": "-1" }, { "input": "3\n1 4\n2 3\n4 4", "output": "1" }, { "input": "5\n5 4\n5 4\n1 5\n5 5\n3 3", "output": "1" }, { "input": "20\n1 3\n5 2\n5 2\n2 6\n2 4\n1 1\n1 3\n1 4\n2 6\n4 2\n5 6\n2 2\n...
1,633,616,750
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
92
6,963,200
t = int(input()) l = [] count1 = 0 count2 = 0 for i in range(t): x,y = map(int,input().split()) l.append(x) l.append(y) if x%2 != 0: count1+=1 if y%2 != 0: count2+=1 if count1%2 !=0 and count2%2 !=0 and len(l)!=2: print(1) elif count1 == 0 and count2 == 0: prin...
Title: Domino Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera has got *n* domino pieces in a row. Each piece consists of two halves — the upper one and the lower one. Each of the halves contains a number from 1 to 6. Valera loves even integers very much, so he wants the sum of the n...
```python t = int(input()) l = [] count1 = 0 count2 = 0 for i in range(t): x,y = map(int,input().split()) l.append(x) l.append(y) if x%2 != 0: count1+=1 if y%2 != 0: count2+=1 if count1%2 !=0 and count2%2 !=0 and len(l)!=2: print(1) elif count1 == 0 and count2 == 0:...
0
90
B
African Crossword
PROGRAMMING
1,100
[ "implementation", "strings" ]
B. African Crossword
2
256
An African crossword is a rectangular table *n*<=×<=*m* in size. Each cell of the table contains exactly one letter. This table (it is also referred to as grid) contains some encrypted word that needs to be decoded. To solve the crossword you should cross out all repeated letters in rows and columns. In other words, a...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). Next *n* lines contain *m* lowercase Latin letters each. That is the crossword grid.
Print the encrypted word on a single line. It is guaranteed that the answer consists of at least one letter.
[ "3 3\ncba\nbcd\ncbc\n", "5 5\nfcofd\nooedo\nafaoa\nrdcdf\neofsf\n" ]
[ "abcd", "codeforces" ]
none
1,000
[ { "input": "3 3\ncba\nbcd\ncbc", "output": "abcd" }, { "input": "5 5\nfcofd\nooedo\nafaoa\nrdcdf\neofsf", "output": "codeforces" }, { "input": "4 4\nusah\nusha\nhasu\nsuha", "output": "ahhasusu" }, { "input": "7 5\naabcd\neffgh\niijkk\nlmnoo\npqqrs\nttuvw\nxxyyz", "output...
1,682,279,169
2,147,483,647
Python 3
OK
TESTS
43
436
0
n, m = map(int, input().split()) grid = [input() for _ in range(n)] answer = "" for i in range(n): for j in range(m): letter = grid[i][j] row_has_duplicate = letter in grid[i][:j] + grid[i][j+1:] col_has_duplicate = letter in [grid[k][j] for k in range(n) if k != i] if ...
Title: African Crossword Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: An African crossword is a rectangular table *n*<=×<=*m* in size. Each cell of the table contains exactly one letter. This table (it is also referred to as grid) contains some encrypted word that needs to be decoded. To s...
```python n, m = map(int, input().split()) grid = [input() for _ in range(n)] answer = "" for i in range(n): for j in range(m): letter = grid[i][j] row_has_duplicate = letter in grid[i][:j] + grid[i][j+1:] col_has_duplicate = letter in [grid[k][j] for k in range(n) if k != i] ...
3.891
895
A
Pizza Separation
PROGRAMMING
1,200
[ "brute force", "implementation" ]
null
null
Students Vasya and Petya are studying at the BSU (Byteland State University). At one of the breaks they decided to order a pizza. In this problem pizza is a circle of some radius. The pizza was delivered already cut into *n* pieces. The *i*-th piece is a sector of angle equal to *a**i*. Vasya and Petya want to divide a...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=360)  — the number of pieces into which the delivered pizza was cut. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=360)  — the angles of the sectors into which the pizza was cut. The sum of all *a**i* is 360.
Print one integer  — the minimal difference between angles of sectors that will go to Vasya and Petya.
[ "4\n90 90 90 90\n", "3\n100 100 160\n", "1\n360\n", "4\n170 30 150 10\n" ]
[ "0\n", "40\n", "360\n", "0\n" ]
In first sample Vasya can take 1 and 2 pieces, Petya can take 3 and 4 pieces. Then the answer is |(90 + 90) - (90 + 90)| = 0. In third sample there is only one piece of pizza that can be taken by only one from Vasya and Petya. So the answer is |360 - 0| = 360. In fourth sample Vasya can take 1 and 4 pieces, then Pety...
500
[ { "input": "4\n90 90 90 90", "output": "0" }, { "input": "3\n100 100 160", "output": "40" }, { "input": "1\n360", "output": "360" }, { "input": "4\n170 30 150 10", "output": "0" }, { "input": "5\n10 10 10 10 320", "output": "280" }, { "input": "8\n45 4...
1,511,713,257
957
Python 3
OK
TESTS
93
763
5,632,000
n = int(input()) sectors = list(map(int, input().split())) ans = 360 for _ in range(n): for i in range(n): temp = abs(sum(sectors[:i]) - sum(sectors[i:])) if temp < ans: ans = temp sectors[:] = sectors[-1:] + sectors[:-1] print(ans)
Title: Pizza Separation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Students Vasya and Petya are studying at the BSU (Byteland State University). At one of the breaks they decided to order a pizza. In this problem pizza is a circle of some radius. The pizza was delivered already cut in...
```python n = int(input()) sectors = list(map(int, input().split())) ans = 360 for _ in range(n): for i in range(n): temp = abs(sum(sectors[:i]) - sum(sectors[i:])) if temp < ans: ans = temp sectors[:] = sectors[-1:] + sectors[:-1] print(ans) ```
3
954
F
Runner's Problem
PROGRAMMING
2,100
[ "dp", "matrices", "sortings" ]
null
null
You are running through a rectangular field. This field can be represented as a matrix with 3 rows and *m* columns. (*i*,<=*j*) denotes a cell belonging to *i*-th row and *j*-th column. You start in (2,<=1) and have to end your path in (2,<=*m*). From the cell (*i*,<=*j*) you may advance to: - (*i*<=-<=1,<=*j*<=+<=1...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=104, 3<=≤<=*m*<=≤<=1018) — the number of obstacles and the number of columns in the matrix, respectively. Then *n* lines follow, each containing three integers *a**k*, *l**k* and *r**k* (1<=≤<=*a**k*<=≤<=3, 2<=≤<=*l**k*<=≤<=*r**k*<=≤<=*m*<=-<=1) denoting ...
Print the number of different paths from (2,<=1) to (2,<=*m*), taken modulo 109<=+<=7. If it is impossible to get from (2,<=1) to (2,<=*m*), then the number of paths is 0.
[ "2 5\n1 3 4\n2 2 3\n" ]
[ "2\n" ]
none
0
[ { "input": "2 5\n1 3 4\n2 2 3", "output": "2" }, { "input": "50 100\n3 24 49\n2 10 12\n1 87 92\n2 19 60\n2 53 79\n3 65 82\n3 10 46\n1 46 86\n2 55 84\n1 50 53\n3 80 81\n3 66 70\n2 35 52\n1 63 69\n2 65 87\n3 68 75\n1 33 42\n1 56 90\n3 73 93\n2 20 26\n2 42 80\n2 83 87\n3 99 99\n1 14 79\n2 94 97\n1 66 8...
1,671,169,100
2,147,483,647
PyPy 3-64
OK
TESTS
35
1,824
15,769,600
def matmul(A,B,mod): res = [[0]*len(B[0]) for _ in [None]*len(A)] for i, resi in enumerate(res): for k, aik in enumerate(A[i]): for j,bkj in enumerate(B[k]): resi[j] += aik*bkj resi[j] %= mod return res def matpow(A,p,mod): if p%2: ...
Title: Runner's Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are running through a rectangular field. This field can be represented as a matrix with 3 rows and *m* columns. (*i*,<=*j*) denotes a cell belonging to *i*-th row and *j*-th column. You start in (2,<=1) and have t...
```python def matmul(A,B,mod): res = [[0]*len(B[0]) for _ in [None]*len(A)] for i, resi in enumerate(res): for k, aik in enumerate(A[i]): for j,bkj in enumerate(B[k]): resi[j] += aik*bkj resi[j] %= mod return res def matpow(A,p,mod): if p%2:...
3