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
749
A
Bachgold Problem
PROGRAMMING
800
[ "greedy", "implementation", "math", "number theory" ]
null
null
Bachgold problem is very easy to formulate. Given a positive integer *n* represent it as a sum of maximum possible number of prime numbers. One can prove that such representation exists for any integer greater than 1. Recall that integer *k* is called prime if it is greater than 1 and has exactly two positive integer ...
The only line of the input contains a single integer *n* (2<=≤<=*n*<=≤<=100<=000).
The first line of the output contains a single integer *k* — maximum possible number of primes in representation. The second line should contain *k* primes with their sum equal to *n*. You can print them in any order. If there are several optimal solution, print any of them.
[ "5\n", "6\n" ]
[ "2\n2 3\n", "3\n2 2 2\n" ]
none
500
[ { "input": "5", "output": "2\n2 3" }, { "input": "6", "output": "3\n2 2 2" }, { "input": "2", "output": "1\n2" }, { "input": "3", "output": "1\n3" }, { "input": "99999", "output": "49999\n2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 2 ...
1,662,793,976
2,147,483,647
Python 3
OK
TESTS
41
109
409,600
n = int(input()) dels = [] count = 0 if n%2==0: while n >= 2: n -= 2 dels.append(2) count += 1 while n >= 3: n -= 3 dels.append(3) count += 1 else: while n >= 4: n -= 2 dels.append(2) count += 1 while n >= 3: n -= 3 ...
Title: Bachgold Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bachgold problem is very easy to formulate. Given a positive integer *n* represent it as a sum of maximum possible number of prime numbers. One can prove that such representation exists for any integer greater than 1. ...
```python n = int(input()) dels = [] count = 0 if n%2==0: while n >= 2: n -= 2 dels.append(2) count += 1 while n >= 3: n -= 3 dels.append(3) count += 1 else: while n >= 4: n -= 2 dels.append(2) count += 1 while n >= 3: ...
3
859
B
Lazy Security Guard
PROGRAMMING
1,000
[ "brute force", "geometry", "math" ]
null
null
Your security guard friend recently got a new job at a new security company. The company requires him to patrol an area of the city encompassing exactly *N* city blocks, but they let him choose which blocks. That is, your friend must walk the perimeter of a region whose area is exactly *N* blocks. Your friend is quite ...
Input will consist of a single integer *N* (1<=≤<=*N*<=≤<=106), the number of city blocks that must be enclosed by the route.
Print the minimum perimeter that can be achieved.
[ "4\n", "11\n", "22\n" ]
[ "8\n", "14\n", "20\n" ]
Here are some possible shapes for the examples: <img class="tex-graphics" src="https://espresso.codeforces.com/e11bef2cf82b55dd583cfc97d12b5aee5e483a65.png" style="max-width: 100.0%;max-height: 100.0%;"/>
750
[ { "input": "4", "output": "8" }, { "input": "11", "output": "14" }, { "input": "22", "output": "20" }, { "input": "3", "output": "8" }, { "input": "1024", "output": "128" }, { "input": "101", "output": "42" }, { "input": "30", "output":...
1,679,361,882
2,147,483,647
PyPy 3-64
OK
TESTS
35
46
0
i=int;c=i(input());a=i(c**0.5)+1 if a*a-a-a+1==c:print(a*4-4) elif a*a-a<c:print(a*4) else:print(a*4-2)
Title: Lazy Security Guard Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your security guard friend recently got a new job at a new security company. The company requires him to patrol an area of the city encompassing exactly *N* city blocks, but they let him choose which blocks. That is...
```python i=int;c=i(input());a=i(c**0.5)+1 if a*a-a-a+1==c:print(a*4-4) elif a*a-a<c:print(a*4) else:print(a*4-2) ```
3
110
A
Nearly Lucky Number
PROGRAMMING
800
[ "implementation" ]
A. Nearly Lucky Number
2
256
Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Unfortunately, not all numbers are lucky. Petya calls a number nearly lucky if the number of lucky d...
The only line contains an integer *n* (1<=≤<=*n*<=≤<=1018). Please do not use the %lld specificator to read or write 64-bit numbers in С++. It is preferred to use the cin, cout streams or the %I64d specificator.
Print on the single line "YES" if *n* is a nearly lucky number. Otherwise, print "NO" (without the quotes).
[ "40047\n", "7747774\n", "1000000000000000000\n" ]
[ "NO\n", "YES\n", "NO\n" ]
In the first sample there are 3 lucky digits (first one and last two), so the answer is "NO". In the second sample there are 7 lucky digits, 7 is lucky number, so the answer is "YES". In the third sample there are no lucky digits, so the answer is "NO".
500
[ { "input": "40047", "output": "NO" }, { "input": "7747774", "output": "YES" }, { "input": "1000000000000000000", "output": "NO" }, { "input": "7", "output": "NO" }, { "input": "4", "output": "NO" }, { "input": "474404774", "output": "NO" }, { ...
1,697,725,592
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
62
0
a=int(input()) q=True while a>0: e=a%10 if not(e==4 or e==7): print("NO") q=False break a=a//10 if q: print("YES")
Title: Nearly Lucky Number Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python a=int(input()) q=True while a>0: e=a%10 if not(e==4 or e==7): print("NO") q=False break a=a//10 if q: print("YES") ```
0
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,688,586,317
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
92
0
# def findSup(n): # pass n = int(input()) tree = [[]for i in range(n+1)] #sup = [-1]*(n+1) for i in range(1,n+1): p = int(input()) if p==-1:continue #sup[i] = p tree[p].append(i) print(1+sum(len(i)>0 for i in tree)) #print(sup)
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 # def findSup(n): # pass n = int(input()) tree = [[]for i in range(n+1)] #sup = [-1]*(n+1) for i in range(1,n+1): p = int(input()) if p==-1:continue #sup[i] = p tree[p].append(i) print(1+sum(len(i)>0 for i in tree)) #print(sup) ```
0
922
A
Cloning Toys
PROGRAMMING
1,300
[ "implementation" ]
null
null
Imp likes his plush toy a lot. Recently, he found a machine that can clone plush toys. Imp knows that if he applies the machine to an original toy, he additionally gets one more original toy and one copy, and if he applies the machine to a copied toy, he gets two additional copies. Initially, Imp has only one origina...
The only line contains two integers *x* and *y* (0<=≤<=*x*,<=*y*<=≤<=109) — the number of copies and the number of original toys Imp wants to get (including the initial one).
Print "Yes", if the desired configuration is possible, and "No" otherwise. You can print each letter in arbitrary case (upper or lower).
[ "6 3\n", "4 2\n", "1000 1001\n" ]
[ "Yes\n", "No\n", "Yes\n" ]
In the first example, Imp has to apply the machine twice to original toys and then twice to copies.
500
[ { "input": "6 3", "output": "Yes" }, { "input": "4 2", "output": "No" }, { "input": "1000 1001", "output": "Yes" }, { "input": "1000000000 999999999", "output": "Yes" }, { "input": "81452244 81452247", "output": "No" }, { "input": "188032448 86524683",...
1,573,336,643
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
20
109
0
c,o = map(int,input().split()) if o-1<=0: print("No") elif o-1>c: print("No") elif o-1<=c: if (o-1)%2==0: if (c%2)==0: print("Yes") else: print("No") elif (o-1)%2!=0: if (c%2)!=0: print("Yes") else: print("No"...
Title: Cloning Toys Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imp likes his plush toy a lot. Recently, he found a machine that can clone plush toys. Imp knows that if he applies the machine to an original toy, he additionally gets one more original toy and one copy, and if he applie...
```python c,o = map(int,input().split()) if o-1<=0: print("No") elif o-1>c: print("No") elif o-1<=c: if (o-1)%2==0: if (c%2)==0: print("Yes") else: print("No") elif (o-1)%2!=0: if (c%2)!=0: print("Yes") else: ...
0
416
B
Art Union
PROGRAMMING
1,300
[ "brute force", "dp", "implementation" ]
null
null
A well-known art union called "Kalevich is Alive!" manufactures objects d'art (pictures). The union consists of *n* painters who decided to organize their work as follows. Each painter uses only the color that was assigned to him. The colors are distinct for all painters. Let's assume that the first painter uses color...
The first line of the input contains integers *m*,<=*n* (1<=≤<=*m*<=≤<=50000,<=1<=≤<=*n*<=≤<=5), where *m* is the number of pictures and *n* is the number of painters. Then follow the descriptions of the pictures, one per line. Each line contains *n* integers *t**i*1,<=*t**i*2,<=...,<=*t**in* (1<=≤<=*t**ij*<=≤<=1000), ...
Print the sequence of *m* integers *r*1,<=*r*2,<=...,<=*r**m*, where *r**i* is the moment when the *n*-th painter stopped working on the *i*-th picture.
[ "5 1\n1\n2\n3\n4\n5\n", "4 2\n2 5\n3 1\n5 3\n10 1\n" ]
[ "1 3 6 10 15 ", "7 8 13 21 " ]
none
1,000
[ { "input": "5 1\n1\n2\n3\n4\n5", "output": "1 3 6 10 15 " }, { "input": "4 2\n2 5\n3 1\n5 3\n10 1", "output": "7 8 13 21 " }, { "input": "1 1\n66", "output": "66 " }, { "input": "2 2\n1 1\n1 1", "output": "2 3 " }, { "input": "2 2\n10 1\n10 1", "output": "11 2...
1,397,377,374
1,374
Python 3
WRONG_ANSWER
PRETESTS
1
46
0
m,n=map(int,input().split()) s=[0]*n for i in range(m): a=list(map(int,input().split())) s[0]=s[0]+a[0] for j in range(1,n): s[j]=s[j-1]+a[j] print(s[-1],end=' ')
Title: Art Union Time Limit: None seconds Memory Limit: None megabytes Problem Description: A well-known art union called "Kalevich is Alive!" manufactures objects d'art (pictures). The union consists of *n* painters who decided to organize their work as follows. Each painter uses only the color that was assigned t...
```python m,n=map(int,input().split()) s=[0]*n for i in range(m): a=list(map(int,input().split())) s[0]=s[0]+a[0] for j in range(1,n): s[j]=s[j-1]+a[j] print(s[-1],end=' ') ```
0
967
B
Watering System
PROGRAMMING
1,000
[ "math", "sortings" ]
null
null
Arkady wants to water his only flower. Unfortunately, he has a very poor watering system that was designed for $n$ flowers and so it looks like a pipe with $n$ holes. Arkady can only use the water that flows from the first hole. Arkady can block some of the holes, and then pour $A$ liters of water into the pipe. After...
The first line contains three integers $n$, $A$, $B$ ($1 \le n \le 100\,000$, $1 \le B \le A \le 10^4$) — the number of holes, the volume of water Arkady will pour into the system, and the volume he wants to get out of the first hole. The second line contains $n$ integers $s_1, s_2, \ldots, s_n$ ($1 \le s_i \le 10^4$)...
Print a single integer — the number of holes Arkady should block.
[ "4 10 3\n2 2 2 2\n", "4 80 20\n3 2 1 4\n", "5 10 10\n1000 1 1 1 1\n" ]
[ "1\n", "0\n", "4\n" ]
In the first example Arkady should block at least one hole. After that, $\frac{10 \cdot 2}{6} \approx 3.333$ liters of water will flow out of the first hole, and that suits Arkady. In the second example even without blocking any hole, $\frac{80 \cdot 3}{10} = 24$ liters will flow out of the first hole, that is not les...
1,000
[ { "input": "4 10 3\n2 2 2 2", "output": "1" }, { "input": "4 80 20\n3 2 1 4", "output": "0" }, { "input": "5 10 10\n1000 1 1 1 1", "output": "4" }, { "input": "10 300 100\n20 1 3 10 8 5 3 6 4 3", "output": "1" }, { "input": "10 300 100\n20 25 68 40 60 37 44 85 23 ...
1,591,468,448
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
124
0
n,a,b = map(int,input().split()) t = list(map(int,input().split())) s = t[0]*(a-b)//b h= t[1:] h.sort() if s>= sum(h): print(0) else: for k in range(n-1): if s>0: s-=h[k] else: if s==0: print(n-1-k) break...
Title: Watering System Time Limit: None seconds Memory Limit: None megabytes Problem Description: Arkady wants to water his only flower. Unfortunately, he has a very poor watering system that was designed for $n$ flowers and so it looks like a pipe with $n$ holes. Arkady can only use the water that flows from the fi...
```python n,a,b = map(int,input().split()) t = list(map(int,input().split())) s = t[0]*(a-b)//b h= t[1:] h.sort() if s>= sum(h): print(0) else: for k in range(n-1): if s>0: s-=h[k] else: if s==0: print(n-1-k) ...
0
237
A
Free Cash
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera runs a 24/7 fast food cafe. He magically learned that next day *n* people will visit his cafe. For each person we know the arrival time: the *i*-th person comes exactly at *h**i* hours *m**i* minutes. The cafe spends less than a minute to serve each client, but if a client comes in and sees that there is no free...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105), that is the number of cafe visitors. Each of the following *n* lines has two space-separated integers *h**i* and *m**i* (0<=≤<=*h**i*<=≤<=23; 0<=≤<=*m**i*<=≤<=59), representing the time when the *i*-th person comes into the cafe. Note that the time is...
Print a single integer — the minimum number of cashes, needed to serve all clients next day.
[ "4\n8 0\n8 10\n8 10\n8 45\n", "3\n0 12\n10 11\n22 22\n" ]
[ "2\n", "1\n" ]
In the first sample it is not enough one cash to serve all clients, because two visitors will come into cafe in 8:10. Therefore, if there will be one cash in cafe, then one customer will be served by it, and another one will not wait and will go away. In the second sample all visitors will come in different times, so ...
500
[ { "input": "4\n8 0\n8 10\n8 10\n8 45", "output": "2" }, { "input": "3\n0 12\n10 11\n22 22", "output": "1" }, { "input": "5\n12 8\n15 27\n15 27\n16 2\n19 52", "output": "2" }, { "input": "7\n5 6\n7 34\n7 34\n7 34\n12 29\n15 19\n20 23", "output": "3" }, { "input": "...
1,638,537,995
2,147,483,647
Python 3
OK
TESTS
67
686
102,400
n = int(input()) d = {} c = 1 for i in range(n): m,h = list(map(str, input().split())) if m+":"+h in d.keys(): d[m+":"+h] += 1 c = max(c, d[m+":"+h]) else: d[m+":"+h] = 1 print(c)
Title: Free Cash Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera runs a 24/7 fast food cafe. He magically learned that next day *n* people will visit his cafe. For each person we know the arrival time: the *i*-th person comes exactly at *h**i* hours *m**i* minutes. The cafe spends l...
```python n = int(input()) d = {} c = 1 for i in range(n): m,h = list(map(str, input().split())) if m+":"+h in d.keys(): d[m+":"+h] += 1 c = max(c, d[m+":"+h]) else: d[m+":"+h] = 1 print(c) ```
3
727
B
Bill Total Value
PROGRAMMING
1,600
[ "expression parsing", "implementation", "strings" ]
null
null
Vasily exited from a store and now he wants to recheck the total price of all purchases in his bill. The bill is a string in which the names of the purchases and their prices are printed in a row without any spaces. Check has the format "*name*1*price*1*name*2*price*2...*name**n**price**n*", where *name**i* (name of th...
The only line of the input contains a non-empty string *s* with length not greater than 1000 — the content of the bill. It is guaranteed that the bill meets the format described above. It is guaranteed that each price in the bill is not less than one cent and not greater than 106 dollars.
Print the total price exactly in the same format as prices given in the input.
[ "chipsy48.32televizor12.390\n", "a1b2c3.38\n", "aa0.01t0.03\n" ]
[ "12.438.32\n", "6.38\n", "0.04\n" ]
none
1,000
[ { "input": "chipsy48.32televizor12.390", "output": "12.438.32" }, { "input": "a1b2c3.38", "output": "6.38" }, { "input": "aa0.01t0.03", "output": "0.04" }, { "input": "test0.50test0.50", "output": "1" }, { "input": "a500b500", "output": "1.000" }, { "i...
1,593,093,275
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
93
6,963,200
a = input() M = [] n = "" for i in a: if i.isnumeric() or i == ".": n += i elif len(n) > 0: M.append(n) n = "" M.append(n) G = [] for i in range(len(M)): if(len(M[i]) >= 3): if M[i][-3] == ".": M[i] = float(M[i][:-3:].replace(".","") + M[i][-3::]) ...
Title: Bill Total Value Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasily exited from a store and now he wants to recheck the total price of all purchases in his bill. The bill is a string in which the names of the purchases and their prices are printed in a row without any spaces. Ch...
```python a = input() M = [] n = "" for i in a: if i.isnumeric() or i == ".": n += i elif len(n) > 0: M.append(n) n = "" M.append(n) G = [] for i in range(len(M)): if(len(M[i]) >= 3): if M[i][-3] == ".": M[i] = float(M[i][:-3:].replace(".","") + M[i]...
0
166
E
Tetrahedron
PROGRAMMING
1,500
[ "dp", "math", "matrices" ]
null
null
You are given a tetrahedron. Let's mark its vertices with letters *A*, *B*, *C* and *D* correspondingly. An ant is standing in the vertex *D* of the tetrahedron. The ant is quite active and he wouldn't stay idle. At each moment of time he makes a step from one vertex to another one along some edge of the tetrahedron. ...
The first line contains the only integer *n* (1<=≤<=*n*<=≤<=107) — the required length of the cyclic path.
Print the only integer — the required number of ways modulo 1000000007 (109<=+<=7).
[ "2\n", "4\n" ]
[ "3\n", "21\n" ]
The required paths in the first sample are: - *D* - *A* - *D* - *D* - *B* - *D* - *D* - *C* - *D*
1,000
[ { "input": "2", "output": "3" }, { "input": "4", "output": "21" }, { "input": "1", "output": "0" }, { "input": "3", "output": "6" }, { "input": "5", "output": "60" }, { "input": "6", "output": "183" }, { "input": "7", "output": "546" ...
1,626,286,625
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
12
2,000
6,758,400
n = int(input()) to_abc = 0 to_d = 1 for i in range(n): to_d_n = (to_abc * 3) % (10**9+7) to_abc_n = (to_d + to_abc * 2) % (10**9+7) to_d = to_d_n to_abc = to_abc_n print(to_d)
Title: Tetrahedron Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a tetrahedron. Let's mark its vertices with letters *A*, *B*, *C* and *D* correspondingly. An ant is standing in the vertex *D* of the tetrahedron. The ant is quite active and he wouldn't stay idle. At each m...
```python n = int(input()) to_abc = 0 to_d = 1 for i in range(n): to_d_n = (to_abc * 3) % (10**9+7) to_abc_n = (to_d + to_abc * 2) % (10**9+7) to_d = to_d_n to_abc = to_abc_n print(to_d) ```
0
387
A
George and Sleep
PROGRAMMING
900
[ "implementation" ]
null
null
George woke up and saw the current time *s* on the digital clock. Besides, George knows that he has slept for time *t*. Help George! Write a program that will, given time *s* and *t*, determine the time *p* when George went to bed. Note that George could have gone to bed yesterday relatively to the current time (see ...
The first line contains current time *s* as a string in the format "hh:mm". The second line contains time *t* in the format "hh:mm" — the duration of George's sleep. It is guaranteed that the input contains the correct time in the 24-hour format, that is, 00<=≤<=*hh*<=≤<=23, 00<=≤<=*mm*<=≤<=59.
In the single line print time *p* — the time George went to bed in the format similar to the format of the time in the input.
[ "05:50\n05:44\n", "00:00\n01:00\n", "00:01\n00:00\n" ]
[ "00:06\n", "23:00\n", "00:01\n" ]
In the first sample George went to bed at "00:06". Note that you should print the time only in the format "00:06". That's why answers "0:06", "00:6" and others will be considered incorrect. In the second sample, George went to bed yesterday. In the third sample, George didn't do to bed at all.
500
[ { "input": "05:50\n05:44", "output": "00:06" }, { "input": "00:00\n01:00", "output": "23:00" }, { "input": "00:01\n00:00", "output": "00:01" }, { "input": "23:59\n23:59", "output": "00:00" }, { "input": "23:44\n23:55", "output": "23:49" }, { "input": "...
1,595,346,114
2,147,483,647
Python 3
OK
TESTS
47
108
6,656,000
a,b=map(int, input().split(':')) c,d=map(int, input().split(':')) k=a*60+ b-c*60-d if k < 0: k+=60*24 a=k//60 b=k% 60 print(str(a//10) + str(a%10)+':'+str(b//10)+str(b%10))
Title: George and Sleep Time Limit: None seconds Memory Limit: None megabytes Problem Description: George woke up and saw the current time *s* on the digital clock. Besides, George knows that he has slept for time *t*. Help George! Write a program that will, given time *s* and *t*, determine the time *p* when Geor...
```python a,b=map(int, input().split(':')) c,d=map(int, input().split(':')) k=a*60+ b-c*60-d if k < 0: k+=60*24 a=k//60 b=k% 60 print(str(a//10) + str(a%10)+':'+str(b//10)+str(b%10)) ```
3
224
A
Parallelepiped
PROGRAMMING
1,100
[ "brute force", "geometry", "math" ]
null
null
You've got a rectangular parallelepiped with integer edge lengths. You know the areas of its three faces that have a common vertex. Your task is to find the sum of lengths of all 12 edges of this parallelepiped.
The first and the single line contains three space-separated integers — the areas of the parallelepiped's faces. The area's values are positive (<=&gt;<=0) and do not exceed 104. It is guaranteed that there exists at least one parallelepiped that satisfies the problem statement.
Print a single number — the sum of all edges of the parallelepiped.
[ "1 1 1\n", "4 6 6\n" ]
[ "12\n", "28\n" ]
In the first sample the parallelepiped has sizes 1 × 1 × 1, in the second one — 2 × 2 × 3.
500
[ { "input": "1 1 1", "output": "12" }, { "input": "4 6 6", "output": "28" }, { "input": "20 10 50", "output": "68" }, { "input": "9 4 36", "output": "56" }, { "input": "324 9 36", "output": "184" }, { "input": "1333 93 129", "output": "308" }, {...
1,596,735,482
2,147,483,647
Python 3
OK
TESTS
27
216
6,963,200
""" Created on Mon Jul 6 21:28:12 2020 @author: rishi """ import math def sumofno(n): summ=0 while(n>0): summ+=n%10 n//=10 return summ def get_key(val,lis): for key, value in lis.items(): if value == val : return key def isprime(val): ...
Title: Parallelepiped Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a rectangular parallelepiped with integer edge lengths. You know the areas of its three faces that have a common vertex. Your task is to find the sum of lengths of all 12 edges of this parallelepiped. Input S...
```python """ Created on Mon Jul 6 21:28:12 2020 @author: rishi """ import math def sumofno(n): summ=0 while(n>0): summ+=n%10 n//=10 return summ def get_key(val,lis): for key, value in lis.items(): if value == val : return key def ispri...
3
24
A
Ring road
PROGRAMMING
1,400
[ "graphs" ]
A. Ring road
2
256
Nowadays the one-way traffic is introduced all over the world in order to improve driving safety and reduce traffic jams. The government of Berland decided to keep up with new trends. Formerly all *n* cities of Berland were connected by *n* two-way roads in the ring, i. e. each city was connected directly to exactly tw...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of cities (and roads) in Berland. Next *n* lines contain description of roads. Each road is described by three integers *a**i*, *b**i*, *c**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*,<=*a**i*<=≠<=*b**i*,<=1<=≤<=*c**i*<=≤<=100) — road is directed from city *a**i* t...
Output single integer — the smallest amount of money the government should spend on the redirecting of roads so that from every city you can get to any other.
[ "3\n1 3 1\n1 2 1\n3 2 1\n", "3\n1 3 1\n1 2 5\n3 2 1\n", "6\n1 5 4\n5 3 8\n2 4 15\n1 6 16\n2 3 23\n4 6 42\n", "4\n1 2 9\n2 3 8\n3 4 7\n4 1 5\n" ]
[ "1\n", "2\n", "39\n", "0\n" ]
none
0
[ { "input": "3\n1 3 1\n1 2 1\n3 2 1", "output": "1" }, { "input": "3\n1 3 1\n1 2 5\n3 2 1", "output": "2" }, { "input": "6\n1 5 4\n5 3 8\n2 4 15\n1 6 16\n2 3 23\n4 6 42", "output": "39" }, { "input": "4\n1 2 9\n2 3 8\n3 4 7\n4 1 5", "output": "0" }, { "input": "5\n...
1,586,964,689
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
186
307,200
n = int(input('e\n')) for i in range(n): a, b, c = int((input('g\n').split())) if a >= 20: for i in range(b): if a%2 == 0: n = (a / 2 - (c*10)) if n <= 0: print('YES') else: print('NO') ...
Title: Ring road Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Nowadays the one-way traffic is introduced all over the world in order to improve driving safety and reduce traffic jams. The government of Berland decided to keep up with new trends. Formerly all *n* cities of Berland were conne...
```python n = int(input('e\n')) for i in range(n): a, b, c = int((input('g\n').split())) if a >= 20: for i in range(b): if a%2 == 0: n = (a / 2 - (c*10)) if n <= 0: print('YES') else: print('NO'...
-1
7
A
Kalevitch and Chess
PROGRAMMING
1,100
[ "brute force", "constructive algorithms" ]
A. Kalevitch and Chess
2
64
A famous Berland's painter Kalevitch likes to shock the public. One of his last obsessions is chess. For more than a thousand years people have been playing this old game on uninteresting, monotonous boards. Kalevitch decided to put an end to this tradition and to introduce a new attitude to chessboards. As before, th...
The input file contains 8 lines, each of the lines contains 8 characters. The given matrix describes the client's requirements, W character stands for a white square, and B character — for a square painted black. It is guaranteed that client's requirments can be fulfilled with a sequence of allowed strokes (vertical/c...
Output the only number — the minimum amount of rows and columns that Kalevitch has to paint on the white chessboard to meet the client's requirements.
[ "WWWBWWBW\nBBBBBBBB\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\n", "WWWWWWWW\nBBBBBBBB\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\n" ]
[ "3\n", "1\n" ]
none
0
[ { "input": "WWWBWWBW\nBBBBBBBB\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW\nWWWBWWBW", "output": "3" }, { "input": "WWWWWWWW\nBBBBBBBB\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW", "output": "1" }, { "input": "WWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWWWW\nWWWWWW...
1,590,716,135
2,147,483,647
Python 3
OK
TESTS
30
248
0
l = [] x = y = n = 0 for _ in range(8): s = input() if s == "BBBBBBBB": x += 1 elif "B" in s: y += s.count("B") if x != 8: print(x+(y//(8-x))) else: print(x)
Title: Kalevitch and Chess Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: A famous Berland's painter Kalevitch likes to shock the public. One of his last obsessions is chess. For more than a thousand years people have been playing this old game on uninteresting, monotonous boards. Kalevitch de...
```python l = [] x = y = n = 0 for _ in range(8): s = input() if s == "BBBBBBBB": x += 1 elif "B" in s: y += s.count("B") if x != 8: print(x+(y//(8-x))) else: print(x) ```
3.938
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,675,835,720
2,147,483,647
Python 3
OK
TESTS
29
92
0
k = set() for _ in range(int(input())): k.add(input().strip()) print(len(k))
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 k = set() for _ in range(int(input())): k.add(input().strip()) print(len(k)) ```
3.977
965
C
Greedy Arkady
PROGRAMMING
2,000
[ "math" ]
null
null
$k$ people want to split $n$ candies between them. Each candy should be given to exactly one of them or be thrown away. The people are numbered from $1$ to $k$, and Arkady is the first of them. To split the candies, Arkady will choose an integer $x$ and then give the first $x$ candies to himself, the next $x$ candies ...
The only line contains four integers $n$, $k$, $M$ and $D$ ($2 \le n \le 10^{18}$, $2 \le k \le n$, $1 \le M \le n$, $1 \le D \le \min{(n, 1000)}$, $M \cdot D \cdot k \ge n$) — the number of candies, the number of people, the maximum number of candies given to a person at once, the maximum number of times a person can ...
Print a single integer — the maximum possible number of candies Arkady can give to himself. Note that it is always possible to choose some valid $x$.
[ "20 4 5 2\n", "30 9 4 1\n" ]
[ "8\n", "4\n" ]
In the first example Arkady should choose $x = 4$. He will give $4$ candies to himself, $4$ candies to the second person, $4$ candies to the third person, then $4$ candies to the fourth person and then again $4$ candies to himself. No person is given candies more than $2$ times, and Arkady receives $8$ candies in total...
1,500
[ { "input": "20 4 5 2", "output": "8" }, { "input": "30 9 4 1", "output": "4" }, { "input": "2 2 1 1", "output": "1" }, { "input": "42 20 5 29", "output": "5" }, { "input": "1000000000000000000 135 1000000000000000 1000", "output": "8325624421831635" }, { ...
1,524,709,999
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
18
77
7,065,600
import math n, k, m, d = map(int, input().split()) ans = 0; for i in range(1, d+1): times = (i-1)*k+1 per = math.floor(n/times) per = min(per, m) ans = max(ans, i*per) print(ans)
Title: Greedy Arkady Time Limit: None seconds Memory Limit: None megabytes Problem Description: $k$ people want to split $n$ candies between them. Each candy should be given to exactly one of them or be thrown away. The people are numbered from $1$ to $k$, and Arkady is the first of them. To split the candies, Arka...
```python import math n, k, m, d = map(int, input().split()) ans = 0; for i in range(1, d+1): times = (i-1)*k+1 per = math.floor(n/times) per = min(per, m) ans = max(ans, i*per) print(ans) ```
0
803
F
Coprime Subsequences
PROGRAMMING
2,000
[ "bitmasks", "combinatorics", "number theory" ]
null
null
Let's call a non-empty sequence of positive integers *a*1,<=*a*2... *a**k* coprime if the greatest common divisor of all elements of this sequence is equal to 1. Given an array *a* consisting of *n* positive integers, find the number of its coprime subsequences. Since the answer may be very large, print it modulo 109<...
The first line contains one integer number *n* (1<=≤<=*n*<=≤<=100000). The second line contains *n* integer numbers *a*1,<=*a*2... *a**n* (1<=≤<=*a**i*<=≤<=100000).
Print the number of coprime subsequences of *a* modulo 109<=+<=7.
[ "3\n1 2 3\n", "4\n1 1 1 1\n", "7\n1 3 5 15 3 105 35\n" ]
[ "5\n", "15\n", "100\n" ]
In the first example coprime subsequences are: 1. 1 1. 1, 2 1. 1, 3 1. 1, 2, 3 1. 2, 3 In the second example all subsequences are coprime.
0
[ { "input": "3\n1 2 3", "output": "5" }, { "input": "4\n1 1 1 1", "output": "15" }, { "input": "7\n1 3 5 15 3 105 35", "output": "100" }, { "input": "1\n1", "output": "1" }, { "input": "1\n100000", "output": "0" }, { "input": "5\n10 8 6 4 6", "outpu...
1,662,430,855
2,147,483,647
PyPy 3-64
OK
TESTS
35
982
26,521,600
from collections import defaultdict, deque, Counter import sys from decimal import * from heapq import heapify, heappop, heappush import math import random import string from copy import deepcopy from itertools import combinations, permutations, product from operator import mul, itemgetter from functools impo...
Title: Coprime Subsequences Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's call a non-empty sequence of positive integers *a*1,<=*a*2... *a**k* coprime if the greatest common divisor of all elements of this sequence is equal to 1. Given an array *a* consisting of *n* positive integ...
```python from collections import defaultdict, deque, Counter import sys from decimal import * from heapq import heapify, heappop, heappush import math import random import string from copy import deepcopy from itertools import combinations, permutations, product from operator import mul, itemgetter from func...
3
224
A
Parallelepiped
PROGRAMMING
1,100
[ "brute force", "geometry", "math" ]
null
null
You've got a rectangular parallelepiped with integer edge lengths. You know the areas of its three faces that have a common vertex. Your task is to find the sum of lengths of all 12 edges of this parallelepiped.
The first and the single line contains three space-separated integers — the areas of the parallelepiped's faces. The area's values are positive (<=&gt;<=0) and do not exceed 104. It is guaranteed that there exists at least one parallelepiped that satisfies the problem statement.
Print a single number — the sum of all edges of the parallelepiped.
[ "1 1 1\n", "4 6 6\n" ]
[ "12\n", "28\n" ]
In the first sample the parallelepiped has sizes 1 × 1 × 1, in the second one — 2 × 2 × 3.
500
[ { "input": "1 1 1", "output": "12" }, { "input": "4 6 6", "output": "28" }, { "input": "20 10 50", "output": "68" }, { "input": "9 4 36", "output": "56" }, { "input": "324 9 36", "output": "184" }, { "input": "1333 93 129", "output": "308" }, {...
1,610,841,386
2,147,483,647
PyPy 3
OK
TESTS
27
186
0
from math import sqrt x,y,z=map(int,input().split()) v=sqrt(x*y*z) print(int(4*((x*y+y*z+z*x)//v)))
Title: Parallelepiped Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a rectangular parallelepiped with integer edge lengths. You know the areas of its three faces that have a common vertex. Your task is to find the sum of lengths of all 12 edges of this parallelepiped. Input S...
```python from math import sqrt x,y,z=map(int,input().split()) v=sqrt(x*y*z) print(int(4*((x*y+y*z+z*x)//v))) ```
3
984
A
Game
PROGRAMMING
800
[ "sortings" ]
null
null
Two players play a game. Initially there are $n$ integers $a_1, a_2, \ldots, a_n$ written on the board. Each turn a player selects one number and erases it from the board. This continues until there is only one number left on the board, i. e. $n - 1$ turns are made. The first player makes the first move, then players ...
The first line contains one integer $n$ ($1 \le n \le 1000$) — the number of numbers on the board. The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1 \le a_i \le 10^6$).
Print one number that will be left on the board.
[ "3\n2 1 3\n", "3\n2 2 2\n" ]
[ "2", "2" ]
In the first sample, the first player erases $3$ and the second erases $1$. $2$ is left on the board. In the second sample, $2$ is left on the board regardless of the actions of the players.
500
[ { "input": "3\n2 1 3", "output": "2" }, { "input": "3\n2 2 2", "output": "2" }, { "input": "9\n44 53 51 80 5 27 74 79 94", "output": "53" }, { "input": "10\n38 82 23 37 96 4 81 60 67 86", "output": "60" }, { "input": "10\n58 26 77 15 53 81 68 48 22 65", "outpu...
1,585,479,429
2,147,483,647
Python 3
OK
TESTS
35
124
307,200
def a_game(n): a = len(n) i = 0 while i < a - 1: if i % 2 == 0: n.remove(max(n)) else: n.remove(min(n)) i += 1 print(n[0]) if __name__ == "__main__": _ = input() n = list(map(int, input().split(' '))) a_game(n)
Title: Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two players play a game. Initially there are $n$ integers $a_1, a_2, \ldots, a_n$ written on the board. Each turn a player selects one number and erases it from the board. This continues until there is only one number left on the...
```python def a_game(n): a = len(n) i = 0 while i < a - 1: if i % 2 == 0: n.remove(max(n)) else: n.remove(min(n)) i += 1 print(n[0]) if __name__ == "__main__": _ = input() n = list(map(int, input().split(' '))) a_game(n) ```
3
514
A
Chewbaсca and Number
PROGRAMMING
1,200
[ "greedy", "implementation" ]
null
null
Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform the initial number *x* to the minimum possible positive number by inverting some (possibly, zero) digits....
The first line contains a single integer *x* (1<=≤<=*x*<=≤<=1018) — the number that Luke Skywalker gave to Chewbacca.
Print the minimum possible positive number that Chewbacca can obtain after inverting some digits. The number shouldn't contain leading zeroes.
[ "27\n", "4545\n" ]
[ "22\n", "4444\n" ]
none
500
[ { "input": "27", "output": "22" }, { "input": "4545", "output": "4444" }, { "input": "1", "output": "1" }, { "input": "9", "output": "9" }, { "input": "8772", "output": "1222" }, { "input": "81", "output": "11" }, { "input": "71723447", ...
1,673,420,224
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
31
0
n=input() s='' for i in n: if int(i)<4: s+=i else: s+=str(9-int(i)) print(s)
Title: Chewbaсca and Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Luke Skywalker gave Chewbacca an integer number *x*. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit *t* means replacing it with digit 9<=-<=*t*. Help Chewbacca to transform...
```python n=input() s='' for i in n: if int(i)<4: s+=i else: s+=str(9-int(i)) print(s) ```
0
911
A
Nearest Minimums
PROGRAMMING
1,100
[ "implementation" ]
null
null
You are given an array of *n* integer numbers *a*0,<=*a*1,<=...,<=*a**n*<=-<=1. Find the distance between two closest (nearest) minimums in it. It is guaranteed that in the array a minimum occurs at least two times.
The first line contains positive integer *n* (2<=≤<=*n*<=≤<=105) — size of the given array. The second line contains *n* integers *a*0,<=*a*1,<=...,<=*a**n*<=-<=1 (1<=≤<=*a**i*<=≤<=109) — elements of the array. It is guaranteed that in the array a minimum occurs at least two times.
Print the only number — distance between two nearest minimums in the array.
[ "2\n3 3\n", "3\n5 6 5\n", "9\n2 1 3 5 4 1 2 3 1\n" ]
[ "1\n", "2\n", "3\n" ]
none
0
[ { "input": "2\n3 3", "output": "1" }, { "input": "3\n5 6 5", "output": "2" }, { "input": "9\n2 1 3 5 4 1 2 3 1", "output": "3" }, { "input": "6\n4 6 7 8 6 4", "output": "5" }, { "input": "2\n1000000000 1000000000", "output": "1" }, { "input": "42\n1 1 ...
1,514,818,246
2,147,483,647
Python 3
OK
TESTS
140
124
14,438,400
n=int(input()) a=list(map(int,input().split())) m=min(a) i=a.index(m) b=[] for j in range(i+1,n): if a[j]==m: b.append(j-i) i=j print(min(b))
Title: Nearest Minimums Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array of *n* integer numbers *a*0,<=*a*1,<=...,<=*a**n*<=-<=1. Find the distance between two closest (nearest) minimums in it. It is guaranteed that in the array a minimum occurs at least two times. I...
```python n=int(input()) a=list(map(int,input().split())) m=min(a) i=a.index(m) b=[] for j in range(i+1,n): if a[j]==m: b.append(j-i) i=j print(min(b)) ```
3
490
A
Team Olympiad
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The School №0 of the capital of Berland has *n* children studying in it. All the children in this school are gifted: some of them are good at programming, some are good at maths, others are good at PE (Physical Education). Hence, for each child we know value *t**i*: - *t**i*<==<=1, if the *i*-th child is good at prog...
The first line contains integer *n* (1<=≤<=*n*<=≤<=5000) — the number of children in the school. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=3), where *t**i* describes the skill of the *i*-th child.
In the first line output integer *w* — the largest possible number of teams. Then print *w* lines, containing three numbers in each line. Each triple represents the indexes of the children forming the team. You can print both the teams, and the numbers in the triplets in any order. The children are numbered from 1 to...
[ "7\n1 3 1 3 2 1 2\n", "4\n2 1 1 2\n" ]
[ "2\n3 5 2\n6 7 4\n", "0\n" ]
none
500
[ { "input": "7\n1 3 1 3 2 1 2", "output": "2\n3 5 2\n6 7 4" }, { "input": "4\n2 1 1 2", "output": "0" }, { "input": "1\n2", "output": "0" }, { "input": "2\n3 1", "output": "0" }, { "input": "3\n2 1 2", "output": "0" }, { "input": "3\n1 2 3", "output...
1,698,901,595
2,147,483,647
PyPy 3-64
OK
TESTS
41
77
5,222,400
n = int(input()) skills = list(map(int, input().split())) # Initialize dictionaries to count the number of students for each subject count = {1: [], 2: [], 3: []} # Populate the dictionaries with the indices of students for each subject for i, skill in enumerate(skills): count[skill].append(i + 1) # Fi...
Title: Team Olympiad Time Limit: None seconds Memory Limit: None megabytes Problem Description: The School №0 of the capital of Berland has *n* children studying in it. All the children in this school are gifted: some of them are good at programming, some are good at maths, others are good at PE (Physical Education)...
```python n = int(input()) skills = list(map(int, input().split())) # Initialize dictionaries to count the number of students for each subject count = {1: [], 2: [], 3: []} # Populate the dictionaries with the indices of students for each subject for i, skill in enumerate(skills): count[skill].append(i + ...
3
897
A
Scarborough Fair
PROGRAMMING
800
[ "implementation" ]
null
null
Parsley, sage, rosemary and thyme. Remember me to one who lives there. He once was the true love of mine. Willem is taking the girl to the highest building in island No.28, however, neither of them knows how to get there. Willem asks his friend, Grick for directions, Grick helped them, and gave them a task. Althou...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). The second line contains a string *s* of length *n*, consisting of lowercase English letters. Each of the next *m* lines contains four parameters *l*,<=*r*,<=*c*1,<=*c*2 (1<=≤<=*l*<=≤<=*r*<=≤<=*n*, *c*1,<=*c*2 are lowercase English letters), ...
Output string *s* after performing *m* operations described above.
[ "3 1\nioi\n1 1 i n\n", "5 3\nwxhak\n3 3 h x\n1 5 x a\n1 3 w g\n" ]
[ "noi", "gaaak" ]
For the second example: After the first operation, the string is wxxak. After the second operation, the string is waaak. After the third operation, the string is gaaak.
500
[ { "input": "3 1\nioi\n1 1 i n", "output": "noi" }, { "input": "5 3\nwxhak\n3 3 h x\n1 5 x a\n1 3 w g", "output": "gaaak" }, { "input": "9 51\nbhfbdcgff\n2 3 b b\n2 8 e f\n3 8 g f\n5 7 d a\n1 5 e b\n3 4 g b\n6 7 c d\n3 6 e g\n3 6 e h\n5 6 a e\n7 9 a c\n4 9 a h\n3 7 c b\n6 9 b g\n1 7 h b\n...
1,594,558,520
2,147,483,647
PyPy 3
OK
TESTS
47
140
20,172,800
n,m=map(int,input().split()) s=input() for i in range(m): l,r,c1,c2=map(str,input().split()) s1,s2,s3=s[0:int(l)-1],s[int(l)-1:int(r)],s[int(r):n] # print(s1,s2,s3) s2=s2.replace(c1,c2,n) s=s1+s2+s3 print(s)
Title: Scarborough Fair Time Limit: None seconds Memory Limit: None megabytes Problem Description: Parsley, sage, rosemary and thyme. Remember me to one who lives there. He once was the true love of mine. Willem is taking the girl to the highest building in island No.28, however, neither of them knows how to get ...
```python n,m=map(int,input().split()) s=input() for i in range(m): l,r,c1,c2=map(str,input().split()) s1,s2,s3=s[0:int(l)-1],s[int(l)-1:int(r)],s[int(r):n] # print(s1,s2,s3) s2=s2.replace(c1,c2,n) s=s1+s2+s3 print(s) ```
3
499
B
Lecture
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
You have a new professor of graph theory and he speaks very quickly. You come up with the following plan to keep up with his lecture and make notes. You know two languages, and the professor is giving the lecture in the first one. The words in both languages consist of lowercase English characters, each language consi...
The first line contains two integers, *n* and *m* (1<=≤<=*n*<=≤<=3000, 1<=≤<=*m*<=≤<=3000) — the number of words in the professor's lecture and the number of words in each of these languages. The following *m* lines contain the words. The *i*-th line contains two strings *a**i*, *b**i* meaning that the word *a**i* bel...
Output exactly *n* words: how you will record the lecture in your notebook. Output the words of the lecture in the same order as in the input.
[ "4 3\ncodeforces codesecrof\ncontest round\nletter message\ncodeforces contest letter contest\n", "5 3\njoll wuqrd\neuzf un\nhbnyiyc rsoqqveh\nhbnyiyc joll joll euzf joll\n" ]
[ "codeforces round letter round\n", "hbnyiyc joll joll un joll\n" ]
none
500
[ { "input": "4 3\ncodeforces codesecrof\ncontest round\nletter message\ncodeforces contest letter contest", "output": "codeforces round letter round" }, { "input": "5 3\njoll wuqrd\neuzf un\nhbnyiyc rsoqqveh\nhbnyiyc joll joll euzf joll", "output": "hbnyiyc joll joll un joll" }, { "input"...
1,661,802,763
2,147,483,647
PyPy 3-64
OK
TESTS
37
124
7,782,400
n, m = map(int, input().split()) words = {} for _ in range(m): a, b = input().split() if len(a) <= len(b): words[a] = a else: words[a] = b w = input().split() for wi in w: print(words[wi], end=' ')
Title: Lecture Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have a new professor of graph theory and he speaks very quickly. You come up with the following plan to keep up with his lecture and make notes. You know two languages, and the professor is giving the lecture in the first ...
```python n, m = map(int, input().split()) words = {} for _ in range(m): a, b = input().split() if len(a) <= len(b): words[a] = a else: words[a] = b w = input().split() for wi in w: print(words[wi], end=' ') ```
3
855
A
Tom Riddle's Diary
PROGRAMMING
800
[ "brute force", "implementation", "strings" ]
null
null
Harry Potter is on a mission to destroy You-Know-Who's Horcruxes. The first Horcrux that he encountered in the Chamber of Secrets is Tom Riddle's diary. The diary was with Ginny and it forced her to open the Chamber of Secrets. Harry wants to know the different people who had ever possessed the diary to make sure they ...
First line of input contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of names in the list. Next *n* lines each contain a string *s**i*, consisting of lowercase English letters. The length of each string is between 1 and 100.
Output *n* lines each containing either "YES" or "NO" (without quotes), depending on whether this string was already present in the stream or not. You can print each letter in any case (upper or lower).
[ "6\ntom\nlucius\nginny\nharry\nginny\nharry\n", "3\na\na\na\n" ]
[ "NO\nNO\nNO\nNO\nYES\nYES\n", "NO\nYES\nYES\n" ]
In test case 1, for *i* = 5 there exists *j* = 3 such that *s*<sub class="lower-index">*i*</sub> = *s*<sub class="lower-index">*j*</sub> and *j* &lt; *i*, which means that answer for *i* = 5 is "YES".
500
[ { "input": "6\ntom\nlucius\nginny\nharry\nginny\nharry", "output": "NO\nNO\nNO\nNO\nYES\nYES" }, { "input": "3\na\na\na", "output": "NO\nYES\nYES" }, { "input": "1\nzn", "output": "NO" }, { "input": "9\nliyzmbjwnzryjokufuxcqtzwworjeoxkbaqrujrhdidqdvwdfzilwszgnzglnnbogaclckfnb...
1,618,557,579
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
62
0
# # RED CODER # # t = int(input()) for items in range(t): n, k = map(int, input().split()) x = n//3 # print(x*'a'+x*'b'+x*'c')
Title: Tom Riddle's Diary Time Limit: None seconds Memory Limit: None megabytes Problem Description: Harry Potter is on a mission to destroy You-Know-Who's Horcruxes. The first Horcrux that he encountered in the Chamber of Secrets is Tom Riddle's diary. The diary was with Ginny and it forced her to open the Chamber ...
```python # # RED CODER # # t = int(input()) for items in range(t): n, k = map(int, input().split()) x = n//3 # print(x*'a'+x*'b'+x*'c') ```
-1
842
A
Kirill And The Game
PROGRAMMING
1,200
[ "brute force", "two pointers" ]
null
null
Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers — amount of experience and cost. The efficiency of a potion is the ratio of the amount of experience to the cost. Efficiency may be a non-integer number. For each two integer numbers ...
First string contains five integer numbers *l*, *r*, *x*, *y*, *k* (1<=≤<=*l*<=≤<=*r*<=≤<=107, 1<=≤<=*x*<=≤<=*y*<=≤<=107, 1<=≤<=*k*<=≤<=107).
Print "YES" without quotes if a potion with efficiency exactly *k* can be bought in the store and "NO" without quotes otherwise. You can output each of the letters in any register.
[ "1 10 1 10 1\n", "1 5 6 10 1\n" ]
[ "YES", "NO" ]
none
500
[ { "input": "1 10 1 10 1", "output": "YES" }, { "input": "1 5 6 10 1", "output": "NO" }, { "input": "1 1 1 1 1", "output": "YES" }, { "input": "1 1 1 1 2", "output": "NO" }, { "input": "1 100000 1 100000 100000", "output": "YES" }, { "input": "1 100000 ...
1,504,024,878
5,778
Python 3
TIME_LIMIT_EXCEEDED
TESTS
50
2,000
0
l, r, x, y, k=map(int,input().split()) for i in range(x,y+1): t=i*k if l<=t<=r: print('YES') exit() print('NO')
Title: Kirill And The Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kirill plays a new computer game. He came to the potion store where he can buy any potion. Each potion is characterized by two integers — amount of experience and cost. The efficiency of a potion is the ratio of the...
```python l, r, x, y, k=map(int,input().split()) for i in range(x,y+1): t=i*k if l<=t<=r: print('YES') exit() print('NO') ```
0
911
C
Three Garlands
PROGRAMMING
1,400
[ "brute force", "constructive algorithms" ]
null
null
Mishka is decorating the Christmas tree. He has got three garlands, and all of them will be put on the tree. After that Mishka will switch these garlands on. When a garland is switched on, it periodically changes its state — sometimes it is lit, sometimes not. Formally, if *i*-th garland is switched on during *x*-th s...
The first line contains three integers *k*1, *k*2 and *k*3 (1<=≤<=*k**i*<=≤<=1500) — time intervals of the garlands.
If Mishka can choose moments of time to switch on the garlands in such a way that each second after switching the garlands on at least one garland will be lit, print YES. Otherwise, print NO.
[ "2 2 3\n", "4 2 3\n" ]
[ "YES\n", "NO\n" ]
In the first example Mishka can choose *x*<sub class="lower-index">1</sub> = 1, *x*<sub class="lower-index">2</sub> = 2, *x*<sub class="lower-index">3</sub> = 1. The first garland will be lit during seconds 1, 3, 5, 7, ..., the second — 2, 4, 6, 8, ..., which already cover all the seconds after the 2-nd one. It doesn't...
0
[ { "input": "2 2 3", "output": "YES" }, { "input": "4 2 3", "output": "NO" }, { "input": "1499 1498 1500", "output": "NO" }, { "input": "1500 1500 1500", "output": "NO" }, { "input": "100 4 1", "output": "YES" }, { "input": "4 2 4", "output": "YES" ...
1,598,790,920
2,147,483,647
PyPy 3
OK
TESTS
67
155
20,377,600
a=[int(x) for x in input().split()] if 1 in a: print("YES") elif a.count(2)>=2: print("YES") elif a.count(3)==3: print("YES") elif set(a)=={2,4,4}: print("YES") else: print("NO")
Title: Three Garlands Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mishka is decorating the Christmas tree. He has got three garlands, and all of them will be put on the tree. After that Mishka will switch these garlands on. When a garland is switched on, it periodically changes its st...
```python a=[int(x) for x in input().split()] if 1 in a: print("YES") elif a.count(2)>=2: print("YES") elif a.count(3)==3: print("YES") elif set(a)=={2,4,4}: print("YES") else: print("NO") ```
3
146
A
Lucky Ticket
PROGRAMMING
800
[ "implementation" ]
null
null
Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya loves tickets very much. As we know, each ticket has a number that is a positive integer. It...
The first line contains an even integer *n* (2<=≤<=*n*<=≤<=50) — the length of the ticket number that needs to be checked. The second line contains an integer whose length equals exactly *n* — the ticket number. The number may contain leading zeros.
On the first line print "YES" if the given ticket number is lucky. Otherwise, print "NO" (without the quotes).
[ "2\n47\n", "4\n4738\n", "4\n4774\n" ]
[ "NO\n", "NO\n", "YES\n" ]
In the first sample the sum of digits in the first half does not equal the sum of digits in the second half (4 ≠ 7). In the second sample the ticket number is not the lucky number.
500
[ { "input": "2\n47", "output": "NO" }, { "input": "4\n4738", "output": "NO" }, { "input": "4\n4774", "output": "YES" }, { "input": "4\n4570", "output": "NO" }, { "input": "6\n477477", "output": "YES" }, { "input": "6\n777777", "output": "YES" }, ...
1,602,614,778
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
186
307,200
a = int(input()) l = list(map(int, input())) c = list(set(l)) sum1 = 0 sum2 = 0 if (c[0] == 4 and c[1] == 7) or (c[0] == 7 and c[0] == 4): for i in l[:a // 2]: sum1 += int(i) for j in l[a // 2:]: sum2 += int(j) if sum1 == sum2: print("YES") else: print("NO") ...
Title: Lucky Ticket Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python a = int(input()) l = list(map(int, input())) c = list(set(l)) sum1 = 0 sum2 = 0 if (c[0] == 4 and c[1] == 7) or (c[0] == 7 and c[0] == 4): for i in l[:a // 2]: sum1 += int(i) for j in l[a // 2:]: sum2 += int(j) if sum1 == sum2: print("YES") else: pr...
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,652,374,416
2,147,483,647
Python 3
OK
TESTS
40
92
0
word = list(input()) trans = list(input()) word = word[::-1] if word == trans: print("YES") else: print("NO")
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python word = list(input()) trans = list(input()) word = word[::-1] if word == trans: print("YES") else: print("NO") ```
3.977
388
A
Fox and Box Accumulation
PROGRAMMING
1,400
[ "greedy", "sortings" ]
null
null
Fox Ciel has *n* boxes in her room. They have the same size and weight, but they might have different strength. The *i*-th box can hold at most *x**i* boxes on its top (we'll call *x**i* the strength of the box). Since all the boxes have the same size, Ciel cannot put more than one box directly on the top of some box...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). The next line contains *n* integers *x*1,<=*x*2,<=...,<=*x**n* (0<=≤<=*x**i*<=≤<=100).
Output a single integer — the minimal possible number of piles.
[ "3\n0 0 10\n", "5\n0 1 2 3 4\n", "4\n0 0 0 0\n", "9\n0 1 0 2 0 1 1 2 10\n" ]
[ "2\n", "1\n", "4\n", "3\n" ]
In example 1, one optimal way is to build 2 piles: the first pile contains boxes 1 and 3 (from top to bottom), the second pile contains only box 2. In example 2, we can build only 1 pile that contains boxes 1, 2, 3, 4, 5 (from top to bottom).
500
[ { "input": "3\n0 0 10", "output": "2" }, { "input": "5\n0 1 2 3 4", "output": "1" }, { "input": "4\n0 0 0 0", "output": "4" }, { "input": "9\n0 1 0 2 0 1 1 2 10", "output": "3" }, { "input": "1\n0", "output": "1" }, { "input": "2\n0 0", "output": "...
1,475,687,762
2,147,483,647
Python 3
OK
TESTS
36
93
0
def take_lightest_box(boxes): for i in range(101): if i in boxes: boxes[i] -= 1 if boxes[i] == 0: del boxes[i] return i piles = [] boxes = {} input() tmp = input() x = [int(i) for i in tmp.split(" ")] for item in x: if item in boxes: bo...
Title: Fox and Box Accumulation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel has *n* boxes in her room. They have the same size and weight, but they might have different strength. The *i*-th box can hold at most *x**i* boxes on its top (we'll call *x**i* the strength of the box...
```python def take_lightest_box(boxes): for i in range(101): if i in boxes: boxes[i] -= 1 if boxes[i] == 0: del boxes[i] return i piles = [] boxes = {} input() tmp = input() x = [int(i) for i in tmp.split(" ")] for item in x: if item in boxes: ...
3
937
B
Vile Grasshoppers
PROGRAMMING
1,400
[ "brute force", "math", "number theory" ]
null
null
The weather is fine today and hence it's high time to climb the nearby pine and enjoy the landscape. The pine's trunk includes several branches, located one above another and numbered from 2 to *y*. Some of them (more precise, from 2 to *p*) are occupied by tiny vile grasshoppers which you're at war with. These grassh...
The only line contains two integers *p* and *y* (2<=≤<=*p*<=≤<=*y*<=≤<=109).
Output the number of the highest suitable branch. If there are none, print -1 instead.
[ "3 6\n", "3 4\n" ]
[ "5\n", "-1\n" ]
In the first sample case grasshopper from branch 2 reaches branches 2, 4 and 6 while branch 3 is initially settled by another grasshopper. Therefore the answer is 5. It immediately follows that there are no valid branches in second sample case.
1,000
[ { "input": "3 6", "output": "5" }, { "input": "3 4", "output": "-1" }, { "input": "2 2", "output": "-1" }, { "input": "5 50", "output": "49" }, { "input": "944192806 944193066", "output": "944192807" }, { "input": "1000000000 1000000000", "output":...
1,569,240,083
1,283
Python 3
WRONG_ANSWER
TESTS
4
124
409,600
import math,sys from collections import Counter, defaultdict from sys import stdin, stdout #input = stdin.readline lili=lambda:list(map(int,sys.stdin.readlines())) li = lambda:list(map(int,input().split())) def checkprime(a): if a%2: return True for i in range(2,min(p,int(a**0.5)+1)): if a%i ==...
Title: Vile Grasshoppers Time Limit: None seconds Memory Limit: None megabytes Problem Description: The weather is fine today and hence it's high time to climb the nearby pine and enjoy the landscape. The pine's trunk includes several branches, located one above another and numbered from 2 to *y*. Some of them (mor...
```python import math,sys from collections import Counter, defaultdict from sys import stdin, stdout #input = stdin.readline lili=lambda:list(map(int,sys.stdin.readlines())) li = lambda:list(map(int,input().split())) def checkprime(a): if a%2: return True for i in range(2,min(p,int(a**0.5)+1)): ...
0
432
A
Choosing Teams
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. According to the ACM ICPC rules, each person can participate in the world championship at most 5 times. Th...
The first line contains two integers, *n* and *k* (1<=≤<=*n*<=≤<=2000; 1<=≤<=*k*<=≤<=5). The next line contains *n* integers: *y*1,<=*y*2,<=...,<=*y**n* (0<=≤<=*y**i*<=≤<=5), where *y**i* shows the number of times the *i*-th person participated in the ACM ICPC world championship.
Print a single number — the answer to the problem.
[ "5 2\n0 4 5 1 0\n", "6 4\n0 1 2 3 4 5\n", "6 5\n0 0 0 0 0 0\n" ]
[ "1\n", "0\n", "2\n" ]
In the first sample only one team could be made: the first, the fourth and the fifth participants. In the second sample no teams could be created. In the third sample two teams could be created. Any partition into two teams fits.
500
[ { "input": "5 2\n0 4 5 1 0", "output": "1" }, { "input": "6 4\n0 1 2 3 4 5", "output": "0" }, { "input": "6 5\n0 0 0 0 0 0", "output": "2" }, { "input": "3 4\n0 1 0", "output": "1" }, { "input": "3 4\n0 2 0", "output": "0" }, { "input": "6 5\n0 0 0 0 0...
1,685,129,116
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
77
2,150,400
n, k = map(int, input().split()) t_cnt = 0 i_cnt = 0 for i in range(n): y = int(input()) if k + y <= 5: i_cnt += 1 if i_cnt == 3: i_cnt = 0 t_cnt += 1 print(t_cnt)
Title: Choosing Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has *n* students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. Accordi...
```python n, k = map(int, input().split()) t_cnt = 0 i_cnt = 0 for i in range(n): y = int(input()) if k + y <= 5: i_cnt += 1 if i_cnt == 3: i_cnt = 0 t_cnt += 1 print(t_cnt) ```
-1
513
A
Game
PROGRAMMING
800
[ "constructive algorithms", "math" ]
null
null
Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly *n*1 balls and second player's box contains exactly *n*2 balls. In one move first player can take from 1 to *k*1 balls from his box and throw them away. Similarly, the second player can take from 1 to *k*2...
The first line contains four integers *n*1,<=*n*2,<=*k*1,<=*k*2. All numbers in the input are from 1 to 50. This problem doesn't have subproblems. You will get 3 points for the correct submission.
Output "First" if the first player wins and "Second" otherwise.
[ "2 2 1 2\n", "2 1 1 1\n" ]
[ "Second\n", "First\n" ]
Consider the first sample test. Each player has a box with 2 balls. The first player draws a single ball from his box in one move and the second player can either take 1 or 2 balls from his box in one move. No matter how the first player acts, the second player can always win if he plays wisely.
3
[ { "input": "2 2 1 2", "output": "Second" }, { "input": "2 1 1 1", "output": "First" }, { "input": "5 7 4 1", "output": "Second" }, { "input": "5 7 1 4", "output": "Second" }, { "input": "5 7 10 10", "output": "Second" }, { "input": "5 7 1 10", "out...
1,507,773,845
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
18
46
0
# http://codeforces.com/problemset/problem/513/A n1, n2, k1, k2 = [int(x) for x in input().split()] temp = min(k1, k2) while(1): if ( (n1 <= 0) ): print("Second") break elif ( (n2 <= 0) ): print("First") break n1 -= temp n2 -= temp
Title: Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two players play a simple game. Each player is provided with a box with balls. First player's box contains exactly *n*1 balls and second player's box contains exactly *n*2 balls. In one move first player can take from 1 to *k*1 ba...
```python # http://codeforces.com/problemset/problem/513/A n1, n2, k1, k2 = [int(x) for x in input().split()] temp = min(k1, k2) while(1): if ( (n1 <= 0) ): print("Second") break elif ( (n2 <= 0) ): print("First") break n1 -= temp n2 -= temp ```
0
456
A
Laptops
PROGRAMMING
1,100
[ "sortings" ]
null
null
One day Dima and Alex had an argument about the price and quality of laptops. Dima thinks that the more expensive a laptop is, the better it is. Alex disagrees. Alex thinks that there are two laptops, such that the price of the first laptop is less (strictly smaller) than the price of the second laptop but the quality ...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=105) — the number of laptops. Next *n* lines contain two integers each, *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*), where *a**i* is the price of the *i*-th laptop, and *b**i* is the number that represents the quality of the *i*-th laptop (the larger the numb...
If Alex is correct, print "Happy Alex", otherwise print "Poor Alex" (without the quotes).
[ "2\n1 2\n2 1\n" ]
[ "Happy Alex\n" ]
none
500
[ { "input": "2\n1 2\n2 1", "output": "Happy Alex" }, { "input": "2\n1 1\n2 2", "output": "Poor Alex" }, { "input": "3\n2 2\n3 3\n1 1", "output": "Poor Alex" }, { "input": "3\n3 3\n1 2\n2 1", "output": "Happy Alex" }, { "input": "1\n1 1", "output": "Poor Alex" ...
1,678,210,952
2,147,483,647
PyPy 3-64
OK
TESTS
46
951
20,889,600
l = [] n = int(input()) for i in range(n): l.append([int(x) for x in input().split()]) l1 = l.copy() l.sort() l1 = sorted(l,key= lambda x:x[1]) if l==l1: print("Poor Alex") else: print("Happy Alex")
Title: Laptops Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Dima and Alex had an argument about the price and quality of laptops. Dima thinks that the more expensive a laptop is, the better it is. Alex disagrees. Alex thinks that there are two laptops, such that the price of the...
```python l = [] n = int(input()) for i in range(n): l.append([int(x) for x in input().split()]) l1 = l.copy() l.sort() l1 = sorted(l,key= lambda x:x[1]) if l==l1: print("Poor Alex") else: print("Happy Alex") ```
3
723
A
The New Year: Meeting Friends
PROGRAMMING
800
[ "implementation", "math", "sortings" ]
null
null
There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They plan to celebrate the New Year together, so they need to meet at one point. What is the minimum total distance they...
The first line of the input contains three distinct integers *x*1, *x*2 and *x*3 (1<=≤<=*x*1,<=*x*2,<=*x*3<=≤<=100) — the coordinates of the houses of the first, the second and the third friends respectively.
Print one integer — the minimum total distance the friends need to travel in order to meet together.
[ "7 1 4\n", "30 20 10\n" ]
[ "6\n", "20\n" ]
In the first sample, friends should meet at the point 4. Thus, the first friend has to travel the distance of 3 (from the point 7 to the point 4), the second friend also has to travel the distance of 3 (from the point 1 to the point 4), while the third friend should not go anywhere because he lives at the point 4.
500
[ { "input": "7 1 4", "output": "6" }, { "input": "30 20 10", "output": "20" }, { "input": "1 4 100", "output": "99" }, { "input": "100 1 91", "output": "99" }, { "input": "1 45 100", "output": "99" }, { "input": "1 2 3", "output": "2" }, { "...
1,671,084,201
2,147,483,647
Python 3
OK
TESTS
48
46
0
a1=list(map(int,input().split())) n1=len(a1) s1=sum(a1) av=s1/n1 ma=max(a1) mi=min(a1) d1=abs(av-ma) d2=abs(av-mi) z=d1+d2 print(int(z))
Title: The New Year: Meeting Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are three friend living on the straight line *Ox* in Lineland. The first friend lives at the point *x*1, the second friend lives at the point *x*2, and the third friend lives at the point *x*3. They ...
```python a1=list(map(int,input().split())) n1=len(a1) s1=sum(a1) av=s1/n1 ma=max(a1) mi=min(a1) d1=abs(av-ma) d2=abs(av-mi) z=d1+d2 print(int(z)) ```
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,654,122,285
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
122
0
size = int(input()) r = [input() for i in range(size)] maxC = 0 t = 0 for i in r: if maxC < r.count(i): maxC = r.count(i) maxR = i for i in r: if i != maxR: if maxR[0] != i[0] and maxR[2] != i[2]: t += 2 else: t += 1 print(t)
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 size = int(input()) r = [input() for i in range(size)] maxC = 0 t = 0 for i in r: if maxC < r.count(i): maxC = r.count(i) maxR = i for i in r: if i != maxR: if maxR[0] != i[0] and maxR[2] != i[2]: t += 2 else: t += 1 print(t) ```
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,693,889,132
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
15
0
a=eval(input()) for i in range(a): i=input() if len(i)>10: e=i[1]+str(len(i)-2)+i[-1] print(e) else: print(i)
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python a=eval(input()) for i in range(a): i=input() if len(i)>10: e=i[1]+str(len(i)-2)+i[-1] print(e) else: print(i) ```
0
102
B
Sum of Digits
PROGRAMMING
1,000
[ "implementation" ]
B. Sum of Digits
2
265
Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came across a number *n*. How many times can Gerald put a spell on it until the number becomes one-...
The first line contains the only integer *n* (0<=≤<=*n*<=≤<=10100000). It is guaranteed that *n* doesn't contain any leading zeroes.
Print the number of times a number can be replaced by the sum of its digits until it only contains one digit.
[ "0\n", "10\n", "991\n" ]
[ "0\n", "1\n", "3\n" ]
In the first sample the number already is one-digit — Herald can't cast a spell. The second test contains number 10. After one casting of a spell it becomes 1, and here the process is completed. Thus, Gerald can only cast the spell once. The third test contains number 991. As one casts a spell the following transform...
1,000
[ { "input": "0", "output": "0" }, { "input": "10", "output": "1" }, { "input": "991", "output": "3" }, { "input": "99", "output": "2" }, { "input": "100", "output": "1" }, { "input": "123456789", "output": "2" }, { "input": "32", "output...
1,669,471,735
2,147,483,647
Python 3
OK
TESTS
51
124
921,600
num = tuple(int(x) for x in input()) if len(num) == 1: print(0) raise SystemExit(0) count = 1 while True: num = tuple(int(x) for x in str(sum(num))) if len(num) == 1: print(count) break count += 1
Title: Sum of Digits Time Limit: 2 seconds Memory Limit: 265 megabytes Problem Description: Having watched the last Harry Potter film, little Gerald also decided to practice magic. He found in his father's magical book a spell that turns any number in the sum of its digits. At the moment Gerald learned that, he came...
```python num = tuple(int(x) for x in input()) if len(num) == 1: print(0) raise SystemExit(0) count = 1 while True: num = tuple(int(x) for x in str(sum(num))) if len(num) == 1: print(count) break count += 1 ```
3.967342
2
A
Winner
PROGRAMMING
1,500
[ "hashing", "implementation" ]
A. Winner
1
64
The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes more difficult if the number of such players is more than one. During each round a pla...
The first line contains an integer number *n* (1<=<=≤<=<=*n*<=<=≤<=<=1000), *n* is the number of rounds played. Then follow *n* lines, containing the information about the rounds in "name score" format in chronological order, where name is a string of lower-case Latin letters with the length from 1 to 32, and score is ...
Print the name of the winner.
[ "3\nmike 3\nandrew 5\nmike 2\n", "3\nandrew 3\nandrew 2\nmike 5\n" ]
[ "andrew\n", "andrew\n" ]
none
0
[ { "input": "3\nmike 3\nandrew 5\nmike 2", "output": "andrew" }, { "input": "3\nandrew 3\nandrew 2\nmike 5", "output": "andrew" }, { "input": "5\nkaxqybeultn -352\nmgochgrmeyieyskhuourfg -910\nkaxqybeultn 691\nmgochgrmeyieyskhuourfg -76\nkaxqybeultn -303", "output": "kaxqybeultn" },...
1,591,292,212
2,147,483,647
Python 3
OK
TESTS
20
218
307,200
n = int(input()) names = [] scores = [] for _ in range(n): tt = input().split() names.append(tt[0]) scores.append(int(tt[1])) d = {} for i in range(n): if names[i] in d: d[names[i]] += scores[i] else: d[names[i]] = scores[i] mx = -1001 for i in range(n): if (d[...
Title: Winner Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes...
```python n = int(input()) names = [] scores = [] for _ in range(n): tt = input().split() names.append(tt[0]) scores.append(int(tt[1])) d = {} for i in range(n): if names[i] in d: d[names[i]] += scores[i] else: d[names[i]] = scores[i] mx = -1001 for i in range(n): ...
3.888711
624
A
Save Luke
PROGRAMMING
800
[ "math" ]
null
null
Luke Skywalker got locked up in a rubbish shredder between two presses. R2D2 is already working on his rescue, but Luke needs to stay alive as long as possible. For simplicity we will assume that everything happens on a straight line, the presses are initially at coordinates 0 and *L*, and they move towards each other ...
The first line of the input contains four integers *d*, *L*, *v*1, *v*2 (1<=≤<=*d*,<=*L*,<=*v*1,<=*v*2<=≤<=10<=000,<=*d*<=&lt;<=*L*) — Luke's width, the initial position of the second press and the speed of the first and second presses, respectively.
Print a single real value — the maximum period of time Luke can stay alive for. Your answer will be considered correct if its absolute or relative error does not exceed 10<=-<=6. Namely: let's assume that your answer is *a*, and the answer of the jury is *b*. The checker program will consider your answer correct, if ...
[ "2 6 2 2\n", "1 9 1 2\n" ]
[ "1.00000000000000000000\n", "2.66666666666666650000\n" ]
In the first sample Luke should stay exactly in the middle of the segment, that is at coordinates [2;4], as the presses move with the same speed. In the second sample he needs to occupy the position <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/71395c777960eaded59a9fdc428a9625f152605b.pn...
500
[ { "input": "2 6 2 2", "output": "1.00000000000000000000" }, { "input": "1 9 1 2", "output": "2.66666666666666650000" }, { "input": "1 10000 1 1", "output": "4999.50000000000000000000" }, { "input": "9999 10000 10000 10000", "output": "0.00005000000000000000" }, { ...
1,454,605,862
362
Python 3
OK
TESTS
30
62
0
a,b,c,d=[int(x) for x in input().split()] print((b-a)/(c+d))
Title: Save Luke Time Limit: None seconds Memory Limit: None megabytes Problem Description: Luke Skywalker got locked up in a rubbish shredder between two presses. R2D2 is already working on his rescue, but Luke needs to stay alive as long as possible. For simplicity we will assume that everything happens on a strai...
```python a,b,c,d=[int(x) for x in input().split()] print((b-a)/(c+d)) ```
3
934
A
A Compatible Pair
PROGRAMMING
1,400
[ "brute force", "games" ]
null
null
Nian is a monster which lives deep in the oceans. Once a year, it shows up on the land, devouring livestock and even people. In order to keep the monster away, people fill their villages with red colour, light, and cracking noise, all of which frighten the monster out of coming. Little Tommy has *n* lanterns and Big B...
The first line contains two space-separated integers *n* and *m* (2<=≤<=*n*,<=*m*<=≤<=50). The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n*. The third line contains *m* space-separated integers *b*1,<=*b*2,<=...,<=*b**m*. All the integers range from <=-<=109 to 109.
Print a single integer — the brightness of the chosen pair.
[ "2 2\n20 18\n2 14\n", "5 3\n-1 0 1 2 3\n-1 0 1\n" ]
[ "252\n", "2\n" ]
In the first example, Tommy will hide 20 and Banban will choose 18 from Tommy and 14 from himself. In the second example, Tommy will hide 3 and Banban will choose 2 from Tommy and 1 from himself.
500
[ { "input": "2 2\n20 18\n2 14", "output": "252" }, { "input": "5 3\n-1 0 1 2 3\n-1 0 1", "output": "2" }, { "input": "10 2\n1 6 2 10 2 3 2 10 6 4\n5 7", "output": "70" }, { "input": "50 50\n1 6 2 10 2 3 2 10 6 4 5 0 3 1 7 3 2 4 4 2 1 5 0 6 10 1 8 0 10 9 0 4 10 5 5 7 4 9 9 5 5 ...
1,574,775,449
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
124
0
n, m = map(int, input().split()) a = sorted(map(int, input().split())) b = sorted(map(int, input().split())) x = max(a[1] * b[0], a[-1] * b[-1]) y = max(a[0] * b[0], a[-2] * b[-1]) print(min(x, y))
Title: A Compatible Pair Time Limit: None seconds Memory Limit: None megabytes Problem Description: Nian is a monster which lives deep in the oceans. Once a year, it shows up on the land, devouring livestock and even people. In order to keep the monster away, people fill their villages with red colour, light, and cr...
```python n, m = map(int, input().split()) a = sorted(map(int, input().split())) b = sorted(map(int, input().split())) x = max(a[1] * b[0], a[-1] * b[-1]) y = max(a[0] * b[0], a[-2] * b[-1]) print(min(x, y)) ```
0
545
A
Toy Cars
PROGRAMMING
900
[ "implementation" ]
null
null
Little Susie, thanks to her older brother, likes to play with cars. Today she decided to set up a tournament between them. The process of a tournament is described in the next paragraph. There are *n* toy cars. Each pair collides. The result of a collision can be one of the following: no car turned over, one car turne...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of cars. Each of the next *n* lines contains *n* space-separated integers that determine matrix *A*. It is guaranteed that on the main diagonal there are <=-<=1, and <=-<=1 doesn't appear anywhere else in the matrix. It is guaranteed that the inpu...
Print the number of good cars and in the next line print their space-separated indices in the increasing order.
[ "3\n-1 0 0\n0 -1 1\n0 2 -1\n", "4\n-1 3 3 3\n3 -1 3 3\n3 3 -1 3\n3 3 3 -1\n" ]
[ "2\n1 3 ", "0\n" ]
none
500
[ { "input": "3\n-1 0 0\n0 -1 1\n0 2 -1", "output": "2\n1 3 " }, { "input": "4\n-1 3 3 3\n3 -1 3 3\n3 3 -1 3\n3 3 3 -1", "output": "0" }, { "input": "1\n-1", "output": "1\n1 " }, { "input": "2\n-1 0\n0 -1", "output": "2\n1 2 " }, { "input": "2\n-1 1\n2 -1", "out...
1,672,828,740
2,147,483,647
Python 3
OK
TESTS
35
46
0
n,a=int(input()),[] for i in range(n): x = list(map(int, input().split(" "))) if 1 not in x and 3 not in x: a.append(i+1) print(len(a)) print(*sorted(a))
Title: Toy Cars Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Susie, thanks to her older brother, likes to play with cars. Today she decided to set up a tournament between them. The process of a tournament is described in the next paragraph. There are *n* toy cars. Each pair coll...
```python n,a=int(input()),[] for i in range(n): x = list(map(int, input().split(" "))) if 1 not in x and 3 not in x: a.append(i+1) print(len(a)) print(*sorted(a)) ```
3
688
B
Lovely Palindromes
PROGRAMMING
1,000
[ "constructive algorithms", "math" ]
null
null
Pari has a friend who loves palindrome numbers. A palindrome number is a number that reads the same forward or backward. For example 12321, 100001 and 1 are palindrome numbers, while 112 and 1021 are not. Pari is trying to love them too, but only very special and gifted people can understand the beauty behind palindro...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=10100<=000).
Print the *n*-th even-length palindrome number.
[ "1\n", "10\n" ]
[ "11\n", "1001\n" ]
The first 10 even-length palindrome numbers are 11, 22, 33, ... , 88, 99 and 1001.
1,000
[ { "input": "1", "output": "11" }, { "input": "10", "output": "1001" }, { "input": "11", "output": "1111" }, { "input": "12", "output": "1221" }, { "input": "100", "output": "100001" }, { "input": "1321", "output": "13211231" }, { "input": "...
1,586,276,481
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
109
0
x=int(input()) print(x,end="") while x>0: print(x%10,end="") x=x//a
Title: Lovely Palindromes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pari has a friend who loves palindrome numbers. A palindrome number is a number that reads the same forward or backward. For example 12321, 100001 and 1 are palindrome numbers, while 112 and 1021 are not. Pari is tr...
```python x=int(input()) print(x,end="") while x>0: print(x%10,end="") x=x//a ```
-1
569
A
Music
PROGRAMMING
1,500
[ "implementation", "math" ]
null
null
Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk. Unfortunately, internet is not that fast in the city of Ekaterinozavodsk and the song takes a lot of time to download. But Lesha is quite ...
The single line contains three integers *T*,<=*S*,<=*q* (2<=≤<=*q*<=≤<=104, 1<=≤<=*S*<=&lt;<=*T*<=≤<=105).
Print a single integer — the number of times the song will be restarted.
[ "5 2 2\n", "5 4 7\n", "6 2 3\n" ]
[ "2\n", "1\n", "1\n" ]
In the first test, the song is played twice faster than it is downloaded, which means that during four first seconds Lesha reaches the moment that has not been downloaded, and starts the song again. After another two seconds, the song is downloaded completely, and thus, Lesha starts the song twice. In the second test,...
500
[ { "input": "5 2 2", "output": "2" }, { "input": "5 4 7", "output": "1" }, { "input": "6 2 3", "output": "1" }, { "input": "2 1 2", "output": "1" }, { "input": "2 1 3", "output": "1" }, { "input": "2 1 10000", "output": "1" }, { "input": "12...
1,439,229,127
4,926
Python 3
WRONG_ANSWER
PRETESTS
0
46
0
t, s, q = [int(x) for x in input().split(' ')] print(q // q - 1)
Title: Music Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk. Unfortunately, internet is not that fast in the...
```python t, s, q = [int(x) for x in input().split(' ')] print(q // q - 1) ```
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,454,091,291
3,891
Python 3
WRONG_ANSWER
TESTS
12
717
307,200
n = int(input()) t = [tuple(int(x) for x in input().split()) for _ in range(3)] ti = ["1", "2", "3"] def sign(x, y, z): return (x[0] - z[0]) * (y[1] - z[1]) - (y[0] - z[0]) * (x[1] - z[1]) def check_point(p): b1, b2, b3 = sign(p, t[0], t[1]) <= 0, sign(p, t[1], t[2]) <= 0, sign(p, t[2], t[0]) <= 0 return ...
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 n = int(input()) t = [tuple(int(x) for x in input().split()) for _ in range(3)] ti = ["1", "2", "3"] def sign(x, y, z): return (x[0] - z[0]) * (y[1] - z[1]) - (y[0] - z[0]) * (x[1] - z[1]) def check_point(p): b1, b2, b3 = sign(p, t[0], t[1]) <= 0, sign(p, t[1], t[2]) <= 0, sign(p, t[2], t[0]) <= 0 ...
0
259
B
Little Elephant and Magic Square
PROGRAMMING
1,100
[ "brute force", "implementation" ]
null
null
Little Elephant loves magic squares very much. A magic square is a 3<=×<=3 table, each cell contains some positive integer. At that the sums of integers in all rows, columns and diagonals of the table are equal. The figure below shows the magic square, the sum of integers in all its rows, columns and diagonals equals ...
The first three lines of the input contain the Little Elephant's notes. The first line contains elements of the first row of the magic square. The second line contains the elements of the second row, the third line is for the third row. The main diagonal elements that have been forgotten by the Elephant are represented...
Print three lines, in each line print three integers — the Little Elephant's magic square. If there are multiple magic squares, you are allowed to print any of them. Note that all numbers you print must be positive and not exceed 105. It is guaranteed that there exists at least one magic square that meets the conditio...
[ "0 1 1\n1 0 1\n1 1 0\n", "0 3 6\n5 0 5\n4 7 0\n" ]
[ "1 1 1\n1 1 1\n1 1 1\n", "6 3 6\n5 5 5\n4 7 4\n" ]
none
1,000
[ { "input": "0 1 1\n1 0 1\n1 1 0", "output": "1 1 1\n1 1 1\n1 1 1" }, { "input": "0 3 6\n5 0 5\n4 7 0", "output": "6 3 6\n5 5 5\n4 7 4" }, { "input": "0 4 4\n4 0 4\n4 4 0", "output": "4 4 4\n4 4 4\n4 4 4" }, { "input": "0 54 48\n36 0 78\n66 60 0", "output": "69 54 48\n36 5...
1,603,514,040
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
248
0
def zip_sorted(a,b): # sorted by a a,b = zip(*sorted(zip(a,b))) # sorted by b sorted(zip(a, b), key=lambda x: x[1]) return a,b a = [int(n1) for n1 in input().split()] b = [int(n1) for n1 in input().split()] c = [int(n1) for n1 in input().split()] d = max([sum(a),sum(b),sum(c)]) if d==sum(a): a[0] = 1...
Title: Little Elephant and Magic Square Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Elephant loves magic squares very much. A magic square is a 3<=×<=3 table, each cell contains some positive integer. At that the sums of integers in all rows, columns and diagonals of the table ...
```python def zip_sorted(a,b): # sorted by a a,b = zip(*sorted(zip(a,b))) # sorted by b sorted(zip(a, b), key=lambda x: x[1]) return a,b a = [int(n1) for n1 in input().split()] b = [int(n1) for n1 in input().split()] c = [int(n1) for n1 in input().split()] d = max([sum(a),sum(b),sum(c)]) if d==sum(a):...
0
743
B
Chloe and the sequence
PROGRAMMING
1,200
[ "binary search", "bitmasks", "constructive algorithms", "implementation" ]
null
null
Chloe, the same as Vladik, is a competitive programmer. She didn't have any problems to get to the olympiad like Vladik, but she was confused by the task proposed on the olympiad. Let's consider the following algorithm of generating a sequence of integers. Initially we have a sequence consisting of a single element eq...
The only line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=50, 1<=≤<=*k*<=≤<=2*n*<=-<=1).
Print single integer — the integer at the *k*-th position in the obtained sequence.
[ "3 2\n", "4 8\n" ]
[ "2", "4" ]
In the first sample the obtained sequence is [1, 2, 1, 3, 1, 2, 1]. The number on the second position is 2. In the second sample the obtained sequence is [1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1]. The number on the eighth position is 4.
1,000
[ { "input": "3 2", "output": "2" }, { "input": "4 8", "output": "4" }, { "input": "5 27", "output": "1" }, { "input": "7 44", "output": "3" }, { "input": "15 18432", "output": "12" }, { "input": "20 259676", "output": "3" }, { "input": "30 6...
1,542,030,135
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
93
102,400
n, k = map(int, input().split()); s = '1' for i in range(n): s += str(i + 2) + s print(s[k - 1])
Title: Chloe and the sequence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Chloe, the same as Vladik, is a competitive programmer. She didn't have any problems to get to the olympiad like Vladik, but she was confused by the task proposed on the olympiad. Let's consider the following a...
```python n, k = map(int, input().split()); s = '1' for i in range(n): s += str(i + 2) + s print(s[k - 1]) ```
0
118
A
String Task
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
Petya started to attend programming lessons. On the first lesson his task was to write a simple program. The program was supposed to do the following: in the given string, consisting if uppercase and lowercase Latin letters, it: - deletes all the vowels, - inserts a character "." before each consonant, - replaces ...
The first line represents input string of Petya's program. This string only consists of uppercase and lowercase Latin letters and its length is from 1 to 100, inclusive.
Print the resulting string. It is guaranteed that this string is not empty.
[ "tour\n", "Codeforces\n", "aBAcAba\n" ]
[ ".t.r\n", ".c.d.f.r.c.s\n", ".b.c.b\n" ]
none
500
[ { "input": "tour", "output": ".t.r" }, { "input": "Codeforces", "output": ".c.d.f.r.c.s" }, { "input": "aBAcAba", "output": ".b.c.b" }, { "input": "obn", "output": ".b.n" }, { "input": "wpwl", "output": ".w.p.w.l" }, { "input": "ggdvq", "output": "...
1,695,530,009
2,147,483,647
Python 3
OK
TESTS
42
124
0
a = input() b = [] count = 0 list = ['A','O','Y','E','U','I','a','o','y','e','u','i'] for i in a: if i not in list: b.append(i) print('.',end='') c = [] for j in b: if int(ord(str(j))) >= 65 and int(ord(str(j))) <= 90: j = chr(int(ord(j) + 32)) c.append(j) else: ...
Title: String Task Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya started to attend programming lessons. On the first lesson his task was to write a simple program. The program was supposed to do the following: in the given string, consisting if uppercase and lowercase Latin letters...
```python a = input() b = [] count = 0 list = ['A','O','Y','E','U','I','a','o','y','e','u','i'] for i in a: if i not in list: b.append(i) print('.',end='') c = [] for j in b: if int(ord(str(j))) >= 65 and int(ord(str(j))) <= 90: j = chr(int(ord(j) + 32)) c.append(j) else...
3
996
A
Hit the Lottery
PROGRAMMING
800
[ "dp", "greedy" ]
null
null
Allen has a LOT of money. He has $n$ dollars in the bank. For security reasons, he wants to withdraw it in cash (we will not disclose the reasons here). The denominations for dollar bills are $1$, $5$, $10$, $20$, $100$. What is the minimum number of bills Allen could receive after withdrawing his entire balance?
The first and only line of input contains a single integer $n$ ($1 \le n \le 10^9$).
Output the minimum number of bills that Allen could receive.
[ "125\n", "43\n", "1000000000\n" ]
[ "3\n", "5\n", "10000000\n" ]
In the first sample case, Allen can withdraw this with a $100$ dollar bill, a $20$ dollar bill, and a $5$ dollar bill. There is no way for Allen to receive $125$ dollars in one or two bills. In the second sample case, Allen can withdraw two $20$ dollar bills and three $1$ dollar bills. In the third sample case, Allen...
500
[ { "input": "125", "output": "3" }, { "input": "43", "output": "5" }, { "input": "1000000000", "output": "10000000" }, { "input": "4", "output": "4" }, { "input": "5", "output": "1" }, { "input": "1", "output": "1" }, { "input": "74", "o...
1,694,716,146
2,147,483,647
Python 3
OK
TESTS
49
46
0
n = int(input()) total_bills = 0 total_bills += n // 100 n %= 100 total_bills += n // 20 n %= 20 total_bills += n // 10 n %= 10 total_bills += n // 5 n %= 5 total_bills += n print(total_bills)
Title: Hit the Lottery Time Limit: None seconds Memory Limit: None megabytes Problem Description: Allen has a LOT of money. He has $n$ dollars in the bank. For security reasons, he wants to withdraw it in cash (we will not disclose the reasons here). The denominations for dollar bills are $1$, $5$, $10$, $20$, $100$...
```python n = int(input()) total_bills = 0 total_bills += n // 100 n %= 100 total_bills += n // 20 n %= 20 total_bills += n // 10 n %= 10 total_bills += n // 5 n %= 5 total_bills += n print(total_bills) ```
3
9
C
Hexadecimal's Numbers
PROGRAMMING
1,200
[ "brute force", "implementation", "math" ]
C. Hexadecimal's Numbers
1
64
One beautiful July morning a terrible thing happened in Mainframe: a mean virus Megabyte somehow got access to the memory of his not less mean sister Hexadecimal. He loaded there a huge amount of *n* different natural numbers from 1 to *n* to obtain total control over her energy. But his plan failed. The reason for th...
Input data contains the only number *n* (1<=≤<=*n*<=≤<=109).
Output the only number — answer to the problem.
[ "10\n" ]
[ "2" ]
For *n* = 10 the answer includes numbers 1 and 10.
0
[ { "input": "10", "output": "2" }, { "input": "20", "output": "3" }, { "input": "72", "output": "3" }, { "input": "99", "output": "3" }, { "input": "100", "output": "4" }, { "input": "101", "output": "5" }, { "input": "102", "output": "5...
1,613,988,163
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
13
124
0
import bisect n=int(input()) d={} for i in range(1,256): d[i]=int(bin(i)[2:]) res=list(d.values()) pos=bisect.bisect_right(res,n) print(pos)
Title: Hexadecimal's Numbers Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One beautiful July morning a terrible thing happened in Mainframe: a mean virus Megabyte somehow got access to the memory of his not less mean sister Hexadecimal. He loaded there a huge amount of *n* different natural ...
```python import bisect n=int(input()) d={} for i in range(1,256): d[i]=int(bin(i)[2:]) res=list(d.values()) pos=bisect.bisect_right(res,n) print(pos) ```
0
548
A
Mike and Fax
PROGRAMMING
1,100
[ "brute force", "implementation", "strings" ]
null
null
While Mike was walking in the subway, all the stuff in his back-bag dropped on the ground. There were several fax messages among them. He concatenated these strings in some order and now he has string *s*. He is not sure if this is his own back-bag or someone else's. He remembered that there were exactly *k* messages ...
The first line of input contains string *s* containing lowercase English letters (1<=≤<=|*s*|<=≤<=1000). The second line contains integer *k* (1<=≤<=*k*<=≤<=1000).
Print "YES"(without quotes) if he has worn his own back-bag or "NO"(without quotes) otherwise.
[ "saba\n2\n", "saddastavvat\n2\n" ]
[ "NO\n", "YES\n" ]
Palindrome is a string reading the same forward and backward. In the second sample, the faxes in his back-bag can be "saddas" and "tavvat".
500
[ { "input": "saba\n2", "output": "NO" }, { "input": "saddastavvat\n2", "output": "YES" }, { "input": "aaaaaaaaaa\n3", "output": "NO" }, { "input": "aaaaaa\n3", "output": "YES" }, { "input": "abaacca\n2", "output": "NO" }, { "input": "a\n1", "output"...
1,435,318,837
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
a=input() b=int(input()) c=len(a)//b d=True for i in range(b): e=a[i*c:(i+1)*c] if e!=e[::-1]:d=False;print('NO');break if d:print('YES')
Title: Mike and Fax Time Limit: None seconds Memory Limit: None megabytes Problem Description: While Mike was walking in the subway, all the stuff in his back-bag dropped on the ground. There were several fax messages among them. He concatenated these strings in some order and now he has string *s*. He is not sure ...
```python a=input() b=int(input()) c=len(a)//b d=True for i in range(b): e=a[i*c:(i+1)*c] if e!=e[::-1]:d=False;print('NO');break if d:print('YES') ```
0
455
A
Boredom
PROGRAMMING
1,500
[ "dp" ]
null
null
Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it. Given a sequence *a* consisting of *n* integers. The player can make several steps. In a single step he can choose an element of the sequence (let's denote it *a*...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) that shows how many numbers are in Alex's sequence. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105).
Print a single integer — the maximum number of points that Alex can earn.
[ "2\n1 2\n", "3\n1 2 3\n", "9\n1 2 1 3 2 2 2 2 3\n" ]
[ "2\n", "4\n", "10\n" ]
Consider the third test example. At first step we need to choose any element equal to 2. After that step our sequence looks like this [2, 2, 2, 2]. Then we do 4 steps, on each step we choose any element equals to 2. In total we earn 10 points.
500
[ { "input": "2\n1 2", "output": "2" }, { "input": "3\n1 2 3", "output": "4" }, { "input": "9\n1 2 1 3 2 2 2 2 3", "output": "10" }, { "input": "5\n3 3 4 5 4", "output": "11" }, { "input": "5\n5 3 5 3 4", "output": "16" }, { "input": "5\n4 2 3 2 5", ...
1,673,177,686
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
10
93
6,451,200
def fun(m): if m == 0: return 0 if m == 1: return a[1] return(max(fun(m - 2) + m*a[m], fun(m - 1))) a = [0]*100001 n = int(input()) b = list(map(int, input().split())) max_ = 0 for i in range(n): if b[i] > max_: max_ = b[i] for i in range(n): a[b[i]] += 1 ...
Title: Boredom Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it. Given a sequence *a* consisting of *n* integers. The player can make ...
```python def fun(m): if m == 0: return 0 if m == 1: return a[1] return(max(fun(m - 2) + m*a[m], fun(m - 1))) a = [0]*100001 n = int(input()) b = list(map(int, input().split())) max_ = 0 for i in range(n): if b[i] > max_: max_ = b[i] for i in range(n): a[b...
-1
630
I
Parking Lot
PROGRAMMING
1,700
[ "combinatorics", "math" ]
null
null
To quickly hire highly skilled specialists one of the new IT City companies made an unprecedented move. Every employee was granted a car, and an employee can choose one of four different car makes. The parking lot before the office consists of one line of (2*n*<=-<=2) parking spaces. Unfortunately the total number of ...
The only line of the input contains one integer *n* (3<=≤<=*n*<=≤<=30) — the amount of successive cars of the same make.
Output one integer — the number of ways to fill the parking lot by cars of four makes using the described way.
[ "3\n" ]
[ "24" ]
Let's denote car makes in the following way: A — Aston Martin, B — Bentley, M — Mercedes-Maybach, Z — Zaporozhets. For *n* = 3 there are the following appropriate ways to fill the parking lot: AAAB AAAM AAAZ ABBB AMMM AZZZ BBBA BBBM BBBZ BAAA BMMM BZZZ MMMA MMMB MMMZ MAAA MBBB MZZZ ZZZA ZZZB ZZZM ZAAA ZBBB ZMMM Orig...
0
[ { "input": "3", "output": "24" }, { "input": "4", "output": "132" }, { "input": "5", "output": "672" }, { "input": "6", "output": "3264" }, { "input": "7", "output": "15360" }, { "input": "12", "output": "27525120" }, { "input": "15", "...
1,697,348,412
2,147,483,647
PyPy 3
OK
TESTS
10
62
0
def binpow(a, b): res = 1 while b > 0: if b & 1: res = res * a a = a * a b >>= 1 return res def ans(n): return binpow(4,n-3)*(9*n-3) n = int(input()) print(ans(n))
Title: Parking Lot Time Limit: None seconds Memory Limit: None megabytes Problem Description: To quickly hire highly skilled specialists one of the new IT City companies made an unprecedented move. Every employee was granted a car, and an employee can choose one of four different car makes. The parking lot before t...
```python def binpow(a, b): res = 1 while b > 0: if b & 1: res = res * a a = a * a b >>= 1 return res def ans(n): return binpow(4,n-3)*(9*n-3) n = int(input()) print(ans(n)) ```
3
591
B
Rebranding
PROGRAMMING
1,200
[ "implementation", "strings" ]
null
null
The name of one small but proud corporation consists of *n* lowercase English letters. The Corporation has decided to try rebranding — an active marketing strategy, that includes a set of measures to change either the brand (both for the company and the goods it produces) or its components: the name, the logo, the slog...
The first line of the input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=200<=000) — the length of the initial name and the number of designers hired, respectively. The second line consists of *n* lowercase English letters and represents the original name of the corporation. Next *m* lines contain the descr...
Print the new name of the corporation.
[ "6 1\npolice\np m\n", "11 6\nabacabadaba\na b\nb c\na d\ne g\nf a\nb b\n" ]
[ "molice\n", "cdcbcdcfcdc\n" ]
In the second sample the name of the corporation consecutively changes as follows: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/c7648432f7138ca53234357d7e08d1d119166055.png" style="max-width: 100.0%;max-height: 100.0%;"/> <img align="middle" class="tex-formula" src="https://espresso.co...
1,000
[ { "input": "6 1\npolice\np m", "output": "molice" }, { "input": "11 6\nabacabadaba\na b\nb c\na d\ne g\nf a\nb b", "output": "cdcbcdcfcdc" }, { "input": "1 1\nf\nz h", "output": "f" }, { "input": "1 1\na\na b", "output": "b" }, { "input": "10 10\nlellelleel\ne l\n...
1,446,380,398
2,147,483,647
Python 3
OK
TESTS
27
1,731
2,150,400
import string n = int(input().split()[1]) s = list(input()) r = {c:c for c in string.ascii_lowercase} for i in range(n): x, y = input().split() for a, b in r.items(): if b == x: r[a] = y elif b == y: r[a] = x for i in range(len(s)): s[i] = r[s[i]] print...
Title: Rebranding Time Limit: None seconds Memory Limit: None megabytes Problem Description: The name of one small but proud corporation consists of *n* lowercase English letters. The Corporation has decided to try rebranding — an active marketing strategy, that includes a set of measures to change either the brand ...
```python import string n = int(input().split()[1]) s = list(input()) r = {c:c for c in string.ascii_lowercase} for i in range(n): x, y = input().split() for a, b in r.items(): if b == x: r[a] = y elif b == y: r[a] = x for i in range(len(s)): s[i] = r[s[...
3
313
B
Ilya and Queries
PROGRAMMING
1,100
[ "dp", "implementation" ]
null
null
Ilya the Lion wants to help all his friends with passing exams. They need to solve the following problem to pass the IT exam. You've got string *s*<==<=*s*1*s*2... *s**n* (*n* is the length of the string), consisting only of characters "." and "#" and *m* queries. Each query is described by a pair of integers *l**i*,<...
The first line contains string *s* of length *n* (2<=≤<=*n*<=≤<=105). It is guaranteed that the given string only consists of characters "." and "#". The next line contains integer *m* (1<=≤<=*m*<=≤<=105) — the number of queries. Each of the next *m* lines contains the description of the corresponding query. The *i*-t...
Print *m* integers — the answers to the queries in the order in which they are given in the input.
[ "......\n4\n3 4\n2 3\n1 6\n2 6\n", "#..###\n5\n1 3\n5 6\n1 5\n3 6\n3 4\n" ]
[ "1\n1\n5\n4\n", "1\n1\n2\n2\n0\n" ]
none
1,000
[ { "input": "......\n4\n3 4\n2 3\n1 6\n2 6", "output": "1\n1\n5\n4" }, { "input": "#..###\n5\n1 3\n5 6\n1 5\n3 6\n3 4", "output": "1\n1\n2\n2\n0" }, { "input": ".#...#..\n6\n1 5\n2 3\n6 7\n2 4\n2 5\n1 3", "output": "2\n0\n0\n1\n2\n0" }, { "input": "#.#.#..\n5\n3 4\n4 5\n5 7\n5...
1,699,517,171
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
2,000
921,600
s1=input() s=[0]*(len(s1)+1) for i in range(1,len(s1)+1): s[i]=s1[i-1] m=int(input()) while m>0: ans=0 m-=1 l,r=map(int,input().split()) for i in range(l,r): if s[i+1]==s[i]: ans+=1 print(ans)
Title: Ilya and Queries Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ilya the Lion wants to help all his friends with passing exams. They need to solve the following problem to pass the IT exam. You've got string *s*<==<=*s*1*s*2... *s**n* (*n* is the length of the string), consisting ...
```python s1=input() s=[0]*(len(s1)+1) for i in range(1,len(s1)+1): s[i]=s1[i-1] m=int(input()) while m>0: ans=0 m-=1 l,r=map(int,input().split()) for i in range(l,r): if s[i+1]==s[i]: ans+=1 print(ans) ```
0
5
A
Chat Servers Outgoing Traffic
PROGRAMMING
1,000
[ "implementation" ]
A. Chat Server's Outgoing Traffic
1
64
Polycarp is working on a new project called "Polychat". Following modern tendencies in IT, he decided, that this project should contain chat as well. To achieve this goal, Polycarp has spent several hours in front of his laptop and implemented a chat server that can process three types of commands: - Include a person...
Input file will contain not more than 100 commands, each in its own line. No line will exceed 100 characters. Formats of the commands will be the following: - +&lt;name&gt; for 'Add' command. - -&lt;name&gt; for 'Remove' command. - &lt;sender_name&gt;:&lt;message_text&gt; for 'Send' command. &lt;name&gt; and &lt;s...
Print a single number — answer to the problem.
[ "+Mike\nMike:hello\n+Kate\n+Dmitry\n-Dmitry\nKate:hi\n-Kate\n", "+Mike\n-Mike\n+Mike\nMike:Hi I am here\n-Mike\n+Kate\n-Kate\n" ]
[ "9\n", "14\n" ]
none
0
[ { "input": "+Mike\nMike:hello\n+Kate\n+Dmitry\n-Dmitry\nKate:hi\n-Kate", "output": "9" }, { "input": "+Mike\n-Mike\n+Mike\nMike:Hi I am here\n-Mike\n+Kate\n-Kate", "output": "14" }, { "input": "+Dmitry\n+Mike\nDmitry:All letters will be used\nDmitry:qwertyuiopasdfghjklzxcvbnm QWERTYUIO...
1,533,591,061
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
154
0
import sys def solution(): commands = sys.stdin.readlines() members = 0 sent = 0 for command in commands: print(command) if command.startswith('+'): members += 1 elif command.startswith('-'): members -= 1 else: message...
Title: Chat Servers Outgoing Traffic Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Polycarp is working on a new project called "Polychat". Following modern tendencies in IT, he decided, that this project should contain chat as well. To achieve this goal, Polycarp has spent several hours in fr...
```python import sys def solution(): commands = sys.stdin.readlines() members = 0 sent = 0 for command in commands: print(command) if command.startswith('+'): members += 1 elif command.startswith('-'): members -= 1 else: ...
0
281
A
Word Capitalization
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word. Note, that during capitalization all the letters except the first one remains unchanged.
A single line contains a non-empty word. This word consists of lowercase and uppercase English letters. The length of the word will not exceed 103.
Output the given word after capitalization.
[ "ApPLe\n", "konjac\n" ]
[ "ApPLe\n", "Konjac\n" ]
none
500
[ { "input": "ApPLe", "output": "ApPLe" }, { "input": "konjac", "output": "Konjac" }, { "input": "a", "output": "A" }, { "input": "A", "output": "A" }, { "input": "z", "output": "Z" }, { "input": "ABACABA", "output": "ABACABA" }, { "input": "...
1,698,255,298
2,147,483,647
Python 3
OK
TESTS
25
92
0
word = input() print (word[0].upper() + word[1:])
Title: Word Capitalization Time Limit: None seconds Memory Limit: None megabytes Problem Description: Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word. Note, that during capitalization all the letters except the first one remains unchanged. Input...
```python word = input() print (word[0].upper() + word[1:]) ```
3
501
B
Misha and Changing Handles
PROGRAMMING
1,100
[ "data structures", "dsu", "strings" ]
null
null
Misha hacked the Codeforces site. Then he decided to let all the users change their handles. A user can now change his handle any number of times. But each new handle must not be equal to any handle that is already used or that was used at some point. Misha has a list of handle change requests. After completing the re...
The first line contains integer *q* (1<=≤<=*q*<=≤<=1000), the number of handle change requests. Next *q* lines contain the descriptions of the requests, one per line. Each query consists of two non-empty strings *old* and *new*, separated by a space. The strings consist of lowercase and uppercase Latin letters and di...
In the first line output the integer *n* — the number of users that changed their handles at least once. In the next *n* lines print the mapping between the old and the new handles of the users. Each of them must contain two strings, *old* and *new*, separated by a space, meaning that before the user had handle *old*,...
[ "5\nMisha ILoveCodeforces\nVasya Petrov\nPetrov VasyaPetrov123\nILoveCodeforces MikeMirzayanov\nPetya Ivanov\n" ]
[ "3\nPetya Ivanov\nMisha MikeMirzayanov\nVasya VasyaPetrov123\n" ]
none
500
[ { "input": "5\nMisha ILoveCodeforces\nVasya Petrov\nPetrov VasyaPetrov123\nILoveCodeforces MikeMirzayanov\nPetya Ivanov", "output": "3\nPetya Ivanov\nMisha MikeMirzayanov\nVasya VasyaPetrov123" }, { "input": "1\nMisha Vasya", "output": "1\nMisha Vasya" }, { "input": "10\na b\nb c\nc d\nd...
1,600,244,922
2,147,483,647
PyPy 3
OK
TESTS
49
186
2,560,000
n=int(input()) d={} for j in range(n): l=list(map(str,input().split())) if l[0] in d: d[l[1]]=d[l[0]] d.pop(l[0]) else: d[l[1]]=l[0] print(len(d)) for i in d: print(d[i],i)
Title: Misha and Changing Handles Time Limit: None seconds Memory Limit: None megabytes Problem Description: Misha hacked the Codeforces site. Then he decided to let all the users change their handles. A user can now change his handle any number of times. But each new handle must not be equal to any handle that is a...
```python n=int(input()) d={} for j in range(n): l=list(map(str,input().split())) if l[0] in d: d[l[1]]=d[l[0]] d.pop(l[0]) else: d[l[1]]=l[0] print(len(d)) for i in d: print(d[i],i) ```
3
933
A
A Twisty Movement
PROGRAMMING
1,800
[ "dp" ]
null
null
A dragon symbolizes wisdom, power and wealth. On Lunar New Year's Day, people model a dragon with bamboo strips and clothes, raise them with rods, and hold the rods high and low to resemble a flying dragon. A performer holding the rod low is represented by a 1, while one holding it high is represented by a 2. Thus, th...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=2000), denoting the length of the original sequence. The second line contains *n* space-separated integers, describing the original sequence *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=2,<=*i*<==<=1,<=2,<=...,<=*n*).
Print a single integer, which means the maximum possible length of the longest non-decreasing subsequence of the new sequence.
[ "4\n1 2 1 2\n", "10\n1 1 2 2 2 1 1 2 2 1\n" ]
[ "4\n", "9\n" ]
In the first example, after reversing [2, 3], the array will become [1, 1, 2, 2], where the length of the longest non-decreasing subsequence is 4. In the second example, after reversing [3, 7], the array will become [1, 1, 1, 1, 2, 2, 2, 2, 2, 1], where the length of the longest non-decreasing subsequence is 9.
500
[ { "input": "4\n1 2 1 2", "output": "4" }, { "input": "10\n1 1 2 2 2 1 1 2 2 1", "output": "9" }, { "input": "200\n2 1 1 2 1 2 2 2 2 2 1 2 2 1 1 2 2 1 1 1 2 1 1 2 2 2 2 2 1 1 2 1 2 1 1 2 1 1 1 1 2 1 2 2 1 2 1 1 1 2 1 1 1 2 2 2 1 1 1 1 2 2 2 1 2 2 2 1 2 2 2 1 2 1 2 1 2 1 1 1 1 2 2 2 1 1 2 ...
1,630,454,864
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
77
6,963,200
from itertools import groupby n=int(input()) w=[int(k) for k in input().split()] c=[[k[0], len(list(k[1]))] for k in groupby(w)] mx=0 res=0 y=len(c) for j in range(y): mx=max(mx, c[j][1]) for j in range(y-1): if c[j][0]==1: mx=max(mx, c[j][1]+c[j+1][1]) for j in range(y-2): if c[j][0]==...
Title: A Twisty Movement Time Limit: None seconds Memory Limit: None megabytes Problem Description: A dragon symbolizes wisdom, power and wealth. On Lunar New Year's Day, people model a dragon with bamboo strips and clothes, raise them with rods, and hold the rods high and low to resemble a flying dragon. A perform...
```python from itertools import groupby n=int(input()) w=[int(k) for k in input().split()] c=[[k[0], len(list(k[1]))] for k in groupby(w)] mx=0 res=0 y=len(c) for j in range(y): mx=max(mx, c[j][1]) for j in range(y-1): if c[j][0]==1: mx=max(mx, c[j][1]+c[j+1][1]) for j in range(y-2): if...
0
760
B
Frodo and pillows
PROGRAMMING
1,500
[ "binary search", "greedy" ]
null
null
*n* hobbits are planning to spend the night at Frodo's house. Frodo has *n* beds standing in a row and *m* pillows (*n*<=≤<=*m*). Each hobbit needs a bed and at least one pillow to sleep, however, everyone wants as many pillows as possible. Of course, it's not always possible to share pillows equally, but any hobbit ge...
The only line contain three integers *n*, *m* and *k* (1<=≤<=*n*<=≤<=*m*<=≤<=109, 1<=≤<=*k*<=≤<=*n*) — the number of hobbits, the number of pillows and the number of Frodo's bed.
Print single integer — the maximum number of pillows Frodo can have so that no one is hurt.
[ "4 6 2\n", "3 10 3\n", "3 6 1\n" ]
[ "2\n", "4\n", "3\n" ]
In the first example Frodo can have at most two pillows. In this case, he can give two pillows to the hobbit on the first bed, and one pillow to each of the hobbits on the third and the fourth beds. In the second example Frodo can take at most four pillows, giving three pillows to each of the others. In the third exa...
1,000
[ { "input": "4 6 2", "output": "2" }, { "input": "3 10 3", "output": "4" }, { "input": "3 6 1", "output": "3" }, { "input": "3 3 3", "output": "1" }, { "input": "1 1 1", "output": "1" }, { "input": "1 1000000000 1", "output": "1000000000" }, { ...
1,586,212,954
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
3
1,000
1,228,800
n, p, f = map(int, input().split()) f -= 1 p -= n def check_p(p, f, n): x = p - (n - f) - 1 y = p - f return p * p - (x * (x + 1) // 2) * (x > 0) - (y * (y + 1) // 2) * (y > 0) high = p - 1 low = 0 while True: curr = (high + low) // 2 x = check_p(curr, f, n) if x > p: ...
Title: Frodo and pillows Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* hobbits are planning to spend the night at Frodo's house. Frodo has *n* beds standing in a row and *m* pillows (*n*<=≤<=*m*). Each hobbit needs a bed and at least one pillow to sleep, however, everyone wants as ma...
```python n, p, f = map(int, input().split()) f -= 1 p -= n def check_p(p, f, n): x = p - (n - f) - 1 y = p - f return p * p - (x * (x + 1) // 2) * (x > 0) - (y * (y + 1) // 2) * (y > 0) high = p - 1 low = 0 while True: curr = (high + low) // 2 x = check_p(curr, f, n) if x > ...
0
659
A
Round House
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Vasya lives in a round building, whose entrances are numbered sequentially by integers from 1 to *n*. Entrance *n* and entrance 1 are adjacent. Today Vasya got bored and decided to take a walk in the yard. Vasya lives in entrance *a* and he decided that during his walk he will move around the house *b* entrances in th...
The single line of the input contains three space-separated integers *n*, *a* and *b* (1<=≤<=*n*<=≤<=100,<=1<=≤<=*a*<=≤<=*n*,<=<=-<=100<=≤<=*b*<=≤<=100) — the number of entrances at Vasya's place, the number of his entrance and the length of his walk, respectively.
Print a single integer *k* (1<=≤<=*k*<=≤<=*n*) — the number of the entrance where Vasya will be at the end of his walk.
[ "6 2 -5\n", "5 1 3\n", "3 2 7\n" ]
[ "3\n", "4\n", "3\n" ]
The first example is illustrated by the picture in the statements.
500
[ { "input": "6 2 -5", "output": "3" }, { "input": "5 1 3", "output": "4" }, { "input": "3 2 7", "output": "3" }, { "input": "1 1 0", "output": "1" }, { "input": "1 1 -1", "output": "1" }, { "input": "1 1 1", "output": "1" }, { "input": "100 ...
1,584,632,457
2,147,483,647
Python 3
OK
TESTS
50
124
0
n,a,b=map(int,input().split()) a1=a+b-1 a2=a1%n+1 print(a2)
Title: Round House Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya lives in a round building, whose entrances are numbered sequentially by integers from 1 to *n*. Entrance *n* and entrance 1 are adjacent. Today Vasya got bored and decided to take a walk in the yard. Vasya lives in e...
```python n,a,b=map(int,input().split()) a1=a+b-1 a2=a1%n+1 print(a2) ```
3
189
A
Cut Ribbon
PROGRAMMING
1,300
[ "brute force", "dp" ]
null
null
Polycarpus has a ribbon, its length is *n*. He wants to cut the ribbon in a way that fulfils the following two conditions: - After the cutting each ribbon piece should have length *a*, *b* or *c*. - After the cutting the number of ribbon pieces should be maximum. Help Polycarpus and find the number of ribbon piece...
The first line contains four space-separated integers *n*, *a*, *b* and *c* (1<=≤<=*n*,<=*a*,<=*b*,<=*c*<=≤<=4000) — the length of the original ribbon and the acceptable lengths of the ribbon pieces after the cutting, correspondingly. The numbers *a*, *b* and *c* can coincide.
Print a single number — the maximum possible number of ribbon pieces. It is guaranteed that at least one correct ribbon cutting exists.
[ "5 5 3 2\n", "7 5 5 2\n" ]
[ "2\n", "2\n" ]
In the first example Polycarpus can cut the ribbon in such way: the first piece has length 2, the second piece has length 3. In the second example Polycarpus can cut the ribbon in such way: the first piece has length 5, the second piece has length 2.
500
[ { "input": "5 5 3 2", "output": "2" }, { "input": "7 5 5 2", "output": "2" }, { "input": "4 4 4 4", "output": "1" }, { "input": "1 1 1 1", "output": "1" }, { "input": "4000 1 2 3", "output": "4000" }, { "input": "4000 3 4 5", "output": "1333" }, ...
1,675,236,378
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
62
0
n, a, b, c = input().split(" ") print(n, a, b, c)
Title: Cut Ribbon Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has a ribbon, its length is *n*. He wants to cut the ribbon in a way that fulfils the following two conditions: - After the cutting each ribbon piece should have length *a*, *b* or *c*. - After the cutting the...
```python n, a, b, c = input().split(" ") print(n, a, b, c) ```
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,673,118,085
2,147,483,647
Python 3
OK
TESTS
30
92
0
text = input() n = len(text) sum = 0 for i in range(n): if(text[i].isupper()): sum = sum + 1 else: sum = sum - 1 if(sum > 0): print(text.upper()) else: print(text.lower())
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 text = input() n = len(text) sum = 0 for i in range(n): if(text[i].isupper()): sum = sum + 1 else: sum = sum - 1 if(sum > 0): print(text.upper()) else: print(text.lower()) ```
3.977
863
C
1-2-3
PROGRAMMING
1,800
[ "graphs", "implementation" ]
null
null
Ilya is working for the company that constructs robots. Ilya writes programs for entertainment robots, and his current project is "Bob", a new-generation game robot. Ilya's boss wants to know his progress so far. Especially he is interested if Bob is better at playing different games than the previous model, "Alice". ...
The first line contains three numbers *k*, *a*, *b* (1<=≤<=*k*<=≤<=1018, 1<=≤<=*a*,<=*b*<=≤<=3). Then 3 lines follow, *i*-th of them containing 3 numbers *A**i*,<=1, *A**i*,<=2, *A**i*,<=3, where *A**i*,<=*j* represents Alice's choice in the game if Alice chose *i* in previous game and Bob chose *j* (1<=≤<=*A**i*,<=*...
Print two numbers. First of them has to be equal to the number of points Alice will have, and second of them must be Bob's score after *k* games.
[ "10 2 1\n1 1 1\n1 1 1\n1 1 1\n2 2 2\n2 2 2\n2 2 2\n", "8 1 1\n2 2 1\n3 3 1\n3 1 3\n1 1 1\n2 1 1\n1 2 3\n", "5 1 1\n1 2 2\n2 2 2\n2 2 2\n1 2 2\n2 2 2\n2 2 2\n" ]
[ "1 9\n", "5 2\n", "0 0\n" ]
In the second example game goes like this: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/1e21b6e200707470571d69c9946ace6b56f5279b.png" style="max-width: 100.0%;max-height: 100.0%;"/> The fourth and the seventh game are won by Bob, the first game is draw and the rest are won by Alice.
0
[ { "input": "10 2 1\n1 1 1\n1 1 1\n1 1 1\n2 2 2\n2 2 2\n2 2 2", "output": "1 9" }, { "input": "8 1 1\n2 2 1\n3 3 1\n3 1 3\n1 1 1\n2 1 1\n1 2 3", "output": "5 2" }, { "input": "5 1 1\n1 2 2\n2 2 2\n2 2 2\n1 2 2\n2 2 2\n2 2 2", "output": "0 0" }, { "input": "1 1 1\n3 3 1\n1 1 1\...
1,685,373,128
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
62
716,800
import math import random import time from collections import defaultdict alfabet = {'a': 1, 'b': 2,'c': 3,'d': 4,'e': 5,'f': 6,'g': 7,'h': 8,'i': 9,'j': 10,'k': 11,'l': 12,'m': 13,'n': 14,'o': 15,'p': 16,'q': 17,'r': 18,'s': 19,'t': 20,'u': 21,'v': 22,'w': 23,'x': 24,'y': 25,'z': 26} alfabet_2={'1':"a", '2...
Title: 1-2-3 Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ilya is working for the company that constructs robots. Ilya writes programs for entertainment robots, and his current project is "Bob", a new-generation game robot. Ilya's boss wants to know his progress so far. Especially he is...
```python import math import random import time from collections import defaultdict alfabet = {'a': 1, 'b': 2,'c': 3,'d': 4,'e': 5,'f': 6,'g': 7,'h': 8,'i': 9,'j': 10,'k': 11,'l': 12,'m': 13,'n': 14,'o': 15,'p': 16,'q': 17,'r': 18,'s': 19,'t': 20,'u': 21,'v': 22,'w': 23,'x': 24,'y': 25,'z': 26} alfabet_2={'...
0
932
B
Recursive Queries
PROGRAMMING
1,300
[ "binary search", "data structures", "dfs and similar" ]
null
null
Let us define two functions *f* and *g* on positive integer numbers. You need to process *Q* queries. In each query, you will be given three integers *l*, *r* and *k*. You need to print the number of integers *x* between *l* and *r* inclusive, such that *g*(*x*)<==<=*k*.
The first line of the input contains an integer *Q* (1<=≤<=*Q*<=≤<=2<=×<=105) representing the number of queries. *Q* lines follow, each of which contains 3 integers *l*, *r* and *k* (1<=≤<=*l*<=≤<=*r*<=≤<=106,<=1<=≤<=*k*<=≤<=9).
For each query, print a single line containing the answer for that query.
[ "4\n22 73 9\n45 64 6\n47 55 7\n2 62 4\n", "4\n82 94 6\n56 67 4\n28 59 9\n39 74 4\n" ]
[ "1\n4\n0\n8\n", "3\n1\n1\n5\n" ]
In the first example: - *g*(33) = 9 as *g*(33) = *g*(3 × 3) = *g*(9) = 9 - *g*(47) = *g*(48) = *g*(60) = *g*(61) = 6 - There are no such integers between 47 and 55. - *g*(4) = *g*(14) = *g*(22) = *g*(27) = *g*(39) = *g*(40) = *g*(41) = *g*(58) = 4
1,000
[ { "input": "4\n22 73 9\n45 64 6\n47 55 7\n2 62 4", "output": "1\n4\n0\n8" }, { "input": "4\n82 94 6\n56 67 4\n28 59 9\n39 74 4", "output": "3\n1\n1\n5" } ]
1,518,776,293
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
4
2,000
28,057,600
def f(x): x = str(x) m = 1 for i in x: m *= int(i) if i != '0' else 1 return m def g(x): x = int(x) if x < 10: return x else: return g(f(x)) for i in range(int(input())): l, r, k = (int(x) for x in input().split()) count = 0 for j in r...
Title: Recursive Queries Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let us define two functions *f* and *g* on positive integer numbers. You need to process *Q* queries. In each query, you will be given three integers *l*, *r* and *k*. You need to print the number of integers *x*...
```python def f(x): x = str(x) m = 1 for i in x: m *= int(i) if i != '0' else 1 return m def g(x): x = int(x) if x < 10: return x else: return g(f(x)) for i in range(int(input())): l, r, k = (int(x) for x in input().split()) count = 0 ...
0
260
C
Balls and Boxes
PROGRAMMING
1,700
[ "constructive algorithms", "greedy", "implementation" ]
null
null
Little Vasya had *n* boxes with balls in the room. The boxes stood in a row and were numbered with numbers from 1 to *n* from left to right. Once Vasya chose one of the boxes, let's assume that its number is *i*, took all balls out from it (it is guaranteed that this box originally had at least one ball), and began pu...
The first line of the input contains two integers *n* and *x* (2<=≤<=*n*<=≤<=105, 1<=≤<=*x*<=≤<=*n*), that represent the number of the boxes and the index of the box that got the last ball from Vasya, correspondingly. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n*, where integer *a**i*...
Print *n* integers, where the *i*-th one represents the number of balls in the box number *i* before Vasya starts acting. Separate the numbers in the output by spaces. If there are multiple correct solutions, you are allowed to print any of them.
[ "4 4\n4 3 1 6\n", "5 2\n3 2 0 2 7\n", "3 3\n2 3 1\n" ]
[ "3 2 5 4 ", "2 1 4 1 6 ", "1 2 3 " ]
none
1,500
[ { "input": "4 4\n4 3 1 6", "output": "3 2 5 4 " }, { "input": "5 2\n3 2 0 2 7", "output": "2 1 4 1 6 " }, { "input": "3 3\n2 3 1", "output": "1 2 3 " }, { "input": "10 3\n1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 100000...
1,552,554,786
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
93
0
import sys from math import * def minp(): return sys.stdin.readline().strip() def mint(): return int(minp()) def mints(): return map(int, minp().split()) n, x = mints() x -= 1 a = list(mints()) m = min(a) d = max(0, m-1) for i in range(n): a[i] -= d t = 2*d while True: a[x] -= 1 t += 1 ...
Title: Balls and Boxes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Vasya had *n* boxes with balls in the room. The boxes stood in a row and were numbered with numbers from 1 to *n* from left to right. Once Vasya chose one of the boxes, let's assume that its number is *i*, took ...
```python import sys from math import * def minp(): return sys.stdin.readline().strip() def mint(): return int(minp()) def mints(): return map(int, minp().split()) n, x = mints() x -= 1 a = list(mints()) m = min(a) d = max(0, m-1) for i in range(n): a[i] -= d t = 2*d while True: a[x] -= 1 ...
0
254
A
Cards with Numbers
PROGRAMMING
1,200
[ "constructive algorithms", "sortings" ]
null
null
Petya has got 2*n* cards, each card contains some integer. The numbers on the cards can be the same. Let's index all cards by consecutive integers from 1 to 2*n*. We'll denote the number that is written on a card with number *i*, as *a**i*. In order to play one entertaining game with his friends, Petya needs to split t...
The first line contains integer *n* (1<=≤<=*n*<=≤<=3·105). The second line contains the sequence of 2*n* positive integers *a*1,<=*a*2,<=...,<=*a*2*n* (1<=≤<=*a**i*<=≤<=5000) — the numbers that are written on the cards. The numbers on the line are separated by single spaces.
If it is impossible to divide the cards into pairs so that cards in each pair had the same numbers, print on a single line integer -1. But if the required partition exists, then print *n* pairs of integers, a pair per line — the indices of the cards that form the pairs. Separate the numbers on the lines by spaces. You...
[ "3\n20 30 10 30 20 10\n", "1\n1 2\n" ]
[ "4 2\n1 5\n6 3\n", "-1" ]
none
500
[ { "input": "3\n20 30 10 30 20 10", "output": "4 2\n1 5\n6 3" }, { "input": "1\n1 2", "output": "-1" }, { "input": "5\n2 2 2 2 2 1 2 2 1 2", "output": "2 1\n3 4\n7 5\n6 9\n10 8" }, { "input": "5\n2 1 2 2 1 1 1 1 1 2", "output": "3 1\n2 5\n7 6\n8 9\n10 4" }, { "inpu...
1,698,936,292
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
77
2,764,800
from collections import defaultdict def default_val(): return [] m = defaultdict(default_val) n = int(input()) a = list(map(int, input().split(' '))) for i in range(2*n): m[a[i]].append(i + 1) f = True for key in m: if len(m[key]) % 2 != 0: f = False break if f: ...
Title: Cards with Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya has got 2*n* cards, each card contains some integer. The numbers on the cards can be the same. Let's index all cards by consecutive integers from 1 to 2*n*. We'll denote the number that is written on a card wit...
```python from collections import defaultdict def default_val(): return [] m = defaultdict(default_val) n = int(input()) a = list(map(int, input().split(' '))) for i in range(2*n): m[a[i]].append(i + 1) f = True for key in m: if len(m[key]) % 2 != 0: f = False break...
-1
485
B
Valuable Resources
PROGRAMMING
1,300
[ "brute force", "greedy" ]
null
null
Many computer strategy games require building cities, recruiting army, conquering tribes, collecting resources. Sometimes it leads to interesting problems. Let's suppose that your task is to build a square city. The world map uses the Cartesian coordinates. The sides of the city should be parallel to coordinate axes....
The first line of the input contains number *n* — the number of mines on the map (2<=≤<=*n*<=≤<=1000). Each of the next *n* lines contains a pair of integers *x**i* and *y**i* — the coordinates of the corresponding mine (<=-<=109<=≤<=*x**i*,<=*y**i*<=≤<=109). All points are pairwise distinct.
Print the minimum area of the city that can cover all the mines with valuable resources.
[ "2\n0 0\n2 2\n", "2\n0 0\n0 3\n" ]
[ "4\n", "9\n" ]
none
500
[ { "input": "2\n0 0\n2 2", "output": "4" }, { "input": "2\n0 0\n0 3", "output": "9" }, { "input": "2\n0 1\n1 0", "output": "1" }, { "input": "3\n2 2\n1 1\n3 3", "output": "4" }, { "input": "3\n3 1\n1 3\n2 2", "output": "4" }, { "input": "3\n0 1\n1 0\n2 ...
1,415,206,081
1,081
Python 3
OK
TESTS
45
93
0
ps = map(lambda _: tuple(map(int, str.split(input()))), range(int(input()))) lx = rx = ty = by = None foo = lambda v, cv, f: cv if v is None else f(v, cv) for x, y in ps: lx = foo(lx, x, min) rx = foo(rx, x, max) by = foo(by, y, min) ty = foo(ty, y, max) print(max(abs(lx - rx), abs(by - ty)) ** 2)
Title: Valuable Resources Time Limit: None seconds Memory Limit: None megabytes Problem Description: Many computer strategy games require building cities, recruiting army, conquering tribes, collecting resources. Sometimes it leads to interesting problems. Let's suppose that your task is to build a square city. Th...
```python ps = map(lambda _: tuple(map(int, str.split(input()))), range(int(input()))) lx = rx = ty = by = None foo = lambda v, cv, f: cv if v is None else f(v, cv) for x, y in ps: lx = foo(lx, x, min) rx = foo(rx, x, max) by = foo(by, y, min) ty = foo(ty, y, max) print(max(abs(lx - rx), abs(by - ty))...
3
221
B
Little Elephant and Numbers
PROGRAMMING
1,300
[ "implementation" ]
null
null
The Little Elephant loves numbers. He has a positive integer *x*. The Little Elephant wants to find the number of positive integers *d*, such that *d* is the divisor of *x*, and *x* and *d* have at least one common (the same) digit in their decimal representations. Help the Little Elephant to find the described num...
A single line contains a single integer *x* (1<=≤<=*x*<=≤<=109).
In a single line print an integer — the answer to the problem.
[ "1\n", "10\n" ]
[ "1\n", "2\n" ]
none
1,000
[ { "input": "1", "output": "1" }, { "input": "10", "output": "2" }, { "input": "47", "output": "1" }, { "input": "100", "output": "5" }, { "input": "128", "output": "6" }, { "input": "2", "output": "1" }, { "input": "17", "output": "2" ...
1,628,763,453
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
92
6,963,200
n = int(input()) divs = [] for x in range(1,int(n**0.5)+1): if n%x == 0: if x*x != n: divs.append(x) divs.append(n//x) else: divs.append(x) cnt = 0 for x in divs: s1 = set(list(str(x))) s2 = set(list(str(n))) print(s1 and s2) if len(s...
Title: Little Elephant and Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant loves numbers. He has a positive integer *x*. The Little Elephant wants to find the number of positive integers *d*, such that *d* is the divisor of *x*, and *x* and *d* have at least o...
```python n = int(input()) divs = [] for x in range(1,int(n**0.5)+1): if n%x == 0: if x*x != n: divs.append(x) divs.append(n//x) else: divs.append(x) cnt = 0 for x in divs: s1 = set(list(str(x))) s2 = set(list(str(n))) print(s1 and s2) ...
0
155
A
I_love_\%username\%
PROGRAMMING
800
[ "brute force" ]
null
null
Vasya adores sport programming. He can't write programs but he loves to watch the contests' progress. Vasya even has a favorite coder and Vasya pays special attention to him. One day Vasya decided to collect the results of all contests where his favorite coder participated and track the progress of his coolness. For e...
The first line contains the single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of contests where the coder participated. The next line contains *n* space-separated non-negative integer numbers — they are the points which the coder has earned. The points are given in the chronological order. All points do not exceed ...
Print the single number — the number of amazing performances the coder has had during his whole history of participating in the contests.
[ "5\n100 50 200 150 200\n", "10\n4664 6496 5814 7010 5762 5736 6944 4850 3698 7242\n" ]
[ "2\n", "4\n" ]
In the first sample the performances number 2 and 3 are amazing. In the second sample the performances number 2, 4, 9 and 10 are amazing.
500
[ { "input": "5\n100 50 200 150 200", "output": "2" }, { "input": "10\n4664 6496 5814 7010 5762 5736 6944 4850 3698 7242", "output": "4" }, { "input": "1\n6", "output": "0" }, { "input": "2\n2 1", "output": "1" }, { "input": "5\n100 36 53 7 81", "output": "2" ...
1,673,957,221
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
92
0
t=int(input()) c=0 x=list(map(int,input().strip().split()))[:t] for i in range(1,t): if(x[i]>x[i-1]): c=c+1 print(c)
Title: I_love_\%username\% Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya adores sport programming. He can't write programs but he loves to watch the contests' progress. Vasya even has a favorite coder and Vasya pays special attention to him. One day Vasya decided to collect the re...
```python t=int(input()) c=0 x=list(map(int,input().strip().split()))[:t] for i in range(1,t): if(x[i]>x[i-1]): c=c+1 print(c) ```
0
779
B
Weird Rounding
PROGRAMMING
1,100
[ "brute force", "greedy" ]
null
null
Polycarp is crazy about round numbers. He especially likes the numbers divisible by 10*k*. In the given number of *n* Polycarp wants to remove the least number of digits to get a number that is divisible by 10*k*. For example, if *k*<==<=3, in the number 30020 it is enough to delete a single digit (2). In this case, t...
The only line of the input contains two integer numbers *n* and *k* (0<=≤<=*n*<=≤<=2<=000<=000<=000, 1<=≤<=*k*<=≤<=9). It is guaranteed that the answer exists. All numbers in the input are written in traditional notation of integers, that is, without any extra leading zeros.
Print *w* — the required minimal number of digits to erase. After removing the appropriate *w* digits from the number *n*, the result should have a value that is divisible by 10*k*. The result can start with digit 0 in the single case (the result is zero and written by exactly the only digit 0).
[ "30020 3\n", "100 9\n", "10203049 2\n" ]
[ "1\n", "2\n", "3\n" ]
In the example 2 you can remove two digits: 1 and any 0. The result is number 0 which is divisible by any number.
1,000
[ { "input": "30020 3", "output": "1" }, { "input": "100 9", "output": "2" }, { "input": "10203049 2", "output": "3" }, { "input": "0 1", "output": "0" }, { "input": "0 9", "output": "0" }, { "input": "100 2", "output": "0" }, { "input": "102...
1,639,131,232
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
19
77
0
n,k=map(int,input().split()) n=str(n)[::-1] cnt=0 d=0 if int(n[::-1])<10**k: print(len(n)-1) else: for i in range(len(n)): if n[i]=="0": cnt+=1 else: d+=1 if cnt==k: print(d) break
Title: Weird Rounding Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is crazy about round numbers. He especially likes the numbers divisible by 10*k*. In the given number of *n* Polycarp wants to remove the least number of digits to get a number that is divisible by 10*k*. For e...
```python n,k=map(int,input().split()) n=str(n)[::-1] cnt=0 d=0 if int(n[::-1])<10**k: print(len(n)-1) else: for i in range(len(n)): if n[i]=="0": cnt+=1 else: d+=1 if cnt==k: print(d) break ```
0
612
B
HDD is Outdated Technology
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
HDD hard drives group data by sectors. All files are split to fragments and each of them are written in some sector of hard drive. Note the fragments can be written in sectors in arbitrary order. One of the problems of HDD hard drives is the following: the magnetic head should move from one sector to another to read s...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=2·105) — the number of fragments. The second line contains *n* different integers *f**i* (1<=≤<=*f**i*<=≤<=*n*) — the number of the fragment written in the *i*-th sector.
Print the only integer — the number of time units needed to read the file.
[ "3\n3 1 2\n", "5\n1 3 5 4 2\n" ]
[ "3\n", "10\n" ]
In the second example the head moves in the following way: - 1-&gt;2 means movement from the sector 1 to the sector 5, i.e. it takes 4 time units - 2-&gt;3 means movement from the sector 5 to the sector 2, i.e. it takes 3 time units - 3-&gt;4 means movement from the sector 2 to the sector 4, i.e. it takes 2 time un...
0
[ { "input": "3\n3 1 2", "output": "3" }, { "input": "5\n1 3 5 4 2", "output": "10" }, { "input": "1\n1", "output": "0" }, { "input": "1\n1", "output": "0" }, { "input": "1\n1", "output": "0" }, { "input": "10\n8 2 10 3 4 6 1 7 9 5", "output": "40" ...
1,556,030,628
2,147,483,647
Python 3
OK
TESTS
24
295
15,462,400
n = int(input()) f = [0] * n x = list(map(int, input().split())) for i, e in enumerate(x): f[e - 1] = i ans = 0 for i in range(1, n): ans += abs(f[i] - f[i - 1]) print(ans)
Title: HDD is Outdated Technology Time Limit: None seconds Memory Limit: None megabytes Problem Description: HDD hard drives group data by sectors. All files are split to fragments and each of them are written in some sector of hard drive. Note the fragments can be written in sectors in arbitrary order. One of the ...
```python n = int(input()) f = [0] * n x = list(map(int, input().split())) for i, e in enumerate(x): f[e - 1] = i ans = 0 for i in range(1, n): ans += abs(f[i] - f[i - 1]) print(ans) ```
3
688
B
Lovely Palindromes
PROGRAMMING
1,000
[ "constructive algorithms", "math" ]
null
null
Pari has a friend who loves palindrome numbers. A palindrome number is a number that reads the same forward or backward. For example 12321, 100001 and 1 are palindrome numbers, while 112 and 1021 are not. Pari is trying to love them too, but only very special and gifted people can understand the beauty behind palindro...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=10100<=000).
Print the *n*-th even-length palindrome number.
[ "1\n", "10\n" ]
[ "11\n", "1001\n" ]
The first 10 even-length palindrome numbers are 11, 22, 33, ... , 88, 99 and 1001.
1,000
[ { "input": "1", "output": "11" }, { "input": "10", "output": "1001" }, { "input": "11", "output": "1111" }, { "input": "12", "output": "1221" }, { "input": "100", "output": "100001" }, { "input": "1321", "output": "13211231" }, { "input": "...
1,659,775,088
2,147,483,647
Python 3
OK
TESTS
40
46
409,600
def solve(): n = input() print(n + ''.join(reversed(n))) return solve()
Title: Lovely Palindromes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pari has a friend who loves palindrome numbers. A palindrome number is a number that reads the same forward or backward. For example 12321, 100001 and 1 are palindrome numbers, while 112 and 1021 are not. Pari is tr...
```python def solve(): n = input() print(n + ''.join(reversed(n))) return solve() ```
3
460
A
Vasya and Socks
PROGRAMMING
900
[ "brute force", "implementation", "math" ]
null
null
Vasya has *n* pairs of socks. In the morning of each day Vasya has to put on a pair of socks before he goes to school. When he comes home in the evening, Vasya takes off the used socks and throws them away. Every *m*-th day (at days with numbers *m*,<=2*m*,<=3*m*,<=...) mom buys a pair of socks to Vasya. She does it la...
The single line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=100; 2<=≤<=*m*<=≤<=100), separated by a space.
Print a single integer — the answer to the problem.
[ "2 2\n", "9 3\n" ]
[ "3\n", "13\n" ]
In the first sample Vasya spends the first two days wearing the socks that he had initially. Then on day three he puts on the socks that were bought on day two. In the second sample Vasya spends the first nine days wearing the socks that he had initially. Then he spends three days wearing the socks that were bought on...
500
[ { "input": "2 2", "output": "3" }, { "input": "9 3", "output": "13" }, { "input": "1 2", "output": "1" }, { "input": "2 3", "output": "2" }, { "input": "1 99", "output": "1" }, { "input": "4 4", "output": "5" }, { "input": "10 2", "outp...
1,698,340,533
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
46
0
m = list(map(int,input().split())) b=0 for i in range(1,101): if i%m[1]==0: b+=1 else: m[0]-=1 b+=1 if m[0]==0: break print(b)
Title: Vasya and Socks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has *n* pairs of socks. In the morning of each day Vasya has to put on a pair of socks before he goes to school. When he comes home in the evening, Vasya takes off the used socks and throws them away. Every *m*-th...
```python m = list(map(int,input().split())) b=0 for i in range(1,101): if i%m[1]==0: b+=1 else: m[0]-=1 b+=1 if m[0]==0: break print(b) ```
0
259
A
Little Elephant and Chess
PROGRAMMING
1,000
[ "brute force", "strings" ]
null
null
The Little Elephant loves chess very much. One day the Little Elephant and his friend decided to play chess. They've got the chess pieces but the board is a problem. They've got an 8<=×<=8 checkered board, each square is painted either black or white. The Little Elephant and his friend know that a proper chessboard d...
The input consists of exactly eight lines. Each line contains exactly eight characters "W" or "B" without any spaces: the *j*-th character in the *i*-th line stands for the color of the *j*-th cell of the *i*-th row of the elephants' board. Character "W" stands for the white color, character "B" stands for the black co...
In a single line print "YES" (without the quotes), if we can make the board a proper chessboard and "NO" (without the quotes) otherwise.
[ "WBWBWBWB\nBWBWBWBW\nBWBWBWBW\nBWBWBWBW\nWBWBWBWB\nWBWBWBWB\nBWBWBWBW\nWBWBWBWB\n", "WBWBWBWB\nWBWBWBWB\nBBWBWWWB\nBWBWBWBW\nBWBWBWBW\nBWBWBWWW\nBWBWBWBW\nBWBWBWBW\n" ]
[ "YES\n", "NO\n" ]
In the first sample you should shift the following lines one position to the right: the 3-rd, the 6-th, the 7-th and the 8-th. In the second sample there is no way you can achieve the goal.
500
[ { "input": "WBWBWBWB\nBWBWBWBW\nBWBWBWBW\nBWBWBWBW\nWBWBWBWB\nWBWBWBWB\nBWBWBWBW\nWBWBWBWB", "output": "YES" }, { "input": "WBWBWBWB\nWBWBWBWB\nBBWBWWWB\nBWBWBWBW\nBWBWBWBW\nBWBWBWWW\nBWBWBWBW\nBWBWBWBW", "output": "NO" }, { "input": "BWBWBWBW\nWBWBWBWB\nBWBWBWBW\nBWBWBWBW\nWBWBWBWB\nWBW...
1,543,139,363
2,147,483,647
Python 3
OK
TESTS
33
218
0
arr = [] for i in range(8): arr.append(input()) for i in range(8): w = arr[i].count('W') b = 8 - w if w != 4: print('NO') exit() for j in range(8): if arr[i][j] == arr[i][(j + 1) % 8]: print('NO') exit() print('YES')
Title: Little Elephant and Chess Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant loves chess very much. One day the Little Elephant and his friend decided to play chess. They've got the chess pieces but the board is a problem. They've got an 8<=×<=8 checkered board, e...
```python arr = [] for i in range(8): arr.append(input()) for i in range(8): w = arr[i].count('W') b = 8 - w if w != 4: print('NO') exit() for j in range(8): if arr[i][j] == arr[i][(j + 1) % 8]: print('NO') exit() print('YES') ```
3
961
D
Pair Of Lines
PROGRAMMING
2,000
[ "geometry" ]
null
null
You are given *n* points on Cartesian plane. Every point is a lattice point (i.<=e. both of its coordinates are integers), and all points are distinct. You may draw two straight lines (not necessarily distinct). Is it possible to do this in such a way that every point lies on at least one of these lines?
The first line contains one integer *n* (1<=≤<=*n*<=≤<=105) — the number of points you are given. Then *n* lines follow, each line containing two integers *x**i* and *y**i* (|*x**i*|,<=|*y**i*|<=≤<=109)— coordinates of *i*-th point. All *n* points are distinct.
If it is possible to draw two straight lines in such a way that each of given points belongs to at least one of these lines, print YES. Otherwise, print NO.
[ "5\n0 0\n0 1\n1 1\n1 -1\n2 2\n", "5\n0 0\n1 0\n2 1\n1 1\n2 3\n" ]
[ "YES\n", "NO\n" ]
In the first example it is possible to draw two lines, the one containing the points 1, 3 and 5, and another one containing two remaining points.
0
[ { "input": "5\n0 0\n0 1\n1 1\n1 -1\n2 2", "output": "YES" }, { "input": "5\n0 0\n1 0\n2 1\n1 1\n2 3", "output": "NO" }, { "input": "1\n-1000000000 1000000000", "output": "YES" }, { "input": "5\n2 -1\n-4 1\n0 -9\n5 -9\n9 -10", "output": "NO" }, { "input": "5\n6 1\n...
1,631,341,839
3,039
PyPy 3
OK
TESTS
121
326
34,816,000
import sys input = sys.stdin.readline def f(x1, y1, x2, y2, x3, y3): if x1 == x2 == x3: return True if y1 == y2 == y3: return True if (x2 - x1) * (y3 - y2) == (x3 - x2) * (y2 - y1): return True else: return False n = int(input()) xy = [list(map(int, input(...
Title: Pair Of Lines Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given *n* points on Cartesian plane. Every point is a lattice point (i.<=e. both of its coordinates are integers), and all points are distinct. You may draw two straight lines (not necessarily distinct). Is it po...
```python import sys input = sys.stdin.readline def f(x1, y1, x2, y2, x3, y3): if x1 == x2 == x3: return True if y1 == y2 == y3: return True if (x2 - x1) * (y3 - y2) == (x3 - x2) * (y2 - y1): return True else: return False n = int(input()) xy = [list(map(i...
3
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,545,947,269
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
218
0
p1, p2 = map(int, input().split(' ')) p_a = max(p1, p2) print(f"1/{6 - p_a}")
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 p1, p2 = map(int, input().split(' ')) p_a = max(p1, p2) print(f"1/{6 - p_a}") ```
0
34
A
Reconnaissance 2
PROGRAMMING
800
[ "implementation" ]
A. Reconnaissance 2
2
256
*n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So each of them will be less noticeable with the other. Output any pair of soldiers that can form a ...
The first line contains integer *n* (2<=≤<=*n*<=≤<=100) — amount of soldiers. Then follow the heights of the soldiers in their order in the circle — *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1000). The soldier heights are given in clockwise or counterclockwise direction.
Output two integers — indexes of neighbouring soldiers, who should form a reconnaissance unit. If there are many optimum solutions, output any of them. Remember, that the soldiers stand in a circle.
[ "5\n10 12 13 15 10\n", "4\n10 20 30 40\n" ]
[ "5 1\n", "1 2\n" ]
none
500
[ { "input": "5\n10 12 13 15 10", "output": "5 1" }, { "input": "4\n10 20 30 40", "output": "1 2" }, { "input": "6\n744 359 230 586 944 442", "output": "2 3" }, { "input": "5\n826 747 849 687 437", "output": "1 2" }, { "input": "5\n999 999 993 969 999", "output"...
1,483,035,896
2,147,483,647
Python 3
OK
TESTS
20
124
4,608,000
n=int(input()) l=list(map(int,input().split())) d=abs(l[0]-l[n-1]) ch=str(1)+' '+str(n) for i in range(n-1): if abs(l[i]-l[i+1])<d: d=abs(l[i]-l[i+1]) ch=str(i+1)+' '+str(i+2) if d==0: break print(ch)
Title: Reconnaissance 2 Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: *n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So...
```python n=int(input()) l=list(map(int,input().split())) d=abs(l[0]-l[n-1]) ch=str(1)+' '+str(n) for i in range(n-1): if abs(l[i]-l[i+1])<d: d=abs(l[i]-l[i+1]) ch=str(i+1)+' '+str(i+2) if d==0: break print(ch) ```
3.960417
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,643,266,481
2,147,483,647
Python 3
OK
TESTS
36
233
0
def count(arr,x): c = 0 for i in arr: if i > x: c += 1 return c n = int(input()) arr = list(map(int,input().split())) x = [] ans = [] for i in arr: ans.append(1+count(arr,i)) print(*ans)
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 def count(arr,x): c = 0 for i in arr: if i > x: c += 1 return c n = int(input()) arr = list(map(int,input().split())) x = [] ans = [] for i in arr: ans.append(1+count(arr,i)) print(*ans) ```
3
0
none
none
none
0
[ "none" ]
null
null
Gena loves sequences of numbers. Recently, he has discovered a new type of sequences which he called an almost arithmetical progression. A sequence is an almost arithmetical progression, if its elements can be represented as: - *a*1<==<=*p*, where *p* is some integer; - *a**i*<==<=*a**i*<=-<=1<=+<=(<=-<=1)*i*<=+<=1·...
The first line contains integer *n* (1<=≤<=*n*<=≤<=4000). The next line contains *n* integers *b*1,<=*b*2,<=...,<=*b**n* (1<=≤<=*b**i*<=≤<=106).
Print a single integer — the length of the required longest subsequence.
[ "2\n3 5\n", "4\n10 20 10 30\n" ]
[ "2\n", "3\n" ]
In the first test the sequence actually is the suitable subsequence. In the second test the following subsequence fits: 10, 20, 10.
0
[ { "input": "2\n3 5", "output": "2" }, { "input": "4\n10 20 10 30", "output": "3" }, { "input": "5\n4 4 3 5 1", "output": "2" }, { "input": "6\n2 3 2 2 1 3", "output": "4" }, { "input": "8\n2 2 5 3 4 3 3 2", "output": "3" }, { "input": "2\n468 335", ...
1,585,580,458
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
124
0
n=int(input()) g = list(map(int, input().split())) if n<3: print(n) else: razn = [0]*(n-1) for i in range(n-1): razn[i] = g[i+1] - g[i] dlina = 1 prosh = razn[0] proshind = 0 for i in range(1, n-1): if razn[i] != -prosh: prosh = razn[i] d...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gena loves sequences of numbers. Recently, he has discovered a new type of sequences which he called an almost arithmetical progression. A sequence is an almost arithmetical progression, if its elements can be represented as: - ...
```python n=int(input()) g = list(map(int, input().split())) if n<3: print(n) else: razn = [0]*(n-1) for i in range(n-1): razn[i] = g[i+1] - g[i] dlina = 1 prosh = razn[0] proshind = 0 for i in range(1, n-1): if razn[i] != -prosh: prosh = razn[i] ...
0
106
E
Space Rescuers
PROGRAMMING
2,100
[ "geometry", "ternary search" ]
E. Space Rescuers
2
256
The Galaxy contains *n* planets, there are many different living creatures inhabiting each planet. And each creature can get into troubles! Space rescuers know it perfectly well and they are always ready to help anyone who really needs help. All you need to do is call for them. Now the space rescuers plan to build th...
The first line of the input file contains integer *n* — the number of planets (1<=≤<=*N*<=≤<=100). Each of the following *n* lines contains information about the planets. The *i*-th line contains three integers *x**i*,<=*y**i*,<=*z**i* — the coordinates of the *i*-th planet (<=-<=104<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=10...
Print on the first line of the output file three space-separated real numbers *x*0,<=*y*0,<=*z*0 — the coordinates for the future base. If there are several solutions, you are allowed to print any of them. The answer will be accepted if the distance from this point to the remotest planet will differ from the juries' va...
[ "5\n5 0 0\n-5 0 0\n0 3 4\n4 -3 0\n2 2 -2\n" ]
[ "0.000 0.000 0.000\n" ]
none
2,500
[ { "input": "5\n5 0 0\n-5 0 0\n0 3 4\n4 -3 0\n2 2 -2", "output": "-0.0000000017 -0.0000000319 0.0000000473" }, { "input": "4\n-2 -9 1\n10 4 0\n-1 1 0\n3 -10 -4", "output": "4.0000068501 -2.5000015036 0.5000626514" }, { "input": "5\n6 0 -4\n8 1 5\n-8 5 -6\n-2 -4 -3\n8 -2 1", "output": ...
1,668,707,143
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
19
2,000
10,342,400
def p(a,b): return pow((a[0]-b[0]),2) + pow((a[1]-b[1]),2) + pow((a[2]-b[2]),2) def f(x,y,z): mx = 0 o = [x,y,z] for i in range(n): h = p(o,arr[i]) mx = h if h > mx else mx return mx def t2(x,y): l,r ...
Title: Space Rescuers Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The Galaxy contains *n* planets, there are many different living creatures inhabiting each planet. And each creature can get into troubles! Space rescuers know it perfectly well and they are always ready to help anyone who r...
```python def p(a,b): return pow((a[0]-b[0]),2) + pow((a[1]-b[1]),2) + pow((a[2]-b[2]),2) def f(x,y,z): mx = 0 o = [x,y,z] for i in range(n): h = p(o,arr[i]) mx = h if h > mx else mx return mx def t2(x,y): ...
0
976
A
Minimum Binary Number
PROGRAMMING
800
[ "implementation" ]
null
null
String can be called correct if it consists of characters "0" and "1" and there are no redundant leading zeroes. Here are some examples: "0", "10", "1001". You are given a correct string *s*. You can perform two different operations on this string: 1. swap any pair of adjacent characters (for example, "101" "110"...
The first line contains integer number *n* (1<=≤<=*n*<=≤<=100) — the length of string *s*. The second line contains the string *s* consisting of characters "0" and "1". It is guaranteed that the string *s* is correct.
Print one string — the minimum correct string that you can obtain from the given one.
[ "4\n1001\n", "1\n1\n" ]
[ "100\n", "1\n" ]
In the first example you can obtain the answer by the following sequence of operations: "1001" <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> "1010" <img align="middle" class="tex-formula" src="ht...
0
[ { "input": "4\n1001", "output": "100" }, { "input": "1\n1", "output": "1" }, { "input": "100\n1110111100001111011111111010110011111111011110000111101101011100110110001011000000101010110101011100", "output": "1000000000000000000000000000000000000000" }, { "input": "100\n100000...
1,676,064,279
2,147,483,647
PyPy 3
OK
TESTS
14
93
0
n = int(input()) a = input() if a=="0": print("0") quit() a = a.replace("1", "") print("1"+a)
Title: Minimum Binary Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: String can be called correct if it consists of characters "0" and "1" and there are no redundant leading zeroes. Here are some examples: "0", "10", "1001". You are given a correct string *s*. You can perform two...
```python n = int(input()) a = input() if a=="0": print("0") quit() a = a.replace("1", "") print("1"+a) ```
3
600
B
Queries about less or equal elements
PROGRAMMING
1,300
[ "binary search", "data structures", "sortings", "two pointers" ]
null
null
You are given two arrays of integers *a* and *b*. For each element of the second array *b**j* you should find the number of elements in array *a* that are less than or equal to the value *b**j*.
The first line contains two integers *n*,<=*m* (1<=≤<=*n*,<=*m*<=≤<=2·105) — the sizes of arrays *a* and *b*. The second line contains *n* integers — the elements of array *a* (<=-<=109<=≤<=*a**i*<=≤<=109). The third line contains *m* integers — the elements of array *b* (<=-<=109<=≤<=*b**j*<=≤<=109).
Print *m* integers, separated by spaces: the *j*-th of which is equal to the number of such elements in array *a* that are less than or equal to the value *b**j*.
[ "5 4\n1 3 5 7 9\n6 4 2 8\n", "5 5\n1 2 1 2 5\n3 1 4 1 5\n" ]
[ "3 2 1 4\n", "4 2 4 2 5\n" ]
none
0
[ { "input": "5 4\n1 3 5 7 9\n6 4 2 8", "output": "3 2 1 4" }, { "input": "5 5\n1 2 1 2 5\n3 1 4 1 5", "output": "4 2 4 2 5" }, { "input": "1 1\n-1\n-2", "output": "0" }, { "input": "1 1\n-80890826\n686519510", "output": "1" }, { "input": "11 11\n237468511 -77918754...
1,666,280,376
2,147,483,647
Python 3
OK
TESTS
60
639
19,456,000
import bisect n,m = map(int,input().split()) a = list(map(int,input().split())) b = list(map(int,input().split())) a.sort() for i in b: print(bisect.bisect(a,i),end=" ")
Title: Queries about less or equal elements Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two arrays of integers *a* and *b*. For each element of the second array *b**j* you should find the number of elements in array *a* that are less than or equal to the value *b**j*. In...
```python import bisect n,m = map(int,input().split()) a = list(map(int,input().split())) b = list(map(int,input().split())) a.sort() for i in b: print(bisect.bisect(a,i),end=" ") ```
3
78
B
Easter Eggs
PROGRAMMING
1,200
[ "constructive algorithms", "implementation" ]
B. Easter Eggs
2
256
The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: - Each of the seven colors should be used to paint at least one egg. - Any four eggs lying s...
The only line contains an integer *n* — the amount of eggs (7<=≤<=*n*<=≤<=100).
Print one line consisting of *n* characters. The *i*-th character should describe the color of the *i*-th egg in the order they lie in the circle. The colors should be represented as follows: "R" stands for red, "O" stands for orange, "Y" stands for yellow, "G" stands for green, "B" stands for blue, "I" stands for indi...
[ "8\n", "13\n" ]
[ "ROYGRBIV\n", "ROYGBIVGBIVYG\n" ]
The way the eggs will be painted in the first sample is shown on the picture:
1,000
[ { "input": "8", "output": "ROYGBIVG" }, { "input": "13", "output": "ROYGBIVOYGBIV" }, { "input": "7", "output": "ROYGBIV" }, { "input": "10", "output": "ROYGBIVYGB" }, { "input": "14", "output": "ROYGBIVROYGBIV" }, { "input": "50", "output": "ROYGB...
1,593,545,092
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
216
0
import sys n = int(sys.stdin.readline()) colors = 'ROYGBIV' circle = colors for i in range(n - 7): circle += colors[(3 + i) % 7] print(circle)
Title: Easter Eggs Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: -...
```python import sys n = int(sys.stdin.readline()) colors = 'ROYGBIV' circle = colors for i in range(n - 7): circle += colors[(3 + i) % 7] print(circle) ```
0
499
B
Lecture
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
You have a new professor of graph theory and he speaks very quickly. You come up with the following plan to keep up with his lecture and make notes. You know two languages, and the professor is giving the lecture in the first one. The words in both languages consist of lowercase English characters, each language consi...
The first line contains two integers, *n* and *m* (1<=≤<=*n*<=≤<=3000, 1<=≤<=*m*<=≤<=3000) — the number of words in the professor's lecture and the number of words in each of these languages. The following *m* lines contain the words. The *i*-th line contains two strings *a**i*, *b**i* meaning that the word *a**i* bel...
Output exactly *n* words: how you will record the lecture in your notebook. Output the words of the lecture in the same order as in the input.
[ "4 3\ncodeforces codesecrof\ncontest round\nletter message\ncodeforces contest letter contest\n", "5 3\njoll wuqrd\neuzf un\nhbnyiyc rsoqqveh\nhbnyiyc joll joll euzf joll\n" ]
[ "codeforces round letter round\n", "hbnyiyc joll joll un joll\n" ]
none
500
[ { "input": "4 3\ncodeforces codesecrof\ncontest round\nletter message\ncodeforces contest letter contest", "output": "codeforces round letter round" }, { "input": "5 3\njoll wuqrd\neuzf un\nhbnyiyc rsoqqveh\nhbnyiyc joll joll euzf joll", "output": "hbnyiyc joll joll un joll" }, { "input"...
1,624,814,477
2,147,483,647
PyPy 3
OK
TESTS
37
155
4,505,600
n,m = map(int, input().split()) l = dict() o= [] for i in range(m): s,s1 = input().split() l[s] = s1 a = input().split() for i in range(n): a[i] = a[i] if len(l[a[i]]) >= len(a[i]) else l[a[i]] print(" ".join(a))
Title: Lecture Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have a new professor of graph theory and he speaks very quickly. You come up with the following plan to keep up with his lecture and make notes. You know two languages, and the professor is giving the lecture in the first ...
```python n,m = map(int, input().split()) l = dict() o= [] for i in range(m): s,s1 = input().split() l[s] = s1 a = input().split() for i in range(n): a[i] = a[i] if len(l[a[i]]) >= len(a[i]) else l[a[i]] print(" ".join(a)) ```
3
136
A
Presents
PROGRAMMING
800
[ "implementation" ]
null
null
Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on this occasion he organized a New Year party at his place and invited *n* his friends there. If...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the quantity of friends Petya invited to the party. The second line contains *n* space-separated integers: the *i*-th number is *p**i* — the number of a friend who gave a gift to friend number *i*. It is guaranteed that each friend received exactly one gift....
Print *n* space-separated integers: the *i*-th number should equal the number of the friend who gave a gift to friend number *i*.
[ "4\n2 3 4 1\n", "3\n1 3 2\n", "2\n1 2\n" ]
[ "4 1 2 3\n", "1 3 2\n", "1 2\n" ]
none
500
[ { "input": "4\n2 3 4 1", "output": "4 1 2 3" }, { "input": "3\n1 3 2", "output": "1 3 2" }, { "input": "2\n1 2", "output": "1 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 3 2 6 4 5 7 9 8 10", "output": "1 3 2 5 6 4 7 9 8 10" }, { "input"...
1,697,962,150
2,147,483,647
Python 3
OK
TESTS
101
92
0
numer_of_friends = int(input()) friends = list(map(int, input().strip().split())) ans = [0] * len(friends) for i in range(numer_of_friends): ans[friends[i]-1] = i + 1 print(*ans)
Title: Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on t...
```python numer_of_friends = int(input()) friends = list(map(int, input().strip().split())) ans = [0] * len(friends) for i in range(numer_of_friends): ans[friends[i]-1] = i + 1 print(*ans) ```
3
278
A
Circle Line
PROGRAMMING
800
[ "implementation" ]
null
null
The circle line of the Berland subway has *n* stations. We know the distances between all pairs of neighboring stations: - *d*1 is the distance between the 1-st and the 2-nd station;- *d*2 is the distance between the 2-nd and the 3-rd station;...- *d**n*<=-<=1 is the distance between the *n*<=-<=1-th and the *n*-th ...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — the number of stations on the circle line. The second line contains *n* integers *d*1,<=*d*2,<=...,<=*d**n* (1<=≤<=*d**i*<=≤<=100) — the distances between pairs of neighboring stations. The third line contains two integers *s* and *t* (1<=≤<=*s*,<=*t*<=≤<=*n*) —...
Print a single number — the length of the shortest path between stations number *s* and *t*.
[ "4\n2 3 4 9\n1 3\n", "4\n5 8 2 100\n4 1\n", "3\n1 1 1\n3 1\n", "3\n31 41 59\n1 1\n" ]
[ "5\n", "15\n", "1\n", "0\n" ]
In the first sample the length of path 1 → 2 → 3 equals 5, the length of path 1 → 4 → 3 equals 13. In the second sample the length of path 4 → 1 is 100, the length of path 4 → 3 → 2 → 1 is 15. In the third sample the length of path 3 → 1 is 1, the length of path 3 → 2 → 1 is 2. In the fourth sample the numbers of st...
500
[ { "input": "4\n2 3 4 9\n1 3", "output": "5" }, { "input": "4\n5 8 2 100\n4 1", "output": "15" }, { "input": "3\n1 1 1\n3 1", "output": "1" }, { "input": "3\n31 41 59\n1 1", "output": "0" }, { "input": "5\n16 13 10 30 15\n4 2", "output": "23" }, { "inpu...
1,564,749,182
2,147,483,647
Python 3
OK
TESTS
23
216
0
n=int(input()) a=list(map(int,input().split())) b=list(map(int,input().split())) s=sum(a) s1=0 l=min(b[0],b[1]) r=max(b[0],b[1]) for i in range(l-1,r-1): s1=s1+a[i] if s-s1<s1: print(s-s1) else: print(s1)
Title: Circle Line Time Limit: None seconds Memory Limit: None megabytes Problem Description: The circle line of the Berland subway has *n* stations. We know the distances between all pairs of neighboring stations: - *d*1 is the distance between the 1-st and the 2-nd station;- *d*2 is the distance between the 2-nd...
```python n=int(input()) a=list(map(int,input().split())) b=list(map(int,input().split())) s=sum(a) s1=0 l=min(b[0],b[1]) r=max(b[0],b[1]) for i in range(l-1,r-1): s1=s1+a[i] if s-s1<s1: print(s-s1) else: print(s1) ```
3
740
B
Alyona and flowers
PROGRAMMING
1,200
[ "constructive algorithms" ]
null
null
Little Alyona is celebrating Happy Birthday! Her mother has an array of *n* flowers. Each flower has some mood, the mood of *i*-th flower is *a**i*. The mood can be positive, zero or negative. Let's define a subarray as a segment of consecutive flowers. The mother suggested some set of subarrays. Alyona wants to choos...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of flowers and the number of subarrays suggested by the mother. The second line contains the flowers moods — *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=100<=≤<=*a**i*<=≤<=100). The next *m* lines contain the description of the ...
Print single integer — the maximum possible value added to the Alyona's happiness.
[ "5 4\n1 -2 1 3 -4\n1 2\n4 5\n3 4\n1 4\n", "4 3\n1 2 3 4\n1 3\n2 4\n1 1\n", "2 2\n-1 -2\n1 1\n1 2\n" ]
[ "7\n", "16\n", "0\n" ]
The first example is the situation described in the statements. In the second example Alyona should choose all subarrays. The third example has answer 0 because Alyona can choose none of the subarrays.
1,000
[ { "input": "5 4\n1 -2 1 3 -4\n1 2\n4 5\n3 4\n1 4", "output": "7" }, { "input": "4 3\n1 2 3 4\n1 3\n2 4\n1 1", "output": "16" }, { "input": "2 2\n-1 -2\n1 1\n1 2", "output": "0" }, { "input": "5 6\n1 1 1 -1 0\n2 4\n1 3\n4 5\n1 5\n1 4\n4 5", "output": "8" }, { "inpu...
1,479,921,562
2,662
Python 3
OK
TESTS
53
62
0
#!/usr/bin/env python3 n, m = map(int, input().split()) a = list(map(int, input().split())) sum_ = 0 for i in range(m): l, r = map(int, input().split()) l -= 1 temp = sum(a[l:r]) if temp > 0: sum_ += temp print(sum_)
Title: Alyona and flowers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Alyona is celebrating Happy Birthday! Her mother has an array of *n* flowers. Each flower has some mood, the mood of *i*-th flower is *a**i*. The mood can be positive, zero or negative. Let's define a subarra...
```python #!/usr/bin/env python3 n, m = map(int, input().split()) a = list(map(int, input().split())) sum_ = 0 for i in range(m): l, r = map(int, input().split()) l -= 1 temp = sum(a[l:r]) if temp > 0: sum_ += temp print(sum_) ```
3
178
A1
Educational Game
PROGRAMMING
1,000
[]
null
null
The Smart Beaver from ABBYY began to develop a new educational game for children. The rules of the game are fairly simple and are described below. The playing field is a sequence of *n* non-negative integers *a**i* numbered from 1 to *n*. The goal of the game is to make numbers *a*1,<=*a*2,<=...,<=*a**k* (i.e. some pr...
The first input line contains a single integer *n*. The second line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=104), separated by single spaces. The input limitations for getting 20 points are: - 1<=≤<=*n*<=≤<=300 The input limitations for getting 50 points are: - 1<=≤<=*n*<=≤<=2000 The input limitations f...
Print exactly *n*<=-<=1 lines: the *k*-th output line must contain the minimum number of moves needed to make the first *k* elements of the original sequence *a**i* equal to zero. Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams, or the %I64d sp...
[ "4\n1 0 1 2\n", "8\n1 2 3 4 5 6 7 8\n" ]
[ "1\n1\n3\n", "1\n3\n6\n10\n16\n24\n40\n" ]
none
20
[ { "input": "4\n1 0 1 2", "output": "1\n1\n3" }, { "input": "8\n1 2 3 4 5 6 7 8", "output": "1\n3\n6\n10\n16\n24\n40" }, { "input": "5\n4 1 4 7 6", "output": "4\n5\n9\n17" }, { "input": "9\n13 13 7 11 3 9 3 5 5", "output": "13\n26\n33\n44\n47\n69\n79\n117" }, { "in...
1,653,394,949
2,147,483,647
PyPy 3
OK
TESTS1
12
154
0
import sys input = sys.stdin.readline from math import log2 n = int(input()) w = list(map(int, input().split())) c = 0 for i in range(n-1): d = i + 2**int(log2(n-i-1)) if d <= n-1: w[d] += w[i] c += w[i] print(c)
Title: Educational Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Smart Beaver from ABBYY began to develop a new educational game for children. The rules of the game are fairly simple and are described below. The playing field is a sequence of *n* non-negative integers *a**i* nu...
```python import sys input = sys.stdin.readline from math import log2 n = int(input()) w = list(map(int, input().split())) c = 0 for i in range(n-1): d = i + 2**int(log2(n-i-1)) if d <= n-1: w[d] += w[i] c += w[i] print(c) ```
3
328
B
Sheldon and Ice Pieces
PROGRAMMING
1,500
[ "greedy" ]
null
null
Do you remember how Kai constructed the word "eternity" using pieces of ice as components? Little Sheldon plays with pieces of ice, each piece has exactly one digit between 0 and 9. He wants to construct his favourite number *t*. He realized that digits 6 and 9 are very similar, so he can rotate piece of ice with 6 to...
The first line contains integer *t* (1<=≤<=*t*<=≤<=10000). The second line contains the sequence of digits on the pieces. The length of line is equal to the number of pieces and between 1 and 200, inclusive. It contains digits between 0 and 9.
Print the required number of instances.
[ "42\n23454\n", "169\n12118999\n" ]
[ "2\n", "1\n" ]
This problem contains very weak pretests.
500
[ { "input": "42\n23454", "output": "2" }, { "input": "169\n12118999", "output": "1" }, { "input": "1\n1", "output": "1" }, { "input": "7\n777", "output": "3" }, { "input": "18\n8118", "output": "2" }, { "input": "33\n33333333", "output": "4" }, ...
1,603,104,171
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
218
307,200
s = list(input()) arr= list(input()) vic = {} for i in arr: if i in vic: vic[i]+=1 else: vic[i]=1 minimum = 10**9 for i in s: if i=='2' or '5': if '2' in vic and '5' in vic: minimum = min(minimum,vic['2']+vic['5']) elif '2' in vic: ...
Title: Sheldon and Ice Pieces Time Limit: None seconds Memory Limit: None megabytes Problem Description: Do you remember how Kai constructed the word "eternity" using pieces of ice as components? Little Sheldon plays with pieces of ice, each piece has exactly one digit between 0 and 9. He wants to construct his fav...
```python s = list(input()) arr= list(input()) vic = {} for i in arr: if i in vic: vic[i]+=1 else: vic[i]=1 minimum = 10**9 for i in s: if i=='2' or '5': if '2' in vic and '5' in vic: minimum = min(minimum,vic['2']+vic['5']) elif '2' in vic: ...
-1
365
B
The Fibonacci Segment
PROGRAMMING
1,100
[ "implementation" ]
null
null
You have array *a*1,<=*a*2,<=...,<=*a**n*. Segment [*l*,<=*r*] (1<=≤<=*l*<=≤<=*r*<=≤<=*n*) is good if *a**i*<==<=*a**i*<=-<=1<=+<=*a**i*<=-<=2, for all *i* (*l*<=+<=2<=≤<=*i*<=≤<=*r*). Let's define *len*([*l*,<=*r*])<==<=*r*<=-<=*l*<=+<=1, *len*([*l*,<=*r*]) is the length of the segment [*l*,<=*r*]. Segment [*l*1,<=*r...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of elements in the array. The second line contains integers: *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109).
Print the length of the longest good segment in array *a*.
[ "10\n1 2 3 5 8 13 21 34 55 89\n", "5\n1 1 1 1 1\n" ]
[ "10\n", "2\n" ]
none
1,000
[ { "input": "10\n1 2 3 5 8 13 21 34 55 89", "output": "10" }, { "input": "5\n1 1 1 1 1", "output": "2" }, { "input": "1\n1000", "output": "1" }, { "input": "51\n1 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", "output"...
1,645,594,861
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
93
1,331,200
n=int(input()) a=list(map(int,input().split())) if n<=2: print(n) else: c=2 max=-10000 for i in range(2,n,1): if a[i]==a[i-1]+a[i-2]: c=c+1 else: if max<c: max=c c=2 if max<c: max=c c=2 print...
Title: The Fibonacci Segment Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have array *a*1,<=*a*2,<=...,<=*a**n*. Segment [*l*,<=*r*] (1<=≤<=*l*<=≤<=*r*<=≤<=*n*) is good if *a**i*<==<=*a**i*<=-<=1<=+<=*a**i*<=-<=2, for all *i* (*l*<=+<=2<=≤<=*i*<=≤<=*r*). Let's define *len*([*l*,<=*...
```python n=int(input()) a=list(map(int,input().split())) if n<=2: print(n) else: c=2 max=-10000 for i in range(2,n,1): if a[i]==a[i-1]+a[i-2]: c=c+1 else: if max<c: max=c c=2 if max<c: max=c c=2 ...
0
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,688,094,386
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
92
0
param_list=list(map(int,input().split())) input_list=list(map(int,input().split())) input_list.sort() min_value=(input_list[param_list[0]-1])-input_list[0] print("The parameters are "+str(param_list[0]-1)+" The values of input_lst is "+str(input_list[param_list[0]-1])+" "+str(input_list[0])) """if (param_list[1]/p...
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 param_list=list(map(int,input().split())) input_list=list(map(int,input().split())) input_list.sort() min_value=(input_list[param_list[0]-1])-input_list[0] print("The parameters are "+str(param_list[0]-1)+" The values of input_lst is "+str(input_list[param_list[0]-1])+" "+str(input_list[0])) """if (param...
0
810
B
Summer sell-off
PROGRAMMING
1,300
[ "greedy", "sortings" ]
null
null
Summer holidays! Someone is going on trips, someone is visiting grandparents, but someone is trying to get a part-time job. This summer Noora decided that she wants to earn some money, and took a job in a shop as an assistant. Shop, where Noora is working, has a plan on the following *n* days. For each day sales manag...
The first line contains two integers *n* and *f* (1<=≤<=*n*<=≤<=105,<=0<=≤<=*f*<=≤<=*n*) denoting the number of days in shop's plan and the number of days that Noora has to choose for sell-out. Each line of the following *n* subsequent lines contains two integers *k**i*,<=*l**i* (0<=≤<=*k**i*,<=*l**i*<=≤<=109) denotin...
Print a single integer denoting the maximal number of products that shop can sell.
[ "4 2\n2 1\n3 5\n2 3\n1 5\n", "4 1\n0 2\n0 3\n3 5\n0 6\n" ]
[ "10", "5" ]
In the first example we can choose days with numbers 2 and 4 for sell-out. In this case new numbers of products for sale would be equal to [2, 6, 2, 2] respectively. So on the first day shop will sell 1 product, on the second — 5, on the third — 2, on the fourth — 2. In total 1 + 5 + 2 + 2 = 10 product units. In the s...
1,000
[ { "input": "4 2\n2 1\n3 5\n2 3\n1 5", "output": "10" }, { "input": "4 1\n0 2\n0 3\n3 5\n0 6", "output": "5" }, { "input": "1 1\n5 8", "output": "8" }, { "input": "2 1\n8 12\n6 11", "output": "19" }, { "input": "2 1\n6 7\n5 7", "output": "13" }, { "inpu...
1,591,615,959
2,147,483,647
Python 3
OK
TESTS
159
560
11,161,600
n, f = list(map(int, input().split())) days = [] for i in range(n): d = list(map(int, input().split())) days.append((d[0], d[1], min(2 * d[0], d[1]) - min(d[0], d[1]))) days_sorted = sorted(days, key=lambda x: x[2], reverse=True) #print(days_sorted) ans = 0 for i in range(n): if i < f: ...
Title: Summer sell-off Time Limit: None seconds Memory Limit: None megabytes Problem Description: Summer holidays! Someone is going on trips, someone is visiting grandparents, but someone is trying to get a part-time job. This summer Noora decided that she wants to earn some money, and took a job in a shop as an ass...
```python n, f = list(map(int, input().split())) days = [] for i in range(n): d = list(map(int, input().split())) days.append((d[0], d[1], min(2 * d[0], d[1]) - min(d[0], d[1]))) days_sorted = sorted(days, key=lambda x: x[2], reverse=True) #print(days_sorted) ans = 0 for i in range(n): if i < f...
3
895
C
Square Subsets
PROGRAMMING
2,000
[ "bitmasks", "combinatorics", "dp", "math" ]
null
null
Petya was late for the lesson too. The teacher gave him an additional task. For some array *a* Petya should find the number of different ways to select non-empty subset of elements from it in such a way that their product is equal to a square of some integer. Two ways are considered different if sets of indexes of ele...
First line contains one integer *n* (1<=≤<=*n*<=≤<=105) — the number of elements in the array. Second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=70) — the elements of the array.
Print one integer — the number of different ways to choose some elements so that their product is a square of a certain integer modulo 109<=+<=7.
[ "4\n1 1 1 1\n", "4\n2 2 2 2\n", "5\n1 2 4 5 8\n" ]
[ "15\n", "7\n", "7\n" ]
In first sample product of elements chosen by any way is 1 and 1 = 1<sup class="upper-index">2</sup>. So the answer is 2<sup class="upper-index">4</sup> - 1 = 15. In second sample there are six different ways to choose elements so that their product is 4, and only one way so that their product is 16. So the answer is ...
1,750
[ { "input": "4\n1 1 1 1", "output": "15" }, { "input": "4\n2 2 2 2", "output": "7" }, { "input": "5\n1 2 4 5 8", "output": "7" }, { "input": "1\n64", "output": "1" }, { "input": "5\n2 2 2 2 2", "output": "15" }, { "input": "6\n1 2 3 4 5 6", "output"...
1,634,312,358
2,147,483,647
PyPy 3-64
OK
TESTS
61
1,419
191,283,200
import sys import os from io import BytesIO sys.stdin = BytesIO(os.read(0, os.fstat(0).st_size)) fct = sys.stdin if os.environ.get('USER') == "loic": fct = open("data.in") line = lambda: fct.readline().split() def write(w): sys.stdout.write(w) sys.stdout.write("\n") from collections i...
Title: Square Subsets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya was late for the lesson too. The teacher gave him an additional task. For some array *a* Petya should find the number of different ways to select non-empty subset of elements from it in such a way that their produc...
```python import sys import os from io import BytesIO sys.stdin = BytesIO(os.read(0, os.fstat(0).st_size)) fct = sys.stdin if os.environ.get('USER') == "loic": fct = open("data.in") line = lambda: fct.readline().split() def write(w): sys.stdout.write(w) sys.stdout.write("\n") from col...
3
688
A
Opponents
PROGRAMMING
800
[ "implementation" ]
null
null
Arya has *n* opponents in the school. Each day he will fight with all opponents who are present this day. His opponents have some fighting plan that guarantees they will win, but implementing this plan requires presence of them all. That means if one day at least one of Arya's opponents is absent at the school, then Ar...
The first line of the input contains two integers *n* and *d* (1<=≤<=*n*,<=*d*<=≤<=100) — the number of opponents and the number of days, respectively. The *i*-th of the following *d* lines contains a string of length *n* consisting of characters '0' and '1'. The *j*-th character of this string is '0' if the *j*-th op...
Print the only integer — the maximum number of consecutive days that Arya will beat all present opponents.
[ "2 2\n10\n00\n", "4 1\n0100\n", "4 5\n1101\n1111\n0110\n1011\n1111\n" ]
[ "2\n", "1\n", "2\n" ]
In the first and the second samples, Arya will beat all present opponents each of the *d* days. In the third sample, Arya will beat his opponents on days 1, 3 and 4 and his opponents will beat him on days 2 and 5. Thus, the maximum number of consecutive winning days is 2, which happens on days 3 and 4.
500
[ { "input": "2 2\n10\n00", "output": "2" }, { "input": "4 1\n0100", "output": "1" }, { "input": "4 5\n1101\n1111\n0110\n1011\n1111", "output": "2" }, { "input": "3 2\n110\n110", "output": "2" }, { "input": "10 6\n1111111111\n0100110101\n1111111111\n0000011010\n1111...
1,660,168,206
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
31
0
def Problem(): a=input().split(' ') for i in range(2): a[i]=int(a[i]) T=[0]*a[1] for i in range(a[1]): T[i]=input() Nb=0 NbD=0 for i in range(a[1]): if T[i].count('1')!=a[0]: Nb=Tuer(T[i],Nb) NbD+=1 if Nb>0 and i>0 and T[i-...
Title: Opponents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Arya has *n* opponents in the school. Each day he will fight with all opponents who are present this day. His opponents have some fighting plan that guarantees they will win, but implementing this plan requires presence of th...
```python def Problem(): a=input().split(' ') for i in range(2): a[i]=int(a[i]) T=[0]*a[1] for i in range(a[1]): T[i]=input() Nb=0 NbD=0 for i in range(a[1]): if T[i].count('1')!=a[0]: Nb=Tuer(T[i],Nb) NbD+=1 if Nb>0 and i>...
0
651
A
Joysticks
PROGRAMMING
1,100
[ "dp", "greedy", "implementation", "math" ]
null
null
Friends are going to play console. They have two joysticks and only one charger for them. Initially first joystick is charged at *a*1 percent and second one is charged at *a*2 percent. You can connect charger to a joystick only at the beginning of each minute. In one minute joystick either discharges by 2 percent (if n...
The first line of the input contains two positive integers *a*1 and *a*2 (1<=≤<=*a*1,<=*a*2<=≤<=100), the initial charge level of first and second joystick respectively.
Output the only integer, the maximum number of minutes that the game can last. Game continues until some joystick is discharged.
[ "3 5\n", "4 4\n" ]
[ "6\n", "5\n" ]
In the first sample game lasts for 6 minute by using the following algorithm: - at the beginning of the first minute connect first joystick to the charger, by the end of this minute first joystick is at 4%, second is at 3%; - continue the game without changing charger, by the end of the second minute the first joyst...
500
[ { "input": "3 5", "output": "6" }, { "input": "4 4", "output": "5" }, { "input": "100 100", "output": "197" }, { "input": "1 100", "output": "98" }, { "input": "100 1", "output": "98" }, { "input": "1 4", "output": "2" }, { "input": "1 1", ...
1,606,897,907
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
6
140
0
a_1,a_2 = [int(x) for x in input().split()] t = 0 h = max(a_1,a_2) l = min(a_1,a_2) while min(h,l) and h*l >= 0: h,l = [max(h,l) - 2,min(h,l) + 1] t += 1 print(t)
Title: Joysticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Friends are going to play console. They have two joysticks and only one charger for them. Initially first joystick is charged at *a*1 percent and second one is charged at *a*2 percent. You can connect charger to a joystick on...
```python a_1,a_2 = [int(x) for x in input().split()] t = 0 h = max(a_1,a_2) l = min(a_1,a_2) while min(h,l) and h*l >= 0: h,l = [max(h,l) - 2,min(h,l) + 1] t += 1 print(t) ```
0
526
B
Om Nom and Dark Park
PROGRAMMING
1,400
[ "dfs and similar", "greedy", "implementation" ]
null
null
Om Nom is the main character of a game "Cut the Rope". He is a bright little monster who likes visiting friends living at the other side of the park. However the dark old parks can scare even somebody as fearless as Om Nom, so he asks you to help him. The park consists of 2*n*<=+<=1<=-<=1 squares connected by roads so...
The first line contains integer *n* (1<=≤<=*n*<=≤<=10) — the number of roads on the path from the entrance to any exit. The next line contains 2*n*<=+<=1<=-<=2 numbers *a*2,<=*a*3,<=... *a*2*n*<=+<=1<=-<=1 — the initial numbers of street lights on each road of the park. Here *a**i* is the number of street lights on th...
Print the minimum number of street lights that we should add to the roads of the park to make Om Nom feel safe.
[ "2\n1 2 3 4 5 6\n" ]
[ "5\n" ]
Picture for the sample test. Green color denotes the additional street lights.
500
[ { "input": "2\n1 2 3 4 5 6", "output": "5" }, { "input": "2\n1 2 3 3 2 2", "output": "0" }, { "input": "1\n39 52", "output": "13" }, { "input": "2\n59 96 34 48 8 72", "output": "139" }, { "input": "3\n87 37 91 29 58 45 51 74 70 71 47 38 91 89", "output": "210"...
1,620,855,727
2,147,483,647
PyPy 3
OK
TESTS
38
109
22,016,000
import math import sys import collections def In(): return map(int, sys.stdin.readline().split()) def omnompark(): n = int(input()) l = list(In()) ans = 0 for i in range(len(l) - 1, -1, -1): if i % 2: # that means the second one if l[i - 1] > l[i]: ...
Title: Om Nom and Dark Park Time Limit: None seconds Memory Limit: None megabytes Problem Description: Om Nom is the main character of a game "Cut the Rope". He is a bright little monster who likes visiting friends living at the other side of the park. However the dark old parks can scare even somebody as fearless a...
```python import math import sys import collections def In(): return map(int, sys.stdin.readline().split()) def omnompark(): n = int(input()) l = list(In()) ans = 0 for i in range(len(l) - 1, -1, -1): if i % 2: # that means the second one if l[i - 1] > l[i]: ...
3
902
A
Visiting a Friend
PROGRAMMING
1,100
[ "greedy", "implementation" ]
null
null
Pig is visiting a friend. Pig's house is located at point 0, and his friend's house is located at point *m* on an axis. Pig can use teleports to move along the axis. To use a teleport, Pig should come to a certain point (where the teleport is located) and choose where to move: for each teleport there is the rightmos...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=100,<=1<=≤<=*m*<=≤<=100) — the number of teleports and the location of the friend's house. The next *n* lines contain information about teleports. The *i*-th of these lines contains two integers *a**i* and *b**i* (0<=≤<=*a**i*<=≤<=*b**i*<=≤<=*m*), where ...
Print "YES" if there is a path from Pig's house to his friend's house that uses only teleports, and "NO" otherwise. You can print each letter in arbitrary case (upper or lower).
[ "3 5\n0 2\n2 4\n3 5\n", "3 7\n0 4\n2 5\n6 7\n" ]
[ "YES\n", "NO\n" ]
The first example is shown on the picture below: Pig can use the first teleport from his house (point 0) to reach point 2, then using the second teleport go from point 2 to point 3, then using the third teleport go from point 3 to point 5, where his friend lives. The second example is shown on the picture below: You...
500
[ { "input": "3 5\n0 2\n2 4\n3 5", "output": "YES" }, { "input": "3 7\n0 4\n2 5\n6 7", "output": "NO" }, { "input": "1 1\n0 0", "output": "NO" }, { "input": "30 10\n0 7\n1 2\n1 2\n1 4\n1 4\n1 3\n2 2\n2 4\n2 6\n2 9\n2 2\n3 5\n3 8\n4 8\n4 5\n4 6\n5 6\n5 7\n6 6\n6 9\n6 7\n6 9\n7 7...
1,532,690,453
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
93
0
num_teleports, destination = map(int, input("num of teleports and destination point").split()) i = 0 c = 0 d = 1 start_points = [] end_points = [] while i < num_teleports: c += 1 h, e = map(int, input("teleport start point and end point").split()) i += 1 start_points.append(h) end_points....
Title: Visiting a Friend Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pig is visiting a friend. Pig's house is located at point 0, and his friend's house is located at point *m* on an axis. Pig can use teleports to move along the axis. To use a teleport, Pig should come to a certain ...
```python num_teleports, destination = map(int, input("num of teleports and destination point").split()) i = 0 c = 0 d = 1 start_points = [] end_points = [] while i < num_teleports: c += 1 h, e = map(int, input("teleport start point and end point").split()) i += 1 start_points.append(h) e...
0
109
A
Lucky Sum of Digits
PROGRAMMING
1,000
[ "brute force", "implementation" ]
A. Lucky Sum of Digits
2
256
Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya wonders eagerly what minimum lucky number has the sum of digits equal to *n*. Help him cope wi...
The single line contains an integer *n* (1<=≤<=*n*<=≤<=106) — the sum of digits of the required lucky number.
Print on the single line the result — the minimum lucky number, whose sum of digits equals *n*. If such number does not exist, print -1.
[ "11\n", "10\n" ]
[ "47\n", "-1\n" ]
none
500
[ { "input": "11", "output": "47" }, { "input": "10", "output": "-1" }, { "input": "64", "output": "4477777777" }, { "input": "1", "output": "-1" }, { "input": "4", "output": "4" }, { "input": "7", "output": "7" }, { "input": "12", "outpu...
1,540,386,794
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
218
0
#!/usr/bin/python n = int(input()) #(n - 7*y) / 4 = x for y in reversed(range(1, n//7+1)): v = n - 7 * y if v > 0 and v % 4 == 0: print(v//4*"4" + y*"7") break else: print(-1)
Title: Lucky Sum of Digits Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python #!/usr/bin/python n = int(input()) #(n - 7*y) / 4 = x for y in reversed(range(1, n//7+1)): v = n - 7 * y if v > 0 and v % 4 == 0: print(v//4*"4" + y*"7") break else: print(-1) ```
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,622,922,101
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
216
0
import sys def get_ints(): return map(int, sys.stdin.readline().strip().split()) a,b = get_ints() c = a * b // 2 if c % 2== 0: print(c) else: pass
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 import sys def get_ints(): return map(int, sys.stdin.readline().strip().split()) a,b = get_ints() c = a * b // 2 if c % 2== 0: print(c) else: pass ```
0