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
697
A
Pineapple Incident
PROGRAMMING
900
[ "implementation", "math" ]
null
null
Ted has a pineapple. This pineapple is able to bark like a bulldog! At time *t* (in seconds) it barks for the first time. Then every *s* seconds after it, it barks twice with 1 second interval. Thus it barks at times *t*, *t*<=+<=*s*, *t*<=+<=*s*<=+<=1, *t*<=+<=2*s*, *t*<=+<=2*s*<=+<=1, etc. Barney woke up in the morn...
The first and only line of input contains three integers *t*, *s* and *x* (0<=≤<=*t*,<=*x*<=≤<=109, 2<=≤<=*s*<=≤<=109) — the time the pineapple barks for the first time, the pineapple barking interval, and the time Barney wants to eat the pineapple respectively.
Print a single "YES" (without quotes) if the pineapple will bark at time *x* or a single "NO" (without quotes) otherwise in the only line of output.
[ "3 10 4\n", "3 10 3\n", "3 8 51\n", "3 8 52\n" ]
[ "NO\n", "YES\n", "YES\n", "YES\n" ]
In the first and the second sample cases pineapple will bark at moments 3, 13, 14, ..., so it won't bark at the moment 4 and will bark at the moment 3. In the third and fourth sample cases pineapple will bark at moments 3, 11, 12, 19, 20, 27, 28, 35, 36, 43, 44, 51, 52, 59, ..., so it will bark at both moments 51 and ...
500
[ { "input": "3 10 4", "output": "NO" }, { "input": "3 10 3", "output": "YES" }, { "input": "3 8 51", "output": "YES" }, { "input": "3 8 52", "output": "YES" }, { "input": "456947336 740144 45", "output": "NO" }, { "input": "33 232603 599417964", "ou...
1,525,513,301
101
Python 3
WRONG_ANSWER
TESTS
3
62
7,065,600
t, s, x = map(int, input().split()) if t <= x and (x - t) % s == 0: print("YES") else: print("NO")
Title: Pineapple Incident Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ted has a pineapple. This pineapple is able to bark like a bulldog! At time *t* (in seconds) it barks for the first time. Then every *s* seconds after it, it barks twice with 1 second interval. Thus it barks at times...
```python t, s, x = map(int, input().split()) if t <= x and (x - t) % s == 0: print("YES") else: print("NO") ```
0
231
A
Team
PROGRAMMING
800
[ "brute force", "greedy" ]
null
null
One day three best friends Petya, Vasya and Tonya decided to form a team and take part in programming contests. Participants are usually offered several problems during programming contests. Long before the start the friends decided that they will implement a problem if at least two of them are sure about the solution....
The first input line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of problems in the contest. Then *n* lines contain three integers each, each integer is either 0 or 1. If the first number in the line equals 1, then Petya is sure about the problem's solution, otherwise he isn't sure. The second numbe...
Print a single integer — the number of problems the friends will implement on the contest.
[ "3\n1 1 0\n1 1 1\n1 0 0\n", "2\n1 0 0\n0 1 1\n" ]
[ "2\n", "1\n" ]
In the first sample Petya and Vasya are sure that they know how to solve the first problem and all three of them know how to solve the second problem. That means that they will write solutions for these problems. Only Petya is sure about the solution for the third problem, but that isn't enough, so the friends won't ta...
500
[ { "input": "3\n1 1 0\n1 1 1\n1 0 0", "output": "2" }, { "input": "2\n1 0 0\n0 1 1", "output": "1" }, { "input": "1\n1 0 0", "output": "0" }, { "input": "2\n1 0 0\n1 1 1", "output": "1" }, { "input": "5\n1 0 0\n0 1 0\n1 1 1\n0 0 1\n0 0 0", "output": "1" }, ...
1,696,922,647
2,147,483,647
Python 3
OK
TESTS
21
92
0
ProblemCount = int(input()) AcceptedSolutions = 0 for i in range(ProblemCount): Problems = input().split(" ") Votes = 0 for Vote in Problems: if Vote == "1": Votes += 1 if Votes >= 2: AcceptedSolutions += 1 print(AcceptedSolutions)
Title: Team Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day three best friends Petya, Vasya and Tonya decided to form a team and take part in programming contests. Participants are usually offered several problems during programming contests. Long before the start the friends decid...
```python ProblemCount = int(input()) AcceptedSolutions = 0 for i in range(ProblemCount): Problems = input().split(" ") Votes = 0 for Vote in Problems: if Vote == "1": Votes += 1 if Votes >= 2: AcceptedSolutions += 1 print(AcceptedSolutions) ```
3
144
A
Arrival of the General
PROGRAMMING
800
[ "implementation" ]
null
null
A Ministry for Defense sent a general to inspect the Super Secret Military Squad under the command of the Colonel SuperDuper. Having learned the news, the colonel ordered to all *n* squad soldiers to line up on the parade ground. By the military charter the soldiers should stand in the order of non-increasing of their...
The first input line contains the only integer *n* (2<=≤<=*n*<=≤<=100) which represents the number of soldiers in the line. The second line contains integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100) the values of the soldiers' heights in the order of soldiers' heights' increasing in the order from the beginnin...
Print the only integer — the minimum number of seconds the colonel will need to form a line-up the general will like.
[ "4\n33 44 11 22\n", "7\n10 10 58 31 63 40 76\n" ]
[ "2\n", "10\n" ]
In the first sample the colonel will need to swap the first and second soldier and then the third and fourth soldier. That will take 2 seconds. The resulting position of the soldiers is (44, 33, 22, 11). In the second sample the colonel may swap the soldiers in the following sequence: 1. (10, 10, 58, 31, 63, 40, 76)...
500
[ { "input": "4\n33 44 11 22", "output": "2" }, { "input": "7\n10 10 58 31 63 40 76", "output": "10" }, { "input": "2\n88 89", "output": "1" }, { "input": "5\n100 95 100 100 88", "output": "0" }, { "input": "7\n48 48 48 48 45 45 45", "output": "0" }, { "...
1,683,810,807
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
92
0
t=int(input()) l=list(map(int,input().split())) s=0 ma=0 mi=0 m2=min(l) for i in range(len(l)): ma=l.index(max(l)) if l[i]==m2: mi=i s=ma+t-1-mi print(s)
Title: Arrival of the General Time Limit: None seconds Memory Limit: None megabytes Problem Description: A Ministry for Defense sent a general to inspect the Super Secret Military Squad under the command of the Colonel SuperDuper. Having learned the news, the colonel ordered to all *n* squad soldiers to line up on t...
```python t=int(input()) l=list(map(int,input().split())) s=0 ma=0 mi=0 m2=min(l) for i in range(len(l)): ma=l.index(max(l)) if l[i]==m2: mi=i s=ma+t-1-mi print(s) ```
0
421
A
Pasha and Hamsters
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
Pasha has two hamsters: Arthur and Alexander. Pasha put *n* apples in front of them. Pasha knows which apples Arthur likes. Similarly, Pasha knows which apples Alexander likes. Pasha doesn't want any conflict between the hamsters (as they may like the same apple), so he decided to distribute the apples between the hams...
The first line contains integers *n*, *a*, *b* (1<=≤<=*n*<=≤<=100; 1<=≤<=*a*,<=*b*<=≤<=*n*) — the number of apples Pasha has, the number of apples Arthur likes and the number of apples Alexander likes, correspondingly. The next line contains *a* distinct integers — the numbers of the apples Arthur likes. The next line...
Print *n* characters, each of them equals either 1 or 2. If the *i*-h character equals 1, then the *i*-th apple should be given to Arthur, otherwise it should be given to Alexander. If there are multiple correct answers, you are allowed to print any of them.
[ "4 2 3\n1 2\n2 3 4\n", "5 5 2\n3 4 1 2 5\n2 3\n" ]
[ "1 1 2 2\n", "1 1 1 1 1\n" ]
none
500
[ { "input": "4 2 3\n1 2\n2 3 4", "output": "1 1 2 2" }, { "input": "5 5 2\n3 4 1 2 5\n2 3", "output": "1 1 1 1 1" }, { "input": "100 69 31\n1 3 4 5 6 7 8 9 10 11 12 14 15 16 17 18 19 20 21 24 26 27 29 31 37 38 39 40 44 46 48 49 50 51 53 55 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 72 7...
1,607,388,880
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
2
108
307,200
n,a,b=map(int,input().split()) a_likes=list(map(int,input().strip().split())) b_likes=list(map(int,input().strip().split())) a_likes_set=set(a_likes) b_likes_set=set(b_likes) if a_likes_set & b_likes_set: common=list(a_likes_set & b_likes_set) for i in range(1,n+1): if i in a_likes or i in common: ...
Title: Pasha and Hamsters Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha has two hamsters: Arthur and Alexander. Pasha put *n* apples in front of them. Pasha knows which apples Arthur likes. Similarly, Pasha knows which apples Alexander likes. Pasha doesn't want any conflict between...
```python n,a,b=map(int,input().split()) a_likes=list(map(int,input().strip().split())) b_likes=list(map(int,input().strip().split())) a_likes_set=set(a_likes) b_likes_set=set(b_likes) if a_likes_set & b_likes_set: common=list(a_likes_set & b_likes_set) for i in range(1,n+1): if i in a_likes or i in ...
-1
39
B
Company Income Growth
PROGRAMMING
1,300
[ "greedy" ]
B. Company Income Growth
2
64
Petya works as a PR manager for a successful Berland company BerSoft. He needs to prepare a presentation on the company income growth since 2001 (the year of its founding) till now. Petya knows that in 2001 the company income amounted to *a*1 billion bourles, in 2002 — to *a*2 billion, ..., and in the current (2000<=+<...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). The next line contains *n* integers *a**i* (<=-<=100<=≤<=*a**i*<=≤<=100). The number *a**i* determines the income of BerSoft company in the (2000<=+<=*i*)-th year. The numbers in the line are separated by spaces.
Output *k* — the maximum possible length of a perfect sequence. In the next line output the sequence of years *y*1, *y*2, ..., *y**k*. Separate the numbers by spaces. If the answer is not unique, output any. If no solution exist, output one number 0.
[ "10\n-2 1 1 3 2 3 4 -10 -2 5\n", "3\n-1 -2 -3\n" ]
[ "5\n2002 2005 2006 2007 2010\n", "0\n" ]
none
0
[ { "input": "10\n-2 1 1 3 2 3 4 -10 -2 5", "output": "5\n2002 2005 2006 2007 2010 " }, { "input": "3\n-1 -2 -3", "output": "0" }, { "input": "1\n0", "output": "0" }, { "input": "1\n0", "output": "0" }, { "input": "2\n-1 1", "output": "1\n2002 " }, { "in...
1,582,375,003
2,147,483,647
Python 3
OK
TESTS
35
218
0
n = int(input()) a = list(map(int, input().split())) j = 1 ans = [] for i in range(len(a)): if a[i] == j: ans.append(2000 + i + 1) j += 1 if len(ans) == 0: print(0) else: print(len(ans)) print(*ans)
Title: Company Income Growth Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Petya works as a PR manager for a successful Berland company BerSoft. He needs to prepare a presentation on the company income growth since 2001 (the year of its founding) till now. Petya knows that in 2001 the company...
```python n = int(input()) a = list(map(int, input().split())) j = 1 ans = [] for i in range(len(a)): if a[i] == j: ans.append(2000 + i + 1) j += 1 if len(ans) == 0: print(0) else: print(len(ans)) print(*ans) ```
3.9455
380
A
Sereja and Prefixes
PROGRAMMING
1,600
[ "binary search", "brute force" ]
null
null
Sereja loves number sequences very much. That's why he decided to make himself a new one following a certain algorithm. Sereja takes a blank piece of paper. Then he starts writing out the sequence in *m* stages. Each time he either adds a new number to the end of the sequence or takes *l* first elements of the current...
The first line contains integer *m* (1<=≤<=*m*<=≤<=105) — the number of stages to build a sequence. Next *m* lines contain the description of the stages in the order they follow. The first number in the line is a type of stage (1 or 2). Type 1 means adding one number to the end of the sequence, in this case the line ...
Print the elements that Sereja is interested in, in the order in which their numbers occur in the input.
[ "6\n1 1\n1 2\n2 2 1\n1 3\n2 5 2\n1 4\n16\n1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16\n" ]
[ "1 2 1 2 3 1 2 1 2 3 1 2 1 2 3 4\n" ]
none
500
[ { "input": "6\n1 1\n1 2\n2 2 1\n1 3\n2 5 2\n1 4\n16\n1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16", "output": "1 2 1 2 3 1 2 1 2 3 1 2 1 2 3 4" }, { "input": "2\n1 33085\n1 44638\n2\n1 2", "output": "33085 44638" }, { "input": "10\n1 57757\n1 45234\n1 80807\n1 38496\n1 27469\n1 42645\n1 72643\...
1,579,418,377
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
78
307,200
from bisect import bisect_left def fun(ind,alr,ll,sll): if ind in alr: return alr[ind] k = bisect_left(sll,ind) md = ll[k] return fun(ind%md,alr,ll,sll) pos = {} m = int(input()) l = 0 cp = [] cpl = [] for _ in range(0,m): q = [int(i) for i in input().split()] if q[0] == 1:...
Title: Sereja and Prefixes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja loves number sequences very much. That's why he decided to make himself a new one following a certain algorithm. Sereja takes a blank piece of paper. Then he starts writing out the sequence in *m* stages. Ea...
```python from bisect import bisect_left def fun(ind,alr,ll,sll): if ind in alr: return alr[ind] k = bisect_left(sll,ind) md = ll[k] return fun(ind%md,alr,ll,sll) pos = {} m = int(input()) l = 0 cp = [] cpl = [] for _ in range(0,m): q = [int(i) for i in input().split()] if ...
0
762
A
k-th divisor
PROGRAMMING
1,400
[ "math", "number theory" ]
null
null
You are given two integers *n* and *k*. Find *k*-th smallest divisor of *n*, or report that it doesn't exist. Divisor of *n* is any such natural number, that *n* can be divided by it without remainder.
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=1015, 1<=≤<=*k*<=≤<=109).
If *n* has less than *k* divisors, output -1. Otherwise, output the *k*-th smallest divisor of *n*.
[ "4 2\n", "5 3\n", "12 5\n" ]
[ "2\n", "-1\n", "6\n" ]
In the first example, number 4 has three divisors: 1, 2 and 4. The second one is 2. In the second example, number 5 has only two divisors: 1 and 5. The third divisor doesn't exist, so the answer is -1.
0
[ { "input": "4 2", "output": "2" }, { "input": "5 3", "output": "-1" }, { "input": "12 5", "output": "6" }, { "input": "1 1", "output": "1" }, { "input": "866421317361600 26880", "output": "866421317361600" }, { "input": "866421317361600 26881", "ou...
1,599,417,466
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
4
2,000
614,400
from _collections import OrderedDict n,k=map(int,input().split());r=[] for i in range(1,int(n**.5)+1): if n%i==0: r.append(i) r.append(n//i) r=sorted(OrderedDict.fromkeys(r)) print(-1 if k>len(r) else r[k-1])
Title: k-th divisor Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two integers *n* and *k*. Find *k*-th smallest divisor of *n*, or report that it doesn't exist. Divisor of *n* is any such natural number, that *n* can be divided by it without remainder. Input Specificatio...
```python from _collections import OrderedDict n,k=map(int,input().split());r=[] for i in range(1,int(n**.5)+1): if n%i==0: r.append(i) r.append(n//i) r=sorted(OrderedDict.fromkeys(r)) print(-1 if k>len(r) else r[k-1]) ```
0
750
A
New Year and Hurry
PROGRAMMING
800
[ "binary search", "brute force", "implementation", "math" ]
null
null
Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem 1 is the easiest and problem *n* is the hardest. Limak knows it will take him 5·*i* minutes to solve th...
The only line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=10, 1<=≤<=*k*<=≤<=240) — the number of the problems in the contest and the number of minutes Limak needs to get to the party from his house.
Print one integer, denoting the maximum possible number of problems Limak can solve so that he could get to the party at midnight or earlier.
[ "3 222\n", "4 190\n", "7 1\n" ]
[ "2\n", "4\n", "7\n" ]
In the first sample, there are 3 problems and Limak needs 222 minutes to get to the party. The three problems require 5, 10 and 15 minutes respectively. Limak can spend 5 + 10 = 15 minutes to solve first two problems. Then, at 20:15 he can leave his house to get to the party at 23:57 (after 222 minutes). In this scenar...
500
[ { "input": "3 222", "output": "2" }, { "input": "4 190", "output": "4" }, { "input": "7 1", "output": "7" }, { "input": "10 135", "output": "6" }, { "input": "10 136", "output": "5" }, { "input": "1 1", "output": "1" }, { "input": "1 240", ...
1,685,164,680
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
31
0
n, k = map(int, input().split()) problems_solved = 0 time_left = 240 - k time_taken = 0 while time_taken <= time_left: if time_taken + (5 * problems_solved + 1) < time_left and problems_solved + 1 <= n: problems_solved += 1 time_taken += (5 * problems_solved) print(problems_solved)
Title: New Year and Hurry Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is going to participate in a contest on the last day of the 2016. The contest will start at 20:00 and will last four hours, exactly until midnight. There will be *n* problems, sorted by difficulty, i.e. problem...
```python n, k = map(int, input().split()) problems_solved = 0 time_left = 240 - k time_taken = 0 while time_taken <= time_left: if time_taken + (5 * problems_solved + 1) < time_left and problems_solved + 1 <= n: problems_solved += 1 time_taken += (5 * problems_solved) print(problems_solved) ```
0
266
B
Queue at the School
PROGRAMMING
800
[ "constructive algorithms", "graph matchings", "implementation", "shortest paths" ]
null
null
During the break the schoolchildren, boys and girls, formed a queue of *n* people in the canteen. Initially the children stood in the order they entered the canteen. However, after a while the boys started feeling awkward for standing in front of the girls in the queue and they started letting the girls move forward ea...
The first line contains two integers *n* and *t* (1<=≤<=*n*,<=*t*<=≤<=50), which represent the number of children in the queue and the time after which the queue will transform into the arrangement you need to find. The next line contains string *s*, which represents the schoolchildren's initial arrangement. If the *...
Print string *a*, which describes the arrangement after *t* seconds. If the *i*-th position has a boy after the needed time, then the *i*-th character *a* must equal "B", otherwise it must equal "G".
[ "5 1\nBGGBG\n", "5 2\nBGGBG\n", "4 1\nGGGB\n" ]
[ "GBGGB\n", "GGBGB\n", "GGGB\n" ]
none
500
[ { "input": "5 1\nBGGBG", "output": "GBGGB" }, { "input": "5 2\nBGGBG", "output": "GGBGB" }, { "input": "4 1\nGGGB", "output": "GGGB" }, { "input": "2 1\nBB", "output": "BB" }, { "input": "2 1\nBG", "output": "GB" }, { "input": "6 2\nBBGBBG", "outpu...
1,697,536,935
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
60
0
#266B:Queue at the School n,t=map(int,input().split()) s=input() ans=[] for i in range(len(s)): ans.append(s[i]) for j in range(t): for i in range(len(s)-1): if s[i]=="B" and s[i+1]=="G": ans[i]="G" ans[i+1]="B" for i in range(len(s)): print(ans[i],end="")
Title: Queue at the School Time Limit: None seconds Memory Limit: None megabytes Problem Description: During the break the schoolchildren, boys and girls, formed a queue of *n* people in the canteen. Initially the children stood in the order they entered the canteen. However, after a while the boys started feeling a...
```python #266B:Queue at the School n,t=map(int,input().split()) s=input() ans=[] for i in range(len(s)): ans.append(s[i]) for j in range(t): for i in range(len(s)-1): if s[i]=="B" and s[i+1]=="G": ans[i]="G" ans[i+1]="B" for i in range(len(s)): print(ans[i],end="...
0
811
A
Vladik and Courtesy
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
At regular competition Vladik and Valera won *a* and *b* candies respectively. Vladik offered 1 his candy to Valera. After that Valera gave Vladik 2 his candies, so that no one thought that he was less generous. Vladik for same reason gave 3 candies to Valera in next turn. More formally, the guys take turns giving eac...
Single line of input data contains two space-separated integers *a*, *b* (1<=≤<=*a*,<=*b*<=≤<=109) — number of Vladik and Valera candies respectively.
Pring a single line "Vladik’’ in case, if Vladik first who can’t give right amount of candy, or "Valera’’ otherwise.
[ "1 1\n", "7 6\n" ]
[ "Valera\n", "Vladik\n" ]
Illustration for first test case: <img class="tex-graphics" src="https://espresso.codeforces.com/ad9b7d0e481208de8e3a585aa1d96b9e1dda4fd7.png" style="max-width: 100.0%;max-height: 100.0%;"/> Illustration for second test case: <img class="tex-graphics" src="https://espresso.codeforces.com/9f4836d2ccdffaee5a63898e5d4e...
500
[ { "input": "1 1", "output": "Valera" }, { "input": "7 6", "output": "Vladik" }, { "input": "25 38", "output": "Vladik" }, { "input": "8311 2468", "output": "Valera" }, { "input": "250708 857756", "output": "Vladik" }, { "input": "957985574 24997558", ...
1,534,007,188
2,147,483,647
Python 3
OK
TESTS
42
109
0
a, b = map(int, input().split()) temp = int(b ** 0.5) A = int(a ** 0.5) B = temp - (temp * (temp + 1) > b) print(('Vladik', 'Valera')[A > B])
Title: Vladik and Courtesy Time Limit: None seconds Memory Limit: None megabytes Problem Description: At regular competition Vladik and Valera won *a* and *b* candies respectively. Vladik offered 1 his candy to Valera. After that Valera gave Vladik 2 his candies, so that no one thought that he was less generous. Vla...
```python a, b = map(int, input().split()) temp = int(b ** 0.5) A = int(a ** 0.5) B = temp - (temp * (temp + 1) > b) print(('Vladik', 'Valera')[A > B]) ```
3
637
B
Chat Order
PROGRAMMING
1,200
[ "*special", "binary search", "constructive algorithms", "data structures", "sortings" ]
null
null
Polycarp is a big lover of killing time in social networks. A page with a chatlist in his favourite network is made so that when a message is sent to some friend, his friend's chat rises to the very top of the page. The relative order of the other chats doesn't change. If there was no chat with this friend before, then...
The first line contains integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of Polycarpus' messages. Next *n* lines enlist the message recipients in the order in which the messages were sent. The name of each participant is a non-empty sequence of lowercase English letters of length at most 10.
Print all the recipients to who Polycarp talked to in the order of chats with them, from top to bottom.
[ "4\nalex\nivan\nroman\nivan\n", "8\nalina\nmaria\nekaterina\ndarya\ndarya\nekaterina\nmaria\nalina\n" ]
[ "ivan\nroman\nalex\n", "alina\nmaria\nekaterina\ndarya\n" ]
In the first test case Polycarpus first writes to friend by name "alex", and the list looks as follows: 1. alex Then Polycarpus writes to friend by name "ivan" and the list looks as follows: 1. ivan 1. alex Polycarpus writes the third message to friend by name "roman" and the list looks as follows: 1. roman 1...
1,000
[ { "input": "4\nalex\nivan\nroman\nivan", "output": "ivan\nroman\nalex" }, { "input": "8\nalina\nmaria\nekaterina\ndarya\ndarya\nekaterina\nmaria\nalina", "output": "alina\nmaria\nekaterina\ndarya" }, { "input": "1\nwdi", "output": "wdi" }, { "input": "2\nypg\nypg", "outpu...
1,656,317,114
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
4,198,400
di={} for i in range (int(input())): x=input() if x in di: di[x]+=1 else: di[x]=1 print(sorted(di.values(),reverse=True)) for i in di.keys(): print(i)
Title: Chat Order Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp is a big lover of killing time in social networks. A page with a chatlist in his favourite network is made so that when a message is sent to some friend, his friend's chat rises to the very top of the page. The rela...
```python di={} for i in range (int(input())): x=input() if x in di: di[x]+=1 else: di[x]=1 print(sorted(di.values(),reverse=True)) for i in di.keys(): print(i) ```
0
242
B
Big Segment
PROGRAMMING
1,100
[ "implementation", "sortings" ]
null
null
A coordinate line has *n* segments, the *i*-th segment starts at the position *l**i* and ends at the position *r**i*. We will denote such a segment as [*l**i*,<=*r**i*]. You have suggested that one of the defined segments covers all others. In other words, there is such segment in the given set, which contains all oth...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of segments. Next *n* lines contain the descriptions of the segments. The *i*-th line contains two space-separated integers *l**i*,<=*r**i* (1<=≤<=*l**i*<=≤<=*r**i*<=≤<=109) — the borders of the *i*-th segment. It is guaranteed that no two segments c...
Print a single integer — the number of the segment that covers all other segments in the set. If there's no solution, print -1. The segments are numbered starting from 1 in the order in which they appear in the input.
[ "3\n1 1\n2 2\n3 3\n", "6\n1 5\n2 3\n1 10\n7 10\n7 7\n10 10\n" ]
[ "-1\n", "3\n" ]
none
1,000
[ { "input": "3\n1 1\n2 2\n3 3", "output": "-1" }, { "input": "6\n1 5\n2 3\n1 10\n7 10\n7 7\n10 10", "output": "3" }, { "input": "4\n1 5\n2 2\n2 4\n2 5", "output": "1" }, { "input": "5\n3 3\n1 3\n2 2\n2 3\n1 2", "output": "2" }, { "input": "7\n7 7\n8 8\n3 7\n1 6\n1 ...
1,669,272,624
2,147,483,647
PyPy 3-64
OK
TESTS
45
1,496
31,539,200
from collections import Counter as cnt l,x=[],[] for pratyush in range(int(input())): a,b=list(map(int,input().split())) x.append([a,b]) l.append(b-a) c,m=cnt(l),max(l) if c[m]==1: r,f=l.index(m),0 a,b=x[r] for i,j in x: if a<=i and b>=j: continue else: ...
Title: Big Segment Time Limit: None seconds Memory Limit: None megabytes Problem Description: A coordinate line has *n* segments, the *i*-th segment starts at the position *l**i* and ends at the position *r**i*. We will denote such a segment as [*l**i*,<=*r**i*]. You have suggested that one of the defined segments ...
```python from collections import Counter as cnt l,x=[],[] for pratyush in range(int(input())): a,b=list(map(int,input().split())) x.append([a,b]) l.append(b-a) c,m=cnt(l),max(l) if c[m]==1: r,f=l.index(m),0 a,b=x[r] for i,j in x: if a<=i and b>=j: continue ...
3
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,611,659,527
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
92
0
a,i=list(map(int,input().split())) if(a>>i & 1==1): print('true') else: print('false')
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 a,i=list(map(int,input().split())) if(a>>i & 1==1): print('true') else: print('false') ```
0
519
B
A and B and Compilation Errors
PROGRAMMING
1,100
[ "data structures", "implementation", "sortings" ]
null
null
A and B are preparing themselves for programming contests. B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code. Initially, the compiler displayed *n* compilation errors, each of them is represented as a positive integer. After some effort, B managed to fix...
The first line of the input contains integer *n* (3<=≤<=*n*<=≤<=105) — the initial number of compilation errors. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the errors the compiler displayed for the first time. The third line contains *n*<=-<=1 space-sepa...
Print two numbers on a single line: the numbers of the compilation errors that disappeared after B made the first and the second correction, respectively.
[ "5\n1 5 8 123 7\n123 7 5 1\n5 1 7\n", "6\n1 4 3 3 5 7\n3 7 5 4 3\n4 3 7 5\n" ]
[ "8\n123\n", "1\n3\n" ]
In the first test sample B first corrects the error number 8, then the error number 123. In the second test sample B first corrects the error number 1, then the error number 3. Note that if there are multiple errors with the same number, B can correct only one of them in one step.
1,000
[ { "input": "5\n1 5 8 123 7\n123 7 5 1\n5 1 7", "output": "8\n123" }, { "input": "6\n1 4 3 3 5 7\n3 7 5 4 3\n4 3 7 5", "output": "1\n3" }, { "input": "3\n1 2 3\n3 2\n2", "output": "1\n3" }, { "input": "10\n460626451 802090732 277246428 661369649 388684428 784303821 376287098 6...
1,676,884,388
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
3
46
0
n = int(input()) c1 = input().split() c2 = input().split() c3 = input().split() for i in c3: if i in c1: del c1[c1.index(i)] for i in c1: print(i)
Title: A and B and Compilation Errors Time Limit: None seconds Memory Limit: None megabytes Problem Description: A and B are preparing themselves for programming contests. B loves to debug his code. But before he runs the solution and starts debugging, he has to first compile the code. Initially, the compiler disp...
```python n = int(input()) c1 = input().split() c2 = input().split() c3 = input().split() for i in c3: if i in c1: del c1[c1.index(i)] for i in c1: print(i) ```
0
186
A
Comparing Strings
PROGRAMMING
1,100
[ "implementation", "strings" ]
null
null
Some dwarves that are finishing the StUDY (State University for Dwarven Youngsters) Bachelor courses, have been told "no genome, no degree". That means that all dwarves should write a thesis on genome. Dwarven genome is far from simple. It is represented by a string that consists of lowercase Latin letters. Dwarf Mish...
The first line contains the first dwarf's genome: a non-empty string, consisting of lowercase Latin letters. The second line contains the second dwarf's genome: a non-empty string, consisting of lowercase Latin letters. The number of letters in each genome doesn't exceed 105. It is guaranteed that the strings that co...
Print "YES", if the dwarves belong to the same race. Otherwise, print "NO".
[ "ab\nba\n", "aa\nab\n" ]
[ "YES\n", "NO\n" ]
- First example: you can simply swap two letters in string "ab". So we get "ba". - Second example: we can't change string "aa" into string "ab", because "aa" does not contain letter "b".
500
[ { "input": "ab\nba", "output": "YES" }, { "input": "aa\nab", "output": "NO" }, { "input": "a\nza", "output": "NO" }, { "input": "vvea\nvvae", "output": "YES" }, { "input": "rtfabanpc\natfabrnpc", "output": "YES" }, { "input": "mt\ntm", "output": "Y...
1,568,900,653
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
30
342
2,457,600
s1=input() s2=input() def func(): if len(s1)!=len(s2): return "NO" m={} for item in s1: if item in m: m[item]+=1 else: m[item]=1 for item in s2: if item in m: m[item]-=1 else: return "NO" x=any([x for x in m.values() if x]) if x: return "NO" return "YES" print(func())
Title: Comparing Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Some dwarves that are finishing the StUDY (State University for Dwarven Youngsters) Bachelor courses, have been told "no genome, no degree". That means that all dwarves should write a thesis on genome. Dwarven genome ...
```python s1=input() s2=input() def func(): if len(s1)!=len(s2): return "NO" m={} for item in s1: if item in m: m[item]+=1 else: m[item]=1 for item in s2: if item in m: m[item]-=1 else: return "NO" x=any([x for x in m.values() if x]) if x: return "NO" return "YES" print(func()) ```
0
219
A
k-String
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
A string is called a *k*-string if it can be represented as *k* concatenated copies of some string. For example, the string "aabaabaabaab" is at the same time a 1-string, a 2-string and a 4-string, but it is not a 3-string, a 5-string, or a 6-string and so on. Obviously any string is a 1-string. You are given a string...
The first input line contains integer *k* (1<=≤<=*k*<=≤<=1000). The second line contains *s*, all characters in *s* are lowercase English letters. The string length *s* satisfies the inequality 1<=≤<=|*s*|<=≤<=1000, where |*s*| is the length of string *s*.
Rearrange the letters in string *s* in such a way that the result is a *k*-string. Print the result on a single output line. If there are multiple solutions, print any of them. If the solution doesn't exist, print "-1" (without quotes).
[ "2\naazz\n", "3\nabcabcabz\n" ]
[ "azaz\n", "-1\n" ]
none
500
[ { "input": "2\naazz", "output": "azaz" }, { "input": "3\nabcabcabz", "output": "-1" }, { "input": "1\na", "output": "a" }, { "input": "2\nabba", "output": "abab" }, { "input": "2\naaab", "output": "-1" }, { "input": "7\nabacaba", "output": "-1" }...
1,628,685,852
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
9
154
20,172,800
dic={} n=int(input()) data=input() for i in data: try: dic[i]+=1 except: dic[i]=1 flag=0 for val in dic.values(): if val!=n: flag=1 print(-1) break if flag==0: data=("".join(dic.keys())) print(data*n)
Title: k-String Time Limit: None seconds Memory Limit: None megabytes Problem Description: A string is called a *k*-string if it can be represented as *k* concatenated copies of some string. For example, the string "aabaabaabaab" is at the same time a 1-string, a 2-string and a 4-string, but it is not a 3-string, a ...
```python dic={} n=int(input()) data=input() for i in data: try: dic[i]+=1 except: dic[i]=1 flag=0 for val in dic.values(): if val!=n: flag=1 print(-1) break if flag==0: data=("".join(dic.keys())) print(data*n) ```
0
478
B
Random Teams
PROGRAMMING
1,300
[ "combinatorics", "constructive algorithms", "greedy", "math" ]
null
null
*n* participants of the competition were split into *m* teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends. Your task is to write a program that will find the minimum and the maximum number of pairs of friends that coul...
The only line of input contains two integers *n* and *m*, separated by a single space (1<=≤<=*m*<=≤<=*n*<=≤<=109) — the number of participants and the number of teams respectively.
The only line of the output should contain two integers *k**min* and *k**max* — the minimum possible number of pairs of friends and the maximum possible number of pairs of friends respectively.
[ "5 1\n", "3 2\n", "6 3\n" ]
[ "10 10\n", "1 1\n", "3 6\n" ]
In the first sample all the participants get into one team, so there will be exactly ten pairs of friends. In the second sample at any possible arrangement one team will always have two participants and the other team will always have one participant. Thus, the number of pairs of friends will always be equal to one. ...
1,000
[ { "input": "5 1", "output": "10 10" }, { "input": "3 2", "output": "1 1" }, { "input": "6 3", "output": "3 6" }, { "input": "5 3", "output": "2 3" }, { "input": "10 2", "output": "20 36" }, { "input": "10 6", "output": "4 10" }, { "input": ...
1,658,752,843
2,147,483,647
Python 3
OK
TESTS
26
31
0
from math import comb n = input().split() part = int(n[0]) teams = int(n[1]) num = part-(teams - 1) maxx = 0 minn = 0 if num >= 2: maxx = comb(num, 2) repeat = part / teams reminder = part % teams num3 = int(part/teams) if num3 < 2 and reminder>1: minn = comb(num3+1,2)*reminder else: minn...
Title: Random Teams Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* participants of the competition were split into *m* teams in some manner so that each team has at least one participant. After the competition each pair of participants from the same team became friends. Your task is ...
```python from math import comb n = input().split() part = int(n[0]) teams = int(n[1]) num = part-(teams - 1) maxx = 0 minn = 0 if num >= 2: maxx = comb(num, 2) repeat = part / teams reminder = part % teams num3 = int(part/teams) if num3 < 2 and reminder>1: minn = comb(num3+1,2)*reminder else:...
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,680,428,642
2,147,483,647
Python 3
OK
TESTS
37
62
307,200
n,m=map(int,input().split()) d={} for i in range(m): k,v=map(str,input().split()) d[k]=v l=list(map(str,input().split())) for i in l: j=d[i] if len(j)<len(i): print(j) else: print(i)
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()) d={} for i in range(m): k,v=map(str,input().split()) d[k]=v l=list(map(str,input().split())) for i in l: j=d[i] if len(j)<len(i): print(j) else: print(i) ```
3
591
A
Wizards' Duel
PROGRAMMING
900
[ "implementation", "math" ]
null
null
Harry Potter and He-Who-Must-Not-Be-Named engaged in a fight to the death once again. This time they are located at opposite ends of the corridor of length *l*. Two opponents simultaneously charge a deadly spell in the enemy. We know that the impulse of Harry's magic spell flies at a speed of *p* meters per second, and...
The first line of the input contains a single integer *l* (1<=≤<=*l*<=≤<=1<=000) — the length of the corridor where the fight takes place. The second line contains integer *p*, the third line contains integer *q* (1<=≤<=*p*,<=*q*<=≤<=500) — the speeds of magical impulses for Harry Potter and He-Who-Must-Not-Be-Named, ...
Print a single real number — the distance from the end of the corridor, where Harry is located, to the place of the second meeting of the spell impulses. Your answer will be considered correct if its absolute or relative error will not exceed 10<=-<=4. Namely: let's assume that your answer equals *a*, and the answer ...
[ "100\n50\n50\n", "199\n60\n40\n" ]
[ "50\n", "119.4\n" ]
In the first sample the speeds of the impulses are equal, so both of their meetings occur exactly in the middle of the corridor.
500
[ { "input": "100\n50\n50", "output": "50" }, { "input": "199\n60\n40", "output": "119.4" }, { "input": "1\n1\n1", "output": "0.5" }, { "input": "1\n1\n500", "output": "0.001996007984" }, { "input": "1\n500\n1", "output": "0.998003992" }, { "input": "1\n...
1,556,872,958
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
93
0
s = float(input()) x = float(input()) y = float(input()) print("%.4f"%float(s/(x+y)*max(x,y)))
Title: Wizards' Duel Time Limit: None seconds Memory Limit: None megabytes Problem Description: Harry Potter and He-Who-Must-Not-Be-Named engaged in a fight to the death once again. This time they are located at opposite ends of the corridor of length *l*. Two opponents simultaneously charge a deadly spell in the en...
```python s = float(input()) x = float(input()) y = float(input()) print("%.4f"%float(s/(x+y)*max(x,y))) ```
0
765
C
Table Tennis Game 2
PROGRAMMING
1,200
[ "math" ]
null
null
Misha and Vanya have played several table tennis sets. Each set consists of several serves, each serve is won by one of the players, he receives one point and the loser receives nothing. Once one of the players scores exactly *k* points, the score is reset and a new set begins. Across all the sets Misha scored *a* poi...
The first line contains three space-separated integers *k*, *a* and *b* (1<=≤<=*k*<=≤<=109, 0<=≤<=*a*,<=*b*<=≤<=109, *a*<=+<=*b*<=&gt;<=0).
If the situation is impossible, print a single number -1. Otherwise, print the maximum possible number of sets.
[ "11 11 5\n", "11 2 3\n" ]
[ "1\n", "-1\n" ]
Note that the rules of the game in this problem differ from the real table tennis game, for example, the rule of "balance" (the winning player has to be at least two points ahead to win a set) has no power within the present problem.
1,250
[ { "input": "11 11 5", "output": "1" }, { "input": "11 2 3", "output": "-1" }, { "input": "1 5 9", "output": "14" }, { "input": "2 3 3", "output": "2" }, { "input": "1 1000000000 1000000000", "output": "2000000000" }, { "input": "2 3 5", "output": "...
1,487,065,677
6,177
Python 3
CHALLENGED
CHALLENGES
9
62
4,608,000
k,a,b = list(map(int,input().split())) a1 = ( (a) // k ) b1 = ( (b) // k ) ans = a1 + b1 if( ans == 0 ): print("-1") else: print( ans )
Title: Table Tennis Game 2 Time Limit: None seconds Memory Limit: None megabytes Problem Description: Misha and Vanya have played several table tennis sets. Each set consists of several serves, each serve is won by one of the players, he receives one point and the loser receives nothing. Once one of the players scor...
```python k,a,b = list(map(int,input().split())) a1 = ( (a) // k ) b1 = ( (b) // k ) ans = a1 + b1 if( ans == 0 ): print("-1") else: print( ans ) ```
-1
0
none
none
none
0
[ "none" ]
null
null
Slastyona and her loyal dog Pushok are playing a meaningless game that is indeed very interesting. The game consists of multiple rounds. Its rules are very simple: in each round, a natural number *k* is chosen. Then, the one who says (or barks) it faster than the other wins the round. After that, the winner's score is...
In the first string, the number of games *n* (1<=≤<=*n*<=≤<=350000) is given. Each game is represented by a pair of scores *a*, *b* (1<=≤<=*a*,<=*b*<=≤<=109) – the results of Slastyona and Pushok, correspondingly.
For each pair of scores, answer "Yes" if it's possible for a game to finish with given score, and "No" otherwise. You can output each letter in arbitrary case (upper or lower).
[ "6\n2 4\n75 45\n8 8\n16 16\n247 994\n1000000000 1000000\n" ]
[ "Yes\nYes\nYes\nNo\nNo\nYes\n" ]
First game might have been consisted of one round, in which the number 2 would have been chosen and Pushok would have won. The second game needs exactly two rounds to finish with such result: in the first one, Slastyona would have said the number 5, and in the second one, Pushok would have barked the number 3.
0
[ { "input": "6\n2 4\n75 45\n8 8\n16 16\n247 994\n1000000000 1000000", "output": "Yes\nYes\nYes\nNo\nNo\nYes" }, { "input": "3\n1 1\n8 27\n1000 1331", "output": "Yes\nNo\nNo" }, { "input": "1\n12004 18012002", "output": "Yes" }, { "input": "1\n3331 11095561", "output": "Yes...
1,501,430,097
4,797
Python 3
WRONG_ANSWER
PRETESTS
1
61
4,608,000
def bs(f, l, val): if(f==l-1): return f mid=(f+l)//2 if(mid**3>val):return bs(f,mid,val) return bs(mid,l,val) n=int(input()) for i in range(0,n): a,b=map(int,input().split()) t=a*b q=bs(1,10**6,t) if(q**3==t): print("YES") else: print("NO")
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Slastyona and her loyal dog Pushok are playing a meaningless game that is indeed very interesting. The game consists of multiple rounds. Its rules are very simple: in each round, a natural number *k* is chosen. Then, the one who ...
```python def bs(f, l, val): if(f==l-1): return f mid=(f+l)//2 if(mid**3>val):return bs(f,mid,val) return bs(mid,l,val) n=int(input()) for i in range(0,n): a,b=map(int,input().split()) t=a*b q=bs(1,10**6,t) if(q**3==t): print("YES") else: print("NO") ```
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,665,470,337
2,147,483,647
Python 3
OK
TESTS
35
92
0
a,b=input().split() c=int(a)*int(b) if(c%2==0): print(c//2) else: print((c-1)//2)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python a,b=input().split() c=int(a)*int(b) if(c%2==0): print(c//2) else: print((c-1)//2) ```
3.977
332
B
Maximum Absurdity
PROGRAMMING
1,500
[ "data structures", "dp", "implementation" ]
null
null
Reforms continue entering Berland. For example, during yesterday sitting the Berland Parliament approved as much as *n* laws (each law has been assigned a unique number from 1 to *n*). Today all these laws were put on the table of the President of Berland, G.W. Boosch, to be signed. This time mr. Boosch plans to sign ...
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=2·105, 0<=&lt;<=2*k*<=≤<=*n*) — the number of laws accepted by the parliament and the length of one segment in the law list, correspondingly. The next line contains *n* integers *x*1,<=*x*2,<=...,<=*x**n* — the absurdity of each law (1<=≤<=*x**i*<=≤<=109).
Print two integers *a*, *b* — the beginning of segments that mr. Boosch should choose. That means that the president signs laws with numbers from segments [*a*; *a*<=+<=*k*<=-<=1] and [*b*; *b*<=+<=*k*<=-<=1]. If there are multiple solutions, print the one with the minimum number *a*. If there still are multiple soluti...
[ "5 2\n3 6 1 1 6\n", "6 2\n1 1 1 1 1 1\n" ]
[ "1 4\n", "1 3\n" ]
In the first sample mr. Boosch signs laws with numbers from segments [1;2] and [4;5]. The total absurdity of the signed laws equals 3 + 6 + 1 + 6 = 16. In the second sample mr. Boosch signs laws with numbers from segments [1;2] and [3;4]. The total absurdity of the signed laws equals 1 + 1 + 1 + 1 = 4.
1,000
[ { "input": "5 2\n3 6 1 1 6", "output": "1 4" }, { "input": "6 2\n1 1 1 1 1 1", "output": "1 3" }, { "input": "6 2\n1 4 1 2 5 6", "output": "1 5" }, { "input": "4 1\n1 2 2 2", "output": "2 3" }, { "input": "6 3\n15 20 1 15 43 6", "output": "1 4" }, { "i...
1,595,894,404
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
8
2,000
21,811,200
n,k=map(int,input().split()) l=list(map(int,input().split())) ls=[] xs=0 for i in range(k): xs+=l[i] ls.append(xs) for i in range(k,n): xs+=l[i] ys=l[i-k] xs-=ys ls.append(xs) q=[] for i in range(k,len(ls)): while len(q) and q[-1][0]<ls[i]: q.pop(-1) q...
Title: Maximum Absurdity Time Limit: None seconds Memory Limit: None megabytes Problem Description: Reforms continue entering Berland. For example, during yesterday sitting the Berland Parliament approved as much as *n* laws (each law has been assigned a unique number from 1 to *n*). Today all these laws were put on...
```python n,k=map(int,input().split()) l=list(map(int,input().split())) ls=[] xs=0 for i in range(k): xs+=l[i] ls.append(xs) for i in range(k,n): xs+=l[i] ys=l[i-k] xs-=ys ls.append(xs) q=[] for i in range(k,len(ls)): while len(q) and q[-1][0]<ls[i]: q.pop(-1) ...
0
75
A
Life Without Zeros
PROGRAMMING
1,000
[ "implementation" ]
A. Life Without Zeros
2
256
Can you imagine our life if we removed all zeros from it? For sure we will have many problems. In this problem we will have a simple example if we removed all zeros from our life, it's the addition operation. Let's assume you are given this equation *a*<=+<=*b*<==<=*c*, where *a* and *b* are positive integers, and *c*...
The input will consist of two lines, the first line will contain the integer *a*, and the second line will contain the integer *b* which are in the equation as described above (1<=≤<=*a*,<=*b*<=≤<=109). There won't be any leading zeros in both. The value of *c* should be calculated as *c*<==<=*a*<=+<=*b*.
The output will be just one line, you should print "YES" if the equation will remain correct after removing all zeros, and print "NO" otherwise.
[ "101\n102\n", "105\n106\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "101\n102", "output": "YES" }, { "input": "105\n106", "output": "NO" }, { "input": "544\n397", "output": "YES" }, { "input": "822\n280", "output": "NO" }, { "input": "101\n413", "output": "NO" }, { "input": "309\n139", "output": "NO" }...
1,683,068,412
2,147,483,647
PyPy 3-64
OK
TESTS
43
92
0
x = input() y = input() z = int(x) + int(y) new_x = "" new_y = "" q = "" for i in range(len(x)): if x[i] != '0': new_x += x[i] else: continue for i in range(len(y)): if y[i] != '0': new_y += y[i] else: continue z = str(z) for i in range(len(z)): if z...
Title: Life Without Zeros Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Can you imagine our life if we removed all zeros from it? For sure we will have many problems. In this problem we will have a simple example if we removed all zeros from our life, it's the addition operation. Let's assu...
```python x = input() y = input() z = int(x) + int(y) new_x = "" new_y = "" q = "" for i in range(len(x)): if x[i] != '0': new_x += x[i] else: continue for i in range(len(y)): if y[i] != '0': new_y += y[i] else: continue z = str(z) for i in range(len(z)):...
3.977
94
A
Restoring Password
PROGRAMMING
900
[ "implementation", "strings" ]
A. Restoring Password
2
256
Igor K. always used to trust his favorite Kashpirovsky Antivirus. That is why he didn't hesitate to download the link one of his groupmates sent him via QIP Infinium. The link was said to contain "some real funny stuff about swine influenza". The antivirus had no objections and Igor K. run the flash application he had ...
The input data contains 11 lines. The first line represents the binary code 80 characters in length. That is the code written in Igor K.'s ISQ account's info. Next 10 lines contain pairwise distinct binary codes 10 characters in length, corresponding to numbers 0, 1, ..., 9.
Print one line containing 8 characters — The password to Igor K.'s ISQ account. It is guaranteed that the solution exists.
[ "01001100100101100000010110001001011001000101100110010110100001011010100101101100\n0100110000\n0100110010\n0101100000\n0101100010\n0101100100\n0101100110\n0101101000\n0101101010\n0101101100\n0101101110\n", "10101101111001000010100100011010101101110010110111011000100011011110010110001000\n1001000010\n1101111001\n1...
[ "12345678\n", "30234919\n" ]
none
500
[ { "input": "01001100100101100000010110001001011001000101100110010110100001011010100101101100\n0100110000\n0100110010\n0101100000\n0101100010\n0101100100\n0101100110\n0101101000\n0101101010\n0101101100\n0101101110", "output": "12345678" }, { "input": "1010110111100100001010010001101010110111001011011...
1,576,276,259
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
404
2,355,200
s=input() d={} for i in range(0,10): d[input()]=i for i in range(8): s1+=d[s[:10]] s=s[10:]
Title: Restoring Password Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Igor K. always used to trust his favorite Kashpirovsky Antivirus. That is why he didn't hesitate to download the link one of his groupmates sent him via QIP Infinium. The link was said to contain "some real funny stuff a...
```python s=input() d={} for i in range(0,10): d[input()]=i for i in range(8): s1+=d[s[:10]] s=s[10:] ```
-1
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,589,686,766
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
218
6,656,000
a,b=map(int,input().split()) x=max(a,b) t=7-x if(t==0): A=0 B=1 elif(6%t!=0): A=t B=6 else: A=1 B=6//t print(str(A)+'/'+str(B))
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 a,b=map(int,input().split()) x=max(a,b) t=7-x if(t==0): A=0 B=1 elif(6%t!=0): A=t B=6 else: A=1 B=6//t print(str(A)+'/'+str(B)) ```
0
122
A
Lucky Division
PROGRAMMING
1,000
[ "brute force", "number theory" ]
null
null
Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya calls a number almost lucky if it could be evenly divided by some lucky number. Help him find ...
The single line contains an integer *n* (1<=≤<=*n*<=≤<=1000) — the number that needs to be checked.
In the only line print "YES" (without the quotes), if number *n* is almost lucky. Otherwise, print "NO" (without the quotes).
[ "47\n", "16\n", "78\n" ]
[ "YES\n", "YES\n", "NO\n" ]
Note that all lucky numbers are almost lucky as any number is evenly divisible by itself. In the first sample 47 is a lucky number. In the second sample 16 is divisible by 4.
500
[ { "input": "47", "output": "YES" }, { "input": "16", "output": "YES" }, { "input": "78", "output": "NO" }, { "input": "48", "output": "YES" }, { "input": "100", "output": "YES" }, { "input": "107", "output": "NO" }, { "input": "77", "ou...
1,698,357,100
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
92
0
misschien_geluk = int(input()) print("YES" if misschien_geluk%4 == 0 or misschien_geluk%7 == 0 or misschien_geluk in [4, 47, 744] else "NO")
Title: Lucky Division Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya loves lucky numbers. Everybody knows that lucky numbers are positive integers whose decimal representation contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python misschien_geluk = int(input()) print("YES" if misschien_geluk%4 == 0 or misschien_geluk%7 == 0 or misschien_geluk in [4, 47, 744] else "NO") ```
0
747
E
Comments
PROGRAMMING
1,700
[ "dfs and similar", "expression parsing", "implementation", "strings" ]
null
null
A rare article in the Internet is posted without a possibility to comment it. On a Polycarp's website each article has comments feed. Each comment on Polycarp's website is a non-empty string consisting of uppercase and lowercase letters of English alphabet. Comments have tree-like structure, that means each comment ex...
The first line contains non-empty comments feed in the described format. It consists of uppercase and lowercase letters of English alphabet, digits and commas. It is guaranteed that each comment is a non-empty string consisting of uppercase and lowercase English characters. Each of the number of comments is integer (...
Print comments in a format that is given in the statement. For each level of nesting, comments should be printed in the order they are given in the input.
[ "hello,2,ok,0,bye,0,test,0,one,1,two,2,a,0,b,0\n", "a,5,A,0,a,0,A,0,a,0,A,0\n", "A,3,B,2,C,0,D,1,E,0,F,1,G,0,H,1,I,1,J,0,K,1,L,0,M,2,N,0,O,1,P,0\n" ]
[ "3\nhello test one \nok bye two \na b \n", "2\na \nA a A a A \n", "4\nA K M \nB F H L N O \nC D G I P \nE J \n" ]
The first example is explained in the statements.
2,000
[ { "input": "hello,2,ok,0,bye,0,test,0,one,1,two,2,a,0,b,0", "output": "3\nhello test one \nok bye two \na b " }, { "input": "a,5,A,0,a,0,A,0,a,0,A,0", "output": "2\na \nA a A a A " }, { "input": "A,3,B,2,C,0,D,1,E,0,F,1,G,0,H,1,I,1,J,0,K,1,L,0,M,2,N,0,O,1,P,0", "output": "4\nA K M \n...
1,645,381,185
2,147,483,647
PyPy 3-64
OK
TESTS
44
685
113,049,600
from sys import stdin input = lambda: stdin.buffer.readline().decode().strip() s, stk, levels, ans = input().split(','), [], [[] for _ in range(4 * 10 ** 5)], 0 for i in range(0, len(s), 2): s[i + 1] = int(s[i + 1]) while stk and s[stk[-1] + 1] == 0: stk.pop() if stk: s[stk[-1] +...
Title: Comments Time Limit: None seconds Memory Limit: None megabytes Problem Description: A rare article in the Internet is posted without a possibility to comment it. On a Polycarp's website each article has comments feed. Each comment on Polycarp's website is a non-empty string consisting of uppercase and lowerc...
```python from sys import stdin input = lambda: stdin.buffer.readline().decode().strip() s, stk, levels, ans = input().split(','), [], [[] for _ in range(4 * 10 ** 5)], 0 for i in range(0, len(s), 2): s[i + 1] = int(s[i + 1]) while stk and s[stk[-1] + 1] == 0: stk.pop() if stk: s...
3
669
A
Little Artem and Presents
PROGRAMMING
800
[ "math" ]
null
null
Little Artem got *n* stones on his birthday and now wants to give some of them to Masha. He knows that Masha cares more about the fact of receiving the present, rather than the value of that present, so he wants to give her stones as many times as possible. However, Masha remembers the last present she received, so Art...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=109) — number of stones Artem received on his birthday.
Print the maximum possible number of times Artem can give presents to Masha.
[ "1\n", "2\n", "3\n", "4\n" ]
[ "1\n", "1\n", "2\n", "3\n" ]
In the first sample, Artem can only give 1 stone to Masha. In the second sample, Atrem can give Masha 1 or 2 stones, though he can't give her 1 stone two times. In the third sample, Atrem can first give Masha 2 stones, a then 1 more stone. In the fourth sample, Atrem can first give Masha 1 stone, then 2 stones, and ...
500
[ { "input": "1", "output": "1" }, { "input": "2", "output": "1" }, { "input": "3", "output": "2" }, { "input": "4", "output": "3" }, { "input": "100", "output": "67" }, { "input": "101", "output": "67" }, { "input": "102", "output": "68"...
1,564,628,892
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
92
0
n=int(input()) print((2*n-1)//3)
Title: Little Artem and Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Artem got *n* stones on his birthday and now wants to give some of them to Masha. He knows that Masha cares more about the fact of receiving the present, rather than the value of that present, so he wan...
```python n=int(input()) print((2*n-1)//3) ```
0
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,582,452,187
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
154
0
n=int(input()) a=list(map(int,input().split())) if(a[i]==1): for i in range(0,n): if(a[i]!=1): print(i+1) break else: for i in range(0,n): if(a[i]!=2*(i+1)): print(i+1) break
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python n=int(input()) a=list(map(int,input().split())) if(a[i]==1): for i in range(0,n): if(a[i]!=1): print(i+1) break else: for i in range(0,n): if(a[i]!=2*(i+1)): print(i+1) break ```
-1
148
A
Insomnia cure
PROGRAMMING
800
[ "constructive algorithms", "implementation", "math" ]
null
null
«One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entertained herself at best she could. Tonight she imagined that all dragons were here to steal her, and ...
Input data contains integer numbers *k*,<=*l*,<=*m*,<=*n* and *d*, each number in a separate line (1<=≤<=*k*,<=*l*,<=*m*,<=*n*<=≤<=10, 1<=≤<=*d*<=≤<=105).
Output the number of damaged dragons.
[ "1\n2\n3\n4\n12\n", "2\n3\n4\n5\n24\n" ]
[ "12\n", "17\n" ]
In the first case every first dragon got punched with a frying pan. Some of the dragons suffered from other reasons as well, but the pan alone would be enough. In the second case dragons 1, 7, 11, 13, 17, 19 and 23 escaped unharmed.
1,000
[ { "input": "1\n2\n3\n4\n12", "output": "12" }, { "input": "2\n3\n4\n5\n24", "output": "17" }, { "input": "1\n1\n1\n1\n100000", "output": "100000" }, { "input": "10\n9\n8\n7\n6", "output": "0" }, { "input": "8\n4\n4\n3\n65437", "output": "32718" }, { "i...
1,687,202,811
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
2
2,000
512,000
nums = [] mult = [] dmg = [] j = 0 for i in range(4): nums.append(int(input())) d = int(input()) while dmg != d and j != 4: for i in range(1, d+1): if i % nums[j] == 0 and i not in dmg: dmg.append(i) j += 1 print(len(dmg))
Title: Insomnia cure Time Limit: None seconds Memory Limit: None megabytes Problem Description: «One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entert...
```python nums = [] mult = [] dmg = [] j = 0 for i in range(4): nums.append(int(input())) d = int(input()) while dmg != d and j != 4: for i in range(1, d+1): if i % nums[j] == 0 and i not in dmg: dmg.append(i) j += 1 print(len(dmg)) ```
0
682
B
Alyona and Mex
PROGRAMMING
1,200
[ "sortings" ]
null
null
Someone gave Alyona an array containing *n* positive integers *a*1,<=*a*2,<=...,<=*a**n*. In one operation, Alyona can choose any element of the array and decrease it, i.e. replace with any positive integer that is smaller than the current one. Alyona can repeat this operation as many times as she wants. In particular,...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of elements in the Alyona's array. The second line of the input contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the elements of the array.
Print one positive integer — the maximum possible value of mex of the array after Alyona applies some (possibly none) operations.
[ "5\n1 3 3 3 6\n", "2\n2 1\n" ]
[ "5\n", "3\n" ]
In the first sample case if one will decrease the second element value to 2 and the fifth element value to 4 then the mex value of resulting array 1 2 3 3 4 will be equal to 5. To reach the answer to the second sample case one must not decrease any of the array elements.
1,000
[ { "input": "5\n1 3 3 3 6", "output": "5" }, { "input": "2\n2 1", "output": "3" }, { "input": "1\n1", "output": "2" }, { "input": "1\n1000000000", "output": "2" }, { "input": "1\n2", "output": "2" }, { "input": "2\n1 1", "output": "2" }, { "...
1,662,453,025
2,147,483,647
PyPy 3-64
OK
TESTS
127
93
13,516,800
n = int(input()) l = list(map(int,input().split())) l.sort() # d = {} # for i in l: # d[i] = d.get(i,0)+1 i = 0 mex = 1 while i<n: if l[i]>=mex: mex += 1 i+=1 print(mex)
Title: Alyona and Mex Time Limit: None seconds Memory Limit: None megabytes Problem Description: Someone gave Alyona an array containing *n* positive integers *a*1,<=*a*2,<=...,<=*a**n*. In one operation, Alyona can choose any element of the array and decrease it, i.e. replace with any positive integer that is small...
```python n = int(input()) l = list(map(int,input().split())) l.sort() # d = {} # for i in l: # d[i] = d.get(i,0)+1 i = 0 mex = 1 while i<n: if l[i]>=mex: mex += 1 i+=1 print(mex) ```
3
17
A
Noldbach problem
PROGRAMMING
1,000
[ "brute force", "math", "number theory" ]
A. Noldbach problem
2
64
Nick is interested in prime numbers. Once he read about Goldbach problem. It states that every even integer greater than 2 can be expressed as the sum of two primes. That got Nick's attention and he decided to invent a problem of his own and call it Noldbach problem. Since Nick is interested only in prime numbers, Nold...
The first line of the input contains two integers *n* (2<=≤<=*n*<=≤<=1000) and *k* (0<=≤<=*k*<=≤<=1000).
Output YES if at least *k* prime numbers from 2 to *n* inclusively can be expressed as it was described above. Otherwise output NO.
[ "27 2\n", "45 7\n" ]
[ "YES", "NO" ]
In the first sample the answer is YES since at least two numbers can be expressed as it was described (for example, 13 and 19). In the second sample the answer is NO since it is impossible to express 7 prime numbers from 2 to 45 in the desired form.
0
[ { "input": "27 2", "output": "YES" }, { "input": "45 7", "output": "NO" }, { "input": "2 0", "output": "YES" }, { "input": "15 1", "output": "YES" }, { "input": "17 1", "output": "YES" }, { "input": "34 5", "output": "NO" }, { "input": "37 ...
1,584,989,647
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
154
307,200
import math def primenum(x): count=0 for i in range(2,int(math.floor(math.sqrt(x)))+1): if(x%i==0): count=count+1 if(count==0): return True else: return False n,k=map(int,input().split()) l=[] m=[] c=0 if(k>n or k==0): print('NO') else: for i in range(2,n+1): if (primenum(i)==True): ...
Title: Noldbach problem Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Nick is interested in prime numbers. Once he read about Goldbach problem. It states that every even integer greater than 2 can be expressed as the sum of two primes. That got Nick's attention and he decided to invent a prob...
```python import math def primenum(x): count=0 for i in range(2,int(math.floor(math.sqrt(x)))+1): if(x%i==0): count=count+1 if(count==0): return True else: return False n,k=map(int,input().split()) l=[] m=[] c=0 if(k>n or k==0): print('NO') else: for i in range(2,n+1): if (primenum(i)...
0
230
B
T-primes
PROGRAMMING
1,300
[ "binary search", "implementation", "math", "number theory" ]
null
null
We know that prime numbers are positive integers that have exactly two distinct positive divisors. Similarly, we'll call a positive integer *t* Т-prime, if *t* has exactly three distinct positive divisors. You are given an array of *n* positive integers. For each of them determine whether it is Т-prime or not.
The first line contains a single positive integer, *n* (1<=≤<=*n*<=≤<=105), showing how many numbers are in the array. The next line contains *n* space-separated integers *x**i* (1<=≤<=*x**i*<=≤<=1012). Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is advised to use the cin, cout st...
Print *n* lines: the *i*-th line should contain "YES" (without the quotes), if number *x**i* is Т-prime, and "NO" (without the quotes), if it isn't.
[ "3\n4 5 6\n" ]
[ "YES\nNO\nNO\n" ]
The given test has three numbers. The first number 4 has exactly three divisors — 1, 2 and 4, thus the answer for this number is "YES". The second number 5 has two divisors (1 and 5), and the third number 6 has four divisors (1, 2, 3, 6), hence the answer for them is "NO".
500
[ { "input": "3\n4 5 6", "output": "YES\nNO\nNO" }, { "input": "2\n48 49", "output": "NO\nYES" }, { "input": "10\n10 9 8 7 6 5 4 3 2 1", "output": "NO\nYES\nNO\nNO\nNO\nNO\nYES\nNO\nNO\nNO" }, { "input": "1\n36", "output": "NO" }, { "input": "1\n999966000289", "...
1,697,021,174
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
60
0
def prime(num): sum = 0 for i in range(2,min(100,num)): if num% i == 0: sum += 1 if sum == 1: return True else: return False a = int(input()) arr = list(map(int,input().split())) for l in arr: if prime(l): print("YES") else: ...
Title: T-primes Time Limit: None seconds Memory Limit: None megabytes Problem Description: We know that prime numbers are positive integers that have exactly two distinct positive divisors. Similarly, we'll call a positive integer *t* Т-prime, if *t* has exactly three distinct positive divisors. You are given an ar...
```python def prime(num): sum = 0 for i in range(2,min(100,num)): if num% i == 0: sum += 1 if sum == 1: return True else: return False a = int(input()) arr = list(map(int,input().split())) for l in arr: if prime(l): print("YES") els...
0
581
A
Vasya the Hipster
PROGRAMMING
800
[ "implementation", "math" ]
null
null
One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red one on the left foot, a blue one on the right foot. Every day Vasya puts on new socks in the morning ...
The single line of the input contains two positive integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=100) — the number of red and blue socks that Vasya's got.
Print two space-separated integers — the maximum number of days when Vasya can wear different socks and the number of days when he can wear the same socks until he either runs out of socks or cannot make a single pair from the socks he's got. Keep in mind that at the end of the day Vasya throws away the socks that he'...
[ "3 1\n", "2 3\n", "7 3\n" ]
[ "1 1\n", "2 0\n", "3 2\n" ]
In the first sample Vasya can first put on one pair of different socks, after that he has two red socks left to wear on the second day.
500
[ { "input": "3 1", "output": "1 1" }, { "input": "2 3", "output": "2 0" }, { "input": "7 3", "output": "3 2" }, { "input": "100 100", "output": "100 0" }, { "input": "4 10", "output": "4 3" }, { "input": "6 10", "output": "6 2" }, { "input":...
1,690,020,300
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
46
0
a, b = map(int,input().split()) c1 = 0 c2 = 0 while a > 0 and b > 0 : a -= 1 b -= 1 c1 += 1 if a == 0 : while b > 0 and a > 1 : b-= 2 c2 += 1 if b == 0 and a > 1 : while a > 0 : a-= 2 c2 += 1 print(c1, c2)
Title: Vasya the Hipster Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red...
```python a, b = map(int,input().split()) c1 = 0 c2 = 0 while a > 0 and b > 0 : a -= 1 b -= 1 c1 += 1 if a == 0 : while b > 0 and a > 1 : b-= 2 c2 += 1 if b == 0 and a > 1 : while a > 0 : a-= 2 c2 += 1 print(c1, c2) ```
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,661,108,152
2,147,483,647
PyPy 3-64
OK
TESTS
30
124
0
def convert(string): list1 = [] list1[:0] = string return list1 a = input() l1 = convert(a) lower = 0 upper = 0 for i in l1: if i.isupper(): upper += 1 else: lower += 1 if upper>lower: print(a.upper()) else: print(a.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 def convert(string): list1 = [] list1[:0] = string return list1 a = input() l1 = convert(a) lower = 0 upper = 0 for i in l1: if i.isupper(): upper += 1 else: lower += 1 if upper>lower: print(a.upper()) else: print(a.lower()) ```
3.969
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,656,988,320
2,147,483,647
Python 3
OK
TESTS
159
342
2,764,800
n,f = map(int,input().split()) days = [] total = 0 for i in range(n): k,l = map(int,input().split()) if k == 0: continue sales = min(k,l) total +=sales l -=sales days.append(min(k,l)) days.sort(reverse=1) # print(days) print(total + sum(days[: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 = map(int,input().split()) days = [] total = 0 for i in range(n): k,l = map(int,input().split()) if k == 0: continue sales = min(k,l) total +=sales l -=sales days.append(min(k,l)) days.sort(reverse=1) # print(days) print(total + sum(days[:f])) ```
3
731
A
Night at the Museum
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devise that allows to "print" the text of a plastic tape. Text is printed sequentially, character by character...
The only line of input contains the name of some exhibit — the non-empty string consisting of no more than 100 characters. It's guaranteed that the string consists of only lowercase English letters.
Print one integer — the minimum number of rotations of the wheel, required to print the name given in the input.
[ "zeus\n", "map\n", "ares\n" ]
[ "18\n", "35\n", "34\n" ]
To print the string from the first sample it would be optimal to perform the following sequence of rotations: 1. from 'a' to 'z' (1 rotation counterclockwise), 1. from 'z' to 'e' (5 clockwise rotations), 1. from 'e' to 'u' (10 rotations counterclockwise), 1. from 'u' to 's' (2 counterclockwise rotations).
500
[ { "input": "zeus", "output": "18" }, { "input": "map", "output": "35" }, { "input": "ares", "output": "34" }, { "input": "l", "output": "11" }, { "input": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuv", "...
1,670,312,560
2,147,483,647
Python 3
OK
TESTS
44
46
0
s=input() pos=ord('a') s1=0 for i in s: s1+=min(26-abs(ord(i)-pos),abs(ord(i)-pos)) pos=ord(i) print(s1)
Title: Night at the Museum Time Limit: None seconds Memory Limit: None megabytes Problem Description: Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devis...
```python s=input() pos=ord('a') s1=0 for i in s: s1+=min(26-abs(ord(i)-pos),abs(ord(i)-pos)) pos=ord(i) print(s1) ```
3
716
A
Crazy Computer
PROGRAMMING
800
[ "implementation" ]
null
null
ZS the Coder is coding on a crazy computer. If you don't type in a word for a *c* consecutive seconds, everything you typed disappear! More formally, if you typed a word at second *a* and then the next word at second *b*, then if *b*<=-<=*a*<=≤<=*c*, just the new word is appended to other words on the screen. If *b*<...
The first line contains two integers *n* and *c* (1<=≤<=*n*<=≤<=100<=000,<=1<=≤<=*c*<=≤<=109) — the number of words ZS the Coder typed and the crazy computer delay respectively. The next line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t*1<=&lt;<=*t*2<=&lt;<=...<=&lt;<=*t**n*<=≤<=109), where *t**i* denote...
Print a single positive integer, the number of words that remain on the screen after all *n* words was typed, in other words, at the second *t**n*.
[ "6 5\n1 3 8 14 19 20\n", "6 1\n1 3 5 7 9 10\n" ]
[ "3", "2" ]
The first sample is already explained in the problem statement. For the second sample, after typing the first word at the second 1, it disappears because the next word is typed at the second 3 and 3 - 1 &gt; 1. Similarly, only 1 word will remain at the second 9. Then, a word is typed at the second 10, so there will be...
500
[ { "input": "6 5\n1 3 8 14 19 20", "output": "3" }, { "input": "6 1\n1 3 5 7 9 10", "output": "2" }, { "input": "1 1\n1000000000", "output": "1" }, { "input": "5 5\n1 7 12 13 14", "output": "4" }, { "input": "2 1000000000\n1 1000000000", "output": "2" }, { ...
1,683,278,470
2,147,483,647
Python 3
OK
TESTS
81
77
13,209,600
n,c = map(int,input().split()) a = list(map(int,input().split())) m = 0 for i in range(1,len(a)): if((a[-i] - a[-(i+1)]) <= c): m = m+1 continue else: break print(m+1)
Title: Crazy Computer Time Limit: None seconds Memory Limit: None megabytes Problem Description: ZS the Coder is coding on a crazy computer. If you don't type in a word for a *c* consecutive seconds, everything you typed disappear! More formally, if you typed a word at second *a* and then the next word at second *...
```python n,c = map(int,input().split()) a = list(map(int,input().split())) m = 0 for i in range(1,len(a)): if((a[-i] - a[-(i+1)]) <= c): m = m+1 continue else: break print(m+1) ```
3
246
B
Increase and Decrease
PROGRAMMING
1,300
[ "greedy", "math" ]
null
null
Polycarpus has an array, consisting of *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Polycarpus likes it when numbers in an array match. That's why he wants the array to have as many equal numbers as possible. For that Polycarpus performs the following operation multiple times: - he chooses two elements of the array *a**i...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the array size. The second line contains space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (|*a**i*|<=≤<=104) — the original array.
Print a single integer — the maximum number of equal array elements he can get if he performs an arbitrary number of the given operation.
[ "2\n2 1\n", "3\n1 4 1\n" ]
[ "1\n", "3\n" ]
none
1,000
[ { "input": "2\n2 1", "output": "1" }, { "input": "3\n1 4 1", "output": "3" }, { "input": "4\n2 -7 -2 -6", "output": "3" }, { "input": "4\n2 0 -2 -1", "output": "3" }, { "input": "6\n-1 1 0 0 -1 -1", "output": "5" }, { "input": "5\n0 0 0 0 0", "outp...
1,586,501,990
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
216
0
n=int(input()) a=[int(a) for a in input().split()] if sum(a)%2==0: print (n) else: print (n-1)
Title: Increase and Decrease Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has an array, consisting of *n* integers *a*1,<=*a*2,<=...,<=*a**n*. Polycarpus likes it when numbers in an array match. That's why he wants the array to have as many equal numbers as possible. For that...
```python n=int(input()) a=[int(a) for a in input().split()] if sum(a)%2==0: print (n) else: print (n-1) ```
0
276
B
Little Girl and Game
PROGRAMMING
1,300
[ "games", "greedy" ]
null
null
The Little Girl loves problems on games very much. Here's one of them. Two players have got a string *s*, consisting of lowercase English letters. They play a game that is described by the following rules: - The players move in turns; In one move the player can remove an arbitrary letter from string *s*. - If the p...
The input contains a single line, containing string *s* (1<=≤<=|*s*|<=<=≤<=<=103). String *s* consists of lowercase English letters.
In a single line print word "First" if the first player wins (provided that both players play optimally well). Otherwise, print word "Second". Print the words without the quotes.
[ "aba\n", "abca\n" ]
[ "First\n", "Second\n" ]
none
1,000
[ { "input": "aba", "output": "First" }, { "input": "abca", "output": "Second" }, { "input": "aabb", "output": "First" }, { "input": "ctjxzuimsxnarlciuynqeoqmmbqtagszuo", "output": "Second" }, { "input": "gevqgtaorjixsxnbcoybr", "output": "First" }, { "i...
1,683,682,494
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
124
0
s = input().strip() letters = set() for c in s: if c in letters: letters.discard(c) else: letters.add(c) print('First' if len(letters)&1 else 'Second')
Title: Little Girl and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Girl loves problems on games very much. Here's one of them. Two players have got a string *s*, consisting of lowercase English letters. They play a game that is described by the following rules: - The...
```python s = input().strip() letters = set() for c in s: if c in letters: letters.discard(c) else: letters.add(c) print('First' if len(letters)&1 else 'Second') ```
0
500
A
New Year Transportation
PROGRAMMING
1,000
[ "dfs and similar", "graphs", "implementation" ]
null
null
New Year is coming in Line World! In this world, there are *n* cells numbered by integers from 1 to *n*, as a 1<=×<=*n* board. People live in cells. However, it was hard to move between distinct cells, because of the difficulty of escaping the cell. People wanted to meet people who live in other cells. So, user tncks0...
The first line contains two space-separated integers *n* (3<=≤<=*n*<=≤<=3<=×<=104) and *t* (2<=≤<=*t*<=≤<=*n*) — the number of cells, and the index of the cell which I want to go to. The second line contains *n*<=-<=1 space-separated integers *a*1,<=*a*2,<=...,<=*a**n*<=-<=1 (1<=≤<=*a**i*<=≤<=*n*<=-<=*i*). It is guara...
If I can go to cell *t* using the transportation system, print "YES". Otherwise, print "NO".
[ "8 4\n1 2 1 2 1 2 1\n", "8 5\n1 2 1 2 1 1 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample, the visited cells are: 1, 2, 4; so we can successfully visit the cell 4. In the second sample, the possible cells to visit are: 1, 2, 4, 6, 7, 8; so we can't visit the cell 5, which we want to visit.
500
[ { "input": "8 4\n1 2 1 2 1 2 1", "output": "YES" }, { "input": "8 5\n1 2 1 2 1 1 1", "output": "NO" }, { "input": "20 19\n13 16 7 6 12 1 5 7 8 6 5 7 5 5 3 3 2 2 1", "output": "YES" }, { "input": "50 49\n11 7 1 41 26 36 19 16 38 14 36 35 37 27 20 27 3 6 21 2 27 11 18 17 19 16 ...
1,645,609,496
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
12
46
1,536,000
n, t = map(int, input().split()) arr = list(map(int, input().split())) con = True i = 0 while i<n-1: if i == t-1: print('YES') con = False break i += arr[i] if con: print('NO')
Title: New Year Transportation Time Limit: None seconds Memory Limit: None megabytes Problem Description: New Year is coming in Line World! In this world, there are *n* cells numbered by integers from 1 to *n*, as a 1<=×<=*n* board. People live in cells. However, it was hard to move between distinct cells, because o...
```python n, t = map(int, input().split()) arr = list(map(int, input().split())) con = True i = 0 while i<n-1: if i == t-1: print('YES') con = False break i += arr[i] if con: print('NO') ```
0
702
A
Maximum Increase
PROGRAMMING
800
[ "dp", "greedy", "implementation" ]
null
null
You are given array consisting of *n* integers. Your task is to find the maximum length of an increasing subarray of the given array. A subarray is the sequence of consecutive elements of the array. Subarray is called increasing if each element of this subarray strictly greater than previous.
The first line contains single positive integer *n* (1<=≤<=*n*<=≤<=105) — the number of integers. The second line contains *n* positive integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109).
Print the maximum length of an increasing subarray of the given array.
[ "5\n1 7 2 11 15\n", "6\n100 100 100 100 100 100\n", "3\n1 2 3\n" ]
[ "3\n", "1\n", "3\n" ]
none
0
[ { "input": "5\n1 7 2 11 15", "output": "3" }, { "input": "6\n100 100 100 100 100 100", "output": "1" }, { "input": "3\n1 2 3", "output": "3" }, { "input": "1\n1000000000", "output": "1" }, { "input": "10\n802030518 598196518 640274071 983359971 71550121 96204862 7...
1,678,363,326
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
9
1,000
13,516,800
#a=int(input()) #sum=0 #x = list(map(int, input().split())) #print("List of students: ", x) #for b in x: # sum =sum+b #sum=(sum/(a*100)) #print(100*sum) #quant=int(input()) # :5 X 4,:3 x 2 ,:2 tam=int(input()) max=1 resp=1 a=list(map(int, input().split())) for i in range (tam): if(max ...
Title: Maximum Increase Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given array consisting of *n* integers. Your task is to find the maximum length of an increasing subarray of the given array. A subarray is the sequence of consecutive elements of the array. Subarray is called...
```python #a=int(input()) #sum=0 #x = list(map(int, input().split())) #print("List of students: ", x) #for b in x: # sum =sum+b #sum=(sum/(a*100)) #print(100*sum) #quant=int(input()) # :5 X 4,:3 x 2 ,:2 tam=int(input()) max=1 resp=1 a=list(map(int, input().split())) for i in range (tam): ...
0
991
C
Candies
PROGRAMMING
1,500
[ "binary search", "implementation" ]
null
null
After passing a test, Vasya got himself a box of $n$ candies. He decided to eat an equal amount of candies each morning until there are no more candies. However, Petya also noticed the box and decided to get some candies for himself. This means the process of eating candies is the following: in the beginning Vasya cho...
The first line contains a single integer $n$ ($1 \leq n \leq 10^{18}$) — the initial amount of candies in the box.
Output a single integer — the minimal amount of $k$ that would allow Vasya to eat at least half of candies he got.
[ "68\n" ]
[ "3\n" ]
In the sample, the amount of candies, with $k=3$, would change in the following way (Vasya eats first): $68 \to 65 \to 59 \to 56 \to 51 \to 48 \to 44 \to 41 \\ \to 37 \to 34 \to 31 \to 28 \to 26 \to 23 \to 21 \to 18 \to 17 \to 14 \\ \to 13 \to 10 \to 9 \to 6 \to 6 \to 3 \to 3 \to 0$. In total, Vasya would eat $39$ ca...
1,250
[ { "input": "68", "output": "3" }, { "input": "1", "output": "1" }, { "input": "2", "output": "1" }, { "input": "42", "output": "1" }, { "input": "43", "output": "2" }, { "input": "756", "output": "29" }, { "input": "999999972", "output"...
1,549,188,330
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <iostream> #include <vector> #include <algorithm> using namespace std; typedef long long li; li check(li num, li k) { li ans = 0; while (num != 0) { ans += min(num, k); num -= min(num, k); num -= num / 10; } return ans; } int main() { li n; cin >> n; li l = 1; li r ...
Title: Candies Time Limit: None seconds Memory Limit: None megabytes Problem Description: After passing a test, Vasya got himself a box of $n$ candies. He decided to eat an equal amount of candies each morning until there are no more candies. However, Petya also noticed the box and decided to get some candies for hi...
```python #include <iostream> #include <vector> #include <algorithm> using namespace std; typedef long long li; li check(li num, li k) { li ans = 0; while (num != 0) { ans += min(num, k); num -= min(num, k); num -= num / 10; } return ans; } int main() { li n; cin >> n; li l = ...
-1
938
D
Buy a Ticket
PROGRAMMING
2,000
[ "data structures", "graphs", "shortest paths" ]
null
null
Musicians of a popular band "Flayer" have announced that they are going to "make their exit" with a world tour. Of course, they will visit Berland as well. There are *n* cities in Berland. People can travel between cities using two-directional train routes; there are exactly *m* routes, *i*-th route can be used to go ...
The first line contains two integers *n* and *m* (2<=≤<=*n*<=≤<=2·105, 1<=≤<=*m*<=≤<=2·105). Then *m* lines follow, *i*-th contains three integers *v**i*, *u**i* and *w**i* (1<=≤<=*v**i*,<=*u**i*<=≤<=*n*,<=*v**i*<=≠<=*u**i*, 1<=≤<=*w**i*<=≤<=1012) denoting *i*-th train route. There are no multiple train routes connect...
Print *n* integers. *i*-th of them must be equal to the minimum number of coins a person from city *i* has to spend to travel to some city *j* (or possibly stay in city *i*), attend a concert there, and return to city *i* (if *j*<=≠<=*i*).
[ "4 2\n1 2 4\n2 3 7\n6 20 1 25\n", "3 3\n1 2 1\n2 3 1\n1 3 1\n30 10 20\n" ]
[ "6 14 1 25 \n", "12 10 12 \n" ]
none
0
[ { "input": "4 2\n1 2 4\n2 3 7\n6 20 1 25", "output": "6 14 1 25 " }, { "input": "3 3\n1 2 1\n2 3 1\n1 3 1\n30 10 20", "output": "12 10 12 " }, { "input": "7 7\n1 6 745325\n2 3 3581176\n2 4 19\n3 6 71263060078\n5 4 141198\n7 4 163953\n5 6 15994\n1 297404206755 82096176217 14663411 1873897...
1,604,730,344
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
1,512
56,012,800
from sys import stdin, stdout n, m = map(int, stdin.readline().split()) city_price = [0 for i in range(n)] ady = [[] for i in range(n)] for i in range(m): u,v,w = map(int,stdin.readline().split()) ady[u-1].append((v-1,2*w)) ady[v-1].append((u-1,2*w)) d_xcity = list(map(int,stdin.readline()...
Title: Buy a Ticket Time Limit: None seconds Memory Limit: None megabytes Problem Description: Musicians of a popular band "Flayer" have announced that they are going to "make their exit" with a world tour. Of course, they will visit Berland as well. There are *n* cities in Berland. People can travel between cities...
```python from sys import stdin, stdout n, m = map(int, stdin.readline().split()) city_price = [0 for i in range(n)] ady = [[] for i in range(n)] for i in range(m): u,v,w = map(int,stdin.readline().split()) ady[u-1].append((v-1,2*w)) ady[v-1].append((u-1,2*w)) d_xcity = list(map(int,stdin....
0
886
B
Vlad and Cafes
PROGRAMMING
1,000
[]
null
null
Vlad likes to eat in cafes very much. During his life, he has visited cafes *n* times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research. First of all, Vlad assigned individual indices to all cafes. Then, he wrote down indices of cafes...
In first line there is one integer *n* (1<=≤<=*n*<=≤<=2·105) — number of cafes indices written by Vlad. In second line, *n* numbers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=2·105) are written — indices of cafes in order of being visited by Vlad. Vlad could visit some cafes more than once. Note that in numeration, ...
Print one integer — index of the cafe that Vlad hasn't visited for as long as possible.
[ "5\n1 3 2 1 2\n", "6\n2 1 2 2 4 1\n" ]
[ "3\n", "2\n" ]
In first test, there are three cafes, and the last visits to cafes with indices 1 and 2 were after the last visit to cafe with index 3; so this cafe is the answer. In second test case, there are also three cafes, but with indices 1, 2 and 4. Cafes with indices 1 and 4 were visited after the last visit of cafe with in...
1,000
[ { "input": "5\n1 3 2 1 2", "output": "3" }, { "input": "6\n2 1 2 2 4 1", "output": "2" }, { "input": "1\n0", "output": "0" }, { "input": "1\n200000", "output": "200000" }, { "input": "2\n2018 2017", "output": "2018" }, { "input": "5\n100 1000 1000 1000...
1,510,509,567
6,867
Python 3
RUNTIME_ERROR
PRETESTS
0
46
0
n = int(input()) m = list(map(int, input().split(" "))) c = list() for i in range(int(1, n+1)): if m[-i] not in c: c.append(m[-i]) print(c[-1])
Title: Vlad and Cafes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vlad likes to eat in cafes very much. During his life, he has visited cafes *n* times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research...
```python n = int(input()) m = list(map(int, input().split(" "))) c = list() for i in range(int(1, n+1)): if m[-i] not in c: c.append(m[-i]) print(c[-1]) ```
-1
277
A
Learning Languages
PROGRAMMING
1,400
[ "dfs and similar", "dsu" ]
null
null
The "BerCorp" company has got *n* employees. These employees can use *m* approved official languages for the formal correspondence. The languages are numbered with integers from 1 to *m*. For each employee we have the list of languages, which he knows. This list could be empty, i. e. an employee may know no official la...
The first line contains two integers *n* and *m* (2<=≤<=*n*,<=*m*<=≤<=100) — the number of employees and the number of languages. Then *n* lines follow — each employee's language list. At the beginning of the *i*-th line is integer *k**i* (0<=≤<=*k**i*<=≤<=*m*) — the number of languages the *i*-th employee knows. Next...
Print a single integer — the minimum amount of money to pay so that in the end every employee could write a letter to every other one (other employees can help out translating).
[ "5 5\n1 2\n2 2 3\n2 3 4\n2 4 5\n1 5\n", "8 7\n0\n3 1 2 3\n1 1\n2 5 4\n2 6 7\n1 3\n2 7 4\n1 1\n", "2 2\n1 2\n0\n" ]
[ "0\n", "2\n", "1\n" ]
In the second sample the employee 1 can learn language 2, and employee 8 can learn language 4. In the third sample employee 2 must learn language 2.
500
[ { "input": "5 5\n1 2\n2 2 3\n2 3 4\n2 4 5\n1 5", "output": "0" }, { "input": "8 7\n0\n3 1 2 3\n1 1\n2 5 4\n2 6 7\n1 3\n2 7 4\n1 1", "output": "2" }, { "input": "2 2\n1 2\n0", "output": "1" }, { "input": "2 2\n0\n0", "output": "2" }, { "input": "5 5\n1 3\n0\n0\n2 4...
1,547,036,648
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
186
0
n,m = map(int,input().split()) lang = [set(list(map(int,input().split()))[1:]) for _ in range(n)] g = {} for i,e in enumerate(lang): g[i] = [] if len(e)!=0: for j,o in enumerate(lang): if i!=j and len(o)!=0: if len(e&o)!=0: g[i].append(j) ma = [] for i in...
Title: Learning Languages Time Limit: None seconds Memory Limit: None megabytes Problem Description: The "BerCorp" company has got *n* employees. These employees can use *m* approved official languages for the formal correspondence. The languages are numbered with integers from 1 to *m*. For each employee we have th...
```python n,m = map(int,input().split()) lang = [set(list(map(int,input().split()))[1:]) for _ in range(n)] g = {} for i,e in enumerate(lang): g[i] = [] if len(e)!=0: for j,o in enumerate(lang): if i!=j and len(o)!=0: if len(e&o)!=0: g[i].append(j) ma = [...
0
61
A
Ultra-Fast Mathematician
PROGRAMMING
800
[ "implementation" ]
A. Ultra-Fast Mathematician
2
256
Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 1018 numbers in a single second. One day in 230 AD Shapur was trying to find out if any one can possibly do...
There are two lines in each input. Each of them contains a single number. It is guaranteed that the numbers are made from 0 and 1 only and that their length is same. The numbers may start with 0. The length of each number doesn't exceed 100.
Write one line — the corresponding answer. Do not omit the leading 0s.
[ "1010100\n0100101\n", "000\n111\n", "1110\n1010\n", "01110\n01100\n" ]
[ "1110001\n", "111\n", "0100\n", "00010\n" ]
none
500
[ { "input": "1010100\n0100101", "output": "1110001" }, { "input": "000\n111", "output": "111" }, { "input": "1110\n1010", "output": "0100" }, { "input": "01110\n01100", "output": "00010" }, { "input": "011101\n000001", "output": "011100" }, { "input": "...
1,580,890,989
2,147,483,647
Python 3
OK
TESTS
102
124
0
x=input() y=input() res="" for i in range (len(x)): res=(int(x[i]) ^ int(y[i])) print(res,end="")
Title: Ultra-Fast Mathematician Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Shapur was an extremely gifted student. He was great at everything including Combinatorics, Algebra, Number Theory, Geometry, Calculus, etc. He was not only smart but extraordinarily fast! He could manage to sum 10...
```python x=input() y=input() res="" for i in range (len(x)): res=(int(x[i]) ^ int(y[i])) print(res,end="") ```
3.969
676
A
Nicholas and Permutation
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
Nicholas has an array *a* that contains *n* distinct integers from 1 to *n*. In other words, Nicholas has a permutation of size *n*. Nicholas want the minimum element (integer 1) and the maximum element (integer *n*) to be as far as possible from each other. He wants to perform exactly one swap in order to maximize th...
The first line of the input contains a single integer *n* (2<=≤<=*n*<=≤<=100) — the size of the permutation. The second line of the input contains *n* distinct integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*n*), where *a**i* is equal to the element at the *i*-th position.
Print a single integer — the maximum possible distance between the minimum and the maximum elements Nicholas can achieve by performing exactly one swap.
[ "5\n4 5 1 3 2\n", "7\n1 6 5 3 4 7 2\n", "6\n6 5 4 3 2 1\n" ]
[ "3\n", "6\n", "5\n" ]
In the first sample, one may obtain the optimal answer by swapping elements 1 and 2. In the second sample, the minimum and the maximum elements will be located in the opposite ends of the array if we swap 7 and 2. In the third sample, the distance between the minimum and the maximum elements is already maximum possib...
500
[ { "input": "5\n4 5 1 3 2", "output": "3" }, { "input": "7\n1 6 5 3 4 7 2", "output": "6" }, { "input": "6\n6 5 4 3 2 1", "output": "5" }, { "input": "2\n1 2", "output": "1" }, { "input": "2\n2 1", "output": "1" }, { "input": "3\n2 3 1", "output": "...
1,656,229,851
2,147,483,647
PyPy 3-64
OK
TESTS
159
62
28,979,200
def main(): n = int(input()) ns = list(map(int, input().split())) min_pos = -1, max_pos = -1 for idx, e in enumerate(ns): if e == 1: min_pos = idx elif e == n: max_pos = idx print(max(max(n - 1 - min_pos, min_pos - 0), max(n - 1 - max_pos, max_...
Title: Nicholas and Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Nicholas has an array *a* that contains *n* distinct integers from 1 to *n*. In other words, Nicholas has a permutation of size *n*. Nicholas want the minimum element (integer 1) and the maximum element (integ...
```python def main(): n = int(input()) ns = list(map(int, input().split())) min_pos = -1, max_pos = -1 for idx, e in enumerate(ns): if e == 1: min_pos = idx elif e == n: max_pos = idx print(max(max(n - 1 - min_pos, min_pos - 0), max(n - 1 - max...
3
137
C
History
PROGRAMMING
1,500
[ "sortings" ]
null
null
Polycarpus likes studying at school a lot and he is always diligent about his homework. Polycarpus has never had any problems with natural sciences as his great-great-grandfather was the great physicist Seinstein. On the other hand though, Polycarpus has never had an easy time with history. Everybody knows that the Wo...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=105) which represents the number of events. Next *n* lines contain descriptions of the historical events, one event per line. The *i*<=+<=1 line contains two integers *a**i* and *b**i* (1<=≤<=*a**i*<=&lt;<=*b**i*<=≤<=109) — the beginning and the end of the *i*-th...
Print the only integer — the answer to the problem.
[ "5\n1 10\n2 9\n3 8\n4 7\n5 6\n", "5\n1 100\n2 50\n51 99\n52 98\n10 60\n", "1\n1 1000000000\n" ]
[ "4\n", "4\n", "0\n" ]
In the first example the fifth event is contained in the fourth. Similarly, the fourth event is contained in the third, the third — in the second and the second — in the first. In the second example all events except the first one are contained in the first. In the third example only one event, so the answer is 0.
1,500
[ { "input": "5\n1 10\n2 9\n3 8\n4 7\n5 6", "output": "4" }, { "input": "5\n1 100\n2 50\n51 99\n52 98\n10 60", "output": "4" }, { "input": "1\n1 1000000000", "output": "0" }, { "input": "2\n100 1000\n500 1500", "output": "0" }, { "input": "4\n1 100\n50 150\n120 200\...
1,666,190,543
2,147,483,647
PyPy 3-64
OK
TESTS
75
1,466
19,456,000
a = int(input()) dict1 = {} for i in range(a): b, c = map(int, input().split()) dict1[b] = c sorted_values = sorted(dict1.keys()) dict2 = {} for i in sorted_values: dict2[i] = dict1[i] last = list(dict2.keys()) n = 0 maxchislo = dict2[min(last)] for i in range(1, a): if dict2[last[i]] < max...
Title: History Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus likes studying at school a lot and he is always diligent about his homework. Polycarpus has never had any problems with natural sciences as his great-great-grandfather was the great physicist Seinstein. On the other ...
```python a = int(input()) dict1 = {} for i in range(a): b, c = map(int, input().split()) dict1[b] = c sorted_values = sorted(dict1.keys()) dict2 = {} for i in sorted_values: dict2[i] = dict1[i] last = list(dict2.keys()) n = 0 maxchislo = dict2[min(last)] for i in range(1, a): if dict2[last...
3
792
B
Counting-out Rhyme
PROGRAMMING
1,300
[ "implementation" ]
null
null
*n* children are standing in a circle and playing the counting-out game. Children are numbered clockwise from 1 to *n*. In the beginning, the first child is considered the leader. The game is played in *k* steps. In the *i*-th step the leader counts out *a**i* people in clockwise order, starting from the next person. T...
The first line contains two integer numbers *n* and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=*n*<=-<=1). The next line contains *k* integer numbers *a*1,<=*a*2,<=...,<=*a**k* (1<=≤<=*a**i*<=≤<=109).
Print *k* numbers, the *i*-th one corresponds to the number of child to be eliminated at the *i*-th step.
[ "7 5\n10 4 11 4 1\n", "3 2\n2 5\n" ]
[ "4 2 5 6 1 \n", "3 2 \n" ]
Let's consider first example: - In the first step child 4 is eliminated, child 5 becomes the leader. - In the second step child 2 is eliminated, child 3 becomes the leader. - In the third step child 5 is eliminated, child 6 becomes the leader. - In the fourth step child 6 is eliminated, child 7 becomes the leader...
0
[ { "input": "7 5\n10 4 11 4 1", "output": "4 2 5 6 1 " }, { "input": "3 2\n2 5", "output": "3 2 " }, { "input": "2 1\n1", "output": "2 " }, { "input": "2 1\n2", "output": "1 " }, { "input": "2 1\n3", "output": "2 " }, { "input": "10 7\n5 10 4 3 8 10 6",...
1,490,969,079
2,147,483,647
Python 3
OK
TESTS
22
62
5,529,600
inp1 = input().split() n=int(inp1[0]) k=int(inp1[1]) koh_lanta = list(range(1,n+1)) liste_elimination = input().split() lead=0 eliminated = [] for i in range(k): lead = (lead + int(liste_elimination[i]))%(n-i) eliminated.append(koh_lanta.pop(int(lead))) print(*eliminated)
Title: Counting-out Rhyme Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* children are standing in a circle and playing the counting-out game. Children are numbered clockwise from 1 to *n*. In the beginning, the first child is considered the leader. The game is played in *k* steps. In ...
```python inp1 = input().split() n=int(inp1[0]) k=int(inp1[1]) koh_lanta = list(range(1,n+1)) liste_elimination = input().split() lead=0 eliminated = [] for i in range(k): lead = (lead + int(liste_elimination[i]))%(n-i) eliminated.append(koh_lanta.pop(int(lead))) print(*eliminated) ```
3
577
A
Multiplication Table
PROGRAMMING
1,000
[ "implementation", "number theory" ]
null
null
Let's consider a table consisting of *n* rows and *n* columns. The cell located at the intersection of *i*-th row and *j*-th column contains number *i*<=×<=*j*. The rows and columns are numbered starting from 1. You are given a positive integer *x*. Your task is to count the number of cells in a table that contain num...
The single line contains numbers *n* and *x* (1<=≤<=*n*<=≤<=105, 1<=≤<=*x*<=≤<=109) — the size of the table and the number that we are looking for in the table.
Print a single number: the number of times *x* occurs in the table.
[ "10 5\n", "6 12\n", "5 13\n" ]
[ "2\n", "4\n", "0\n" ]
A table for the second sample test is given below. The occurrences of number 12 are marked bold.
500
[ { "input": "10 5", "output": "2" }, { "input": "6 12", "output": "4" }, { "input": "5 13", "output": "0" }, { "input": "1 1", "output": "1" }, { "input": "2 1", "output": "1" }, { "input": "100000 1", "output": "1" }, { "input": "1 10000000...
1,692,540,771
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
6
1,000
0
y, x = map(int ,input().split()) lol = 1 cnt = 0 while lol <= x : if x / lol == x // lol : if x // lol <= y and lol <= y: cnt += 1 a , b = lol , x // lol lol += 1 print(cnt)
Title: Multiplication Table Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's consider a table consisting of *n* rows and *n* columns. The cell located at the intersection of *i*-th row and *j*-th column contains number *i*<=×<=*j*. The rows and columns are numbered starting from 1. Y...
```python y, x = map(int ,input().split()) lol = 1 cnt = 0 while lol <= x : if x / lol == x // lol : if x // lol <= y and lol <= y: cnt += 1 a , b = lol , x // lol lol += 1 print(cnt) ```
0
804
B
Minimum number of steps
PROGRAMMING
1,400
[ "combinatorics", "greedy", "implementation", "math" ]
null
null
We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substring, our job is done. Print the minimum number of steps we should perform to make our job done modulo 109<=+<...
The first line contains the initial string consisting of letters 'a' and 'b' only with length from 1 to 106.
Print the minimum number of steps modulo 109<=+<=7.
[ "ab\n", "aab\n" ]
[ "1\n", "3\n" ]
The first example: "ab"  →  "bba". The second example: "aab"  →  "abba"  →  "bbaba"  →  "bbbbaa".
1,000
[ { "input": "ab", "output": "1" }, { "input": "aab", "output": "3" }, { "input": "aaaaabaabababaaaaaba", "output": "17307" }, { "input": "abaabaaabbabaabab", "output": "1795" }, { "input": "abbaa", "output": "2" }, { "input": "abbaaabaabaaaaabbbbaababaa...
1,493,922,615
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
13
1,000
3,174,400
MOD = 1000000007 def main(): s = input() # each b contributes 1 flip to the first a before it, 2 flips to the second a before it, etc # in general, if there are k 'a's before a b, then add 2^(k + 1) - 1 flips ans = 0 a_ct = 0 for c in s: if c == 'a': a_ct += 1 else:...
Title: Minimum number of steps Time Limit: None seconds Memory Limit: None megabytes Problem Description: We have a string of letters 'a' and 'b'. We want to perform some operations on it. On each step we choose one of substrings "ab" in the string and replace it with the string "bba". If we have no "ab" as a substr...
```python MOD = 1000000007 def main(): s = input() # each b contributes 1 flip to the first a before it, 2 flips to the second a before it, etc # in general, if there are k 'a's before a b, then add 2^(k + 1) - 1 flips ans = 0 a_ct = 0 for c in s: if c == 'a': a_ct += 1 ...
0
279
B
Books
PROGRAMMING
1,400
[ "binary search", "brute force", "implementation", "two pointers" ]
null
null
When Valera has got some free time, he goes to the library to read some books. Today he's got *t* free minutes to read. That's why Valera took *n* books in the library and for each book he estimated the time he is going to need to read it. Let's number the books by integers from 1 to *n*. Valera needs *a**i* minutes to...
The first line contains two integers *n* and *t* (1<=≤<=*n*<=≤<=105; 1<=≤<=*t*<=≤<=109) — the number of books and the number of free minutes Valera's got. The second line contains a sequence of *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=104), where number *a**i* shows the number of minutes that the boy n...
Print a single integer — the maximum number of books Valera can read.
[ "4 5\n3 1 2 1\n", "3 3\n2 2 3\n" ]
[ "3\n", "1\n" ]
none
1,000
[ { "input": "4 5\n3 1 2 1", "output": "3" }, { "input": "3 3\n2 2 3", "output": "1" }, { "input": "1 3\n5", "output": "0" }, { "input": "1 10\n4", "output": "1" }, { "input": "2 10\n6 4", "output": "2" }, { "input": "6 10\n2 3 4 2 1 1", "output": "4...
1,691,815,554
2,147,483,647
Python 3
OK
TESTS
38
186
13,824,000
def mbr(m, t, bt): max_books = 0 start = 0 sum = 0 for end in range(m): sum += bt[end] while sum > t: sum -= bt[start] start += 1 max_books = max(max_books, end - start + 1) return max_books m, t = map(int, input().split()) bt = list(map(int,...
Title: Books Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Valera has got some free time, he goes to the library to read some books. Today he's got *t* free minutes to read. That's why Valera took *n* books in the library and for each book he estimated the time he is going to need t...
```python def mbr(m, t, bt): max_books = 0 start = 0 sum = 0 for end in range(m): sum += bt[end] while sum > t: sum -= bt[start] start += 1 max_books = max(max_books, end - start + 1) return max_books m, t = map(int, input().split()) bt = lis...
3
811
E
Vladik and Entertaining Flags
PROGRAMMING
2,600
[ "data structures", "dsu", "graphs" ]
null
null
In his spare time Vladik estimates beauty of the flags. Every flag could be represented as the matrix *n*<=×<=*m* which consists of positive integers. Let's define the beauty of the flag as number of components in its matrix. We call component a set of cells with same numbers and between any pair of cells from that s...
First line contains three space-separated integers *n*, *m*, *q* (1<=≤<=*n*<=≤<=10, 1<=≤<=*m*,<=*q*<=≤<=105) — dimensions of flag matrix and number of segments respectively. Each of next *n* lines contains *m* space-separated integers — description of flag matrix. All elements of flag matrix is positive integers not e...
For each segment print the result on the corresponding line.
[ "4 5 4\n1 1 1 1 1\n1 2 2 3 3\n1 1 1 2 5\n4 4 5 5 5\n1 5\n2 5\n1 2\n4 5\n" ]
[ "6\n7\n3\n4\n" ]
Partitioning on components for every segment from first test case: <img class="tex-graphics" src="https://espresso.codeforces.com/5c89ff7036ddb39d2997c8f594d4a0729e524ab0.png" style="max-width: 100.0%;max-height: 100.0%;"/>
2,500
[ { "input": "4 5 4\n1 1 1 1 1\n1 2 2 3 3\n1 1 1 2 5\n4 4 5 5 5\n1 5\n2 5\n1 2\n4 5", "output": "6\n7\n3\n4" }, { "input": "5 2 9\n6 1\n6 6\n6 6\n6 6\n5 6\n1 2\n1 1\n1 2\n1 2\n1 2\n1 1\n1 1\n1 2\n1 1", "output": "3\n2\n3\n3\n3\n2\n2\n3\n2" }, { "input": "5 4 10\n5 5 5 5\n5 5 5 5\n5 5 5 5\n...
1,496,672,198
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
204,800
#!/usr/bin/python3 import sys def get_str_deb(): yield list(int(x) for x in "4 5 4".split()) yield list(int(x) for x in "1 1 1 1 1".split()) yield list(int(x) for x in "1 2 2 3 3".split()) yield list(int(x) for x in "1 1 1 2 5".split()) yield list(int(x) for x in "4 4 5 5 5".split()) yield list...
Title: Vladik and Entertaining Flags Time Limit: None seconds Memory Limit: None megabytes Problem Description: In his spare time Vladik estimates beauty of the flags. Every flag could be represented as the matrix *n*<=×<=*m* which consists of positive integers. Let's define the beauty of the flag as number of com...
```python #!/usr/bin/python3 import sys def get_str_deb(): yield list(int(x) for x in "4 5 4".split()) yield list(int(x) for x in "1 1 1 1 1".split()) yield list(int(x) for x in "1 2 2 3 3".split()) yield list(int(x) for x in "1 1 1 2 5".split()) yield list(int(x) for x in "4 4 5 5 5".split()) ...
0
710
C
Magic Odd Square
PROGRAMMING
1,500
[ "constructive algorithms", "math" ]
null
null
Find an *n*<=×<=*n* matrix with different numbers from 1 to *n*2, so the sum in each row, column and both main diagonals are odd.
The only line contains odd integer *n* (1<=≤<=*n*<=≤<=49).
Print *n* lines with *n* integers. All the integers should be different and from 1 to *n*2. The sum in each row, column and both main diagonals should be odd.
[ "1\n", "3\n" ]
[ "1\n", "2 1 4\n3 5 7\n6 9 8\n" ]
none
0
[ { "input": "1", "output": "1" }, { "input": "3", "output": "2 1 4\n3 5 7\n6 9 8" }, { "input": "5", "output": "2 4 1 6 8\n10 3 5 7 12\n9 11 13 15 17\n14 19 21 23 16\n18 20 25 22 24" }, { "input": "7", "output": "2 4 6 1 8 10 12\n14 16 3 5 7 18 20\n22 9 11 13 15 17 24\n19 ...
1,493,211,946
2,147,483,647
Python 3
OK
TESTS
25
62
5,529,600
a = int(input()) odd = 1 even = 2 c = a//2 l = [[] for x in range(a)] for row in range(0, a): for col in range(0, a): if c <= col <= a - 1 - c: l[row].append(odd) odd += 2 else: l[row].append(even) even += 2 if row < a//2: ...
Title: Magic Odd Square Time Limit: None seconds Memory Limit: None megabytes Problem Description: Find an *n*<=×<=*n* matrix with different numbers from 1 to *n*2, so the sum in each row, column and both main diagonals are odd. Input Specification: The only line contains odd integer *n* (1<=≤<=*n*<=≤<=49). Output...
```python a = int(input()) odd = 1 even = 2 c = a//2 l = [[] for x in range(a)] for row in range(0, a): for col in range(0, a): if c <= col <= a - 1 - c: l[row].append(odd) odd += 2 else: l[row].append(even) even += 2 if row < ...
3
75
A
Life Without Zeros
PROGRAMMING
1,000
[ "implementation" ]
A. Life Without Zeros
2
256
Can you imagine our life if we removed all zeros from it? For sure we will have many problems. In this problem we will have a simple example if we removed all zeros from our life, it's the addition operation. Let's assume you are given this equation *a*<=+<=*b*<==<=*c*, where *a* and *b* are positive integers, and *c*...
The input will consist of two lines, the first line will contain the integer *a*, and the second line will contain the integer *b* which are in the equation as described above (1<=≤<=*a*,<=*b*<=≤<=109). There won't be any leading zeros in both. The value of *c* should be calculated as *c*<==<=*a*<=+<=*b*.
The output will be just one line, you should print "YES" if the equation will remain correct after removing all zeros, and print "NO" otherwise.
[ "101\n102\n", "105\n106\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "101\n102", "output": "YES" }, { "input": "105\n106", "output": "NO" }, { "input": "544\n397", "output": "YES" }, { "input": "822\n280", "output": "NO" }, { "input": "101\n413", "output": "NO" }, { "input": "309\n139", "output": "NO" }...
1,635,691,103
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
92
4,505,600
a=input() b=input() # sm=list(map(int,str(int(a)+int(b)))) # ans=sum(sm) sm=int(a)+int(b) a=a.replace("0","") b=b.replace("0","") sm1=int(a)+int(b) sm=int(str(sm).replace("0","")) # sm1=list(map(int,str(int(a)+int(b)))) # ans1=sum(sm1) if sm==sm1: print("Yes") else: print("No")
Title: Life Without Zeros Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Can you imagine our life if we removed all zeros from it? For sure we will have many problems. In this problem we will have a simple example if we removed all zeros from our life, it's the addition operation. Let's assu...
```python a=input() b=input() # sm=list(map(int,str(int(a)+int(b)))) # ans=sum(sm) sm=int(a)+int(b) a=a.replace("0","") b=b.replace("0","") sm1=int(a)+int(b) sm=int(str(sm).replace("0","")) # sm1=list(map(int,str(int(a)+int(b)))) # ans1=sum(sm1) if sm==sm1: print("Yes") else: print("No") ```
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,665,017,845
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
43
340
14,950,400
#By Anan instagram: anan.ssw import sys #sys.setrecursionlimit(20000) inp=lambda: sys.stdin.readline().strip() inparr=lambda : map(int,inp().split()) t=int(inp()) d={} ans=[] for x in range(1,t+1): d[x]=int(inp()) i=0 def rec(z): global i,ans x=d[z] if x!=-1: i+=1 rec(x) ...
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 #By Anan instagram: anan.ssw import sys #sys.setrecursionlimit(20000) inp=lambda: sys.stdin.readline().strip() inparr=lambda : map(int,inp().split()) t=int(inp()) d={} ans=[] for x in range(1,t+1): d[x]=int(inp()) i=0 def rec(z): global i,ans x=d[z] if x!=-1: i+=1 ...
-1
149
A
Business trip
PROGRAMMING
900
[ "greedy", "implementation", "sortings" ]
null
null
What joy! Petya's parents went on a business trip for the whole year and the playful kid is left all by himself. Petya got absolutely happy. He jumped on the bed and threw pillows all day long, until... Today Petya opened the cupboard and found a scary note there. His parents had left him with duties: he should water...
The first line contains exactly one integer *k* (0<=≤<=*k*<=≤<=100). The next line contains twelve space-separated integers: the *i*-th (1<=≤<=*i*<=≤<=12) number in the line represents *a**i* (0<=≤<=*a**i*<=≤<=100).
Print the only integer — the minimum number of months when Petya has to water the flower so that the flower grows no less than by *k* centimeters. If the flower can't grow by *k* centimeters in a year, print -1.
[ "5\n1 1 1 1 2 2 3 2 2 1 1 1\n", "0\n0 0 0 0 0 0 0 1 1 2 3 0\n", "11\n1 1 4 1 1 5 1 1 4 1 1 1\n" ]
[ "2\n", "0\n", "3\n" ]
Let's consider the first sample test. There it is enough to water the flower during the seventh and the ninth month. Then the flower grows by exactly five centimeters. In the second sample Petya's parents will believe him even if the flower doesn't grow at all (*k* = 0). So, it is possible for Petya not to water the f...
500
[ { "input": "5\n1 1 1 1 2 2 3 2 2 1 1 1", "output": "2" }, { "input": "0\n0 0 0 0 0 0 0 1 1 2 3 0", "output": "0" }, { "input": "11\n1 1 4 1 1 5 1 1 4 1 1 1", "output": "3" }, { "input": "15\n20 1 1 1 1 2 2 1 2 2 1 1", "output": "1" }, { "input": "7\n8 9 100 12 14 ...
1,656,749,879
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
92
0
k = int(input()) a = sorted([int(s) for s in input().split()], reverse=True) i = 0 s = 0 ans = 0 while i < len(a) and s < k: s += a[i] ans += 1 print(ans)
Title: Business trip Time Limit: None seconds Memory Limit: None megabytes Problem Description: What joy! Petya's parents went on a business trip for the whole year and the playful kid is left all by himself. Petya got absolutely happy. He jumped on the bed and threw pillows all day long, until... Today Petya open...
```python k = int(input()) a = sorted([int(s) for s in input().split()], reverse=True) i = 0 s = 0 ans = 0 while i < len(a) and s < k: s += a[i] ans += 1 print(ans) ```
0
1,003
A
Polycarp's Pockets
PROGRAMMING
800
[ "implementation" ]
null
null
Polycarp has $n$ coins, the value of the $i$-th coin is $a_i$. Polycarp wants to distribute all the coins between his pockets, but he cannot put two coins with the same value into the same pocket. For example, if Polycarp has got six coins represented as an array $a = [1, 2, 4, 3, 3, 2]$, he can distribute the coins i...
The first line of the input contains one integer $n$ ($1 \le n \le 100$) — the number of coins. The second line of the input contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 100$) — values of coins.
Print only one integer — the minimum number of pockets Polycarp needs to distribute all the coins so no two coins with the same value are put into the same pocket.
[ "6\n1 2 4 3 3 2\n", "1\n100\n" ]
[ "2\n", "1\n" ]
none
0
[ { "input": "6\n1 2 4 3 3 2", "output": "2" }, { "input": "1\n100", "output": "1" }, { "input": "100\n100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100...
1,619,150,567
2,147,483,647
Python 3
OK
TESTS
37
62
0
input() a=[*map(int,input().split())] print(max(a.count(i)for i in a))
Title: Polycarp's Pockets Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarp has $n$ coins, the value of the $i$-th coin is $a_i$. Polycarp wants to distribute all the coins between his pockets, but he cannot put two coins with the same value into the same pocket. For example, if Po...
```python input() a=[*map(int,input().split())] print(max(a.count(i)for i in a)) ```
3
412
A
Poster
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
The R1 company has recently bought a high rise building in the centre of Moscow for its main office. It's time to decorate the new office, and the first thing to do is to write the company's slogan above the main entrance to the building. The slogan of the company consists of *n* characters, so the decorators hung a l...
The first line contains two integers, *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=100) — the number of characters in the slogan and the initial position of the ladder, correspondingly. The next line contains the slogan as *n* characters written without spaces. Each character of the slogan is either a large English letter, or di...
In *t* lines, print the actions the programmers need to make. In the *i*-th line print: - "LEFT" (without the quotes), if the *i*-th action was "move the ladder to the left"; - "RIGHT" (without the quotes), if the *i*-th action was "move the ladder to the right"; - "PRINT *x*" (without the quotes), if the *i*-th ac...
[ "2 2\nR1\n", "2 1\nR1\n", "6 4\nGO?GO!\n" ]
[ "PRINT 1\nLEFT\nPRINT R\n", "PRINT R\nRIGHT\nPRINT 1\n", "RIGHT\nRIGHT\nPRINT !\nLEFT\nPRINT O\nLEFT\nPRINT G\nLEFT\nPRINT ?\nLEFT\nPRINT O\nLEFT\nPRINT G\n" ]
Note that the ladder cannot be shifted by less than one meter. The ladder can only stand in front of some square of the poster. For example, you cannot shift a ladder by half a meter and position it between two squares. Then go up and paint the first character and the second character.
500
[ { "input": "2 2\nR1", "output": "PRINT 1\nLEFT\nPRINT R" }, { "input": "2 1\nR1", "output": "PRINT R\nRIGHT\nPRINT 1" }, { "input": "6 4\nGO?GO!", "output": "RIGHT\nRIGHT\nPRINT !\nLEFT\nPRINT O\nLEFT\nPRINT G\nLEFT\nPRINT ?\nLEFT\nPRINT O\nLEFT\nPRINT G" }, { "input": "7 3\n...
1,664,107,343
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
46
0
n,k = map(int, input().split()) s = input() a = [] for letter in s: a.append(letter) if k >= n//2 and k!=1: for _ in range(n-k): print('RIGHT' ) a = a[::-1] for i in range(n-1): print(f'PRINT {a[i]}') print('LEFT') print(f'PRINT {a[-1]}') else: for _ in rang...
Title: Poster Time Limit: None seconds Memory Limit: None megabytes Problem Description: The R1 company has recently bought a high rise building in the centre of Moscow for its main office. It's time to decorate the new office, and the first thing to do is to write the company's slogan above the main entrance to the...
```python n,k = map(int, input().split()) s = input() a = [] for letter in s: a.append(letter) if k >= n//2 and k!=1: for _ in range(n-k): print('RIGHT' ) a = a[::-1] for i in range(n-1): print(f'PRINT {a[i]}') print('LEFT') print(f'PRINT {a[-1]}') else: for...
0
44
A
Indian Summer
PROGRAMMING
900
[ "implementation" ]
A. Indian Summer
2
256
Indian summer is such a beautiful time of the year! A girl named Alyona is walking in the forest and picking a bouquet from fallen leaves. Alyona is very choosy — she doesn't take a leaf if it matches the color and the species of the tree of one of the leaves she already has. Find out how many leaves Alyona has picked.
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of leaves Alyona has found. The next *n* lines contain the leaves' descriptions. Each leaf is characterized by the species of the tree it has fallen from and by the color. The species of the trees and colors are given in names, consisting of no mor...
Output the single number — the number of Alyona's leaves.
[ "5\nbirch yellow\nmaple red\nbirch yellow\nmaple yellow\nmaple green\n", "3\noak yellow\noak yellow\noak yellow\n" ]
[ "4\n", "1\n" ]
none
0
[ { "input": "5\nbirch yellow\nmaple red\nbirch yellow\nmaple yellow\nmaple green", "output": "4" }, { "input": "3\noak yellow\noak yellow\noak yellow", "output": "1" }, { "input": "5\nxbnbkzn hp\nkaqkl vrgzbvqstu\nj aqidx\nhos gyul\nwefxmh tygpluae", "output": "5" }, { "input"...
1,627,320,318
2,147,483,647
Python 3
OK
TESTS
29
154
6,758,400
n = int(input()) bouquet = [] for i in range(n): [s,c] = input().split() if ([s,c] not in bouquet): bouquet.append([s,c]) print(len(bouquet))
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 n = int(input()) bouquet = [] for i in range(n): [s,c] = input().split() if ([s,c] not in bouquet): bouquet.append([s,c]) print(len(bouquet)) ```
3.948911
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,675,096,589
2,147,483,647
Python 3
OK
TESTS
41
93
614,400
def get_prime_list(num): d=[] for x in range(2,num+1): for gg in range(2,x): if x%gg==0:break else:d.append(gg) d.remove(2) return d def check_prime_num(num): flag=True if num>1: for x in range(2,num): if num%x == 0: ...
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 def get_prime_list(num): d=[] for x in range(2,num+1): for gg in range(2,x): if x%gg==0:break else:d.append(gg) d.remove(2) return d def check_prime_num(num): flag=True if num>1: for x in range(2,num): if num%x == 0: ...
3
710
E
Generate a String
PROGRAMMING
2,000
[ "dfs and similar", "dp" ]
null
null
zscoder wants to generate an input file for some programming competition problem. His input is a string consisting of *n* letters 'a'. He is too lazy to write a generator so he will manually generate the input in a text editor. Initially, the text editor is empty. It takes him *x* seconds to insert or delete a letter...
The only line contains three integers *n*, *x* and *y* (1<=≤<=*n*<=≤<=107, 1<=≤<=*x*,<=*y*<=≤<=109) — the number of letters 'a' in the input file and the parameters from the problem statement.
Print the only integer *t* — the minimum amount of time needed to generate the input file.
[ "8 1 1\n", "8 1 10\n" ]
[ "4\n", "8\n" ]
none
0
[ { "input": "8 1 1", "output": "4" }, { "input": "8 1 10", "output": "8" }, { "input": "10 62 99", "output": "384" }, { "input": "88 417 591", "output": "4623" }, { "input": "57 5289 8444", "output": "60221" }, { "input": "382 81437847 324871127", "...
1,597,077,671
2,147,483,647
PyPy 3
OK
TESTS
31
218
101,580,800
n, x, y = map(int, input().split(" ")) l = [0.]*(n+1) for i in range(1,n+1): l[i] = min(l[i-1]+x, l[(i+1)//2]+y+(x*(i&1))) print(int(l[n]))
Title: Generate a String Time Limit: None seconds Memory Limit: None megabytes Problem Description: zscoder wants to generate an input file for some programming competition problem. His input is a string consisting of *n* letters 'a'. He is too lazy to write a generator so he will manually generate the input in a t...
```python n, x, y = map(int, input().split(" ")) l = [0.]*(n+1) for i in range(1,n+1): l[i] = min(l[i-1]+x, l[(i+1)//2]+y+(x*(i&1))) print(int(l[n])) ```
3
607
A
Chain Reaction
PROGRAMMING
1,600
[ "binary search", "dp" ]
null
null
There are *n* beacons located at distinct positions on a number line. The *i*-th beacon has position *a**i* and power level *b**i*. When the *i*-th beacon is activated, it destroys all beacons to its left (direction of decreasing coordinates) within distance *b**i* inclusive. The beacon itself is not destroyed however....
The first line of input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the initial number of beacons. The *i*-th of next *n* lines contains two integers *a**i* and *b**i* (0<=≤<=*a**i*<=≤<=1<=000<=000, 1<=≤<=*b**i*<=≤<=1<=000<=000) — the position and power level of the *i*-th beacon respectively. No two beac...
Print a single integer — the minimum number of beacons that could be destroyed if exactly one beacon is added.
[ "4\n1 9\n3 1\n6 1\n7 4\n", "7\n1 1\n2 1\n3 1\n4 1\n5 1\n6 1\n7 1\n" ]
[ "1\n", "3\n" ]
For the first sample case, the minimum number of beacons destroyed is 1. One way to achieve this is to place a beacon at position 9 with power level 2. For the second sample case, the minimum number of beacons destroyed is 3. One way to achieve this is to place a beacon at position 1337 with power level 42.
500
[ { "input": "4\n1 9\n3 1\n6 1\n7 4", "output": "1" }, { "input": "7\n1 1\n2 1\n3 1\n4 1\n5 1\n6 1\n7 1", "output": "3" }, { "input": "1\n0 1", "output": "0" }, { "input": "1\n0 1000000", "output": "0" }, { "input": "1\n1000000 1000000", "output": "0" }, { ...
1,554,361,105
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
21
498
8,601,600
n=int(input()) x=[] for i in range(n): a,b=map(int,input().split()) x.append((a,b)) x=sorted(x) dest=999999999999 otv1=0 for i in range(n-1,-1,-1): if x[i][0]<dest: dest=x[i][0]-x[i][1] else: otv1+=1 dest=999999999999 otv2=1 for i in range(n-2,-1,-1): if x[i][0]<des...
Title: Chain Reaction Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* beacons located at distinct positions on a number line. The *i*-th beacon has position *a**i* and power level *b**i*. When the *i*-th beacon is activated, it destroys all beacons to its left (direction of d...
```python n=int(input()) x=[] for i in range(n): a,b=map(int,input().split()) x.append((a,b)) x=sorted(x) dest=999999999999 otv1=0 for i in range(n-1,-1,-1): if x[i][0]<dest: dest=x[i][0]-x[i][1] else: otv1+=1 dest=999999999999 otv2=1 for i in range(n-2,-1,-1): if x...
0
981
A
Antipalindrome
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" are not. A substring $s[l \ldots r]$ ($1<=\leq<=l<=\leq<=r<=\leq<=|s|$) of a string $s<==<=s_{1}s_{2}...
The first line contains a non-empty string $s$ with length at most $50$ characters, containing lowercase English letters only.
If there is such a substring in $s$ that is not a palindrome, print the maximum length of such a substring. Otherwise print $0$. Note that there can be multiple longest substrings that are not palindromes, but their length is unique.
[ "mew\n", "wuffuw\n", "qqqqqqqq\n" ]
[ "3\n", "5\n", "0\n" ]
"mew" is not a palindrome, so the longest substring of it that is not a palindrome, is the string "mew" itself. Thus, the answer for the first example is $3$. The string "uffuw" is one of the longest non-palindrome substrings (of length $5$) of the string "wuffuw", so the answer for the second example is $5$. All sub...
500
[ { "input": "mew", "output": "3" }, { "input": "wuffuw", "output": "5" }, { "input": "qqqqqqqq", "output": "0" }, { "input": "ijvji", "output": "4" }, { "input": "iiiiiii", "output": "0" }, { "input": "wobervhvvkihcuyjtmqhaaigvvgiaahqmtjyuchikvvhvrebow"...
1,660,154,197
2,147,483,647
Python 3
OK
TESTS
133
46
0
s = input() print(0 if s[1:]==s[:-1] else len(s)-1 if s==s[::-1] else len(s))
Title: Antipalindrome Time Limit: None seconds Memory Limit: None megabytes Problem Description: A string is a palindrome if it reads the same from the left to the right and from the right to the left. For example, the strings "kek", "abacaba", "r" and "papicipap" are palindromes, while the strings "abb" and "iq" ar...
```python s = input() print(0 if s[1:]==s[:-1] else len(s)-1 if s==s[::-1] else len(s)) ```
3
658
A
Bear and Reverse Radewoosh
PROGRAMMING
800
[ "implementation" ]
null
null
Limak and Radewoosh are going to compete against each other in the upcoming algorithmic contest. They are equally skilled but they won't solve problems in the same order. There will be *n* problems. The *i*-th problem has initial score *p**i* and it takes exactly *t**i* minutes to solve it. Problems are sorted by diff...
The first line contains two integers *n* and *c* (1<=≤<=*n*<=≤<=50,<=1<=≤<=*c*<=≤<=1000) — the number of problems and the constant representing the speed of loosing points. The second line contains *n* integers *p*1,<=*p*2,<=...,<=*p**n* (1<=≤<=*p**i*<=≤<=1000,<=*p**i*<=&lt;<=*p**i*<=+<=1) — initial scores. The third...
Print "Limak" (without quotes) if Limak will get more points in total. Print "Radewoosh" (without quotes) if Radewoosh will get more points in total. Print "Tie" (without quotes) if Limak and Radewoosh will get the same total number of points.
[ "3 2\n50 85 250\n10 15 25\n", "3 6\n50 85 250\n10 15 25\n", "8 1\n10 20 30 40 50 60 70 80\n8 10 58 63 71 72 75 76\n" ]
[ "Limak\n", "Radewoosh\n", "Tie\n" ]
In the first sample, there are 3 problems. Limak solves them as follows: 1. Limak spends 10 minutes on the 1-st problem and he gets 50 - *c*·10 = 50 - 2·10 = 30 points. 1. Limak spends 15 minutes on the 2-nd problem so he submits it 10 + 15 = 25 minutes after the start of the contest. For the 2-nd problem he gets 85...
500
[ { "input": "3 2\n50 85 250\n10 15 25", "output": "Limak" }, { "input": "3 6\n50 85 250\n10 15 25", "output": "Radewoosh" }, { "input": "8 1\n10 20 30 40 50 60 70 80\n8 10 58 63 71 72 75 76", "output": "Tie" }, { "input": "4 1\n3 5 6 9\n1 2 4 8", "output": "Limak" }, {...
1,579,277,028
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
139
0
n,c=map(int,input().split()) arr=list(map(int,input().split())) t=list(map(int,input().split())) x=0 point1=0 for i in range(n): x+=t[i] point1+=(arr[i]-c*x) x=0 point2=0 for i in range(n-1,-1,-1): x+=t[i] point2+=(arr[i]-c*x) if point1>point2: print("Limak") elif point2==point1: ...
Title: Bear and Reverse Radewoosh Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak and Radewoosh are going to compete against each other in the upcoming algorithmic contest. They are equally skilled but they won't solve problems in the same order. There will be *n* problems. The *i*-...
```python n,c=map(int,input().split()) arr=list(map(int,input().split())) t=list(map(int,input().split())) x=0 point1=0 for i in range(n): x+=t[i] point1+=(arr[i]-c*x) x=0 point2=0 for i in range(n-1,-1,-1): x+=t[i] point2+=(arr[i]-c*x) if point1>point2: print("Limak") elif point2==po...
0
214
A
System of Equations
PROGRAMMING
800
[ "brute force" ]
null
null
Furik loves math lessons very much, so he doesn't attend them, unlike Rubik. But now Furik wants to get a good mark for math. For that Ms. Ivanova, his math teacher, gave him a new task. Furik solved the task immediately. Can you? You are given a system of equations: You should count, how many there are pairs of int...
A single line contains two integers *n*,<=*m* (1<=≤<=*n*,<=*m*<=≤<=1000) — the parameters of the system. The numbers on the line are separated by a space.
On a single line print the answer to the problem.
[ "9 3\n", "14 28\n", "4 20\n" ]
[ "1\n", "1\n", "0\n" ]
In the first sample the suitable pair is integers (3, 0). In the second sample the suitable pair is integers (3, 5). In the third sample there is no suitable pair.
500
[ { "input": "9 3", "output": "1" }, { "input": "14 28", "output": "1" }, { "input": "4 20", "output": "0" }, { "input": "18 198", "output": "1" }, { "input": "22 326", "output": "1" }, { "input": "26 104", "output": "1" }, { "input": "14 10"...
1,662,636,345
2,147,483,647
Python 3
OK
TESTS
54
124
409,600
from re import A n,m = map(int,input().split()) res = 0 for a in range(int(n**0.5) + 1): b = n - a**2 if (a + b**2) == m: res+=1 print(res)
Title: System of Equations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Furik loves math lessons very much, so he doesn't attend them, unlike Rubik. But now Furik wants to get a good mark for math. For that Ms. Ivanova, his math teacher, gave him a new task. Furik solved the task immedi...
```python from re import A n,m = map(int,input().split()) res = 0 for a in range(int(n**0.5) + 1): b = n - a**2 if (a + b**2) == m: res+=1 print(res) ```
3
886
A
ACM ICPC
PROGRAMMING
1,000
[ "brute force" ]
null
null
In a small but very proud high school it was decided to win ACM ICPC. This goal requires to compose as many teams of three as possible, but since there were only 6 students who wished to participate, the decision was to build exactly two teams. After practice competition, participant number *i* got a score of *a**i*. ...
The single line contains six integers *a*1,<=...,<=*a*6 (0<=≤<=*a**i*<=≤<=1000) — scores of the participants
Print "YES" (quotes for clarity), if it is possible to build teams with equal score, and "NO" otherwise. You can print each character either upper- or lowercase ("YeS" and "yes" are valid when the answer is "YES").
[ "1 3 2 1 2 1\n", "1 1 1 1 1 99\n" ]
[ "YES\n", "NO\n" ]
In the first sample, first team can be composed of 1st, 2nd and 6th participant, second — of 3rd, 4th and 5th: team scores are 1 + 3 + 1 = 2 + 1 + 2 = 5. In the second sample, score of participant number 6 is too high: his team score will be definitely greater.
500
[ { "input": "1 3 2 1 2 1", "output": "YES" }, { "input": "1 1 1 1 1 99", "output": "NO" }, { "input": "1000 1000 1000 1000 1000 1000", "output": "YES" }, { "input": "0 0 0 0 0 0", "output": "YES" }, { "input": "633 609 369 704 573 416", "output": "NO" }, { ...
1,510,510,104
7,404
Python 3
WRONG_ANSWER
CHALLENGES
0
62
0
def strenght(power, summ): for i in range(len(power)): for j in range(i + 1, len(power) - 1): if (power[i] + power[j] + power[j + 1]) == summ - (power[i] + power[j] + power[j + 1]): return 'YES' return 'NO' power = list(map(int, input().split())) summ = sum(p...
Title: ACM ICPC Time Limit: None seconds Memory Limit: None megabytes Problem Description: In a small but very proud high school it was decided to win ACM ICPC. This goal requires to compose as many teams of three as possible, but since there were only 6 students who wished to participate, the decision was to build ...
```python def strenght(power, summ): for i in range(len(power)): for j in range(i + 1, len(power) - 1): if (power[i] + power[j] + power[j + 1]) == summ - (power[i] + power[j] + power[j + 1]): return 'YES' return 'NO' power = list(map(int, input().split())) su...
0
817
B
Makes And The Product
PROGRAMMING
1,500
[ "combinatorics", "implementation", "math", "sortings" ]
null
null
After returning from the army Makes received a gift — an array *a* consisting of *n* positive integer numbers. He hadn't been solving problems for a long time, so he became interested to answer a particular question: how many triples of indices (*i*,<= *j*,<= *k*) (*i*<=&lt;<=*j*<=&lt;<=*k*), such that *a**i*·*a**j*·*a...
The first line of input contains a positive integer number *n* (3<=≤<=*n*<=≤<=105) — the number of elements in array *a*. The second line contains *n* positive integer numbers *a**i* (1<=≤<=*a**i*<=≤<=109) — the elements of a given array.
Print one number — the quantity of triples (*i*,<= *j*,<= *k*) such that *i*,<= *j* and *k* are pairwise distinct and *a**i*·*a**j*·*a**k* is minimum possible.
[ "4\n1 1 1 1\n", "5\n1 3 2 3 4\n", "6\n1 3 3 1 3 2\n" ]
[ "4\n", "2\n", "1\n" ]
In the first example Makes always chooses three ones out of four, and the number of ways to choose them is 4. In the second example a triple of numbers (1, 2, 3) is chosen (numbers, not indices). Since there are two ways to choose an element 3, then the answer is 2. In the third example a triple of numbers (1, 1, 2) ...
0
[ { "input": "4\n1 1 1 1", "output": "4" }, { "input": "5\n1 3 2 3 4", "output": "2" }, { "input": "6\n1 3 3 1 3 2", "output": "1" }, { "input": "3\n1000000000 1000000000 1000000000", "output": "1" }, { "input": "4\n1 1 2 2", "output": "2" }, { "input": ...
1,497,836,769
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
17
155
8,806,400
n = input() a = input() a = a.split(' ') a = list(map(int,a)) b = [10**9,10**9,10**9] for i in a: if i < b[0]: b[0] = i elif i < b[1]: b[1] = i elif i < b[2]: b[2] = i if len(set(b)) == 1: s = 0 for i in a: if i == b[0]: s += 1 print(int(s*(s-1)*(s-2)/...
Title: Makes And The Product Time Limit: None seconds Memory Limit: None megabytes Problem Description: After returning from the army Makes received a gift — an array *a* consisting of *n* positive integer numbers. He hadn't been solving problems for a long time, so he became interested to answer a particular questi...
```python n = input() a = input() a = a.split(' ') a = list(map(int,a)) b = [10**9,10**9,10**9] for i in a: if i < b[0]: b[0] = i elif i < b[1]: b[1] = i elif i < b[2]: b[2] = i if len(set(b)) == 1: s = 0 for i in a: if i == b[0]: s += 1 print(int(s*(s...
0
131
A
cAPS lOCK
PROGRAMMING
1,000
[ "implementation", "strings" ]
null
null
wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in the first passage. Let's consider that a word has been typed with the Caps lock key accidentall...
The first line of the input data contains a word consisting of uppercase and lowercase Latin letters. The word's length is from 1 to 100 characters, inclusive.
Print the result of the given word's processing.
[ "cAPS\n", "Lock\n" ]
[ "Caps", "Lock\n" ]
none
500
[ { "input": "cAPS", "output": "Caps" }, { "input": "Lock", "output": "Lock" }, { "input": "cAPSlOCK", "output": "cAPSlOCK" }, { "input": "CAPs", "output": "CAPs" }, { "input": "LoCK", "output": "LoCK" }, { "input": "OOPS", "output": "oops" }, { ...
1,689,165,408
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
31
0
# https://codeforces.com/problemset/problem/131/A s = input() if s.isupper(): print(s.lower()) elif s[0].islower() and s[1:].isupper(): print(s[0].upper() + s[1:].lower()) else: print(s)
Title: cAPS lOCK Time Limit: None seconds Memory Limit: None megabytes Problem Description: wHAT DO WE NEED cAPS LOCK FOR? Caps lock is a computer keyboard key. Pressing it sets an input mode in which typed letters are capital by default. If it is pressed by accident, it leads to accidents like the one we had in th...
```python # https://codeforces.com/problemset/problem/131/A s = input() if s.isupper(): print(s.lower()) elif s[0].islower() and s[1:].isupper(): print(s[0].upper() + s[1:].lower()) else: print(s) ```
0
352
B
Jeff and Periods
PROGRAMMING
1,300
[ "implementation", "sortings" ]
null
null
One day Jeff got hold of an integer sequence *a*1, *a*2, ..., *a**n* of length *n*. The boy immediately decided to analyze the sequence. For that, he needs to find all values of *x*, for which these conditions hold: - *x* occurs in sequence *a*. - Consider all positions of numbers *x* in the sequence *a* (such *i*, ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105). The next line contains integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105). The numbers are separated by spaces.
In the first line print integer *t* — the number of valid *x*. On each of the next *t* lines print two integers *x* and *p**x*, where *x* is current suitable value, *p**x* is the common difference between numbers in the progression (if *x* occurs exactly once in the sequence, *p**x* must equal 0). Print the pairs in th...
[ "1\n2\n", "8\n1 2 1 3 1 2 1 5\n" ]
[ "1\n2 0\n", "4\n1 2\n2 4\n3 0\n5 0\n" ]
In the first test 2 occurs exactly once in the sequence, ergo *p*<sub class="lower-index">2</sub> = 0.
1,000
[ { "input": "1\n2", "output": "1\n2 0" }, { "input": "8\n1 2 1 3 1 2 1 5", "output": "4\n1 2\n2 4\n3 0\n5 0" }, { "input": "3\n1 10 5", "output": "3\n1 0\n5 0\n10 0" }, { "input": "4\n9 9 3 5", "output": "3\n3 0\n5 0\n9 1" }, { "input": "6\n1 2 2 1 1 2", "outpu...
1,639,670,661
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
0
n = int(input()) lst = list(map(int,input().split())) st = set(lst) dct = {} for i in st: if lst.count(i) == 1: dct[i] = [99] else: for x in range(n): if i==lst[x]: if i in dct: dct[i].append(x) else: ...
Title: Jeff and Periods Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Jeff got hold of an integer sequence *a*1, *a*2, ..., *a**n* of length *n*. The boy immediately decided to analyze the sequence. For that, he needs to find all values of *x*, for which these conditions hold: -...
```python n = int(input()) lst = list(map(int,input().split())) st = set(lst) dct = {} for i in st: if lst.count(i) == 1: dct[i] = [99] else: for x in range(n): if i==lst[x]: if i in dct: dct[i].append(x) else: ...
0
584
A
Olesya and Rodion
PROGRAMMING
1,000
[ "math" ]
null
null
Olesya loves numbers consisting of *n* digits, and Rodion only likes numbers that are divisible by *t*. Find some number that satisfies both of them. Your task is: given the *n* and *t* print an integer strictly larger than zero consisting of *n* digits that is divisible by *t*. If such number doesn't exist, print <=-...
The single line contains two numbers, *n* and *t* (1<=≤<=*n*<=≤<=100, 2<=≤<=*t*<=≤<=10) — the length of the number and the number it should be divisible by.
Print one such positive number without leading zeroes, — the answer to the problem, or <=-<=1, if such number doesn't exist. If there are multiple possible answers, you are allowed to print any of them.
[ "3 2\n" ]
[ "712" ]
none
500
[ { "input": "3 2", "output": "222" }, { "input": "2 2", "output": "22" }, { "input": "4 3", "output": "3333" }, { "input": "5 3", "output": "33333" }, { "input": "10 7", "output": "7777777777" }, { "input": "2 9", "output": "99" }, { "input"...
1,679,783,008
2,147,483,647
Python 3
OK
TESTS
65
46
0
import sys n, t = map(int, input().split()) if n == 1 and t == 10: print("-1") sys.exit() if t == 10: t = 1 print(t, end="") for i in range(1, n): print("0", end="")
Title: Olesya and Rodion Time Limit: None seconds Memory Limit: None megabytes Problem Description: Olesya loves numbers consisting of *n* digits, and Rodion only likes numbers that are divisible by *t*. Find some number that satisfies both of them. Your task is: given the *n* and *t* print an integer strictly larg...
```python import sys n, t = map(int, input().split()) if n == 1 and t == 10: print("-1") sys.exit() if t == 10: t = 1 print(t, end="") for i in range(1, n): print("0", end="") ```
3
740
A
Alyona and copybooks
PROGRAMMING
1,300
[ "brute force", "implementation" ]
null
null
Little girl Alyona is in a shop to buy some copybooks for school. She study four subjects so she wants to have equal number of copybooks for each of the subjects. There are three types of copybook's packs in the shop: it is possible to buy one copybook for *a* rubles, a pack of two copybooks for *b* rubles, and a pack ...
The only line contains 4 integers *n*, *a*, *b*, *c* (1<=≤<=*n*,<=*a*,<=*b*,<=*c*<=≤<=109).
Print the minimum amount of rubles she should pay to buy such number of copybooks *k* that *n*<=+<=*k* is divisible by 4.
[ "1 1 3 4\n", "6 2 1 1\n", "4 4 4 4\n", "999999999 1000000000 1000000000 1000000000\n" ]
[ "3\n", "1\n", "0\n", "1000000000\n" ]
In the first example Alyona can buy 3 packs of 1 copybook for 3*a* = 3 rubles in total. After that she will have 4 copybooks which she can split between the subjects equally. In the second example Alyuna can buy a pack of 2 copybooks for *b* = 1 ruble. She will have 8 copybooks in total. In the third example Alyona ...
500
[ { "input": "1 1 3 4", "output": "3" }, { "input": "6 2 1 1", "output": "1" }, { "input": "4 4 4 4", "output": "0" }, { "input": "999999999 1000000000 1000000000 1000000000", "output": "1000000000" }, { "input": "1016 3 2 1", "output": "0" }, { "input":...
1,679,439,452
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
11
46
0
entrada = input().split(" ") lista = [] for i in entrada: lista.append(int(i)) qntLivros = lista[0] qntLivrosComprar = 0 while qntLivros % 4 != 0: qntLivros+=1 qntLivrosComprar += 1 opcoes = [] rubles = 0 cp = qntLivrosComprar // 3 if(qntLivros != 0): for c in range(cp + 1): for b in r...
Title: Alyona and copybooks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little girl Alyona is in a shop to buy some copybooks for school. She study four subjects so she wants to have equal number of copybooks for each of the subjects. There are three types of copybook's packs in the sh...
```python entrada = input().split(" ") lista = [] for i in entrada: lista.append(int(i)) qntLivros = lista[0] qntLivrosComprar = 0 while qntLivros % 4 != 0: qntLivros+=1 qntLivrosComprar += 1 opcoes = [] rubles = 0 cp = qntLivrosComprar // 3 if(qntLivros != 0): for c in range(cp + 1): ...
0
394
A
Counting Sticks
PROGRAMMING
0
[ "brute force", "implementation" ]
null
null
When new students come to the Specialized Educational and Scientific Centre (SESC) they need to start many things from the beginning. Sometimes the teachers say (not always unfairly) that we cannot even count. So our teachers decided to teach us arithmetics from the start. And what is the best way to teach students add...
The single line contains the initial expression. It is guaranteed that the expression looks like *A*<=+<=*B*<==<=*C*, where 1<=≤<=*A*,<=*B*,<=*C*<=≤<=100.
If there isn't a way to shift the stick so the expression becomes correct, print on a single line "Impossible" (without the quotes). If there is a way, print the resulting expression. Follow the format of the output from the test samples. Don't print extra space characters. If there are multiple correct answers, print...
[ "||+|=|||||\n", "|||||+||=||\n", "|+|=||||||\n", "||||+||=||||||\n" ]
[ "|||+|=||||\n", "Impossible\n", "Impossible\n", "||||+||=||||||\n" ]
In the first sample we can shift stick from the third group of sticks to the first one. In the second sample we cannot shift vertical stick from + sign to the second group of sticks. So we cannot make a - sign. There is no answer in the third sample because we cannot remove sticks from the expression. In the forth s...
500
[ { "input": "||+|=|||||", "output": "|||+|=||||" }, { "input": "|||||+||=||", "output": "Impossible" }, { "input": "|+|=||||||", "output": "Impossible" }, { "input": "||||+||=||||||", "output": "||||+||=||||||" }, { "input": "||||||||||||+|||||||||||=||||||||||||||...
1,544,560,835
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
21
124
0
import sys g = input() g = list(g) l = 0 for i in range(len(g)): if g[i] == '+': a = g[0:i] l = i if g[i] == '=': b = g[l+1:i] c = g[i+1:len(g)] a1 = len(a) b1 = len(b) c1 = len(c) if a1+b1 == c1: print(''.join(g)) sys.exit() if c1 > a1+b1: if c1-1 == a1 + b1 + 1: ...
Title: Counting Sticks Time Limit: None seconds Memory Limit: None megabytes Problem Description: When new students come to the Specialized Educational and Scientific Centre (SESC) they need to start many things from the beginning. Sometimes the teachers say (not always unfairly) that we cannot even count. So our te...
```python import sys g = input() g = list(g) l = 0 for i in range(len(g)): if g[i] == '+': a = g[0:i] l = i if g[i] == '=': b = g[l+1:i] c = g[i+1:len(g)] a1 = len(a) b1 = len(b) c1 = len(c) if a1+b1 == c1: print(''.join(g)) sys.exit() if c1 > a1+b1: if c1-1 == a1 + b...
0
735
A
Ostap and Grasshopper
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
On the way to Rio de Janeiro Ostap kills time playing with a grasshopper he took with him in a special box. Ostap builds a line of length *n* such that some cells of this line are empty and some contain obstacles. Then, he places his grasshopper to one of the empty cells and a small insect in another empty cell. The gr...
The first line of the input contains two integers *n* and *k* (2<=≤<=*n*<=≤<=100, 1<=≤<=*k*<=≤<=*n*<=-<=1) — the number of cells in the line and the length of one grasshopper's jump. The second line contains a string of length *n* consisting of characters '.', '#', 'G' and 'T'. Character '.' means that the correspondi...
If there exists a sequence of jumps (each jump of length *k*), such that the grasshopper can get from his initial position to the cell with the insect, print "YES" (without quotes) in the only line of the input. Otherwise, print "NO" (without quotes).
[ "5 2\n#G#T#\n", "6 1\nT....G\n", "7 3\nT..#..G\n", "6 2\n..GT..\n" ]
[ "YES\n", "YES\n", "NO\n", "NO\n" ]
In the first sample, the grasshopper can make one jump to the right in order to get from cell 2 to cell 4. In the second sample, the grasshopper is only able to jump to neighboring cells but the way to the insect is free — he can get there by jumping left 5 times. In the third sample, the grasshopper can't make a sin...
500
[ { "input": "5 2\n#G#T#", "output": "YES" }, { "input": "6 1\nT....G", "output": "YES" }, { "input": "7 3\nT..#..G", "output": "NO" }, { "input": "6 2\n..GT..", "output": "NO" }, { "input": "2 1\nGT", "output": "YES" }, { "input": "100 5\nG####.####.###...
1,593,939,859
2,147,483,647
Python 3
OK
TESTS
83
109
6,963,200
nk = input().split() n = int(nk[0]) k = int(nk[1]) s = input() g_ind = 0 t_ind = 0 for i in range(0, n): if(s[i] == 'G'): g_ind = i elif(s[i] == 'T'): t_ind = i start = 0 end =0 if(g_ind < t_ind): start = g_ind end = t_ind else: start = t_ind end = g_ind ...
Title: Ostap and Grasshopper Time Limit: None seconds Memory Limit: None megabytes Problem Description: On the way to Rio de Janeiro Ostap kills time playing with a grasshopper he took with him in a special box. Ostap builds a line of length *n* such that some cells of this line are empty and some contain obstacles....
```python nk = input().split() n = int(nk[0]) k = int(nk[1]) s = input() g_ind = 0 t_ind = 0 for i in range(0, n): if(s[i] == 'G'): g_ind = i elif(s[i] == 'T'): t_ind = i start = 0 end =0 if(g_ind < t_ind): start = g_ind end = t_ind else: start = t_ind end =...
3
349
A
Cinema Line
PROGRAMMING
1,100
[ "greedy", "implementation" ]
null
null
The new "Die Hard" movie has just been released! There are *n* people at the cinema box office standing in a huge line. Each of them has a single 100, 50 or 25 ruble bill. A "Die Hard" ticket costs 25 rubles. Can the booking clerk sell a ticket to each person and give the change if he initially has no money and sells t...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of people in the line. The next line contains *n* integers, each of them equals 25, 50 or 100 — the values of the bills the people have. The numbers are given in the order from the beginning of the line (at the box office) to the end of the line.
Print "YES" (without the quotes) if the booking clerk can sell a ticket to each person and give the change. Otherwise print "NO".
[ "4\n25 25 50 50\n", "2\n25 100\n", "4\n50 50 25 25\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "4\n25 25 50 50", "output": "YES" }, { "input": "2\n25 100", "output": "NO" }, { "input": "4\n50 50 25 25", "output": "NO" }, { "input": "3\n25 50 100", "output": "NO" }, { "input": "10\n25 25 25 25 25 25 25 25 25 25", "output": "YES" }, { "...
1,668,362,744
2,147,483,647
Python 3
OK
TESTS
40
186
5,324,800
kackisi = int(input()) k = list(map(int,input().split())) sayi25 = 0 sayi50 = 0 true = 0 for i in k: if i == 25: sayi25 += 1 if i == 50: sayi25 -= 1 sayi50 += 1 if i == 100: if sayi50 == 0: sayi25 -= 3 else: sayi50 -= 1 ...
Title: Cinema Line Time Limit: None seconds Memory Limit: None megabytes Problem Description: The new "Die Hard" movie has just been released! There are *n* people at the cinema box office standing in a huge line. Each of them has a single 100, 50 or 25 ruble bill. A "Die Hard" ticket costs 25 rubles. Can the bookin...
```python kackisi = int(input()) k = list(map(int,input().split())) sayi25 = 0 sayi50 = 0 true = 0 for i in k: if i == 25: sayi25 += 1 if i == 50: sayi25 -= 1 sayi50 += 1 if i == 100: if sayi50 == 0: sayi25 -= 3 else: sayi50 -= 1...
3
545
C
Woodcutters
PROGRAMMING
1,500
[ "dp", "greedy" ]
null
null
Little Susie listens to fairy tales before bed every day. Today's fairy tale was about wood cutters and the little girl immediately started imagining the choppers cutting wood. She imagined the situation that is described below. There are *n* trees located along the road at points with coordinates *x*1,<=*x*2,<=...,<=...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of trees. Next *n* lines contain pairs of integers *x**i*,<=*h**i* (1<=≤<=*x**i*,<=*h**i*<=≤<=109) — the coordinate and the height of the *і*-th tree. The pairs are given in the order of ascending *x**i*. No two trees are located at the point with t...
Print a single number — the maximum number of trees that you can cut down by the given rules.
[ "5\n1 2\n2 1\n5 10\n10 9\n19 1\n", "5\n1 2\n2 1\n5 10\n10 9\n20 1\n" ]
[ "3\n", "4\n" ]
In the first sample you can fell the trees like that: - fell the 1-st tree to the left — now it occupies segment [ - 1;1] - fell the 2-nd tree to the right — now it occupies segment [2;3] - leave the 3-rd tree — it occupies point 5 - leave the 4-th tree — it occupies point 10 - fell the 5-th tree to the right — ...
1,750
[ { "input": "5\n1 2\n2 1\n5 10\n10 9\n19 1", "output": "3" }, { "input": "5\n1 2\n2 1\n5 10\n10 9\n20 1", "output": "4" }, { "input": "4\n10 4\n15 1\n19 3\n20 1", "output": "4" }, { "input": "35\n1 7\n3 11\n6 12\n7 6\n8 5\n9 11\n15 3\n16 10\n22 2\n23 3\n25 7\n27 3\n34 5\n35 10...
1,697,793,071
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
n = int(input()) tree = {} tree_cutdown = 2 for _ in range(n): x,h = map(int,input().split()) tree[x] = h m = max(tree.keys()) tree_point = [0]*(m+1) for i in tree.items(): tree_point[i[0]] = 1 i = 2 while i < m: if tree_point[i]: if tree_point[i-tree[i]:i] == [0]*tree[i]: ...
Title: Woodcutters Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Susie listens to fairy tales before bed every day. Today's fairy tale was about wood cutters and the little girl immediately started imagining the choppers cutting wood. She imagined the situation that is described b...
```python n = int(input()) tree = {} tree_cutdown = 2 for _ in range(n): x,h = map(int,input().split()) tree[x] = h m = max(tree.keys()) tree_point = [0]*(m+1) for i in tree.items(): tree_point[i[0]] = 1 i = 2 while i < m: if tree_point[i]: if tree_point[i-tree[i]:i] == [0]*tree[i]:...
0
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,658,299,613
2,147,483,647
Python 3
OK
TESTS
41
93
614,400
n = int(input()) if not n % 2: print(n // 2) print(*[2 for _ in range(n // 2)]) else: print(1 + (n - 3) // 2) print(3, *[2 for _ in range((n - 3) // 2)])
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()) if not n % 2: print(n // 2) print(*[2 for _ in range(n // 2)]) else: print(1 + (n - 3) // 2) print(3, *[2 for _ in range((n - 3) // 2)]) ```
3
946
C
String Transformation
PROGRAMMING
1,300
[ "greedy", "strings" ]
null
null
You are given a string *s* consisting of |*s*| small english letters. In one move you can replace any character of this string to the next character in alphabetical order (a will be replaced with b, s will be replaced with t, etc.). You cannot replace letter z with any other letter. Your target is to make some number...
The only one line of the input consisting of the string *s* consisting of |*s*| (1<=≤<=|*s*|<=≤<=105) small english letters.
If you can get a string that can be obtained from the given string and will contain english alphabet as a subsequence, print it. Otherwise print «-1» (without quotes).
[ "aacceeggiikkmmooqqssuuwwyy\n", "thereisnoanswer\n" ]
[ "abcdefghijklmnopqrstuvwxyz\n", "-1\n" ]
none
0
[ { "input": "aacceeggiikkmmooqqssuuwwyy", "output": "abcdefghijklmnopqrstuvwxyz" }, { "input": "thereisnoanswer", "output": "-1" }, { "input": "jqcfvsaveaixhioaaeephbmsmfcgdyawscpyioybkgxlcrhaxs", "output": "-1" }, { "input": "rtdacjpsjjmjdhcoprjhaenlwuvpfqzurnrswngmpnkdnunaen...
1,595,438,262
2,147,483,647
Python 3
OK
TESTS
102
139
7,270,400
def solve(s): if len(s)<26: return -1 n = len(s) lis = list('abcdefghijklmnopqrstuvwxyz') curr = 0 for i in range(n): if lis.index(s[i])<=curr: #print(s) s[i] = lis[curr] curr += 1 if curr == 26: break ...
Title: String Transformation Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a string *s* consisting of |*s*| small english letters. In one move you can replace any character of this string to the next character in alphabetical order (a will be replaced with b, s will be rep...
```python def solve(s): if len(s)<26: return -1 n = len(s) lis = list('abcdefghijklmnopqrstuvwxyz') curr = 0 for i in range(n): if lis.index(s[i])<=curr: #print(s) s[i] = lis[curr] curr += 1 if curr == 26: break ...
3
404
A
Valera and X
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a test on alphabet today. At the test Valera got a square piece of squared paper. The length of the...
The first line contains integer *n* (3<=≤<=*n*<=&lt;<=300; *n* is odd). Each of the next *n* lines contains *n* small English letters — the description of Valera's paper.
Print string "YES", if the letters on the paper form letter "X". Otherwise, print string "NO". Print the strings without quotes.
[ "5\nxooox\noxoxo\nsoxoo\noxoxo\nxooox\n", "3\nwsw\nsws\nwsw\n", "3\nxpx\npxp\nxpe\n" ]
[ "NO\n", "YES\n", "NO\n" ]
none
500
[ { "input": "5\nxooox\noxoxo\nsoxoo\noxoxo\nxooox", "output": "NO" }, { "input": "3\nwsw\nsws\nwsw", "output": "YES" }, { "input": "3\nxpx\npxp\nxpe", "output": "NO" }, { "input": "5\nliiil\nilili\niilii\nilili\nliiil", "output": "YES" }, { "input": "7\nbwccccb\nck...
1,678,889,235
2,147,483,647
Python 3
OK
TESTS
47
46
0
n = int(input()) z = [] count = 0 for i in range(0, n): z.append(input()) for j in range(0, int(n/2)): if z[j] == z[n-j-1] and z[int(n/2)][j] == z[int(n/2)][n-j-1]: count += 1 else: break if count < int(n/2): print("NO") else: if z[int(n/2)][int(n/2)] == z[0][0] and z[in...
Title: Valera and X Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a...
```python n = int(input()) z = [] count = 0 for i in range(0, n): z.append(input()) for j in range(0, int(n/2)): if z[j] == z[n-j-1] and z[int(n/2)][j] == z[int(n/2)][n-j-1]: count += 1 else: break if count < int(n/2): print("NO") else: if z[int(n/2)][int(n/2)] == z[0][0...
3
556
A
Case of the Zeros and Ones
PROGRAMMING
900
[ "greedy" ]
null
null
Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Consider the following operation: we choose any two adjacent positions in the string, and if one them contains 0, an...
First line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=2·105), the length of the string that Andreid has. The second line contains the string of length *n* consisting only from zeros and ones.
Output the minimum length of the string that may remain after applying the described operations several times.
[ "4\n1100\n", "5\n01010\n", "8\n11101111\n" ]
[ "0\n", "1\n", "6\n" ]
In the first sample test it is possible to change the string like the following: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/10df55364c21c6e8d5da31b6ab6f6294c4fc26b3.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second sample test it is possible to change the string like...
250
[ { "input": "4\n1100", "output": "0" }, { "input": "5\n01010", "output": "1" }, { "input": "8\n11101111", "output": "6" }, { "input": "1\n0", "output": "1" }, { "input": "1\n1", "output": "1" }, { "input": "2\n00", "output": "2" }, { "input"...
1,682,771,053
2,147,483,647
PyPy 3-64
OK
TESTS
49
62
409,600
a=int(input()) b=input() zero=b.count('0') ones=b.count('1') print(abs(zero-ones))
Title: Case of the Zeros and Ones Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Cons...
```python a=int(input()) b=input() zero=b.count('0') ones=b.count('1') print(abs(zero-ones)) ```
3
952
D
I'm Feeling Lucky!
PROGRAMMING
1,800
[ "probabilities" ]
null
null
You have one chip and one chance to play roulette. Are you feeling lucky?
none
Print your bet. Your chip must be placed entirely within some square (not on an edge or a corner shared by adjacent squares).
[]
[]
none
0
[ { "input": "1", "output": "Red" }, { "input": "2", "output": "Red" } ]
1,680,300,546
846
Python 3
WRONG_ANSWER
TESTS
0
31
0
print('31')
Title: I'm Feeling Lucky! Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have one chip and one chance to play roulette. Are you feeling lucky? Input Specification: none Output Specification: Print your bet. Your chip must be placed entirely within some square (not on an edge or a co...
```python print('31') ```
0
893
C
Rumor
PROGRAMMING
1,300
[ "dfs and similar", "graphs", "greedy" ]
null
null
Vova promised himself that he would never play computer games... But recently Firestorm — a well-known game developing company — published their newest game, World of Farcraft, and it became really popular. Of course, Vova started playing it. Now he tries to solve a quest. The task is to come to a settlement named Ove...
The first line contains two integer numbers *n* and *m* (1<=≤<=*n*<=≤<=105,<=0<=≤<=*m*<=≤<=105) — the number of characters in Overcity and the number of pairs of friends. The second line contains *n* integer numbers *c**i* (0<=≤<=*c**i*<=≤<=109) — the amount of gold *i*-th character asks to start spreading the rumor. ...
Print one number — the minimum amount of gold Vova has to spend in order to finish the quest.
[ "5 2\n2 5 3 4 8\n1 4\n4 5\n", "10 0\n1 2 3 4 5 6 7 8 9 10\n", "10 5\n1 6 2 7 3 8 4 9 5 10\n1 2\n3 4\n5 6\n7 8\n9 10\n" ]
[ "10\n", "55\n", "15\n" ]
In the first example the best decision is to bribe the first character (he will spread the rumor to fourth character, and the fourth one will spread it to fifth). Also Vova has to bribe the second and the third characters, so they know the rumor. In the second example Vova has to bribe everyone. In the third example ...
0
[ { "input": "5 2\n2 5 3 4 8\n1 4\n4 5", "output": "10" }, { "input": "10 0\n1 2 3 4 5 6 7 8 9 10", "output": "55" }, { "input": "10 5\n1 6 2 7 3 8 4 9 5 10\n1 2\n3 4\n5 6\n7 8\n9 10", "output": "15" }, { "input": "1 0\n0", "output": "0" }, { "input": "1 0\n10000000...
1,683,644,740
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
826
34,406,400
from collections import defaultdict from collections import deque def findMin(): n, m = map(int, input().split()) gold = list(map(int, input().split())) total = 0 visited = set() path = defaultdict(list) if m == 0: print(sum(gold)) exit() for i in range(m): ...
Title: Rumor Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vova promised himself that he would never play computer games... But recently Firestorm — a well-known game developing company — published their newest game, World of Farcraft, and it became really popular. Of course, Vova starte...
```python from collections import defaultdict from collections import deque def findMin(): n, m = map(int, input().split()) gold = list(map(int, input().split())) total = 0 visited = set() path = defaultdict(list) if m == 0: print(sum(gold)) exit() for i in range(m...
0
325
E
The Red Button
PROGRAMMING
2,800
[ "combinatorics", "dfs and similar", "dsu", "graphs", "greedy" ]
null
null
Piegirl found the red button. You have one last chance to change the inevitable end. The circuit under the button consists of *n* nodes, numbered from 0 to *n* - 1. In order to deactivate the button, the *n* nodes must be disarmed in a particular order. Node 0 must be disarmed first. After disarming node *i*, the next...
Input consists of a single integer *n* (2<=≤<=*n*<=≤<=105).
Print an order in which you can to disarm all nodes. If it is impossible, print -1 instead. If there are multiple orders, print any one of them.
[ "2\n", "3\n", "4\n", "16\n" ]
[ "0 1 0\n", "-1", "0 1 3 2 0\n", "0 1 2 4 9 3 6 13 10 5 11 7 15 14 12 8 0\n" ]
none
2,500
[ { "input": "2", "output": "0 1 0" }, { "input": "3", "output": "-1" }, { "input": "4", "output": "0 1 3 2 0" }, { "input": "16", "output": "0 1 2 4 9 3 6 13 10 5 11 7 15 14 12 8 0" }, { "input": "5", "output": "-1" }, { "input": "7", "output": "-1"...
1,485,404,043
2,147,483,647
Python 3
OK
TESTS
47
342
19,148,800
n=int(input()) if n&1: print(-1) else: D,R=[False]*(10**6),[0]*(10**6) i,j=0,0 while True: D[j]=True R[i]=j i+=1 if not D[(j+n)>>1]: j=(j+n)>>1 elif not D[j>>1]: j=j>>1 else: break print(" ".join(str(R[i]) for i in range(n,-1,-1)))
Title: The Red Button Time Limit: None seconds Memory Limit: None megabytes Problem Description: Piegirl found the red button. You have one last chance to change the inevitable end. The circuit under the button consists of *n* nodes, numbered from 0 to *n* - 1. In order to deactivate the button, the *n* nodes must ...
```python n=int(input()) if n&1: print(-1) else: D,R=[False]*(10**6),[0]*(10**6) i,j=0,0 while True: D[j]=True R[i]=j i+=1 if not D[(j+n)>>1]: j=(j+n)>>1 elif not D[j>>1]: j=j>>1 else: break print(" ".join(str(R[i]) for i in range(n,-1,-1))) ```
3
870
B
Maximum of Maximums of Minimums
PROGRAMMING
1,200
[ "greedy" ]
null
null
You are given an array *a*1,<=*a*2,<=...,<=*a**n* consisting of *n* integers, and an integer *k*. You have to split the array into exactly *k* non-empty subsegments. You'll then compute the minimum integer on each subsegment, and take the maximum integer over the *k* obtained minimums. What is the maximum possible inte...
The first line contains two integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=<=105) — the size of the array *a* and the number of subsegments you have to split the array to. The second line contains *n* integers *a*1,<=<=*a*2,<=<=...,<=<=*a**n* (<=-<=109<=<=≤<=<=*a**i*<=≤<=<=109).
Print single integer — the maximum possible integer you can get if you split the array into *k* non-empty subsegments and take maximum of minimums on the subsegments.
[ "5 2\n1 2 3 4 5\n", "5 1\n-4 -5 -3 -2 -1\n" ]
[ "5\n", "-5\n" ]
A subsegment [*l*,  *r*] (*l* ≤ *r*) of array *a* is the sequence *a*<sub class="lower-index">*l*</sub>,  *a*<sub class="lower-index">*l* + 1</sub>,  ...,  *a*<sub class="lower-index">*r*</sub>. Splitting of array *a* of *n* elements into *k* subsegments [*l*<sub class="lower-index">1</sub>, *r*<sub class="lower-index...
1,000
[ { "input": "5 2\n1 2 3 4 5", "output": "5" }, { "input": "5 1\n-4 -5 -3 -2 -1", "output": "-5" }, { "input": "10 2\n10 9 1 -9 -7 -9 3 8 -10 5", "output": "10" }, { "input": "10 4\n-8 -1 2 -3 9 -8 4 -3 5 9", "output": "9" }, { "input": "1 1\n504262064", "output...
1,570,470,365
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
171
8,704,000
n,k=map(int,input().split()) a=sorted(list(map(int,input().split()))) if k==1: print(a[0]) else: print(a[n-1])
Title: Maximum of Maximums of Minimums Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array *a*1,<=*a*2,<=...,<=*a**n* consisting of *n* integers, and an integer *k*. You have to split the array into exactly *k* non-empty subsegments. You'll then compute the minimum integ...
```python n,k=map(int,input().split()) a=sorted(list(map(int,input().split()))) if k==1: print(a[0]) else: print(a[n-1]) ```
0
875
A
Classroom Watch
PROGRAMMING
1,200
[ "brute force", "math" ]
null
null
Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answered Vova that *n* is the answer to the arithmetic task for first-graders. In the textbook, a certain ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=109).
In the first line print one integer *k* — number of different values of *x* satisfying the condition. In next *k* lines print these values in ascending order.
[ "21\n", "20\n" ]
[ "1\n15\n", "0\n" ]
In the first test case *x* = 15 there is only one variant: 15 + 1 + 5 = 21. In the second test case there are no such *x*.
500
[ { "input": "21", "output": "1\n15" }, { "input": "20", "output": "0" }, { "input": "1", "output": "0" }, { "input": "2", "output": "1\n1" }, { "input": "3", "output": "0" }, { "input": "100000001", "output": "2\n99999937\n100000000" }, { "i...
1,644,186,678
2,147,483,647
Python 3
OK
TESTS
18
46
0
n = int(input()) m = str(n) g = len(m) l = [int(m[0])-1]+[9]*(g-1) h = 0 less = 0 while(h<len(l)): less = less + l[h] h = h + 1 a = n - less r = [] i = 0 while(a<n): j = 0 s = str(a) c = a while j<len(s): c = c + int(s[j]) j = j + 1 if(c==n): i +=1...
Title: Classroom Watch Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answe...
```python n = int(input()) m = str(n) g = len(m) l = [int(m[0])-1]+[9]*(g-1) h = 0 less = 0 while(h<len(l)): less = less + l[h] h = h + 1 a = n - less r = [] i = 0 while(a<n): j = 0 s = str(a) c = a while j<len(s): c = c + int(s[j]) j = j + 1 if(c==n): ...
3
527
A
Playing with Paper
PROGRAMMING
1,100
[ "implementation", "math" ]
null
null
One day Vasya was sitting on a not so interesting Maths lesson and making an origami from a rectangular *a* mm <=×<= *b* mm sheet of paper (*a*<=&gt;<=*b*). Usually the first step in making an origami is making a square piece of paper from the rectangular sheet by folding the sheet along the bisector of the right angle...
The first line of the input contains two integers *a*, *b* (1<=≤<=*b*<=&lt;<=*a*<=≤<=1012) — the sizes of the original sheet of paper.
Print a single integer — the number of ships that Vasya will make.
[ "2 1\n", "10 7\n", "1000000000000 1\n" ]
[ "2\n", "6\n", "1000000000000\n" ]
Pictures to the first and second sample test.
500
[ { "input": "2 1", "output": "2" }, { "input": "10 7", "output": "6" }, { "input": "1000000000000 1", "output": "1000000000000" }, { "input": "3 1", "output": "3" }, { "input": "4 1", "output": "4" }, { "input": "3 2", "output": "3" }, { "in...
1,429,103,557
2,147,483,647
Python 3
OK
TESTS
46
62
0
s=input() a,b=s.split(' ') a,b=int(a),int(b) ans=1 while a!=b and a and b: if a<b: a,b=b,a d=a//b if a%b==0: d-=1 ans+=d a,b=b,a-d*b print(ans)
Title: Playing with Paper Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya was sitting on a not so interesting Maths lesson and making an origami from a rectangular *a* mm <=×<= *b* mm sheet of paper (*a*<=&gt;<=*b*). Usually the first step in making an origami is making a squ...
```python s=input() a,b=s.split(' ') a,b=int(a),int(b) ans=1 while a!=b and a and b: if a<b: a,b=b,a d=a//b if a%b==0: d-=1 ans+=d a,b=b,a-d*b print(ans) ```
3
847
M
Weather Tomorrow
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Vasya came up with his own weather forecasting method. He knows the information about the average air temperature for each of the last *n* days. Assume that the average air temperature for each day is integral. Vasya believes that if the average temperatures over the last *n* days form an arithmetic progression, where...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=100) — the number of days for which the average air temperature is known. The second line contains a sequence of integers *t*1,<=*t*2,<=...,<=*t**n* (<=-<=1000<=≤<=*t**i*<=≤<=1000) — where *t**i* is the average temperature in the *i*-th day.
Print the average air temperature in the (*n*<=+<=1)-th day, which Vasya predicts according to his method. Note that the absolute value of the predicted temperature can exceed 1000.
[ "5\n10 5 0 -5 -10\n", "4\n1 1 1 1\n", "3\n5 1 -5\n", "2\n900 1000\n" ]
[ "-15\n", "1\n", "-5\n", "1100\n" ]
In the first example the sequence of the average temperatures is an arithmetic progression where the first term is 10 and each following terms decreases by 5. So the predicted average temperature for the sixth day is  - 10 - 5 =  - 15. In the second example the sequence of the average temperatures is an arithmetic pro...
0
[ { "input": "5\n10 5 0 -5 -10", "output": "-15" }, { "input": "4\n1 1 1 1", "output": "1" }, { "input": "3\n5 1 -5", "output": "-5" }, { "input": "2\n900 1000", "output": "1100" }, { "input": "2\n1 2", "output": "3" }, { "input": "3\n2 5 8", "output...
1,589,823,526
2,147,483,647
Python 3
OK
TESTS
26
93
307,200
n=int(input()) a=list(map(int,input().split())) ans=a[0]+(n)*(a[1]-a[0]) t=[0]*(n-1) u=0 for i in range(len(a)-1): t[i]=a[i+1]-a[i] val=t[0] for j in t: if j==val: continue else: u=1 if u==0: print(ans) else: print(a.pop())
Title: Weather Tomorrow Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya came up with his own weather forecasting method. He knows the information about the average air temperature for each of the last *n* days. Assume that the average air temperature for each day is integral. Vasya ...
```python n=int(input()) a=list(map(int,input().split())) ans=a[0]+(n)*(a[1]-a[0]) t=[0]*(n-1) u=0 for i in range(len(a)-1): t[i]=a[i+1]-a[i] val=t[0] for j in t: if j==val: continue else: u=1 if u==0: print(ans) else: print(a.pop()) ```
3
919
D
Substring
PROGRAMMING
1,700
[ "dfs and similar", "dp", "graphs" ]
null
null
You are given a graph with $n$ nodes and $m$ directed edges. One lowercase letter is assigned to each node. We define a path's value as the number of the most frequently occurring letter. For example, if letters on a path are "abaca", then the value of that path is $3$. Your task is find a path whose value is the large...
The first line contains two positive integers $n, m$ ($1 \leq n, m \leq 300\,000$), denoting that the graph has $n$ nodes and $m$ directed edges. The second line contains a string $s$ with only lowercase English letters. The $i$-th character is the letter assigned to the $i$-th node. Then $m$ lines follow. Each line ...
Output a single line with a single integer denoting the largest value. If the value can be arbitrarily large, output -1 instead.
[ "5 4\nabaca\n1 2\n1 3\n3 4\n4 5\n", "6 6\nxzyabc\n1 2\n3 1\n2 3\n5 4\n4 3\n6 4\n", "10 14\nxzyzyzyzqx\n1 2\n2 4\n3 5\n4 5\n2 6\n6 8\n6 5\n2 10\n3 9\n10 9\n4 6\n1 10\n2 8\n3 7\n" ]
[ "3\n", "-1\n", "4\n" ]
In the first sample, the path with largest value is $1 \to 3 \to 4 \to 5$. The value is $3$ because the letter 'a' appears $3$ times.
1,500
[ { "input": "5 4\nabaca\n1 2\n1 3\n3 4\n4 5", "output": "3" }, { "input": "6 6\nxzyabc\n1 2\n3 1\n2 3\n5 4\n4 3\n6 4", "output": "-1" }, { "input": "10 14\nxzyzyzyzqx\n1 2\n2 4\n3 5\n4 5\n2 6\n6 8\n6 5\n2 10\n3 9\n10 9\n4 6\n1 10\n2 8\n3 7", "output": "4" }, { "input": "1 1\nf...
1,622,494,012
1,312
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
3,000
19,968,000
import collections a = input().split() m = int(a[0]) n = int(a[1]) s = list(input()) d = {} for i in range(n): b = input().split() if int(b[0]) not in d: d[int(b[0])] = [int(b[1])] else: d[int(b[0])].append(int(b[1])) def dfs(d, so, visited, di, string, freq=0, mmax=0): ...
Title: Substring Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a graph with $n$ nodes and $m$ directed edges. One lowercase letter is assigned to each node. We define a path's value as the number of the most frequently occurring letter. For example, if letters on a path are...
```python import collections a = input().split() m = int(a[0]) n = int(a[1]) s = list(input()) d = {} for i in range(n): b = input().split() if int(b[0]) not in d: d[int(b[0])] = [int(b[1])] else: d[int(b[0])].append(int(b[1])) def dfs(d, so, visited, di, string, freq=0, mmax...
0
994
A
Fingerprints
PROGRAMMING
800
[ "implementation" ]
null
null
You are locked in a room with a door that has a keypad with 10 keys corresponding to digits from 0 to 9. To escape from the room, you need to enter a correct code. You also have a sequence of digits. Some keys on the keypad have fingerprints. You believe the correct code is the longest not necessarily contiguous subse...
The first line contains two integers $n$ and $m$ ($1 \le n, m \le 10$) representing the number of digits in the sequence you have and the number of keys on the keypad that have fingerprints. The next line contains $n$ distinct space-separated integers $x_1, x_2, \ldots, x_n$ ($0 \le x_i \le 9$) representing the sequen...
In a single line print a space-separated sequence of integers representing the code. If the resulting sequence is empty, both printing nothing and printing a single line break is acceptable.
[ "7 3\n3 5 7 1 6 2 8\n1 2 7\n", "4 4\n3 4 1 0\n0 1 7 9\n" ]
[ "7 1 2\n", "1 0\n" ]
In the first example, the only digits with fingerprints are $1$, $2$ and $7$. All three of them appear in the sequence you know, $7$ first, then $1$ and then $2$. Therefore the output is 7 1 2. Note that the order is important, and shall be the same as the order in the original sequence. In the second example digits $...
500
[ { "input": "7 3\n3 5 7 1 6 2 8\n1 2 7", "output": "7 1 2" }, { "input": "4 4\n3 4 1 0\n0 1 7 9", "output": "1 0" }, { "input": "9 4\n9 8 7 6 5 4 3 2 1\n2 4 6 8", "output": "8 6 4 2" }, { "input": "10 5\n3 7 1 2 4 6 9 0 5 8\n4 3 0 7 9", "output": "3 7 4 9 0" }, { "...
1,561,556,549
2,147,483,647
Python 3
OK
TESTS
31
124
0
t = list(map(int,input().split(' '))) l1 = list(map(int,input().split(' '))) l2= list(map(int,input().split(' '))) l3=[] for i in l1: if i in l2: l3.append(i) for i in l3: print(i,end=" ")
Title: Fingerprints Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are locked in a room with a door that has a keypad with 10 keys corresponding to digits from 0 to 9. To escape from the room, you need to enter a correct code. You also have a sequence of digits. Some keys on the keyp...
```python t = list(map(int,input().split(' '))) l1 = list(map(int,input().split(' '))) l2= list(map(int,input().split(' '))) l3=[] for i in l1: if i in l2: l3.append(i) for i in l3: print(i,end=" ") ```
3
729
B
Spotlights
PROGRAMMING
1,200
[ "dp", "implementation" ]
null
null
Theater stage is a rectangular field of size *n*<=×<=*m*. The director gave you the stage's plan which actors will follow. For each cell it is stated in the plan if there would be an actor in this cell or not. You are to place a spotlight on the stage in some good position. The spotlight will project light in one of t...
The first line contains two positive integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000) — the number of rows and the number of columns in the plan. The next *n* lines contain *m* integers, 0 or 1 each — the description of the plan. Integer 1, means there will be an actor in the corresponding cell, while 0 means the cell ...
Print one integer — the number of good positions for placing the spotlight.
[ "2 4\n0 1 0 0\n1 0 1 0\n", "4 4\n0 0 0 0\n1 0 0 1\n0 1 1 0\n0 1 0 0\n" ]
[ "9\n", "20\n" ]
In the first example the following positions are good: 1. the (1, 1) cell and right direction; 1. the (1, 1) cell and down direction; 1. the (1, 3) cell and left direction; 1. the (1, 3) cell and down direction; 1. the (1, 4) cell and left direction; 1. the (2, 2) cell and left direction; 1. the (2, 2) cell and...
1,000
[ { "input": "2 4\n0 1 0 0\n1 0 1 0", "output": "9" }, { "input": "4 4\n0 0 0 0\n1 0 0 1\n0 1 1 0\n0 1 0 0", "output": "20" }, { "input": "1 5\n1 1 0 0 0", "output": "3" }, { "input": "2 10\n0 0 0 0 0 0 0 1 0 0\n1 0 0 0 0 0 0 0 0 0", "output": "20" }, { "input": "3 ...
1,479,636,764
4,064
Python 3
TIME_LIMIT_EXCEEDED
TESTS
41
1,000
11,673,600
def pro(L, k): ones = [] for x in range(k): if L[x] == '1': ones.append(x) p = 0 o = len(ones) if o != 0: p += k - o for x in range(o-1): p += ones[x+1] - ones[x] - 1 return p n, m = map(int, input().split()) scene = [input().split() f...
Title: Spotlights Time Limit: None seconds Memory Limit: None megabytes Problem Description: Theater stage is a rectangular field of size *n*<=×<=*m*. The director gave you the stage's plan which actors will follow. For each cell it is stated in the plan if there would be an actor in this cell or not. You are to pl...
```python def pro(L, k): ones = [] for x in range(k): if L[x] == '1': ones.append(x) p = 0 o = len(ones) if o != 0: p += k - o for x in range(o-1): p += ones[x+1] - ones[x] - 1 return p n, m = map(int, input().split()) scene = [input()...
0
202
A
LLPS
PROGRAMMING
800
[ "binary search", "bitmasks", "brute force", "greedy", "implementation", "strings" ]
null
null
This problem's actual name, "Lexicographically Largest Palindromic Subsequence" is too long to fit into the page headline. You are given string *s* consisting of lowercase English letters only. Find its lexicographically largest palindromic subsequence. We'll call a non-empty string *s*[*p*1*p*2... *p**k*] = *s**p*1*...
The only input line contains a non-empty string *s* consisting of lowercase English letters only. Its length does not exceed 10.
Print the lexicographically largest palindromic subsequence of string *s*.
[ "radar\n", "bowwowwow\n", "codeforces\n", "mississipp\n" ]
[ "rr\n", "wwwww\n", "s\n", "ssss\n" ]
Among all distinct subsequences of string "radar" the following ones are palindromes: "a", "d", "r", "aa", "rr", "ada", "rar", "rdr", "raar" and "radar". The lexicographically largest of them is "rr".
500
[ { "input": "radar", "output": "rr" }, { "input": "bowwowwow", "output": "wwwww" }, { "input": "codeforces", "output": "s" }, { "input": "mississipp", "output": "ssss" }, { "input": "tourist", "output": "u" }, { "input": "romka", "output": "r" }, ...
1,630,470,416
2,147,483,647
Python 3
OK
TESTS
54
124
6,758,400
word = str(input()) dictionary = dict() for i in word: dictionary[i] = i*(word.count(i)) sort = sorted(dictionary) print(dictionary[sort[-1]])
Title: LLPS Time Limit: None seconds Memory Limit: None megabytes Problem Description: This problem's actual name, "Lexicographically Largest Palindromic Subsequence" is too long to fit into the page headline. You are given string *s* consisting of lowercase English letters only. Find its lexicographically largest ...
```python word = str(input()) dictionary = dict() for i in word: dictionary[i] = i*(word.count(i)) sort = sorted(dictionary) print(dictionary[sort[-1]]) ```
3
769
D
k-Interesting Pairs Of Integers
PROGRAMMING
1,700
[ "*special", "bitmasks", "brute force", "meet-in-the-middle" ]
null
null
Vasya has the sequence consisting of *n* integers. Vasya consider the pair of integers *x* and *y* k-interesting, if their binary representation differs from each other exactly in *k* bits. For example, if *k*<==<=2, the pair of integers *x*<==<=5 and *y*<==<=3 is k-interesting, because their binary representation *x*=...
The first line contains two integers *n* and *k* (2<=≤<=*n*<=≤<=105, 0<=≤<=*k*<=≤<=14) — the number of integers in Vasya's sequence and the number of bits in which integers in k-interesting pair should differ. The second line contains the sequence *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=104), which Vasya has.
Print the number of pairs (*i*, *j*) so that *i*<=&lt;<=*j* and the pair of integers *a**i* and *a**j* is k-interesting.
[ "4 1\n0 3 2 1\n", "6 0\n200 100 100 100 200 200\n" ]
[ "4\n", "6\n" ]
In the first test there are 4 k-interesting pairs: - (1, 3), - (1, 4), - (2, 3), - (2, 4). In the second test *k* = 0. Consequently, integers in any k-interesting pair should be equal to themselves. Thus, for the second test there are 6 k-interesting pairs: - (1, 5), - (1, 6), - (2, 3), - (2, 4), - (3, 4), ...
2,000
[ { "input": "4 1\n0 3 2 1", "output": "4" }, { "input": "6 0\n200 100 100 100 200 200", "output": "6" }, { "input": "2 0\n1 1", "output": "1" }, { "input": "2 0\n0 0", "output": "1" }, { "input": "2 0\n10000 10000", "output": "1" }, { "input": "2 0\n0 1...
1,488,651,965
23,165
Python 3
WRONG_ANSWER
PRETESTS
1
61
4,608,000
n, k = map(int, input().split()) a = list(map(int, input().split())) maximum = len(str(bin(max(a))).replace('0b', '')) glCounter = 0 def check(s1, s2): global k counter = 0 for q in range(len(s1)): if not s1[q] == s2[q]: counter += 1 if counter == k: counter=0 ...
Title: k-Interesting Pairs Of Integers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has the sequence consisting of *n* integers. Vasya consider the pair of integers *x* and *y* k-interesting, if their binary representation differs from each other exactly in *k* bits. For example, ...
```python n, k = map(int, input().split()) a = list(map(int, input().split())) maximum = len(str(bin(max(a))).replace('0b', '')) glCounter = 0 def check(s1, s2): global k counter = 0 for q in range(len(s1)): if not s1[q] == s2[q]: counter += 1 if counter == k: ...
0
203
D
Hit Ball
PROGRAMMING
1,700
[ "geometry", "implementation", "math" ]
null
null
When Valera was playing football on a stadium, it suddenly began to rain. Valera hid in the corridor under the grandstand not to get wet. However, the desire to play was so great that he decided to train his hitting the ball right in this corridor. Valera went back far enough, put the ball and hit it. The ball bounced ...
The first line contains three space-separated integers *a*,<=*b*,<=*m* (1<=≤<=*a*,<=*b*,<=*m*<=≤<=100). The first two integers specify point (*a*,<=0,<=*b*), through which the ceiling and one of the corridor walls pass. The third integer is the distance at which Valera went away from the door. The second line has thre...
Print two real numbers *x*0,<=*z*0 — the *x* and *z* coordinates of point (*x*0,<=0,<=*z*0), at which the ball hits the exit door. The answer will be considered correct, if its absolute or relative error does not exceed 10<=<=-<=6.
[ "7 2 11\n3 -11 2\n", "7 2 11\n4 -3 3\n" ]
[ "6.5000000000 2.0000000000\n", "4.1666666667 1.0000000000\n" ]
<img class="tex-graphics" src="https://espresso.codeforces.com/0b96c99a50a7ff8657d6301992a0fe440badfb7b.png" style="max-width: 100.0%;max-height: 100.0%;"/>
2,000
[ { "input": "7 2 11\n3 -11 2", "output": "6.5000000000 2.0000000000" }, { "input": "7 2 11\n4 -3 3", "output": "4.1666666667 1.0000000000" }, { "input": "44 94 98\n-17 -64 9", "output": "4.0312500000 13.7812500000" }, { "input": "41 4 58\n81 -9 65", "output": "31.500000000...
1,685,612,949
2,147,483,647
PyPy 3-64
OK
TESTS
40
124
0
# https://codeforces.com/contest/203/problem/D from enum import Enum class Planes(Enum): L = 'left_wall' R = 'right_wall' B = 'floor' T = 'ceiling' D = 'door' def __lt__(self, other): return str(self) < str(other) a, b, m = map(int, input().split()) vx, vy, vz = map(int, input().spli...
Title: Hit Ball Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Valera was playing football on a stadium, it suddenly began to rain. Valera hid in the corridor under the grandstand not to get wet. However, the desire to play was so great that he decided to train his hitting the ball r...
```python # https://codeforces.com/contest/203/problem/D from enum import Enum class Planes(Enum): L = 'left_wall' R = 'right_wall' B = 'floor' T = 'ceiling' D = 'door' def __lt__(self, other): return str(self) < str(other) a, b, m = map(int, input().split()) vx, vy, vz = map(int, in...
3
52
A
123-sequence
PROGRAMMING
900
[ "implementation" ]
A. 123-sequence
2
256
There is a given sequence of integers *a*1,<=*a*2,<=...,<=*a**n*, where every number is from 1 to 3 inclusively. You have to replace the minimum number of numbers in it so that all the numbers in the sequence are equal to each other.
The first line contains an integer *n* (1<=≤<=*n*<=≤<=106). The second line contains a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=3).
Print the minimum number of replacements needed to be performed to make all the numbers in the sequence equal.
[ "9\n1 3 2 2 2 1 1 2 3\n" ]
[ "5\n" ]
In the example all the numbers equal to 1 and 3 should be replaced by 2.
500
[ { "input": "9\n1 3 2 2 2 1 1 2 3", "output": "5" }, { "input": "6\n3 3 2 2 1 3", "output": "3" }, { "input": "12\n3 1 3 1 2 1 3 2 2 1 2 1", "output": "7" }, { "input": "15\n3 2 1 1 1 1 3 2 2 3 3 1 2 3 2", "output": "10" }, { "input": "2\n2 1", "output": "1" ...
1,663,499,286
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
92
102,400
from collections import Counter n=int(input()) l=list(map(int,input().split())) c=Counter(l) if len(c)==3: if c[1]+c[2]<=c[3]: print(c[1]+c[2]) elif c[2]+c[3]<=c[1]: print(c[2]+c[3]) else: print(c[1]+c[3]) else: print(min(c[1],c[2],c[3]))
Title: 123-sequence Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: There is a given sequence of integers *a*1,<=*a*2,<=...,<=*a**n*, where every number is from 1 to 3 inclusively. You have to replace the minimum number of numbers in it so that all the numbers in the sequence are equal to each...
```python from collections import Counter n=int(input()) l=list(map(int,input().split())) c=Counter(l) if len(c)==3: if c[1]+c[2]<=c[3]: print(c[1]+c[2]) elif c[2]+c[3]<=c[1]: print(c[2]+c[3]) else: print(c[1]+c[3]) else: print(min(c[1],c[2],c[3])) ```
0
803
A
Maximal Binary Matrix
PROGRAMMING
1,400
[ "constructive algorithms" ]
null
null
You are given matrix with *n* rows and *n* columns filled with zeroes. You should put *k* ones in it in such a way that the resulting matrix is symmetrical with respect to the main diagonal (the diagonal that goes from the top left to the bottom right corner) and is lexicographically maximal. One matrix is lexicograph...
The first line consists of two numbers *n* and *k* (1<=≤<=*n*<=≤<=100, 0<=≤<=*k*<=≤<=106).
If the answer exists then output resulting matrix. Otherwise output -1.
[ "2 1\n", "3 2\n", "2 5\n" ]
[ "1 0 \n0 0 \n", "1 0 0 \n0 1 0 \n0 0 0 \n", "-1\n" ]
none
0
[ { "input": "2 1", "output": "1 0 \n0 0 " }, { "input": "3 2", "output": "1 0 0 \n0 1 0 \n0 0 0 " }, { "input": "2 5", "output": "-1" }, { "input": "1 0", "output": "0 " }, { "input": "1 1", "output": "1 " }, { "input": "20 398", "output": "1 1 1 1 ...
1,698,741,805
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
15
0
# -*- coding: utf-8 -*- """ Created on Fri Oct 27 00:57:35 2023 @author: 程卓 2300011733 """ n = int(input()) for i in range(n): cur_n = int(input()) number = [int(element) for element in input().split()] left = 0 right = cur_n-1 min_ = 1 max_ = cur_n for j in range(cur_n): ...
Title: Maximal Binary Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given matrix with *n* rows and *n* columns filled with zeroes. You should put *k* ones in it in such a way that the resulting matrix is symmetrical with respect to the main diagonal (the diagonal that goes...
```python # -*- coding: utf-8 -*- """ Created on Fri Oct 27 00:57:35 2023 @author: 程卓 2300011733 """ n = int(input()) for i in range(n): cur_n = int(input()) number = [int(element) for element in input().split()] left = 0 right = cur_n-1 min_ = 1 max_ = cur_n for j in range(...
-1
409
H
A + B Strikes Back
PROGRAMMING
1,500
[ "*special", "brute force", "constructive algorithms", "dsu", "implementation" ]
null
null
A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try?
The input contains two integers *a* and *b* (0<=≤<=*a*,<=*b*<=≤<=103), separated by a single space.
Output the sum of the given integers.
[ "5 14\n", "381 492\n" ]
[ "19\n", "873\n" ]
none
0
[ { "input": "5 14", "output": "19" }, { "input": "381 492", "output": "873" }, { "input": "536 298", "output": "834" }, { "input": "143 522", "output": "665" }, { "input": "433 126", "output": "559" }, { "input": "723 350", "output": "1073" }, {...
1,681,313,194
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
0
0
import sys input = lambda: sys.stdin.readline().rstrip() a,b = map(int, input().split()) print(a+b)
Title: A + B Strikes Back Time Limit: None seconds Memory Limit: None megabytes Problem Description: A + B is often used as an example of the easiest problem possible to show some contest platform. However, some scientists have observed that sometimes this problem is not so easy to get accepted. Want to try? Input ...
```python import sys input = lambda: sys.stdin.readline().rstrip() a,b = map(int, input().split()) print(a+b) ```
0
699
A
Launch of Collider
PROGRAMMING
1,000
[ "implementation" ]
null
null
There will be a launch of a new, powerful and unusual collider very soon, which located along a straight line. *n* particles will be launched inside it. All of them are located in a straight line and there can not be two or more particles located in the same point. The coordinates of the particles coincide with the dis...
The first line contains the positive integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of particles. The second line contains *n* symbols "L" and "R". If the *i*-th symbol equals "L", then the *i*-th particle will move to the left, otherwise the *i*-th symbol equals "R" and the *i*-th particle will move to the right....
In the first line print the only integer — the first moment (in microseconds) when two particles are at the same point and there will be an explosion. Print the only integer -1, if the collision of particles doesn't happen.
[ "4\nRLRL\n2 4 6 10\n", "3\nLLR\n40 50 60\n" ]
[ "1\n", "-1\n" ]
In the first sample case the first explosion will happen in 1 microsecond because the particles number 1 and 2 will simultaneously be at the same point with the coordinate 3. In the second sample case there will be no explosion because there are no particles which will simultaneously be at the same point.
500
[ { "input": "4\nRLRL\n2 4 6 10", "output": "1" }, { "input": "3\nLLR\n40 50 60", "output": "-1" }, { "input": "4\nRLLR\n46 230 264 470", "output": "92" }, { "input": "6\nLLRLLL\n446 492 650 844 930 970", "output": "97" }, { "input": "8\nRRLLLLLL\n338 478 512 574 59...
1,674,378,477
2,147,483,647
Python 3
OK
TESTS
85
233
16,384,000
def collisions(): n = int(input()) directions = input() positions = list(map(int, input().split())) particles = list(zip(positions, directions)) time = [] for i in range(0, n-1): p1 = particles[i] p2 = particles[i+1] if p1[1] == p2[1] or (p1[1] == 'L'...
Title: Launch of Collider Time Limit: None seconds Memory Limit: None megabytes Problem Description: There will be a launch of a new, powerful and unusual collider very soon, which located along a straight line. *n* particles will be launched inside it. All of them are located in a straight line and there can not be...
```python def collisions(): n = int(input()) directions = input() positions = list(map(int, input().split())) particles = list(zip(positions, directions)) time = [] for i in range(0, n-1): p1 = particles[i] p2 = particles[i+1] if p1[1] == p2[1] or (p1...
3
572
A
Arrays
PROGRAMMING
900
[ "sortings" ]
null
null
You are given two arrays *A* and *B* consisting of integers, sorted in non-decreasing order. Check whether it is possible to choose *k* numbers in array *A* and choose *m* numbers in array *B* so that any number chosen in the first array is strictly less than any number chosen in the second array.
The first line contains two integers *n**A*,<=*n**B* (1<=≤<=*n**A*,<=*n**B*<=≤<=105), separated by a space — the sizes of arrays *A* and *B*, correspondingly. The second line contains two integers *k* and *m* (1<=≤<=*k*<=≤<=*n**A*,<=1<=≤<=*m*<=≤<=*n**B*), separated by a space. The third line contains *n**A* numbers *...
Print "YES" (without the quotes), if you can choose *k* numbers in array *A* and *m* numbers in array *B* so that any number chosen in array *A* was strictly less than any number chosen in array *B*. Otherwise, print "NO" (without the quotes).
[ "3 3\n2 1\n1 2 3\n3 4 5\n", "3 3\n3 3\n1 2 3\n3 4 5\n", "5 2\n3 1\n1 1 1 1 1\n2 2\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first sample test you can, for example, choose numbers 1 and 2 from array *A* and number 3 from array *B* (1 &lt; 3 and 2 &lt; 3). In the second sample test the only way to choose *k* elements in the first array and *m* elements in the second one is to choose all numbers in both arrays, but then not all the num...
500
[ { "input": "3 3\n2 1\n1 2 3\n3 4 5", "output": "YES" }, { "input": "3 3\n3 3\n1 2 3\n3 4 5", "output": "NO" }, { "input": "5 2\n3 1\n1 1 1 1 1\n2 2", "output": "YES" }, { "input": "3 5\n1 1\n5 5 5\n5 5 5 5 5", "output": "NO" }, { "input": "1 1\n1 1\n1\n1", "ou...
1,519,999,637
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
5
78
19,968,000
n = [int(x) for x in input().split()] k = [int(x) for x in input().split()] a = [int(x) for x in input().split()] b = [int(x) for x in input().split()] res = 'YES' for i in range(0,k[0]): if a[i]>=b[0]: res = 'NO' break print(res)
Title: Arrays Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two arrays *A* and *B* consisting of integers, sorted in non-decreasing order. Check whether it is possible to choose *k* numbers in array *A* and choose *m* numbers in array *B* so that any number chosen in the fi...
```python n = [int(x) for x in input().split()] k = [int(x) for x in input().split()] a = [int(x) for x in input().split()] b = [int(x) for x in input().split()] res = 'YES' for i in range(0,k[0]): if a[i]>=b[0]: res = 'NO' break print(res) ```
0