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
892
A
Greed
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Jafar has *n* cans of cola. Each can is described by two integers: remaining volume of cola *a**i* and can's capacity *b**i* (*a**i* <=≤<= *b**i*). Jafar has decided to pour all remaining cola into just 2 cans, determine if he can do this or not!
The first line of the input contains one integer *n* (2<=≤<=*n*<=≤<=100<=000) — number of cola cans. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109) — volume of remaining cola in cans. The third line contains *n* space-separated integers that *b*1,<=*b*2,<=...,<...
Print "YES" (without quotes) if it is possible to pour all remaining cola in 2 cans. Otherwise print "NO" (without quotes). You can print each letter in any case (upper or lower).
[ "2\n3 5\n3 6\n", "3\n6 8 9\n6 10 12\n", "5\n0 0 5 0 0\n1 1 8 10 5\n", "4\n4 1 0 3\n5 2 2 3\n" ]
[ "YES\n", "NO\n", "YES\n", "YES\n" ]
In the first sample, there are already 2 cans, so the answer is "YES".
500
[ { "input": "2\n3 5\n3 6", "output": "YES" }, { "input": "3\n6 8 9\n6 10 12", "output": "NO" }, { "input": "5\n0 0 5 0 0\n1 1 8 10 5", "output": "YES" }, { "input": "4\n4 1 0 3\n5 2 2 3", "output": "YES" }, { "input": "10\n9 10 24 11 1 7 8 3 28 14\n86 20 34 11 22 9...
1,659,852,593
2,147,483,647
Python 3
OK
TESTS
39
124
11,776,000
f=lambda:map(int,input().split()) input() a,b=f(),f() print(sum(a)<=sum(sorted(b)[-2:])and"YES"or"NO")
Title: Greed Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jafar has *n* cans of cola. Each can is described by two integers: remaining volume of cola *a**i* and can's capacity *b**i* (*a**i* <=≤<= *b**i*). Jafar has decided to pour all remaining cola into just 2 cans, determine if he c...
```python f=lambda:map(int,input().split()) input() a,b=f(),f() print(sum(a)<=sum(sorted(b)[-2:])and"YES"or"NO") ```
3
670
C
Cinema
PROGRAMMING
1,300
[ "implementation", "sortings" ]
null
null
Moscow is hosting a major international conference, which is attended by *n* scientists from different countries. Each of the scientists knows exactly one language. For convenience, we enumerate all languages of the world with integers from 1 to 109. In the evening after the conference, all *n* scientists decided to g...
The first line of the input contains a positive integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of scientists. The second line contains *n* positive integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109), where *a**i* is the index of a language, which the *i*-th scientist knows. The third line contains a positi...
Print the single integer — the index of a movie to which scientists should go. After viewing this movie the number of very pleased scientists should be maximum possible. If in the cinema there are several such movies, you need to choose among them one, after viewing which there will be the maximum possible number of al...
[ "3\n2 3 2\n2\n3 2\n2 3\n", "6\n6 3 1 1 3 7\n5\n1 2 3 4 5\n2 3 4 5 1\n" ]
[ "2\n", "1\n" ]
In the first sample, scientists must go to the movie with the index 2, as in such case the 1-th and the 3-rd scientists will be very pleased and the 2-nd scientist will be almost satisfied. In the second test case scientists can go either to the movie with the index 1 or the index 3. After viewing any of these movies ...
1,000
[ { "input": "3\n2 3 2\n2\n3 2\n2 3", "output": "2" }, { "input": "6\n6 3 1 1 3 7\n5\n1 2 3 4 5\n2 3 4 5 1", "output": "1" }, { "input": "1\n10\n1\n10\n3", "output": "1" }, { "input": "2\n1 6\n1\n6\n1", "output": "1" }, { "input": "1\n5\n2\n2 2\n5 5", "output": ...
1,690,328,597
2,147,483,647
Python 3
OK
TESTS
138
561
69,836,800
from collections import Counter inp= lambda:list(map(int, input().split())) n,scientist, i,audio,sbt = int(input()), inp(), int(input()), inp(), inp() counter = Counter(scientist) movies = list(zip(audio,sbt)) result = sorted(movies, key=lambda x: (counter[x[0]], counter[x[1]]), reverse= True)[0] print(movies.ind...
Title: Cinema Time Limit: None seconds Memory Limit: None megabytes Problem Description: Moscow is hosting a major international conference, which is attended by *n* scientists from different countries. Each of the scientists knows exactly one language. For convenience, we enumerate all languages of the world with i...
```python from collections import Counter inp= lambda:list(map(int, input().split())) n,scientist, i,audio,sbt = int(input()), inp(), int(input()), inp(), inp() counter = Counter(scientist) movies = list(zip(audio,sbt)) result = sorted(movies, key=lambda x: (counter[x[0]], counter[x[1]]), reverse= True)[0] print(...
3
791
A
Bear and Big Brother
PROGRAMMING
800
[ "implementation" ]
null
null
Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or equal to his brother's weight. Limak eats a lot and his weight is tripled after every year, while Bob's we...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10) — the weight of Limak and the weight of Bob respectively.
Print one integer, denoting the integer number of years after which Limak will become strictly larger than Bob.
[ "4 7\n", "4 9\n", "1 1\n" ]
[ "2\n", "3\n", "1\n" ]
In the first sample, Limak weighs 4 and Bob weighs 7 initially. After one year their weights are 4·3 = 12 and 7·2 = 14 respectively (one weight is tripled while the other one is doubled). Limak isn't larger than Bob yet. After the second year weights are 36 and 28, so the first weight is greater than the second one. Li...
500
[ { "input": "4 7", "output": "2" }, { "input": "4 9", "output": "3" }, { "input": "1 1", "output": "1" }, { "input": "4 6", "output": "2" }, { "input": "1 10", "output": "6" }, { "input": "1 1", "output": "1" }, { "input": "1 2", "output...
1,699,209,101
2,147,483,647
Python 3
OK
TESTS
62
46
0
p1_weigh , p2_weigh = map(int , input().split()) number_of_years_needed = 0 while p2_weigh >= p1_weigh : number_of_years_needed += 1 p2_weigh = p2_weigh*2 p1_weigh = p1_weigh*3 print(number_of_years_needed)
Title: Bear and Big Brother Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bear Limak wants to become the largest of bears, or at least to become larger than his brother Bob. Right now, Limak and Bob weigh *a* and *b* respectively. It's guaranteed that Limak's weight is smaller than or e...
```python p1_weigh , p2_weigh = map(int , input().split()) number_of_years_needed = 0 while p2_weigh >= p1_weigh : number_of_years_needed += 1 p2_weigh = p2_weigh*2 p1_weigh = p1_weigh*3 print(number_of_years_needed) ```
3
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,688,489,206
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
62
0
# input string (str) # len small ch and len capital ch # small > capital (all small) or = # capital > small (all capital) #result string = str(input()) uppercases = 0 lowercases = 0 for char in string: if string.islower(): lowercases += 1 elif string.isupper(): uppercases += 1 if u...
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 # input string (str) # len small ch and len capital ch # small > capital (all small) or = # capital > small (all capital) #result string = str(input()) uppercases = 0 lowercases = 0 for char in string: if string.islower(): lowercases += 1 elif string.isupper(): uppercases ...
0
543
A
Writing Code
PROGRAMMING
1,800
[ "dp" ]
null
null
Programmers working on a large project have just received a task to write exactly *m* lines of code. There are *n* programmers working on a project, the *i*-th of them makes exactly *a**i* bugs in every line of code that he writes. Let's call a sequence of non-negative integers *v*1,<=*v*2,<=...,<=*v**n* a plan, if *...
The first line contains four integers *n*, *m*, *b*, *mod* (1<=≤<=*n*,<=*m*<=≤<=500, 0<=≤<=*b*<=≤<=500; 1<=≤<=*mod*<=≤<=109<=+<=7) — the number of programmers, the number of lines of code in the task, the maximum total number of bugs respectively and the modulo you should use when printing the answer. The next line co...
Print a single integer — the answer to the problem modulo *mod*.
[ "3 3 3 100\n1 1 1\n", "3 6 5 1000000007\n1 2 3\n", "3 5 6 11\n1 2 1\n" ]
[ "10\n", "0\n", "0\n" ]
none
500
[ { "input": "3 3 3 100\n1 1 1", "output": "10" }, { "input": "3 6 5 1000000007\n1 2 3", "output": "0" }, { "input": "3 5 6 11\n1 2 1", "output": "0" }, { "input": "2 3 3 1000\n1 2", "output": "1" }, { "input": "3 10 10 150691913\n8 7 10", "output": "0" }, {...
1,590,256,235
2,147,483,647
Python 3
MEMORY_LIMIT_EXCEEDED
TESTS
5
1,809
268,390,400
n, m, b, mod = map(int, input().split()) a = list(map(int, input().split())) dp = [[[[] for _ in range(b + 1)] for _ in range(m + 1)] for _ in range(n + 1)] for m_i in range(m + 1): for b_i in range(b + 1): if m_i * a[n - 1] <= b_i: dp[n][m_i][b_i] = 1 else: dp[n][m_i][b_i] = 0 for n_i in range(n + 1): f...
Title: Writing Code Time Limit: None seconds Memory Limit: None megabytes Problem Description: Programmers working on a large project have just received a task to write exactly *m* lines of code. There are *n* programmers working on a project, the *i*-th of them makes exactly *a**i* bugs in every line of code that h...
```python n, m, b, mod = map(int, input().split()) a = list(map(int, input().split())) dp = [[[[] for _ in range(b + 1)] for _ in range(m + 1)] for _ in range(n + 1)] for m_i in range(m + 1): for b_i in range(b + 1): if m_i * a[n - 1] <= b_i: dp[n][m_i][b_i] = 1 else: dp[n][m_i][b_i] = 0 for n_i in range(...
0
813
C
The Tag Game
PROGRAMMING
1,700
[ "dfs and similar", "graphs" ]
null
null
Alice got tired of playing the tag game by the usual rules so she offered Bob a little modification to it. Now the game should be played on an undirected rooted tree of *n* vertices. Vertex 1 is the root of the tree. Alice starts at vertex 1 and Bob starts at vertex *x* (*x*<=≠<=1). The moves are made in turns, Bob go...
The first line contains two integer numbers *n* and *x* (2<=≤<=*n*<=≤<=2·105, 2<=≤<=*x*<=≤<=*n*). Each of the next *n*<=-<=1 lines contains two integer numbers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=*n*) — edges of the tree. It is guaranteed that the edges form a valid tree.
Print the total number of moves Alice and Bob will make.
[ "4 3\n1 2\n2 3\n2 4\n", "5 2\n1 2\n2 3\n3 4\n2 5\n" ]
[ "4\n", "6\n" ]
In the first example the tree looks like this: The red vertex is Alice's starting position, the blue one is Bob's. Bob will make the game run the longest by standing at the vertex 3 during all the game. So here are the moves: B: stay at vertex 3 A: go to vertex 2 B: stay at vertex 3 A: go to vertex 3 In the secon...
0
[ { "input": "4 3\n1 2\n2 3\n2 4", "output": "4" }, { "input": "5 2\n1 2\n2 3\n3 4\n2 5", "output": "6" }, { "input": "2 2\n2 1", "output": "2" }, { "input": "3 3\n2 1\n3 1", "output": "2" }, { "input": "3 3\n1 2\n3 2", "output": "4" }, { "input": "10 4\...
1,497,504,409
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
77
819,200
# http://codeforces.com/problemset/problem/813/C # brute force # what if Bob tries to find the node furthest from 1 # then those number of turns + # saner strategy # find the max distance from a as possible for b. # this is going to be the optimal place for b to go to # aka, what is the furthest fr...
Title: The Tag Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alice got tired of playing the tag game by the usual rules so she offered Bob a little modification to it. Now the game should be played on an undirected rooted tree of *n* vertices. Vertex 1 is the root of the tree. Alic...
```python # http://codeforces.com/problemset/problem/813/C # brute force # what if Bob tries to find the node furthest from 1 # then those number of turns + # saner strategy # find the max distance from a as possible for b. # this is going to be the optimal place for b to go to # aka, what is the f...
0
869
B
The Eternal Immortality
PROGRAMMING
1,100
[ "math" ]
null
null
Even if the world is full of counterfeits, I still regard it as wonderful. Pile up herbs and incense, and arise again from the flames and ashes of its predecessor — as is known to many, the phoenix does it like this. The phoenix has a rather long lifespan, and reincarnates itself once every *a*! years. Here *a*! deno...
The first and only line of input contains two space-separated integers *a* and *b* (0<=≤<=*a*<=≤<=*b*<=≤<=1018).
Output one line containing a single decimal digit — the last digit of the value that interests Koyomi.
[ "2 4\n", "0 10\n", "107 109\n" ]
[ "2\n", "0\n", "2\n" ]
In the first example, the last digit of <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/99c47ca8b182f097e38094d12f0c06ce0b081b76.png" style="max-width: 100.0%;max-height: 100.0%;"/> is 2; In the second example, the last digit of <img align="middle" class="tex-formula" src="https://espresso...
1,000
[ { "input": "2 4", "output": "2" }, { "input": "0 10", "output": "0" }, { "input": "107 109", "output": "2" }, { "input": "10 13", "output": "6" }, { "input": "998244355 998244359", "output": "4" }, { "input": "999999999000000000 1000000000000000000", ...
1,507,907,022
2,147,483,647
Python 3
OK
TESTS
63
61
0
x=list(map(int,input().split())) a=x[0] b=x[1] w=b-a t=1 if b<a: print(0) elif b==a: print(1) elif w>=10: print(0) else: for i in range(a+1,b+1): t*=i t=t%10 print(int(t))
Title: The Eternal Immortality Time Limit: None seconds Memory Limit: None megabytes Problem Description: Even if the world is full of counterfeits, I still regard it as wonderful. Pile up herbs and incense, and arise again from the flames and ashes of its predecessor — as is known to many, the phoenix does it like...
```python x=list(map(int,input().split())) a=x[0] b=x[1] w=b-a t=1 if b<a: print(0) elif b==a: print(1) elif w>=10: print(0) else: for i in range(a+1,b+1): t*=i t=t%10 print(int(t)) ```
3
976
C
Nested Segments
PROGRAMMING
1,500
[ "greedy", "implementation", "sortings" ]
null
null
You are given a sequence *a*1,<=*a*2,<=...,<=*a**n* of one-dimensional segments numbered 1 through *n*. Your task is to find two distinct indices *i* and *j* such that segment *a**i* lies within segment *a**j*. Segment [*l*1,<=*r*1] lies within segment [*l*2,<=*r*2] iff *l*1<=≥<=*l*2 and *r*1<=≤<=*r*2. Print indices ...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=3·105) — the number of segments. Each of the next *n* lines contains two integers *l**i* and *r**i* (1<=≤<=*l**i*<=≤<=*r**i*<=≤<=109) — the *i*-th segment.
Print two distinct indices *i* and *j* such that segment *a**i* lies within segment *a**j*. If there are multiple answers, print any of them. If no answer exists, print -1 -1.
[ "5\n1 10\n2 9\n3 9\n2 3\n2 9\n", "3\n1 5\n2 6\n6 20\n" ]
[ "2 1\n", "-1 -1\n" ]
In the first example the following pairs are considered correct: - (2, 1), (3, 1), (4, 1), (5, 1) — not even touching borders; - (3, 2), (4, 2), (3, 5), (4, 5) — touch one border; - (5, 2), (2, 5) — match exactly.
0
[ { "input": "5\n1 10\n2 9\n3 9\n2 3\n2 9", "output": "2 1" }, { "input": "3\n1 5\n2 6\n6 20", "output": "-1 -1" }, { "input": "1\n1 1000000000", "output": "-1 -1" }, { "input": "2\n1 1000000000\n1 1000000000", "output": "2 1" }, { "input": "2\n1 1000000000\n5000000...
1,525,104,337
5,137
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n = int(input()) A = [] for k in range(0,n): A.append(list(map(int,input().split()))) def f(L): for i in range(0,n-1): for j in range(i+1,n): if L[i][0] >= L[j][0] and L[i][1] <= L[j][1]: return(i+1,j+1) if L[i][0] <= L[j][0] and L[i][1] >= L[j][1]: return(j+1,i+1) ...
Title: Nested Segments Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a sequence *a*1,<=*a*2,<=...,<=*a**n* of one-dimensional segments numbered 1 through *n*. Your task is to find two distinct indices *i* and *j* such that segment *a**i* lies within segment *a**j*. Segment...
```python n = int(input()) A = [] for k in range(0,n): A.append(list(map(int,input().split()))) def f(L): for i in range(0,n-1): for j in range(i+1,n): if L[i][0] >= L[j][0] and L[i][1] <= L[j][1]: return(i+1,j+1) if L[i][0] <= L[j][0] and L[i][1] >= L[j][1]: return(j...
-1
294
A
Shaass and Oskols
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Shaass has decided to hunt some birds. There are *n* horizontal electricity wires aligned parallel to each other. Wires are numbered 1 to *n* from top to bottom. On each wire there are some oskols sitting next to each other. Oskol is the name of a delicious kind of birds in Shaass's territory. Supposed there are *a**i*...
The first line of the input contains an integer *n*, (1<=≤<=*n*<=≤<=100). The next line contains a list of space-separated integers *a*1,<=*a*2,<=...,<=*a**n*, (0<=≤<=*a**i*<=≤<=100). The third line contains an integer *m*, (0<=≤<=*m*<=≤<=100). Each of the next *m* lines contains two integers *x**i* and *y**i*. The i...
On the *i*-th line of the output print the number of birds on the *i*-th wire.
[ "5\n10 10 10 10 10\n5\n2 5\n3 13\n2 12\n1 13\n4 6\n", "3\n2 4 1\n1\n2 2\n" ]
[ "0\n12\n5\n0\n16\n", "3\n0\n3\n" ]
none
500
[ { "input": "5\n10 10 10 10 10\n5\n2 5\n3 13\n2 12\n1 13\n4 6", "output": "0\n12\n5\n0\n16" }, { "input": "3\n2 4 1\n1\n2 2", "output": "3\n0\n3" }, { "input": "5\n58 51 45 27 48\n5\n4 9\n5 15\n4 5\n5 8\n1 43", "output": "0\n66\n57\n7\n0" }, { "input": "10\n48 53 10 28 91 56 8...
1,692,533,939
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
60
0
# 5 # 10 10 10 10 10 # 5 # 2 5 # 3 13 # 2 12 # 1 13 # 4 6 n = input().strip() n = int(n) wires =[int(x) for x in input().strip().split()] m = input().strip() m = int(m) for _ in range(m): wire , bird = [int(x) for x in input().strip().split()] before = wire - 2 current = wire - 1 ...
Title: Shaass and Oskols Time Limit: None seconds Memory Limit: None megabytes Problem Description: Shaass has decided to hunt some birds. There are *n* horizontal electricity wires aligned parallel to each other. Wires are numbered 1 to *n* from top to bottom. On each wire there are some oskols sitting next to each...
```python # 5 # 10 10 10 10 10 # 5 # 2 5 # 3 13 # 2 12 # 1 13 # 4 6 n = input().strip() n = int(n) wires =[int(x) for x in input().strip().split()] m = input().strip() m = int(m) for _ in range(m): wire , bird = [int(x) for x in input().strip().split()] before = wire - 2 current = wi...
0
59
A
Word
PROGRAMMING
800
[ "implementation", "strings" ]
A. Word
2
256
Vasya is very upset that many people on the Net mix uppercase and lowercase letters in one word. That's why he decided to invent an extension for his favorite browser that would change the letters' register in every word so that it either only consisted of lowercase letters or, vice versa, only of uppercase ones. At th...
The first line contains a word *s* — it consists of uppercase and lowercase Latin letters and possesses the length from 1 to 100.
Print the corrected word *s*. If the given word *s* has strictly more uppercase letters, make the word written in the uppercase register, otherwise - in the lowercase one.
[ "HoUse\n", "ViP\n", "maTRIx\n" ]
[ "house\n", "VIP\n", "matrix\n" ]
none
500
[ { "input": "HoUse", "output": "house" }, { "input": "ViP", "output": "VIP" }, { "input": "maTRIx", "output": "matrix" }, { "input": "BNHWpnpawg", "output": "bnhwpnpawg" }, { "input": "VTYGP", "output": "VTYGP" }, { "input": "CHNenu", "output": "chn...
1,673,816,751
2,147,483,647
Python 3
OK
TESTS
30
92
0
word=input() upCount=0 lowCount=0 for item in range(len(word)): if word[item]==word[item].upper(): upCount+=1 else: lowCount+=1 if upCount>lowCount: print(word.upper()) elif lowCount>=upCount: print(word.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 word=input() upCount=0 lowCount=0 for item in range(len(word)): if word[item]==word[item].upper(): upCount+=1 else: lowCount+=1 if upCount>lowCount: print(word.upper()) elif lowCount>=upCount: print(word.lower()) ```
3.977
617
A
Elephant
PROGRAMMING
800
[ "math" ]
null
null
An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2, 3, 4 or 5 positions forward. Determine, what is the minimum number of steps he need to make ...
The first line of the input contains an integer *x* (1<=≤<=*x*<=≤<=1<=000<=000) — The coordinate of the friend's house.
Print the minimum number of steps that elephant needs to make to get from point 0 to point *x*.
[ "5\n", "12\n" ]
[ "1\n", "3\n" ]
In the first sample the elephant needs to make one step of length 5 to reach the point *x*. In the second sample the elephant can get to point *x* if he moves by 3, 5 and 4. There are other ways to get the optimal answer but the elephant cannot reach *x* in less than three moves.
500
[ { "input": "5", "output": "1" }, { "input": "12", "output": "3" }, { "input": "999999", "output": "200000" }, { "input": "41", "output": "9" }, { "input": "1000000", "output": "200000" }, { "input": "1", "output": "1" }, { "input": "2", ...
1,696,035,657
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
15
0
x=int(input()) c=0 if x==5: print("1") elif x%3==0: print(x//3) elif x%4==0: print(x//4)
Title: Elephant Time Limit: None seconds Memory Limit: None megabytes Problem Description: An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2...
```python x=int(input()) c=0 if x==5: print("1") elif x%3==0: print(x//3) elif x%4==0: print(x//4) ```
0
459
B
Pashmak and Flowers
PROGRAMMING
1,300
[ "combinatorics", "implementation", "sortings" ]
null
null
Pashmak decided to give Parmida a pair of flowers from the garden. There are *n* flowers in the garden and the *i*-th of them has a beauty number *b**i*. Parmida is a very strange girl so she doesn't want to have the two most beautiful flowers necessarily. She wants to have those pairs of flowers that their beauty diff...
The first line of the input contains *n* (2<=≤<=*n*<=≤<=2·105). In the next line there are *n* space-separated integers *b*1, *b*2, ..., *b**n* (1<=≤<=*b**i*<=≤<=109).
The only line of output should contain two integers. The maximum beauty difference and the number of ways this may happen, respectively.
[ "2\n1 2\n", "3\n1 4 5\n", "5\n3 1 2 3 1\n" ]
[ "1 1", "4 1", "2 4" ]
In the third sample the maximum beauty difference is 2 and there are 4 ways to do this: 1. choosing the first and the second flowers; 1. choosing the first and the fifth flowers; 1. choosing the fourth and the second flowers; 1. choosing the fourth and the fifth flowers.
500
[ { "input": "2\n1 2", "output": "1 1" }, { "input": "3\n1 4 5", "output": "4 1" }, { "input": "5\n3 1 2 3 1", "output": "2 4" }, { "input": "2\n1 1", "output": "0 1" }, { "input": "3\n1 1 1", "output": "0 3" }, { "input": "4\n1 1 1 1", "output": "0 ...
1,666,969,107
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
109
19,763,200
from collections import Counter def solve(): n = int(input()) a = [int(i) for i in input().split()] c = Counter(a) mx,mn = max(c.items(), key=lambda x: x[0]), min(c.items(), key=lambda x: x[0]) print(mx[0]-mn[0], mx[1]*mn[1]) solve()
Title: Pashmak and Flowers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pashmak decided to give Parmida a pair of flowers from the garden. There are *n* flowers in the garden and the *i*-th of them has a beauty number *b**i*. Parmida is a very strange girl so she doesn't want to have th...
```python from collections import Counter def solve(): n = int(input()) a = [int(i) for i in input().split()] c = Counter(a) mx,mn = max(c.items(), key=lambda x: x[0]), min(c.items(), key=lambda x: x[0]) print(mx[0]-mn[0], mx[1]*mn[1]) solve() ```
0
676
C
Vasya and String
PROGRAMMING
1,500
[ "binary search", "dp", "strings", "two pointers" ]
null
null
High school student Vasya got a string of length *n* as a birthday present. This string consists of letters 'a' and 'b' only. Vasya denotes beauty of the string as the maximum length of a substring (consecutive subsequence) consisting of equal letters. Vasya can change no more than *k* characters of the original strin...
The first line of the input contains two integers *n* and *k* (1<=≤<=*n*<=≤<=100<=000,<=0<=≤<=*k*<=≤<=*n*) — the length of the string and the maximum number of characters to change. The second line contains the string, consisting of letters 'a' and 'b' only.
Print the only integer — the maximum beauty of the string Vasya can achieve by changing no more than *k* characters.
[ "4 2\nabba\n", "8 1\naabaabaa\n" ]
[ "4\n", "5\n" ]
In the first sample, Vasya can obtain both strings "aaaa" and "bbbb". In the second sample, the optimal answer is obtained with the string "aaaaabaa" or with the string "aabaaaaa".
1,500
[ { "input": "4 2\nabba", "output": "4" }, { "input": "8 1\naabaabaa", "output": "5" }, { "input": "1 0\na", "output": "1" }, { "input": "1 1\nb", "output": "1" }, { "input": "1 0\nb", "output": "1" }, { "input": "1 1\na", "output": "1" }, { ...
1,638,438,787
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
61
0
n,k=map(int,input().split()) s=input()+'r' a,b=[],[] lens=0 lena,lenb=0,0 prev=s[0] a=[0] for x in s: if prev==x: a[-1]+=1 else: a.append(1) lena+=1 b.append(lens-1) lens+=1 prev=x mx=a[0] for i in range(lena): y=a[i] r=k j=i+1 while...
Title: Vasya and String Time Limit: None seconds Memory Limit: None megabytes Problem Description: High school student Vasya got a string of length *n* as a birthday present. This string consists of letters 'a' and 'b' only. Vasya denotes beauty of the string as the maximum length of a substring (consecutive subsequ...
```python n,k=map(int,input().split()) s=input()+'r' a,b=[],[] lens=0 lena,lenb=0,0 prev=s[0] a=[0] for x in s: if prev==x: a[-1]+=1 else: a.append(1) lena+=1 b.append(lens-1) lens+=1 prev=x mx=a[0] for i in range(lena): y=a[i] r=k j=i+1 ...
0
821
C
Okabe and Boxes
PROGRAMMING
1,500
[ "data structures", "greedy", "trees" ]
null
null
Okabe and Super Hacker Daru are stacking and removing boxes. There are *n* boxes numbered from 1 to *n*. Initially there are no boxes on the stack. Okabe, being a control freak, gives Daru 2*n* commands: *n* of which are to add a box to the top of the stack, and *n* of which are to remove a box from the top of the sta...
The first line of input contains the integer *n* (1<=≤<=*n*<=≤<=3·105) — the number of boxes. Each of the next 2*n* lines of input starts with a string "add" or "remove". If the line starts with the "add", an integer *x* (1<=≤<=*x*<=≤<=*n*) follows, indicating that Daru should add the box with number *x* to the top of...
Print the minimum number of times Daru needs to reorder the boxes to successfully complete all of Okabe's commands.
[ "3\nadd 1\nremove\nadd 2\nadd 3\nremove\nremove\n", "7\nadd 3\nadd 2\nadd 1\nremove\nadd 4\nremove\nremove\nremove\nadd 6\nadd 7\nadd 5\nremove\nremove\nremove\n" ]
[ "1\n", "2\n" ]
In the first sample, Daru should reorder the boxes after adding box 3 to the stack. In the second sample, Daru should reorder the boxes after adding box 4 and box 7 to the stack.
1,500
[ { "input": "3\nadd 1\nremove\nadd 2\nadd 3\nremove\nremove", "output": "1" }, { "input": "7\nadd 3\nadd 2\nadd 1\nremove\nadd 4\nremove\nremove\nremove\nadd 6\nadd 7\nadd 5\nremove\nremove\nremove", "output": "2" }, { "input": "4\nadd 1\nadd 3\nremove\nadd 4\nadd 2\nremove\nremove\nremov...
1,498,683,689
4,589
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
7
3,000
32,051,200
n = int(input()) stack = list() status = [ False for _ in range(300001) ] now = 1 answer = 0 for i in range(n*2): s = input() if s != "remove": num = int(s[4:]) stack.append(num) status[num] = True else: if stack[-1] != now: answer += 1 stack = list()...
Title: Okabe and Boxes Time Limit: None seconds Memory Limit: None megabytes Problem Description: Okabe and Super Hacker Daru are stacking and removing boxes. There are *n* boxes numbered from 1 to *n*. Initially there are no boxes on the stack. Okabe, being a control freak, gives Daru 2*n* commands: *n* of which a...
```python n = int(input()) stack = list() status = [ False for _ in range(300001) ] now = 1 answer = 0 for i in range(n*2): s = input() if s != "remove": num = int(s[4:]) stack.append(num) status[num] = True else: if stack[-1] != now: answer += 1 stac...
0
281
A
Word Capitalization
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word. Note, that during capitalization all the letters except the first one remains unchanged.
A single line contains a non-empty word. This word consists of lowercase and uppercase English letters. The length of the word will not exceed 103.
Output the given word after capitalization.
[ "ApPLe\n", "konjac\n" ]
[ "ApPLe\n", "Konjac\n" ]
none
500
[ { "input": "ApPLe", "output": "ApPLe" }, { "input": "konjac", "output": "Konjac" }, { "input": "a", "output": "A" }, { "input": "A", "output": "A" }, { "input": "z", "output": "Z" }, { "input": "ABACABA", "output": "ABACABA" }, { "input": "...
1,696,337,803
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
s=str(input()) s=s.lower() s1=s[0:1] s1=s1.upper() s=s1+s print(s)
Title: Word Capitalization Time Limit: None seconds Memory Limit: None megabytes Problem Description: Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word. Note, that during capitalization all the letters except the first one remains unchanged. Input...
```python s=str(input()) s=s.lower() s1=s[0:1] s1=s1.upper() s=s1+s print(s) ```
0
0
none
none
none
0
[ "none" ]
null
null
Little penguin Polo likes permutations. But most of all he likes permutations of integers from 0 to *n*, inclusive. For permutation *p*<==<=*p*0,<=*p*1,<=...,<=*p**n*, Polo has defined its beauty — number . Expression means applying the operation of bitwise excluding "OR" to numbers *x* and *y*. This operation exist...
The single line contains a positive integer *n* (1<=≤<=*n*<=≤<=106).
In the first line print integer *m* the maximum possible beauty. In the second line print any permutation of integers from 0 to *n* with the beauty equal to *m*. If there are several suitable permutations, you are allowed to print any of them.
[ "4\n" ]
[ "20\n0 2 1 4 3\n" ]
none
0
[ { "input": "4", "output": "20\n0 2 1 4 3" }, { "input": "7", "output": "56\n7 6 5 4 3 2 1 0" }, { "input": "1", "output": "2\n1 0" }, { "input": "2", "output": "6\n0 2 1" }, { "input": "3", "output": "12\n3 2 1 0" }, { "input": "8", "output": "72\n...
1,699,857,686
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
12
2,000
58,163,200
import math # If 'P' is a permutation of {0, ..., n}, # where P = P[0], P[1], ..., P[n] then, # '~P' is also a permutation of {0,n} ? # ONLY IF n = (1<<k) - 1 , for some k>=0 ; (~P is the 'k' bit-wise complement) # i.e. 'P' is a permutation of all 'k' bit numbers ; n = int(input()) BITS = int(math.log2(...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little penguin Polo likes permutations. But most of all he likes permutations of integers from 0 to *n*, inclusive. For permutation *p*<==<=*p*0,<=*p*1,<=...,<=*p**n*, Polo has defined its beauty — number . Expression means app...
```python import math # If 'P' is a permutation of {0, ..., n}, # where P = P[0], P[1], ..., P[n] then, # '~P' is also a permutation of {0,n} ? # ONLY IF n = (1<<k) - 1 , for some k>=0 ; (~P is the 'k' bit-wise complement) # i.e. 'P' is a permutation of all 'k' bit numbers ; n = int(input()) BITS = int(...
0
32
B
Borze
PROGRAMMING
800
[ "expression parsing", "implementation" ]
B. Borze
2
256
Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary number given its representation in Borze alphabet.
The first line contains a number in Borze code. The length of the string is between 1 and 200 characters. It's guaranteed that the given string is a valid Borze code of some ternary number (this number can have leading zeroes).
Output the decoded ternary number. It can have leading zeroes.
[ ".-.--\n", "--.\n", "-..-.--\n" ]
[ "012", "20", "1012" ]
none
1,000
[ { "input": ".-.--", "output": "012" }, { "input": "--.", "output": "20" }, { "input": "-..-.--", "output": "1012" }, { "input": "---..", "output": "210" }, { "input": "..--.---..", "output": "0020210" }, { "input": "-.....----.", "output": "1000022...
1,573,998,946
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
218
0
a = "." b = "-." c = "--" test = input() if a in test : test = test.replace(a,"0") if b in test : test = test.replace(b,"1") if c in test : test = test.replace(c,"2") print(test)
Title: Borze Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary ...
```python a = "." b = "-." c = "--" test = input() if a in test : test = test.replace(a,"0") if b in test : test = test.replace(b,"1") if c in test : test = test.replace(c,"2") print(test) ```
0
632
C
The Smallest String Concatenation
PROGRAMMING
1,700
[ "sortings", "strings" ]
null
null
You're given a list of *n* strings *a*1,<=*a*2,<=...,<=*a**n*. You'd like to concatenate them together in some order such that the resulting string would be lexicographically smallest. Given the list of strings, output the lexicographically smallest concatenation.
The first line contains integer *n* — the number of strings (1<=≤<=*n*<=≤<=5·104). Each of the next *n* lines contains one string *a**i* (1<=≤<=|*a**i*|<=≤<=50) consisting of only lowercase English letters. The sum of string lengths will not exceed 5·104.
Print the only string *a* — the lexicographically smallest string concatenation.
[ "4\nabba\nabacaba\nbcd\ner\n", "5\nx\nxx\nxxa\nxxaa\nxxaaa\n", "3\nc\ncb\ncba\n" ]
[ "abacabaabbabcder\n", "xxaaaxxaaxxaxxx\n", "cbacbc\n" ]
none
0
[ { "input": "4\nabba\nabacaba\nbcd\ner", "output": "abacabaabbabcder" }, { "input": "5\nx\nxx\nxxa\nxxaa\nxxaaa", "output": "xxaaaxxaaxxaxxx" }, { "input": "3\nc\ncb\ncba", "output": "cbacbc" }, { "input": "10\naba\nabaaca\naba\nacaaaabbac\nabaacac\nb\ncabbcccaab\nbaacbb\nbcab...
1,630,510,668
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
77
6,758,400
t=int(input()) s=[] while t>0: s1=input().strip() s.append(s1) t=t-1 s=sorted(s,key=len,reverse=True) k="" for i in s: k=k+i print(k)
Title: The Smallest String Concatenation Time Limit: None seconds Memory Limit: None megabytes Problem Description: You're given a list of *n* strings *a*1,<=*a*2,<=...,<=*a**n*. You'd like to concatenate them together in some order such that the resulting string would be lexicographically smallest. Given the list ...
```python t=int(input()) s=[] while t>0: s1=input().strip() s.append(s1) t=t-1 s=sorted(s,key=len,reverse=True) k="" for i in s: k=k+i print(k) ```
0
200
B
Drinks
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Little Vasya loves orange juice very much. That's why any food and drink in his kitchen necessarily contains orange juice. There are *n* drinks in his fridge, the volume fraction of orange juice in the *i*-th drink equals *p**i* percent. One day Vasya decided to make himself an orange cocktail. He took equal proportio...
The first input line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of orange-containing drinks in Vasya's fridge. The second line contains *n* integers *p**i* (0<=≤<=*p**i*<=≤<=100) — the volume fraction of orange juice in the *i*-th drink, in percent. The numbers are separated by a space.
Print the volume fraction in percent of orange juice in Vasya's cocktail. The answer will be considered correct if the absolute or relative error does not exceed 10<=<=-<=4.
[ "3\n50 50 100\n", "4\n0 25 50 75\n" ]
[ "66.666666666667\n", "37.500000000000\n" ]
Note to the first sample: let's assume that Vasya takes *x* milliliters of each drink from the fridge. Then the volume of pure juice in the cocktail will equal <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/c1fac6e64d3a8ee6a5ac138cbe51e60039b22473.png" style="max-width: 100.0%;max-height: ...
500
[ { "input": "3\n50 50 100", "output": "66.666666666667" }, { "input": "4\n0 25 50 75", "output": "37.500000000000" }, { "input": "3\n0 1 8", "output": "3.000000000000" }, { "input": "5\n96 89 93 95 70", "output": "88.600000000000" }, { "input": "7\n62 41 78 4 38 39...
1,697,752,146
2,147,483,647
PyPy 3-64
OK
TESTS
31
124
0
n=float(input()) arr=list(map(float,input().split())) ans=sum(arr)/n print(ans)
Title: Drinks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Vasya loves orange juice very much. That's why any food and drink in his kitchen necessarily contains orange juice. There are *n* drinks in his fridge, the volume fraction of orange juice in the *i*-th drink equals *p**i*...
```python n=float(input()) arr=list(map(float,input().split())) ans=sum(arr)/n print(ans) ```
3
599
A
Patrick and Shopping
PROGRAMMING
800
[ "implementation" ]
null
null
Today Patrick waits for a visit from his friend Spongebob. To prepare for the visit, Patrick needs to buy some goodies in two stores located near his house. There is a *d*1 meter long road between his house and the first shop and a *d*2 meter long road between his house and the second shop. Also, there is a road of len...
The first line of the input contains three integers *d*1, *d*2, *d*3 (1<=≤<=*d*1,<=*d*2,<=*d*3<=≤<=108) — the lengths of the paths. - *d*1 is the length of the path connecting Patrick's house and the first shop; - *d*2 is the length of the path connecting Patrick's house and the second shop; - *d*3 is the length o...
Print the minimum distance that Patrick will have to walk in order to visit both shops and return to his house.
[ "10 20 30\n", "1 1 5\n" ]
[ "60\n", "4\n" ]
The first sample is shown on the picture in the problem statement. One of the optimal routes is: house <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> first shop <img align="middle" class="tex-form...
500
[ { "input": "10 20 30", "output": "60" }, { "input": "1 1 5", "output": "4" }, { "input": "100 33 34", "output": "134" }, { "input": "777 777 777", "output": "2331" }, { "input": "2 2 8", "output": "8" }, { "input": "12 34 56", "output": "92" }, ...
1,655,284,135
2,147,483,647
Python 3
OK
TESTS
21
46
0
x,y,z=map(int,input().split()) a=2*x+2*y b=x+z+y c=2*x+2*z d=2*y+2*z print(min(a,min(b,min(c,d))))
Title: Patrick and Shopping Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today Patrick waits for a visit from his friend Spongebob. To prepare for the visit, Patrick needs to buy some goodies in two stores located near his house. There is a *d*1 meter long road between his house and the...
```python x,y,z=map(int,input().split()) a=2*x+2*y b=x+z+y c=2*x+2*z d=2*y+2*z print(min(a,min(b,min(c,d)))) ```
3
803
C
Maximal GCD
PROGRAMMING
1,900
[ "constructive algorithms", "greedy", "math" ]
null
null
You are given positive integer number *n*. You should create such strictly increasing sequence of *k* positive numbers *a*1,<=*a*2,<=...,<=*a**k*, that their sum is equal to *n* and greatest common divisor is maximal. Greatest common divisor of sequence is maximum of such numbers that every element of sequence is divi...
The first line consists of two numbers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=1010).
If the answer exists then output *k* numbers — resulting sequence. Otherwise output -1. If there are multiple answers, print any of them.
[ "6 3\n", "8 2\n", "5 3\n" ]
[ "1 2 3\n", "2 6\n", "-1\n" ]
none
0
[ { "input": "6 3", "output": "1 2 3" }, { "input": "8 2", "output": "2 6" }, { "input": "5 3", "output": "-1" }, { "input": "1 1", "output": "1" }, { "input": "1 2", "output": "-1" }, { "input": "2 1", "output": "2" }, { "input": "2 10000000...
1,622,662,916
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
93
0
t = int(input()) while(t!=0): n=int(input()) x=n//2 print(x) t-=1
Title: Maximal GCD Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given positive integer number *n*. You should create such strictly increasing sequence of *k* positive numbers *a*1,<=*a*2,<=...,<=*a**k*, that their sum is equal to *n* and greatest common divisor is maximal. Grea...
```python t = int(input()) while(t!=0): n=int(input()) x=n//2 print(x) t-=1 ```
-1
949
A
Zebras
PROGRAMMING
1,600
[ "greedy" ]
null
null
Oleg writes down the history of the days he lived. For each day he decides if it was good or bad. Oleg calls a non-empty sequence of days a zebra, if it starts with a bad day, ends with a bad day, and good and bad days are alternating in it. Let us denote bad days as 0 and good days as 1. Then, for example, sequences o...
In the only line of input data there is a non-empty string *s* consisting of characters 0 and 1, which describes the history of Oleg's life. Its length (denoted as |*s*|) does not exceed 200<=000 characters.
If there is a way to divide history into zebra subsequences, in the first line of output you should print an integer *k* (1<=≤<=*k*<=≤<=|*s*|), the resulting number of subsequences. In the *i*-th of following *k* lines first print the integer *l**i* (1<=≤<=*l**i*<=≤<=|*s*|), which is the length of the *i*-th subsequenc...
[ "0010100\n", "111\n" ]
[ "3\n3 1 3 4\n3 2 5 6\n1 7\n", "-1\n" ]
none
500
[ { "input": "0010100", "output": "3\n1 1\n5 2 3 4 5 6\n1 7" }, { "input": "111", "output": "-1" }, { "input": "0", "output": "1\n1 1" }, { "input": "1", "output": "-1" }, { "input": "0101010101", "output": "-1" }, { "input": "010100001", "output": "...
1,653,921,098
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
0
218
11,161,600
import copy import gc import itertools from array import array from fractions import Fraction import heapq import math import operator import os, sys import profile import cProfile import random import re import string from bisect import bisect_left, bisect_right from collections import defaultdict, dequ...
Title: Zebras Time Limit: None seconds Memory Limit: None megabytes Problem Description: Oleg writes down the history of the days he lived. For each day he decides if it was good or bad. Oleg calls a non-empty sequence of days a zebra, if it starts with a bad day, ends with a bad day, and good and bad days are alter...
```python import copy import gc import itertools from array import array from fractions import Fraction import heapq import math import operator import os, sys import profile import cProfile import random import re import string from bisect import bisect_left, bisect_right from collections import default...
0
755
B
PolandBall and Game
PROGRAMMING
1,100
[ "binary search", "data structures", "games", "greedy", "sortings", "strings" ]
null
null
PolandBall is playing a game with EnemyBall. The rules are simple. Players have to say words in turns. You cannot say a word which was already said. PolandBall starts. The Ball which can't say a new word loses. You're given two lists of words familiar to PolandBall and EnemyBall. Can you determine who wins the game, i...
The first input line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=103) — number of words PolandBall and EnemyBall know, respectively. Then *n* strings follow, one per line — words familiar to PolandBall. Then *m* strings follow, one per line — words familiar to EnemyBall. Note that one Ball cannot know a w...
In a single line of print the answer — "YES" if PolandBall wins and "NO" otherwise. Both Balls play optimally.
[ "5 1\npolandball\nis\na\ncool\ncharacter\nnope\n", "2 2\nkremowka\nwadowicka\nkremowka\nwiedenska\n", "1 2\na\na\nb\n" ]
[ "YES", "YES", "NO" ]
In the first example PolandBall knows much more words and wins effortlessly. In the second example if PolandBall says kremowka first, then EnemyBall cannot use that word anymore. EnemyBall can only say wiedenska. PolandBall says wadowicka and wins.
1,000
[ { "input": "5 1\npolandball\nis\na\ncool\ncharacter\nnope", "output": "YES" }, { "input": "2 2\nkremowka\nwadowicka\nkremowka\nwiedenska", "output": "YES" }, { "input": "1 2\na\na\nb", "output": "NO" }, { "input": "2 2\na\nb\nb\nc", "output": "YES" }, { "input": "...
1,639,526,346
2,147,483,647
Python 3
OK
TESTS
33
77
1,433,600
n, m = map(int, input().split()) n_palavras = {input() for i in range(n)} m_palavras = {input() for i in range(m)} iguais = len(n_palavras & m_palavras) if n > m: print("YES") elif m > n: print("NO") else: if iguais % 2 == 1: print("YES") else: print("NO")
Title: PolandBall and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: PolandBall is playing a game with EnemyBall. The rules are simple. Players have to say words in turns. You cannot say a word which was already said. PolandBall starts. The Ball which can't say a new word loses. You...
```python n, m = map(int, input().split()) n_palavras = {input() for i in range(n)} m_palavras = {input() for i in range(m)} iguais = len(n_palavras & m_palavras) if n > m: print("YES") elif m > n: print("NO") else: if iguais % 2 == 1: print("YES") else: print("NO") ```
3
0
none
none
none
0
[ "none" ]
null
null
Two bears are playing tic-tac-toe via mail. It's boring for them to play usual tic-tac-toe game, so they are a playing modified version of this game. Here are its rules. The game is played on the following field. Players are making moves by turns. At first move a player can put his chip in any cell of any small field...
First 11 lines contains descriptions of table with 9 rows and 9 columns which are divided into 9 small fields by spaces and empty lines. Each small field is described by 9 characters without spaces and empty lines. character "x" (ASCII-code 120) means that the cell is occupied with chip of the first player, character "...
Output the field in same format with characters "!" (ASCII-code 33) on positions where the current player can put his chip. All other cells should not be modified.
[ "... ... ...\n... ... ...\n... ... ...\n\n... ... ...\n... ... ...\n... x.. ...\n\n... ... ...\n... ... ...\n... ... ...\n6 4\n", "xoo x.. x..\nooo ... ...\nooo ... ...\n\nx.. x.. x..\n... ... ...\n... ... ...\n\nx.. x.. x..\n... ... ...\n... ... ...\n7 4\n", "o.. ... ...\n... ... ...\n... ... ...\n\n... xxx .....
[ "... ... ... \n... ... ... \n... ... ... \n\n... ... ... \n... ... ... \n... x.. ... \n\n!!! ... ... \n!!! ... ... \n!!! ... ... \n\n", "xoo x!! x!! \nooo !!! !!! \nooo !!! !!! \n\nx!! x!! x!! \n!!! !!! !!! \n!!! !!! !!! \n\nx!! x!! x!! \n!!! !!! !!! \n!!! !!! !!! \n\n", "o!! !!! !!! \n!!! !!! !!! \n!!! !!! !!!...
In the first test case the first player made a move to lower left cell of central field, so the second player can put a chip only to cells of lower left field. In the second test case the last move was done to upper left cell of lower central field, however all cells in upper left field are occupied, so the second pla...
0
[ { "input": "... ... ...\n... ... ...\n... ... ...\n\n... ... ...\n... ... ...\n... x.. ...\n\n... ... ...\n... ... ...\n... ... ...\n6 4", "output": "... ... ... \n... ... ... \n... ... ... \n\n... ... ... \n... ... ... \n... x.. ... \n\n!!! ... ... \n!!! ... ... \n!!! ... ... " }, { "input": "xoo x...
1,514,041,826
3,926
Python 3
OK
TESTS
20
62
5,632,000
lst = [] for x in range(3): x = input().split() lst.append(x) s1 = input() for x in range(3): x = input().split() lst.append(x) s2 = input() for x in range(3): x = input().split() lst.append(x) (i, j) = map(int, input().split()) i = i % 3 j = j % 3 if i > 0: i -= ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Two bears are playing tic-tac-toe via mail. It's boring for them to play usual tic-tac-toe game, so they are a playing modified version of this game. Here are its rules. The game is played on the following field. Players are mak...
```python lst = [] for x in range(3): x = input().split() lst.append(x) s1 = input() for x in range(3): x = input().split() lst.append(x) s2 = input() for x in range(3): x = input().split() lst.append(x) (i, j) = map(int, input().split()) i = i % 3 j = j % 3 if i > 0: ...
3
1,005
B
Delete from the Left
PROGRAMMING
900
[ "brute force", "implementation", "strings" ]
null
null
You are given two strings $s$ and $t$. In a single move, you can choose any of two strings and delete the first (that is, the leftmost) character. After a move, the length of the string decreases by $1$. You can't choose a string if it is empty. For example: - by applying a move to the string "where", the result is ...
The first line of the input contains $s$. In the second line of the input contains $t$. Both strings consist only of lowercase Latin letters. The number of letters in each string is between 1 and $2\cdot10^5$, inclusive.
Output the fewest number of moves required. It is possible that, in the end, both strings will be equal to the empty string, and so, are equal to each other. In this case, the answer is obviously the sum of the lengths of the given strings.
[ "test\nwest\n", "codeforces\nyes\n", "test\nyes\n", "b\nab\n" ]
[ "2\n", "9\n", "7\n", "1\n" ]
In the first example, you should apply the move once to the first string and apply the move once to the second string. As a result, both strings will be equal to "est". In the second example, the move should be applied to the string "codeforces" $8$ times. As a result, the string becomes "codeforces" $\to$ "es". The m...
0
[ { "input": "test\nwest", "output": "2" }, { "input": "codeforces\nyes", "output": "9" }, { "input": "test\nyes", "output": "7" }, { "input": "b\nab", "output": "1" }, { "input": "z\nz", "output": "0" }, { "input": "abacabadabacaba\nabacabadacaba", ...
1,633,974,841
2,147,483,647
Python 3
OK
TESTS
28
77
6,963,200
def main(): s = input() t = input() moves = 0 s_len = len(s) t_len = len(t) i = s_len - 1 # zero-based j = t_len - 1 # zero-based min_len = min(s_len, t_len) for it in range(min_len): if s[i] == t[j]: i -= 1 j -= 1 ...
Title: Delete from the Left Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given two strings $s$ and $t$. In a single move, you can choose any of two strings and delete the first (that is, the leftmost) character. After a move, the length of the string decreases by $1$. You can't ...
```python def main(): s = input() t = input() moves = 0 s_len = len(s) t_len = len(t) i = s_len - 1 # zero-based j = t_len - 1 # zero-based min_len = min(s_len, t_len) for it in range(min_len): if s[i] == t[j]: i -= 1 j -= 1 ...
3
119
A
Epic Game
PROGRAMMING
800
[ "implementation" ]
null
null
Simon and Antisimon play a game. Initially each player receives one fixed positive integer that doesn't change throughout the game. Simon receives number *a* and Antisimon receives number *b*. They also have a heap of *n* stones. The players take turns to make a move and Simon starts. During a move a player should take...
The only string contains space-separated integers *a*, *b* and *n* (1<=≤<=*a*,<=*b*,<=*n*<=≤<=100) — the fixed numbers Simon and Antisimon have received correspondingly and the initial number of stones in the pile.
If Simon wins, print "0" (without the quotes), otherwise print "1" (without the quotes).
[ "3 5 9\n", "1 1 100\n" ]
[ "0", "1" ]
The greatest common divisor of two non-negative integers *a* and *b* is such maximum positive integer *k*, that *a* is divisible by *k* without remainder and similarly, *b* is divisible by *k* without remainder. Let *gcd*(*a*, *b*) represent the operation of calculating the greatest common divisor of numbers *a* and *b...
500
[ { "input": "3 5 9", "output": "0" }, { "input": "1 1 100", "output": "1" }, { "input": "23 12 16", "output": "1" }, { "input": "95 26 29", "output": "1" }, { "input": "73 32 99", "output": "1" }, { "input": "1 1 1", "output": "0" }, { "inpu...
1,566,902,355
2,147,483,647
Python 3
OK
TESTS
45
248
0
def gcd(a, b): q = a % b if q: return gcd(b, q) else: return b a, b, n = map(int, input().split()) remained = [a, b] i = 0 while n: n -= gcd(remained[i], n) i = 1 - i print(1 - i)
Title: Epic Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Simon and Antisimon play a game. Initially each player receives one fixed positive integer that doesn't change throughout the game. Simon receives number *a* and Antisimon receives number *b*. They also have a heap of *n* sto...
```python def gcd(a, b): q = a % b if q: return gcd(b, q) else: return b a, b, n = map(int, input().split()) remained = [a, b] i = 0 while n: n -= gcd(remained[i], n) i = 1 - i print(1 - i) ```
3
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,599,571,316
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
280
0
n = int(input()) li = [] flag = 0 mi = 999999999999999999999999999 diff = 0 for i in range(n): row = list(map(int,input().split())) row.append(i) li.append(row) li = sorted(li,key = lambda x:x[0]) #print(li) s = li[0][0] f = li[0][1] for i in range(n): c = 0 if li[i][0]>s: break if li[...
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 n = int(input()) li = [] flag = 0 mi = 999999999999999999999999999 diff = 0 for i in range(n): row = list(map(int,input().split())) row.append(i) li.append(row) li = sorted(li,key = lambda x:x[0]) #print(li) s = li[0][0] f = li[0][1] for i in range(n): c = 0 if li[i][0]>s: break ...
0
136
A
Presents
PROGRAMMING
800
[ "implementation" ]
null
null
Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on this occasion he organized a New Year party at his place and invited *n* his friends there. If...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=100) — the quantity of friends Petya invited to the party. The second line contains *n* space-separated integers: the *i*-th number is *p**i* — the number of a friend who gave a gift to friend number *i*. It is guaranteed that each friend received exactly one gift....
Print *n* space-separated integers: the *i*-th number should equal the number of the friend who gave a gift to friend number *i*.
[ "4\n2 3 4 1\n", "3\n1 3 2\n", "2\n1 2\n" ]
[ "4 1 2 3\n", "1 3 2\n", "1 2\n" ]
none
500
[ { "input": "4\n2 3 4 1", "output": "4 1 2 3" }, { "input": "3\n1 3 2", "output": "1 3 2" }, { "input": "2\n1 2", "output": "1 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 3 2 6 4 5 7 9 8 10", "output": "1 3 2 5 6 4 7 9 8 10" }, { "input"...
1,687,842,335
2,147,483,647
Python 3
OK
TESTS
101
92
0
n = int(input()) p = list(map(int, input().split())) ans = [0] * n for i in range(n): idx = p[i] ans[idx-1] = i+1 ans = [str(elem) for elem in ans] print(" ".join(ans))
Title: Presents Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Petya very much likes gifts. Recently he has received a new laptop as a New Year gift from his mother. He immediately decided to give it to somebody else as what can be more pleasant than giving somebody gifts. And on t...
```python n = int(input()) p = list(map(int, input().split())) ans = [0] * n for i in range(n): idx = p[i] ans[idx-1] = i+1 ans = [str(elem) for elem in ans] print(" ".join(ans)) ```
3
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,694,856,879
2,147,483,647
Python 3
OK
TESTS
30
92
0
x = input() big,small =0,0 for i in x: if i.isupper(): big += 1 else: small += 1 if big > small: print(x.upper()) else: print(x.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 x = input() big,small =0,0 for i in x: if i.isupper(): big += 1 else: small += 1 if big > small: print(x.upper()) else: print(x.lower()) ```
3.977
678
D
Iterated Linear Function
PROGRAMMING
1,700
[ "math", "number theory" ]
null
null
Consider a linear function *f*(*x*)<==<=*Ax*<=+<=*B*. Let's define *g*(0)(*x*)<==<=*x* and *g*(*n*)(*x*)<==<=*f*(*g*(*n*<=-<=1)(*x*)) for *n*<=&gt;<=0. For the given integer values *A*, *B*, *n* and *x* find the value of *g*(*n*)(*x*) modulo 109<=+<=7.
The only line contains four integers *A*, *B*, *n* and *x* (1<=≤<=*A*,<=*B*,<=*x*<=≤<=109,<=1<=≤<=*n*<=≤<=1018) — the parameters from the problem statement. Note that the given value *n* can be too large, so you should use 64-bit integer type to store it. In C++ you can use the long long integer type and in Java you c...
Print the only integer *s* — the value *g*(*n*)(*x*) modulo 109<=+<=7.
[ "3 4 1 1\n", "3 4 2 1\n", "3 4 3 1\n" ]
[ "7\n", "25\n", "79\n" ]
none
0
[ { "input": "3 4 1 1", "output": "7" }, { "input": "3 4 2 1", "output": "25" }, { "input": "3 4 3 1", "output": "79" }, { "input": "1 1 1 1", "output": "2" }, { "input": "3 10 723 6", "output": "443623217" }, { "input": "14 81 51 82", "output": "908...
1,530,863,812
3,412
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include<bits/stdc++.h> using namespace std; #define endl "\n" #define all(x) x.begin(),x.end() #define rall(x) x.rbegin(),x.rend() #define pll pair<ll,ll> #define ff first.first #define fs first.second typedef long long ll; typedef unsigned long long ull; //const ll mod = 1e16+371; //const ll mod = 1e12...
Title: Iterated Linear Function Time Limit: None seconds Memory Limit: None megabytes Problem Description: Consider a linear function *f*(*x*)<==<=*Ax*<=+<=*B*. Let's define *g*(0)(*x*)<==<=*x* and *g*(*n*)(*x*)<==<=*f*(*g*(*n*<=-<=1)(*x*)) for *n*<=&gt;<=0. For the given integer values *A*, *B*, *n* and *x* find th...
```python #include<bits/stdc++.h> using namespace std; #define endl "\n" #define all(x) x.begin(),x.end() #define rall(x) x.rbegin(),x.rend() #define pll pair<ll,ll> #define ff first.first #define fs first.second typedef long long ll; typedef unsigned long long ull; //const ll mod = 1e16+371; //const ll ...
-1
34
A
Reconnaissance 2
PROGRAMMING
800
[ "implementation" ]
A. Reconnaissance 2
2
256
*n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So each of them will be less noticeable with the other. Output any pair of soldiers that can form a ...
The first line contains integer *n* (2<=≤<=*n*<=≤<=100) — amount of soldiers. Then follow the heights of the soldiers in their order in the circle — *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1000). The soldier heights are given in clockwise or counterclockwise direction.
Output two integers — indexes of neighbouring soldiers, who should form a reconnaissance unit. If there are many optimum solutions, output any of them. Remember, that the soldiers stand in a circle.
[ "5\n10 12 13 15 10\n", "4\n10 20 30 40\n" ]
[ "5 1\n", "1 2\n" ]
none
500
[ { "input": "5\n10 12 13 15 10", "output": "5 1" }, { "input": "4\n10 20 30 40", "output": "1 2" }, { "input": "6\n744 359 230 586 944 442", "output": "2 3" }, { "input": "5\n826 747 849 687 437", "output": "1 2" }, { "input": "5\n999 999 993 969 999", "output"...
1,596,209,169
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
156
6,963,200
class Code: def __init__(self): self.n = int(input()) self.arr = list(map(int, input().split())) def process(self): arr = [] for i in range(self.n): arr.append([self.arr[i], i + 1]) arr.sort(key=lambda x: x[0]) print(arr[0][1], arr[1][1]) ...
Title: Reconnaissance 2 Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: *n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So...
```python class Code: def __init__(self): self.n = int(input()) self.arr = list(map(int, input().split())) def process(self): arr = [] for i in range(self.n): arr.append([self.arr[i], i + 1]) arr.sort(key=lambda x: x[0]) print(arr[0][1], arr...
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,682,425,495
2,147,483,647
PyPy 3-64
OK
TESTS
65
92
0
n,t=map(int,input().split()) if(n==1 and t==10): print("-1") elif(t==10): print("1",end="") for i in range(0,n-1): print("0",end="") else: for i in range(0,n): print(t,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 n,t=map(int,input().split()) if(n==1 and t==10): print("-1") elif(t==10): print("1",end="") for i in range(0,n-1): print("0",end="") else: for i in range(0,n): print(t,end="") ```
3
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,621,407,596
2,147,483,647
Python 3
OK
TESTS
30
124
0
s = input() mayus = 0 minus = 0 for letter in s: if letter.isupper(): mayus+=1 else: minus+=1 if(mayus > minus): print(s.upper()) else: print(s.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 s = input() mayus = 0 minus = 0 for letter in s: if letter.isupper(): mayus+=1 else: minus+=1 if(mayus > minus): print(s.upper()) else: print(s.lower()) ```
3.969
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,661,027,139
2,147,483,647
PyPy 3-64
OK
TESTS
40
62
0
import sys s=input() m='hello' x=0 for i in range(len(s)): if s[i]==m[x]: x+=1 if x==5: print("YES") sys.exit() print("NO")
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python import sys s=input() m='hello' x=0 for i in range(len(s)): if s[i]==m[x]: x+=1 if x==5: print("YES") sys.exit() print("NO") ```
3.969
1,008
A
Romaji
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
Vitya has just started learning Berlanese language. It is known that Berlanese uses the Latin alphabet. Vowel letters are "a", "o", "u", "i", and "e". Other letters are consonant. In Berlanese, there has to be a vowel after every consonant, but there can be any letter after any vowel. The only exception is a consonant...
The first line of the input contains the string $s$ consisting of $|s|$ ($1\leq |s|\leq 100$) lowercase Latin letters.
Print "YES" (without quotes) if there is a vowel after every consonant except "n", otherwise print "NO". You can print each letter in any case (upper or lower).
[ "sumimasen\n", "ninja\n", "codeforces\n" ]
[ "YES\n", "YES\n", "NO\n" ]
In the first and second samples, a vowel goes after each consonant except "n", so the word is Berlanese. In the third sample, the consonant "c" goes after the consonant "r", and the consonant "s" stands on the end, so the word is not Berlanese.
500
[ { "input": "sumimasen", "output": "YES" }, { "input": "ninja", "output": "YES" }, { "input": "codeforces", "output": "NO" }, { "input": "auuaoonntanonnuewannnnpuuinniwoonennyolonnnvienonpoujinndinunnenannmuveoiuuhikucuziuhunnnmunzancenen", "output": "YES" }, { "in...
1,699,978,620
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
13
46
0
x = input() y ="bcdfghjklmnpqrstvwxyz" x1 =[char for char in x] p = [char for char in y] def consonent(x1 , p): for i in range(0,len(x1)): for j in range(0,len(p)): if x1[i] == p[j] and x1[i] != 'n' and len(x1)>1: for k in range(i+1,i+2): for t in range(0,len(...
Title: Romaji Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vitya has just started learning Berlanese language. It is known that Berlanese uses the Latin alphabet. Vowel letters are "a", "o", "u", "i", and "e". Other letters are consonant. In Berlanese, there has to be a vowel after eve...
```python x = input() y ="bcdfghjklmnpqrstvwxyz" x1 =[char for char in x] p = [char for char in y] def consonent(x1 , p): for i in range(0,len(x1)): for j in range(0,len(p)): if x1[i] == p[j] and x1[i] != 'n' and len(x1)>1: for k in range(i+1,i+2): for t in ra...
-1
107
B
Basketball Team
PROGRAMMING
1,600
[ "combinatorics", "dp", "math", "probabilities" ]
B. Basketball Team
1
256
As a German University in Cairo (GUC) student and a basketball player, Herr Wafa was delighted once he heard the news. GUC is finally participating in the Annual Basketball Competition (ABC). A team is to be formed of *n* players, all of which are GUC students. However, the team might have players belonging to differ...
The first line contains three integers *n*, *m* and *h* (1<=≤<=*n*<=≤<=100,<=1<=≤<=*m*<=≤<=1000,<=1<=≤<=*h*<=≤<=*m*) — the number of players on the team, the number of departments in GUC and Herr Wafa's department, correspondingly. The second line contains a single-space-separated list of *m* integers *s**i* (1<=≤<=*...
Print the probability that Herr Wafa will have at least one teammate from his department. If there is not enough basketball players in GUC to participate in ABC, print -1. The answer will be accepted if it has absolute or relative error not exceeding 10<=-<=6.
[ "3 2 1\n2 1\n", "3 2 1\n1 1\n", "3 2 1\n2 2\n" ]
[ "1\n", "-1\n", "0.666667\n" ]
In the first example all 3 players (2 from department 1 and 1 from department 2) must be chosen for the team. Both players from Wafa's departments will be chosen, so he's guaranteed to have a teammate from his department. In the second example, there are not enough players. In the third example, there are three possi...
1,000
[ { "input": "3 2 1\n2 1", "output": "1" }, { "input": "3 2 1\n1 1", "output": "-1" }, { "input": "3 2 1\n2 2", "output": "0.666667" }, { "input": "3 2 1\n1 2", "output": "0.000000" }, { "input": "6 5 3\n5 2 3 10 5", "output": "0.380435" }, { "input": "7...
1,694,194,216
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
109
12,492,800
import math m, n, h = map (int, input ().split()) a = list (map (int, input ().split ())) cmb = [[0] * 101] * 101 for i in range (0, 101): for j in range (0, 101): cmb[i][j] = math.comb (i, j) dp = [[[0 for i in range(2)] for j in range(101)] for k in range(1001)] dp[0][0][0] = 1 m -= 1 a[h - 1] -...
Title: Basketball Team Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: As a German University in Cairo (GUC) student and a basketball player, Herr Wafa was delighted once he heard the news. GUC is finally participating in the Annual Basketball Competition (ABC). A team is to be formed of *n*...
```python import math m, n, h = map (int, input ().split()) a = list (map (int, input ().split ())) cmb = [[0] * 101] * 101 for i in range (0, 101): for j in range (0, 101): cmb[i][j] = math.comb (i, j) dp = [[[0 for i in range(2)] for j in range(101)] for k in range(1001)] dp[0][0][0] = 1 m -= 1 ...
0
450
A
Jzzhu and Children
PROGRAMMING
1,000
[ "implementation" ]
null
null
There are *n* children in Jzzhu's school. Jzzhu is going to give some candies to them. Let's number all the children from 1 to *n*. The *i*-th child wants to get at least *a**i* candies. Jzzhu asks children to line up. Initially, the *i*-th child stands at the *i*-th place of the line. Then Jzzhu start distribution of...
The first line contains two integers *n*,<=*m* (1<=≤<=*n*<=≤<=100; 1<=≤<=*m*<=≤<=100). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100).
Output a single integer, representing the number of the last child.
[ "5 2\n1 3 1 4 2\n", "6 4\n1 1 2 2 3 3\n" ]
[ "4\n", "6\n" ]
Let's consider the first sample. Firstly child 1 gets 2 candies and go home. Then child 2 gets 2 candies and go to the end of the line. Currently the line looks like [3, 4, 5, 2] (indices of the children in order of the line). Then child 3 gets 2 candies and go home, and then child 4 gets 2 candies and goes to the en...
500
[ { "input": "5 2\n1 3 1 4 2", "output": "4" }, { "input": "6 4\n1 1 2 2 3 3", "output": "6" }, { "input": "7 3\n6 1 5 4 2 3 1", "output": "4" }, { "input": "10 5\n2 7 3 6 2 5 1 3 4 5", "output": "4" }, { "input": "100 1\n1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18...
1,669,528,862
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
0
n,m=list(map(int, input().split())) l=list(map(int, input().split())) maxi=max(l) for i in range(n-1,0,-1): if(l[i]==maxi): print(i+1) break
Title: Jzzhu and Children Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* children in Jzzhu's school. Jzzhu is going to give some candies to them. Let's number all the children from 1 to *n*. The *i*-th child wants to get at least *a**i* candies. Jzzhu asks children to line ...
```python n,m=list(map(int, input().split())) l=list(map(int, input().split())) maxi=max(l) for i in range(n-1,0,-1): if(l[i]==maxi): print(i+1) break ```
0
959
B
Mahmoud and Ehab and the message
PROGRAMMING
1,200
[ "dsu", "greedy", "implementation" ]
null
null
Mahmoud wants to send a message to his friend Ehab. Their language consists of *n* words numbered from 1 to *n*. Some words have the same meaning so there are *k* groups of words such that all the words in some group have the same meaning. Mahmoud knows that the *i*-th word can be sent with cost *a**i*. For each word ...
The first line of input contains integers *n*, *k* and *m* (1<=≤<=*k*<=≤<=*n*<=≤<=105,<=1<=≤<=*m*<=≤<=105) — the number of words in their language, the number of groups of words, and the number of words in Mahmoud's message respectively. The second line contains *n* strings consisting of lowercase English letters of l...
The only line should contain the minimum cost to send the message after replacing some words (maybe none) with some words of the same meaning.
[ "5 4 4\ni loser am the second\n100 1 1 5 10\n1 1\n1 3\n2 2 5\n1 4\ni am the second\n", "5 4 4\ni loser am the second\n100 20 1 5 10\n1 1\n1 3\n2 2 5\n1 4\ni am the second\n" ]
[ "107", "116" ]
In the first sample, Mahmoud should replace the word "second" with the word "loser" because it has less cost so the cost will be 100+1+5+1=107. In the second sample, Mahmoud shouldn't do any replacement so the cost will be 100+1+5+10=116.
1,000
[ { "input": "5 4 4\ni loser am the second\n100 1 1 5 10\n1 1\n1 3\n2 2 5\n1 4\ni am the second", "output": "107" }, { "input": "5 4 4\ni loser am the second\n100 20 1 5 10\n1 1\n1 3\n2 2 5\n1 4\ni am the second", "output": "116" }, { "input": "1 1 1\na\n1000000000\n1 1\na", "output": ...
1,687,615,239
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
4
2,000
29,286,400
# inputs n, k, m = [int(i) for i in input().split()] words = input().split(' ') dict = {} costs = [int(i) for i in input().split()] for i in range(len(words)): dict[words[i]] = costs[i] groups = [] for i in range(k): lst = [int(i) for i in input().split()] lst = lst[1:] groups.append(lst) ls...
Title: Mahmoud and Ehab and the message Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mahmoud wants to send a message to his friend Ehab. Their language consists of *n* words numbered from 1 to *n*. Some words have the same meaning so there are *k* groups of words such that all the words...
```python # inputs n, k, m = [int(i) for i in input().split()] words = input().split(' ') dict = {} costs = [int(i) for i in input().split()] for i in range(len(words)): dict[words[i]] = costs[i] groups = [] for i in range(k): lst = [int(i) for i in input().split()] lst = lst[1:] groups.appen...
0
0
none
none
none
0
[ "none" ]
null
null
Карта звёздного неба представляет собой прямоугольное поле, состоящее из *n* строк по *m* символов в каждой строке. Каждый символ — это либо «.» (означает пустой участок неба), либо «*» (означает то, что в этом месте на небе есть звезда). Новое издание карты звёздного неба будет напечатано на квадратных листах, поэто...
В первой строке входных данных записаны два числа *n* и *m* (1<=≤<=*n*,<=*m*<=≤<=1000) — количество строк и столбцов на карте звездного неба. В следующих *n* строках задано по *m* символов. Каждый символ — это либо «.» (пустой участок неба), либо «*» (звезда). Гарантируется, что на небе есть хотя бы одна звезда.
Выведите одно число — минимально возможную сторону квадрата, которым можно накрыть все звезды.
[ "4 4\n....\n..*.\n...*\n..**\n", "1 3\n*.*\n", "2 1\n.\n*\n" ]
[ "3\n", "3\n", "1\n" ]
Один из возможных ответов на первый тестовый пример: Один из возможных ответов на второй тестовый пример (обратите внимание, что покрывающий квадрат выходит за пределы карты звездного неба): Ответ на третий тестовый пример:
0
[ { "input": "4 4\n....\n..*.\n...*\n..**", "output": "3" }, { "input": "1 3\n*.*", "output": "3" }, { "input": "2 1\n.\n*", "output": "1" }, { "input": "1 1\n*", "output": "1" }, { "input": "1 2\n.*", "output": "1" }, { "input": "1 2\n*.", "output":...
1,458,928,337
129,137
Python 3
WRONG_ANSWER
PRETESTS
11
62
4,608,000
s = input().split(' ') if len(s) == 2: n = int(s[0]) m = int(s[1]) if (n >= 1) and (n <= 1000) and (m >= 1) and (m <= 1000): mas = [] t = n while t > 0: s = input() mas.append(s) t -= 1 t = 0 while t < m: s ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Карта звёздного неба представляет собой прямоугольное поле, состоящее из *n* строк по *m* символов в каждой строке. Каждый символ — это либо «.» (означает пустой участок неба), либо «*» (означает то, что в этом месте на небе есть ...
```python s = input().split(' ') if len(s) == 2: n = int(s[0]) m = int(s[1]) if (n >= 1) and (n <= 1000) and (m >= 1) and (m <= 1000): mas = [] t = n while t > 0: s = input() mas.append(s) t -= 1 t = 0 while t < m: ...
0
837
A
Text Volume
PROGRAMMING
800
[ "implementation" ]
null
null
You are given a text of single-space separated words, consisting of small and capital Latin letters. Volume of the word is number of capital letters in the word. Volume of the text is maximum volume of all words in the text. Calculate the volume of the given text.
The first line contains one integer number *n* (1<=≤<=*n*<=≤<=200) — length of the text. The second line contains text of single-space separated words *s*1,<=*s*2,<=...,<=*s**i*, consisting only of small and capital Latin letters.
Print one integer number — volume of text.
[ "7\nNonZERO\n", "24\nthis is zero answer text\n", "24\nHarbour Space University\n" ]
[ "5\n", "0\n", "1\n" ]
In the first example there is only one word, there are 5 capital letters in it. In the second example all of the words contain 0 capital letters.
0
[ { "input": "7\nNonZERO", "output": "5" }, { "input": "24\nthis is zero answer text", "output": "0" }, { "input": "24\nHarbour Space University", "output": "1" }, { "input": "2\nWM", "output": "2" }, { "input": "200\nLBmJKQLCKUgtTxMoDsEerwvLOXsxASSydOqWyULsRcjMYDWd...
1,688,561,184
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
5
77
2,867,200
from string import ascii_uppercase _ = int(input()) s = input().split() res = 0 for x in s: cnt = 0 for c in x: if c in ascii_uppercase: cnt += 1 if cnt > res: res = cnt print(cnt)
Title: Text Volume Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a text of single-space separated words, consisting of small and capital Latin letters. Volume of the word is number of capital letters in the word. Volume of the text is maximum volume of all words in the tex...
```python from string import ascii_uppercase _ = int(input()) s = input().split() res = 0 for x in s: cnt = 0 for c in x: if c in ascii_uppercase: cnt += 1 if cnt > res: res = cnt print(cnt) ```
0
2
C
Commentator problem
PROGRAMMING
2,600
[ "geometry" ]
C. Commentator problem
1
64
The Olympic Games in Bercouver are in full swing now. Here everyone has their own objectives: sportsmen compete for medals, and sport commentators compete for more convenient positions to give a running commentary. Today the main sport events take place at three round stadiums, and the commentator's objective is to cho...
The input data consists of three lines, each of them describes the position of one stadium. The lines have the format *x*,<=<=*y*,<=<=*r*, where (*x*,<=*y*) are the coordinates of the stadium's center (<=-<=<=103<=≤<=*x*,<=<=*y*<=≤<=103), and *r* (1<=≤<=*r*<=<=≤<=103) is its radius. All the numbers in the input data ar...
Print the coordinates of the required point with five digits after the decimal point. If there is no answer meeting the conditions, the program shouldn't print anything. The output data should be left blank.
[ "0 0 10\n60 0 10\n30 30 10\n" ]
[ "30.00000 0.00000\n" ]
none
0
[ { "input": "0 0 10\n60 0 10\n30 30 10", "output": "30.00000 0.00000" }, { "input": "0 0 10\n100 100 10\n200 0 20", "output": "60.76252 39.23748" }, { "input": "0 0 10\n300 300 11\n500 -500 12", "output": "348.52046 -94.13524" }, { "input": "0 0 10\n300 300 12\n500 -500 14", ...
1,601,818,470
2,147,483,647
PyPy 3
OK
TESTS
16
140
1,331,200
from math import * x1, y1, r1 = map(float, input().split()) x2, y2, r2 = map(float, input().split()) x3, y3, r3 = map(float, input().split()) x, y = (x1 + x2 + x3) / 3, (y1 + y2 + y3) / 3 def cost(a, b): d1, d2, d3 = sqrt((x1 - a) ** 2 + (y1 - b) ** 2), sqrt((x2 - a) ** 2 + (y2 - b) ** 2), \ ...
Title: Commentator problem Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The Olympic Games in Bercouver are in full swing now. Here everyone has their own objectives: sportsmen compete for medals, and sport commentators compete for more convenient positions to give a running commentary. Today...
```python from math import * x1, y1, r1 = map(float, input().split()) x2, y2, r2 = map(float, input().split()) x3, y3, r3 = map(float, input().split()) x, y = (x1 + x2 + x3) / 3, (y1 + y2 + y3) / 3 def cost(a, b): d1, d2, d3 = sqrt((x1 - a) ** 2 + (y1 - b) ** 2), sqrt((x2 - a) ** 2 + (y2 - b) ** 2), \ ...
3.920082
265
A
Colorful Stones (Simplified Edition)
PROGRAMMING
800
[ "implementation" ]
null
null
There is a sequence of colorful stones. The color of each stone is one of red, green, or blue. You are given a string *s*. The *i*-th (1-based) character of *s* represents the color of the *i*-th stone. If the character is "R", "G", or "B", the color of the corresponding stone is red, green, or blue, respectively. Ini...
The input contains two lines. The first line contains the string *s* (1<=≤<=|*s*|<=≤<=50). The second line contains the string *t* (1<=≤<=|*t*|<=≤<=50). The characters of each string will be one of "R", "G", or "B". It is guaranteed that Liss don't move out of the sequence.
Print the final 1-based position of Liss in a single line.
[ "RGB\nRRR\n", "RRRBGBRBBB\nBBBRR\n", "BRRBGBRGRBGRGRRGGBGBGBRGBRGRGGGRBRRRBRBBBGRRRGGBBB\nBBRBGGRGRGBBBRBGRBRBBBBRBRRRBGBBGBBRRBBGGRBRRBRGRB\n" ]
[ "2\n", "3\n", "15\n" ]
none
500
[ { "input": "RGB\nRRR", "output": "2" }, { "input": "RRRBGBRBBB\nBBBRR", "output": "3" }, { "input": "BRRBGBRGRBGRGRRGGBGBGBRGBRGRGGGRBRRRBRBBBGRRRGGBBB\nBBRBGGRGRGBBBRBGRBRBBBBRBRRRBGBBGBBRRBBGGRBRRBRGRB", "output": "15" }, { "input": "G\nRRBBRBRRBR", "output": "1" }, ...
1,611,830,795
2,147,483,647
Python 3
OK
TESTS
19
154
0
s = input() t = input() pos = 0 for command in t: if s[pos] == command: pos += 1 print(pos + 1)
Title: Colorful Stones (Simplified Edition) Time Limit: None seconds Memory Limit: None megabytes Problem Description: There is a sequence of colorful stones. The color of each stone is one of red, green, or blue. You are given a string *s*. The *i*-th (1-based) character of *s* represents the color of the *i*-th st...
```python s = input() t = input() pos = 0 for command in t: if s[pos] == command: pos += 1 print(pos + 1) ```
3
596
B
Wilbur and Array
PROGRAMMING
1,100
[ "greedy", "implementation" ]
null
null
Wilbur the pig is tinkering with arrays again. He has the array *a*1,<=*a*2,<=...,<=*a**n* initially consisting of *n* zeros. At one step, he can choose any index *i* and either add 1 to all elements *a**i*,<=*a**i*<=+<=1,<=... ,<=*a**n* or subtract 1 from all elements *a**i*,<=*a**i*<=+<=1,<=...,<=*a**n*. His goal is ...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=200<=000) — the length of the array *a**i*. Initially *a**i*<==<=0 for every position *i*, so this array is not given in the input. The second line of the input contains *n* integers *b*1,<=*b*2,<=...,<=*b**n* (<=-<=109<=≤<=*b**i*<=≤<=109).
Print the minimum number of steps that Wilbur needs to make in order to achieve *a**i*<==<=*b**i* for all *i*.
[ "5\n1 2 3 4 5\n", "4\n1 2 2 1\n" ]
[ "5", "3" ]
In the first sample, Wilbur may successively choose indices 1, 2, 3, 4, and 5, and add 1 to corresponding suffixes. In the second sample, Wilbur first chooses indices 1 and 2 and adds 1 to corresponding suffixes, then he chooses index 4 and subtract 1.
1,000
[ { "input": "5\n1 2 3 4 5", "output": "5" }, { "input": "4\n1 2 2 1", "output": "3" }, { "input": "3\n1 2 4", "output": "4" }, { "input": "6\n1 2 3 6 5 4", "output": "8" }, { "input": "10\n2 1 4 3 6 5 8 7 10 9", "output": "19" }, { "input": "7\n12 6 12 ...
1,698,104,791
2,147,483,647
Python 3
OK
TESTS
76
155
26,316,800
n = int(input()) b = list(map(int, input().split())) moves = abs(b[0]) for i in range(1, n): moves += abs(b[i] - b[i-1]) print(moves)
Title: Wilbur and Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Wilbur the pig is tinkering with arrays again. He has the array *a*1,<=*a*2,<=...,<=*a**n* initially consisting of *n* zeros. At one step, he can choose any index *i* and either add 1 to all elements *a**i*,<=*a**i*<=+...
```python n = int(input()) b = list(map(int, input().split())) moves = abs(b[0]) for i in range(1, n): moves += abs(b[i] - b[i-1]) print(moves) ```
3
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,638,793,203
2,147,483,647
Python 3
OK
TESTS
34
124
102,400
from collections import Counter n = int(input()) res = [] for i in range(n): s = input() res.append(s) print(max(Counter(res), key=Counter(res).get))
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python from collections import Counter n = int(input()) res = [] for i in range(n): s = input() res.append(s) print(max(Counter(res), key=Counter(res).get)) ```
3.968809
501
A
Contest
PROGRAMMING
900
[ "implementation" ]
null
null
Misha and Vasya participated in a Codeforces contest. Unfortunately, each of them solved only one problem, though successfully submitted it at the first attempt. Misha solved the problem that costs *a* points and Vasya solved the problem that costs *b* points. Besides, Misha submitted the problem *c* minutes after the ...
The first line contains four integers *a*, *b*, *c*, *d* (250<=≤<=*a*,<=*b*<=≤<=3500, 0<=≤<=*c*,<=*d*<=≤<=180). It is guaranteed that numbers *a* and *b* are divisible by 250 (just like on any real Codeforces round).
Output on a single line: "Misha" (without the quotes), if Misha got more points than Vasya. "Vasya" (without the quotes), if Vasya got more points than Misha. "Tie" (without the quotes), if both of them got the same number of points.
[ "500 1000 20 30\n", "1000 1000 1 1\n", "1500 1000 176 177\n" ]
[ "Vasya\n", "Tie\n", "Misha\n" ]
none
500
[ { "input": "500 1000 20 30", "output": "Vasya" }, { "input": "1000 1000 1 1", "output": "Tie" }, { "input": "1500 1000 176 177", "output": "Misha" }, { "input": "1500 1000 74 177", "output": "Misha" }, { "input": "750 2500 175 178", "output": "Vasya" }, { ...
1,595,251,368
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
77
6,656,000
row = input().split() a = int(row[0]) b = int(row[1]) c = int(row[2]) d = int(row[3]) misha = max(3*a/10, a - (a/250) * c) visa = max(3*b/10, b - (b/250) * d) if misha == visa : print('Tie') elif misha > visa : print('Misha') else: print('Vasye')
Title: Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Misha and Vasya participated in a Codeforces contest. Unfortunately, each of them solved only one problem, though successfully submitted it at the first attempt. Misha solved the problem that costs *a* points and Vasya solved t...
```python row = input().split() a = int(row[0]) b = int(row[1]) c = int(row[2]) d = int(row[3]) misha = max(3*a/10, a - (a/250) * c) visa = max(3*b/10, b - (b/250) * d) if misha == visa : print('Tie') elif misha > visa : print('Misha') else: print('Vasye') ```
0
448
C
Painting Fence
PROGRAMMING
1,900
[ "divide and conquer", "dp", "greedy" ]
null
null
Bizon the Champion isn't just attentive, he also is very hardworking. Bizon the Champion decided to paint his old fence his favorite color, orange. The fence is represented as *n* vertical planks, put in a row. Adjacent planks have no gap between them. The planks are numbered from the left to the right starting from o...
The first line contains integer *n* (1<=≤<=*n*<=≤<=5000) — the number of fence planks. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109).
Print a single integer — the minimum number of strokes needed to paint the whole fence.
[ "5\n2 2 1 2 1\n", "2\n2 2\n", "1\n5\n" ]
[ "3\n", "2\n", "1\n" ]
In the first sample you need to paint the fence in three strokes with the brush: the first stroke goes on height 1 horizontally along all the planks. The second stroke goes on height 2 horizontally and paints the first and second planks and the third stroke (it can be horizontal and vertical) finishes painting the four...
2,500
[ { "input": "5\n2 2 1 2 1", "output": "3" }, { "input": "2\n2 2", "output": "2" }, { "input": "1\n5", "output": "1" }, { "input": "5\n2 2 1 2 2", "output": "3" }, { "input": "5\n2 2 1 5 1", "output": "3" }, { "input": "1\n1", "output": "1" }, { ...
1,619,590,286
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
8
155
8,192,000
ar=[] def solve(l, r, val): if(r<l): return 0 indx=l+ar[l:r+1].index(min(ar[l:r+1])) tot=r-l+1 cur=ar[indx]-val+solve(l, indx-1, ar[indx])+solve(indx+1, r, ar[indx]) return min(tot, cur) n=int(input()) ar=list(map(int, input().split())) print(solve(0, n-1, 0))
Title: Painting Fence Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bizon the Champion isn't just attentive, he also is very hardworking. Bizon the Champion decided to paint his old fence his favorite color, orange. The fence is represented as *n* vertical planks, put in a row. Adjacent...
```python ar=[] def solve(l, r, val): if(r<l): return 0 indx=l+ar[l:r+1].index(min(ar[l:r+1])) tot=r-l+1 cur=ar[indx]-val+solve(l, indx-1, ar[indx])+solve(indx+1, r, ar[indx]) return min(tot, cur) n=int(input()) ar=list(map(int, input().split())) print(solve(0, n-1, 0)) ```
-1
465
B
Inbox (100500)
PROGRAMMING
1,000
[ "implementation" ]
null
null
Over time, Alexey's mail box got littered with too many letters. Some of them are read, while others are unread. Alexey's mail program can either show a list of all letters or show the content of a single letter. As soon as the program shows the content of an unread letter, it becomes read letter (if the program shows...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of letters in the mailbox. The second line contains *n* space-separated integers (zeros and ones) — the state of the letter list. The *i*-th number equals either 1, if the *i*-th number is unread, or 0, if the *i*-th letter is read.
Print a single number — the minimum number of operations needed to make all the letters read.
[ "5\n0 1 0 1 0\n", "5\n1 1 0 0 1\n", "2\n0 0\n" ]
[ "3\n", "4\n", "0\n" ]
In the first sample Alexey needs three operations to cope with the task: open the second letter, move to the third one, move to the fourth one. In the second sample the action plan: open the first letter, move to the second letter, return to the list, open the fifth letter. In the third sample all letters are already...
1,000
[ { "input": "5\n0 1 0 1 0", "output": "3" }, { "input": "5\n1 1 0 0 1", "output": "4" }, { "input": "2\n0 0", "output": "0" }, { "input": "9\n1 0 1 0 1 0 1 0 1", "output": "9" }, { "input": "5\n1 1 1 1 1", "output": "5" }, { "input": "14\n0 0 1 1 1 0 1 ...
1,583,901,432
2,147,483,647
Python 3
OK
TESTS
44
124
307,200
cartas = int(input()) caixa = input().split() operacoes = 0 cont = 0 boolean = False for i in range(len(caixa)): if caixa[i] == "1": boolean = True if cont == 1 or cont > 1: operacoes += 1 cont = 0 operacoes += 1 if caixa[i] == "0" and boolean: cont += 1 print(operacoes) ...
Title: Inbox (100500) Time Limit: None seconds Memory Limit: None megabytes Problem Description: Over time, Alexey's mail box got littered with too many letters. Some of them are read, while others are unread. Alexey's mail program can either show a list of all letters or show the content of a single letter. As soo...
```python cartas = int(input()) caixa = input().split() operacoes = 0 cont = 0 boolean = False for i in range(len(caixa)): if caixa[i] == "1": boolean = True if cont == 1 or cont > 1: operacoes += 1 cont = 0 operacoes += 1 if caixa[i] == "0" and boolean: cont += 1 print(operacoes) ...
3
17
B
Hierarchy
PROGRAMMING
1,500
[ "dfs and similar", "dsu", "greedy", "shortest paths" ]
B. Hierarchy
2
64
Nick's company employed *n* people. Now Nick needs to build a tree hierarchy of «supervisor-surbodinate» relations in the company (this is to say that each employee, except one, has exactly one supervisor). There are *m* applications written in the following form: «employee *a**i* is ready to become a supervisor of emp...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=1000) — amount of employees in the company. The following line contains *n* space-separated numbers *q**j* (0<=≤<=*q**j*<=≤<=106)— the employees' qualifications. The following line contains number *m* (0<=≤<=*m*<=≤<=10000) — amount of received applications. The f...
Output the only line — the minimum cost of building such a hierarchy, or -1 if it is impossible to build it.
[ "4\n7 2 3 1\n4\n1 2 5\n2 4 1\n3 4 1\n1 3 5\n", "3\n1 2 3\n2\n3 1 2\n3 1 3\n" ]
[ "11\n", "-1\n" ]
In the first sample one of the possible ways for building a hierarchy is to take applications with indexes 1, 2 and 4, which give 11 as the minimum total cost. In the second sample it is impossible to build the required hierarchy, so the answer is -1.
0
[ { "input": "4\n7 2 3 1\n4\n1 2 5\n2 4 1\n3 4 1\n1 3 5", "output": "11" }, { "input": "3\n1 2 3\n2\n3 1 2\n3 1 3", "output": "-1" }, { "input": "1\n2\n0", "output": "0" }, { "input": "2\n5 3\n4\n1 2 0\n1 2 5\n1 2 0\n1 2 7", "output": "0" }, { "input": "3\n9 4 5\n5\...
1,631,293,503
2,147,483,647
Python 3
OK
TESTS
36
156
6,963,200
n = int(input()) e = map(int, input().split()) m = int(input()) aux = [-1] * n for _ in range(m): a, b, c = map(int, input().split()) b -= 1 if aux[b] == -1: aux[b] = c else: aux[b] = min(aux[b], c) if aux.count(-1) > 1: print(-1) else: print(sum(aux) + 1)
Title: Hierarchy Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Nick's company employed *n* people. Now Nick needs to build a tree hierarchy of «supervisor-surbodinate» relations in the company (this is to say that each employee, except one, has exactly one supervisor). There are *m* applicati...
```python n = int(input()) e = map(int, input().split()) m = int(input()) aux = [-1] * n for _ in range(m): a, b, c = map(int, input().split()) b -= 1 if aux[b] == -1: aux[b] = c else: aux[b] = min(aux[b], c) if aux.count(-1) > 1: print(-1) else: print(sum(aux) + 1) ...
3.90912
509
B
Painting Pebbles
PROGRAMMING
1,300
[ "constructive algorithms", "greedy", "implementation" ]
null
null
There are *n* piles of pebbles on the table, the *i*-th pile contains *a**i* pebbles. Your task is to paint each pebble using one of the *k* given colors so that for each color *c* and any two piles *i* and *j* the difference between the number of pebbles of color *c* in pile *i* and number of pebbles of color *c* in p...
The first line of the input contains positive integers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=100), separated by a space — the number of piles and the number of colors respectively. The second line contains *n* positive integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100) denoting number of pebbles in each of the pile...
If there is no way to paint the pebbles satisfying the given condition, output "NO" (without quotes) . Otherwise in the first line output "YES" (without quotes). Then *n* lines should follow, the *i*-th of them should contain *a**i* space-separated integers. *j*-th (1<=≤<=*j*<=≤<=*a**i*) of these integers should be eq...
[ "4 4\n1 2 3 4\n", "5 2\n3 2 4 1 3\n", "5 4\n3 2 4 3 5\n" ]
[ "YES\n1\n1 4\n1 2 4\n1 2 3 4\n", "NO\n", "YES\n1 2 3\n1 3\n1 2 3 4\n1 3 4\n1 1 2 3 4\n" ]
none
0
[ { "input": "4 4\n1 2 3 4", "output": "YES\n1 \n1 1 \n1 1 2 \n1 1 2 3 " }, { "input": "5 2\n3 2 4 1 3", "output": "NO" }, { "input": "5 4\n3 2 4 3 5", "output": "YES\n1 1 1 \n1 1 \n1 1 1 2 \n1 1 1 \n1 1 1 2 3 " }, { "input": "4 3\n5 6 7 8", "output": "YES\n1 1 1 1 1 \n1 1 ...
1,604,085,069
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
93
307,200
n, k = map(int, input().split()) pilhas_pedras = list(map(int, input().split())) coloridas = ["" for i in range(n)] pilhas_pintadas = {} cor_atual = 1 while len(pilhas_pintadas.keys()) < len(pilhas_pedras): if len(pilhas_pintadas.keys()) > 1: cor_atual += 1 if cor_atual > k: break for i in range(len(pilha...
Title: Painting Pebbles Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* piles of pebbles on the table, the *i*-th pile contains *a**i* pebbles. Your task is to paint each pebble using one of the *k* given colors so that for each color *c* and any two piles *i* and *j* the dif...
```python n, k = map(int, input().split()) pilhas_pedras = list(map(int, input().split())) coloridas = ["" for i in range(n)] pilhas_pintadas = {} cor_atual = 1 while len(pilhas_pintadas.keys()) < len(pilhas_pedras): if len(pilhas_pintadas.keys()) > 1: cor_atual += 1 if cor_atual > k: break for i in range...
0
593
B
Anton and Lines
PROGRAMMING
1,600
[ "geometry", "sortings" ]
null
null
The teacher gave Anton a large geometry homework, but he didn't do it (as usual) as he participated in a regular round on Codeforces. In the task he was given a set of *n* lines defined by the equations *y*<==<=*k**i*·*x*<=+<=*b**i*. It was necessary to determine whether there is at least one point of intersection of t...
The first line of the input contains an integer *n* (2<=≤<=*n*<=≤<=100<=000) — the number of lines in the task given to Anton. The second line contains integers *x*1 and *x*2 (<=-<=1<=000<=000<=≤<=*x*1<=&lt;<=*x*2<=≤<=1<=000<=000) defining the strip inside which you need to find a point of intersection of at least two ...
Print "Yes" (without quotes), if there is at least one intersection of two distinct lines, located strictly inside the strip. Otherwise print "No" (without quotes).
[ "4\n1 2\n1 2\n1 0\n0 1\n0 2\n", "2\n1 3\n1 0\n-1 3\n", "2\n1 3\n1 0\n0 2\n", "2\n1 3\n1 0\n0 3\n" ]
[ "NO", "YES", "YES", "NO" ]
In the first sample there are intersections located on the border of the strip, but there are no intersections located strictly inside it.
1,000
[ { "input": "4\n1 2\n1 2\n1 0\n0 1\n0 2", "output": "NO" }, { "input": "2\n1 3\n1 0\n-1 3", "output": "YES" }, { "input": "2\n1 3\n1 0\n0 2", "output": "YES" }, { "input": "2\n1 3\n1 0\n0 3", "output": "NO" }, { "input": "2\n0 1\n-1000000 1000000\n1000000 -1000000"...
1,446,656,893
1,393
Python 3
OK
TESTS
93
624
17,715,200
n = int(input()) points = [] flag = False x1, x2 = map(int, input().split()) for i in range(n): a, b = map(int, input().split()) points.append((a, b)) p = [] for i in range(n): p.append((points[i][0] * x1 + points[i][1], points[i][0] * x2 + points[i][1])) p.sort() for i in range(n - 1): if p[i][0] !...
Title: Anton and Lines Time Limit: None seconds Memory Limit: None megabytes Problem Description: The teacher gave Anton a large geometry homework, but he didn't do it (as usual) as he participated in a regular round on Codeforces. In the task he was given a set of *n* lines defined by the equations *y*<==<=*k**i*·*...
```python n = int(input()) points = [] flag = False x1, x2 = map(int, input().split()) for i in range(n): a, b = map(int, input().split()) points.append((a, b)) p = [] for i in range(n): p.append((points[i][0] * x1 + points[i][1], points[i][0] * x2 + points[i][1])) p.sort() for i in range(n - 1): if...
3
712
B
Memory and Trident
PROGRAMMING
1,100
[ "implementation", "strings" ]
null
null
Memory is performing a walk on the two-dimensional plane, starting at the origin. He is given a string *s* with his directions for motion: - An 'L' indicates he should move one unit left. - An 'R' indicates he should move one unit right. - A 'U' indicates he should move one unit up. - A 'D' indicates he should move...
The first and only line contains the string *s* (1<=≤<=|*s*|<=≤<=100<=000) — the instructions Memory is given.
If there is a string satisfying the conditions, output a single integer — the minimum number of edits required. In case it's not possible to change the sequence in such a way that it will bring Memory to to the origin, output -1.
[ "RRU\n", "UDUR\n", "RUUR\n" ]
[ "-1\n", "1\n", "2\n" ]
In the first sample test, Memory is told to walk right, then right, then up. It is easy to see that it is impossible to edit these instructions to form a valid walk. In the second sample test, Memory is told to walk up, then down, then up, then right. One possible solution is to change *s* to "LDUR". This string uses ...
1,000
[ { "input": "RRU", "output": "-1" }, { "input": "UDUR", "output": "1" }, { "input": "RUUR", "output": "2" }, { "input": "DDDD", "output": "2" }, { "input": "RRRR", "output": "2" }, { "input": "RRRUUD", "output": "2" }, { "input": "UDURLRDURL...
1,588,859,076
516
PyPy 3
OK
TESTS
75
155
20,582,400
s = input() u = s.count("U") d = s.count("D") r = s.count("R") l = s.count("L") if len(s)%2==1: print(-1) exit() print((abs(u-d)+abs(r-l))//2)
Title: Memory and Trident Time Limit: None seconds Memory Limit: None megabytes Problem Description: Memory is performing a walk on the two-dimensional plane, starting at the origin. He is given a string *s* with his directions for motion: - An 'L' indicates he should move one unit left. - An 'R' indicates he shou...
```python s = input() u = s.count("U") d = s.count("D") r = s.count("R") l = s.count("L") if len(s)%2==1: print(-1) exit() print((abs(u-d)+abs(r-l))//2) ```
3
588
B
Duff in Love
PROGRAMMING
1,300
[ "math" ]
null
null
Duff is in love with lovely numbers! A positive integer *x* is called lovely if and only if there is no such positive integer *a*<=&gt;<=1 such that *a*2 is a divisor of *x*. Malek has a number store! In his store, he has only divisors of positive integer *n* (and he has all of them). As a birthday present, Malek want...
The first and only line of input contains one integer, *n* (1<=≤<=*n*<=≤<=1012).
Print the answer in one line.
[ "10\n", "12\n" ]
[ "10\n", "6\n" ]
In first sample case, there are numbers 1, 2, 5 and 10 in the shop. 10 isn't divisible by any perfect square, so 10 is lovely. In second sample case, there are numbers 1, 2, 3, 4, 6 and 12 in the shop. 12 is divisible by 4 = 2<sup class="upper-index">2</sup>, so 12 is not lovely, while 6 is indeed lovely.
1,000
[ { "input": "10", "output": "10" }, { "input": "12", "output": "6" }, { "input": "1", "output": "1" }, { "input": "2", "output": "2" }, { "input": "4", "output": "2" }, { "input": "8", "output": "2" }, { "input": "3", "output": "3" }, ...
1,571,927,912
2,147,483,647
PyPy 3
OK
TESTS
53
608
1,945,600
from math import sqrt x=int(input()) lol=[] for i in range(1,int(sqrt(x))+1): if x%i==0: if x//i==i: lol.append(i) else: lol.append(x//i) lol.append(i) lol.sort() for i in lol[::-1]: f=0 for j in range(2,int(sqrt(i))+1): if i%(j**2...
Title: Duff in Love Time Limit: None seconds Memory Limit: None megabytes Problem Description: Duff is in love with lovely numbers! A positive integer *x* is called lovely if and only if there is no such positive integer *a*<=&gt;<=1 such that *a*2 is a divisor of *x*. Malek has a number store! In his store, he has...
```python from math import sqrt x=int(input()) lol=[] for i in range(1,int(sqrt(x))+1): if x%i==0: if x//i==i: lol.append(i) else: lol.append(x//i) lol.append(i) lol.sort() for i in lol[::-1]: f=0 for j in range(2,int(sqrt(i))+1): ...
3
888
B
Buggy Robot
PROGRAMMING
1,000
[ "greedy" ]
null
null
Ivan has a robot which is situated on an infinite grid. Initially the robot is standing in the starting cell (0,<=0). The robot can process commands. There are four types of commands it can perform: - U — move from the cell (*x*,<=*y*) to (*x*,<=*y*<=+<=1); - D — move from (*x*,<=*y*) to (*x*,<=*y*<=-<=1); - L — mo...
The first line contains one number *n* — the length of sequence of commands entered by Ivan (1<=≤<=*n*<=≤<=100). The second line contains the sequence itself — a string consisting of *n* characters. Each character can be U, D, L or R.
Print the maximum possible number of commands from the sequence the robot could perform to end up in the starting cell.
[ "4\nLDUR\n", "5\nRRRUU\n", "6\nLLRRRR\n" ]
[ "4\n", "0\n", "4\n" ]
none
0
[ { "input": "4\nLDUR", "output": "4" }, { "input": "5\nRRRUU", "output": "0" }, { "input": "6\nLLRRRR", "output": "4" }, { "input": "88\nLLUUULRDRRURDDLURRLRDRLLRULRUUDDLLLLRRDDURDURRLDURRLDRRRUULDDLRRRDDRRLUULLURDURUDDDDDLDR", "output": "76" }, { "input": "89\nLDL...
1,699,057,998
2,147,483,647
PyPy 3
OK
TESTS
25
77
0
input() a=input() print((min(a.count('L'),a.count('R'))+min(a.count('U'),a.count('D')))<<1)
Title: Buggy Robot Time Limit: None seconds Memory Limit: None megabytes Problem Description: Ivan has a robot which is situated on an infinite grid. Initially the robot is standing in the starting cell (0,<=0). The robot can process commands. There are four types of commands it can perform: - U — move from the ce...
```python input() a=input() print((min(a.count('L'),a.count('R'))+min(a.count('U'),a.count('D')))<<1) ```
3
205
A
Little Elephant and Rozdil
PROGRAMMING
900
[ "brute force", "implementation" ]
null
null
The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elephant doesn't like to spend much time on travelling, so for his journey he will choose a town that needs minimum ti...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105) — the number of cities. The next line contains *n* integers, separated by single spaces: the *i*-th integer represents the time needed to go from town Rozdil to the *i*-th town. The time values are positive integers, not exceeding 109. You can consider t...
Print the answer on a single line — the number of the town the Little Elephant will go to. If there are multiple cities with minimum travel time, print "Still Rozdil" (without the quotes).
[ "2\n7 4\n", "7\n7 4 47 100 4 9 12\n" ]
[ "2\n", "Still Rozdil\n" ]
In the first sample there are only two cities where the Little Elephant can go. The travel time for the first town equals 7, to the second one — 4. The town which is closest to Rodzil (the only one) is the second one, so the answer is 2. In the second sample the closest cities are cities two and five, the travelling t...
500
[ { "input": "2\n7 4", "output": "2" }, { "input": "7\n7 4 47 100 4 9 12", "output": "Still Rozdil" }, { "input": "1\n47", "output": "1" }, { "input": "2\n1000000000 1000000000", "output": "Still Rozdil" }, { "input": "7\n7 6 5 4 3 2 1", "output": "7" }, { ...
1,680,823,273
2,147,483,647
PyPy 3-64
OK
TESTS
45
154
13,516,800
n = int(input()) L =list(map(int, input().split())) C = L.count(min(L)) if C == 1: ind = L.index(min(L)) print(ind + 1) else: print("Still Rozdil")
Title: Little Elephant and Rozdil Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant loves Ukraine very much. Most of all he loves town Rozdol (ukr. "Rozdil"). However, Rozdil is dangerous to settle, so the Little Elephant wants to go to some other town. The Little Elepha...
```python n = int(input()) L =list(map(int, input().split())) C = L.count(min(L)) if C == 1: ind = L.index(min(L)) print(ind + 1) else: print("Still Rozdil") ```
3
742
A
Arpa’s hard exam and Mehrdad’s naive cheat
PROGRAMMING
1,000
[ "implementation", "math", "number theory" ]
null
null
There exists an island called Arpa’s land, some beautiful girls live there, as ugly ones do. Mehrdad wants to become minister of Arpa’s land. Arpa has prepared an exam. Exam has only one question, given *n*, print the last digit of 1378*n*. Mehrdad has become quite confused and wants you to help him. Please help, al...
The single line of input contains one integer *n* (0<=<=≤<=<=*n*<=<=≤<=<=109).
Print single integer — the last digit of 1378*n*.
[ "1\n", "2\n" ]
[ "8", "4" ]
In the first example, last digit of 1378<sup class="upper-index">1</sup> = 1378 is 8. In the second example, last digit of 1378<sup class="upper-index">2</sup> = 1378·1378 = 1898884 is 4.
500
[ { "input": "1", "output": "8" }, { "input": "2", "output": "4" }, { "input": "1000", "output": "6" }, { "input": "3", "output": "2" }, { "input": "4", "output": "6" }, { "input": "1000000000", "output": "6" }, { "input": "5", "output": ...
1,699,271,555
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
46
0
print(1378**int(input()[:3])%10)
Title: Arpa’s hard exam and Mehrdad’s naive cheat Time Limit: None seconds Memory Limit: None megabytes Problem Description: There exists an island called Arpa’s land, some beautiful girls live there, as ugly ones do. Mehrdad wants to become minister of Arpa’s land. Arpa has prepared an exam. Exam has only one ques...
```python print(1378**int(input()[:3])%10) ```
0
962
G
Visible Black Areas
PROGRAMMING
2,800
[ "data structures", "dsu", "geometry", "trees" ]
null
null
Petya has a polygon consisting of $n$ vertices. All sides of the Petya's polygon are parallel to the coordinate axes, and each two adjacent sides of the Petya's polygon are perpendicular. It is guaranteed that the polygon is simple, that is, it doesn't have self-intersections and self-touches. All internal area of the ...
The first line contain four integers $x_1, y_1, x_2, y_2$ ($x_1 &lt; x_2$, $y_2 &lt; y_1$) — the coordinates of top-left and bottom-right corners of the rectangular window. The second line contains a single integer $n$ ($4 \le n \le 15\,000$) — the number of vertices in Petya's polygon. Each of the following $n$ lin...
Print the number of black connected areas of Petya's polygon, which can be seen through the rectangular window.
[ "5 7 16 3\n16\n0 0\n18 0\n18 6\n16 6\n16 1\n10 1\n10 4\n7 4\n7 2\n2 2\n2 6\n12 6\n12 12\n10 12\n10 8\n0 8\n" ]
[ "2" ]
The example corresponds to the picture above.
0
[ { "input": "5 7 16 3\n16\n0 0\n18 0\n18 6\n16 6\n16 1\n10 1\n10 4\n7 4\n7 2\n2 2\n2 6\n12 6\n12 12\n10 12\n10 8\n0 8", "output": "2" }, { "input": "4 5 6 3\n12\n1 1\n8 1\n8 7\n3 7\n3 6\n7 6\n7 2\n2 2\n2 8\n4 8\n4 9\n1 9", "output": "0" }, { "input": "0 10 10 0\n12\n1 1\n8 1\n8 7\n3 7\n3 ...
1,632,515,243
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
6,963,200
import sys input = sys.stdin.readline def solve(): x1, y1, x2, y2 = map(int,input().split()) y1, y2 = y2, y1 n = int(input()) p = [tuple(map(int,input().split())) for i in range(n)] px, py = p[-1] g = [] for x, y in p: if x == px: if x > x1 and x < x2: if y > py: if py <= y1 and y1...
Title: Visible Black Areas Time Limit: None seconds Memory Limit: None megabytes Problem Description: Petya has a polygon consisting of $n$ vertices. All sides of the Petya's polygon are parallel to the coordinate axes, and each two adjacent sides of the Petya's polygon are perpendicular. It is guaranteed that the p...
```python import sys input = sys.stdin.readline def solve(): x1, y1, x2, y2 = map(int,input().split()) y1, y2 = y2, y1 n = int(input()) p = [tuple(map(int,input().split())) for i in range(n)] px, py = p[-1] g = [] for x, y in p: if x == px: if x > x1 and x < x2: if y > py: if py <=...
0
641
A
Little Artem and Grasshopper
PROGRAMMING
1,000
[ "implementation" ]
null
null
Little Artem found a grasshopper. He brought it to his house and constructed a jumping area for him. The area looks like a strip of cells 1<=×<=*n*. Each cell contains the direction for the next jump and the length of that jump. Grasshopper starts in the first cell and follows the instructions written on the cells. Gr...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — length of the strip. Next line contains a string of length *n* which consists of characters "&lt;" and "&gt;" only, that provide the direction of the jump from the corresponding cell. Next line contains *n* integers *d**i* (1<=≤<=*d*...
Print "INFINITE" (without quotes) if grasshopper will continue his jumps forever. Otherwise print "FINITE" (without quotes).
[ "2\n&gt;&lt;\n1 2\n", "3\n&gt;&gt;&lt;\n2 1 1\n" ]
[ "FINITE\n", "INFINITE" ]
In the first sample grasshopper starts from the first cell and jumps to the right on the next cell. When he is in the second cell he needs to jump two cells left so he will jump out of the strip. Second sample grasshopper path is 1 - 3 - 2 - 3 - 2 - 3 and so on. The path is infinite.
500
[ { "input": "2\n><\n1 2", "output": "FINITE" }, { "input": "3\n>><\n2 1 1", "output": "INFINITE" }, { "input": "1\n>\n1000000000", "output": "FINITE" }, { "input": "1\n<\n1000000000", "output": "FINITE" }, { "input": "2\n>>\n1 1", "output": "FINITE" }, { ...
1,461,516,477
777
Python 3
OK
TESTS
60
140
12,288,000
n = int(input()) str = input() inp = list(map(int, input().split())) for i in range(len(str)): if str[i] == '<': inp[i] *= -1 visited = [0 for i in range(n)] cur = 0 while cur >= 0 and cur < n and visited[cur] != 1: visited[cur] = 1 cur += inp[cur] if cur >= 0 and cur < n: ...
Title: Little Artem and Grasshopper Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Artem found a grasshopper. He brought it to his house and constructed a jumping area for him. The area looks like a strip of cells 1<=×<=*n*. Each cell contains the direction for the next jump and t...
```python n = int(input()) str = input() inp = list(map(int, input().split())) for i in range(len(str)): if str[i] == '<': inp[i] *= -1 visited = [0 for i in range(n)] cur = 0 while cur >= 0 and cur < n and visited[cur] != 1: visited[cur] = 1 cur += inp[cur] if cur >= 0 and cur ...
3
609
E
Minimum spanning tree for each edge
PROGRAMMING
2,100
[ "data structures", "dfs and similar", "dsu", "graphs", "trees" ]
null
null
Connected undirected weighted graph without self-loops and multiple edges is given. Graph contains *n* vertices and *m* edges. For each edge (*u*,<=*v*) find the minimal possible weight of the spanning tree that contains the edge (*u*,<=*v*). The weight of the spanning tree is the sum of weights of all edges included...
First line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=2·105,<=*n*<=-<=1<=≤<=*m*<=≤<=2·105) — the number of vertices and edges in graph. Each of the next *m* lines contains three integers *u**i*,<=*v**i*,<=*w**i* (1<=≤<=*u**i*,<=*v**i*<=≤<=*n*,<=*u**i*<=≠<=*v**i*,<=1<=≤<=*w**i*<=≤<=109) — the endpoints of the *i*...
Print *m* lines. *i*-th line should contain the minimal possible weight of the spanning tree that contains *i*-th edge. The edges are numbered from 1 to *m* in order of their appearing in input.
[ "5 7\n1 2 3\n1 3 1\n1 4 5\n2 3 2\n2 5 3\n3 4 2\n4 5 4\n" ]
[ "9\n8\n11\n8\n8\n8\n9\n" ]
none
0
[ { "input": "5 7\n1 2 3\n1 3 1\n1 4 5\n2 3 2\n2 5 3\n3 4 2\n4 5 4", "output": "9\n8\n11\n8\n8\n8\n9" }, { "input": "2 1\n1 2 42", "output": "42" }, { "input": "3 3\n1 2 10\n2 3 20\n3 1 40", "output": "30\n30\n50" }, { "input": "4 6\n1 2 999999001\n1 3 999999003\n1 4 999999009\...
1,677,214,895
695
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
10
2,000
227,225,600
import heapq n, m = map(int, input().split()) adj = [[] for _ in range(n + 1)] req_edges = [] for _ in range(m): u, v, w = map(int, input().split()) adj[u].append([v, w]) adj[v].append([u, w]) req_edges.append([u, v, w]) def get_min_weight_visitable_node(v): heap = [(value[1], key) f...
Title: Minimum spanning tree for each edge Time Limit: None seconds Memory Limit: None megabytes Problem Description: Connected undirected weighted graph without self-loops and multiple edges is given. Graph contains *n* vertices and *m* edges. For each edge (*u*,<=*v*) find the minimal possible weight of the spann...
```python import heapq n, m = map(int, input().split()) adj = [[] for _ in range(n + 1)] req_edges = [] for _ in range(m): u, v, w = map(int, input().split()) adj[u].append([v, w]) adj[v].append([u, w]) req_edges.append([u, v, w]) def get_min_weight_visitable_node(v): heap = [(value[...
0
108
A
Palindromic Times
PROGRAMMING
1,000
[ "implementation", "strings" ]
A. Palindromic Times
2
256
Tattah is asleep if and only if Tattah is attending a lecture. This is a well-known formula among Tattah's colleagues. On a Wednesday afternoon, Tattah was attending Professor HH's lecture. At 12:21, right before falling asleep, he was staring at the digital watch around Saher's wrist. He noticed that the digits on th...
The first and only line of the input starts with a string with the format "HH:MM" where "HH" is from "00" to "23" and "MM" is from "00" to "59". Both "HH" and "MM" have exactly two digits.
Print the palindromic time of day that comes soonest after the time given in the input. If the input time is palindromic, output the soonest palindromic time after the input time.
[ "12:21\n", "23:59\n" ]
[ "13:31\n", "00:00\n" ]
none
500
[ { "input": "12:21", "output": "13:31" }, { "input": "23:59", "output": "00:00" }, { "input": "15:51", "output": "20:02" }, { "input": "10:44", "output": "11:11" }, { "input": "04:02", "output": "04:40" }, { "input": "02:11", "output": "02:20" }, ...
1,608,905,622
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
186
307,200
time = input() hour = int(time[0:2]) min = int(time[3:]) minreq = (hour%10)*10 + hour%10 print(hour) print(min) if minreq > min: if hour < 10: min = (hour)*10 else: min = (hour%10)*10 + hour%10 else: if hour==23: hour = 0 min = 0 else: ho...
Title: Palindromic Times Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Tattah is asleep if and only if Tattah is attending a lecture. This is a well-known formula among Tattah's colleagues. On a Wednesday afternoon, Tattah was attending Professor HH's lecture. At 12:21, right before falling...
```python time = input() hour = int(time[0:2]) min = int(time[3:]) minreq = (hour%10)*10 + hour%10 print(hour) print(min) if minreq > min: if hour < 10: min = (hour)*10 else: min = (hour%10)*10 + hour%10 else: if hour==23: hour = 0 min = 0 else: ...
0
447
A
DZY Loves Hash
PROGRAMMING
800
[ "implementation" ]
null
null
DZY has a hash table with *p* buckets, numbered from 0 to *p*<=-<=1. He wants to insert *n* numbers, in the order they are given, into the hash table. For the *i*-th number *x**i*, DZY will put it into the bucket numbered *h*(*x**i*), where *h*(*x*) is the hash function. In this problem we will assume, that *h*(*x*)<==...
The first line contains two integers, *p* and *n* (2<=≤<=*p*,<=*n*<=≤<=300). Then *n* lines follow. The *i*-th of them contains an integer *x**i* (0<=≤<=*x**i*<=≤<=109).
Output a single integer — the answer to the problem.
[ "10 5\n0\n21\n53\n41\n53\n", "5 5\n0\n1\n2\n3\n4\n" ]
[ "4\n", "-1\n" ]
none
500
[ { "input": "10 5\n0\n21\n53\n41\n53", "output": "4" }, { "input": "5 5\n0\n1\n2\n3\n4", "output": "-1" }, { "input": "10 6\n811966798\n734823552\n790326404\n929189974\n414343256\n560346537", "output": "4" }, { "input": "2 2\n788371161\n801743052", "output": "-1" }, { ...
1,415,565,638
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
46
0
p, n = [int(x) for x in input().split()] s = set() for i in range(n): x = int(input()) if x in s: print(i) break s |= set([x]) else: print(-1)
Title: DZY Loves Hash Time Limit: None seconds Memory Limit: None megabytes Problem Description: DZY has a hash table with *p* buckets, numbered from 0 to *p*<=-<=1. He wants to insert *n* numbers, in the order they are given, into the hash table. For the *i*-th number *x**i*, DZY will put it into the bucket numbere...
```python p, n = [int(x) for x in input().split()] s = set() for i in range(n): x = int(input()) if x in s: print(i) break s |= set([x]) else: print(-1) ```
0
12
A
Super Agent
PROGRAMMING
800
[ "implementation" ]
A. Super Agent
2
256
There is a very secret base in Potatoland where potato mash is made according to a special recipe. The neighbours from Porridgia decided to seize this recipe and to sell it to Pilauland. For this mission they have been preparing special agent Pearlo for many years. When, finally, Pearlo learned all secrets of espionage...
Input contains the matrix of three rows of three symbols each. Symbol «X» means that the corresponding button was pressed, and «.» means that is was not pressed. The matrix may contain no «X», also it may contain no «.».
Print YES if the password is symmetric with respect to the central button of the terminal and NO otherwise.
[ "XX.\n...\n.XX\n", "X.X\nX..\n...\n" ]
[ "YES\n", "NO\n" ]
If you are not familiar with the term «central symmetry», you may look into http://en.wikipedia.org/wiki/Central_symmetry
0
[ { "input": "XX.\n...\n.XX", "output": "YES" }, { "input": ".X.\n.X.\n.X.", "output": "YES" }, { "input": "XXX\nXXX\nXXX", "output": "YES" }, { "input": "XXX\nX.X\nXXX", "output": "YES" }, { "input": "X..\n.X.\n..X", "output": "YES" }, { "input": "...\n...
1,584,951,897
2,147,483,647
Python 3
OK
TESTS
40
248
204,800
a=[] for i in range(3): a.append(input()) ans="YES" for i in range(3): for j in range(3): if i==0: i1=2 elif i==2: i1=0 else: i1=1 if j==0: j1=2 elif j==2: j1=0 else: j1=1 ...
Title: Super Agent Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: There is a very secret base in Potatoland where potato mash is made according to a special recipe. The neighbours from Porridgia decided to seize this recipe and to sell it to Pilauland. For this mission they have been preparin...
```python a=[] for i in range(3): a.append(input()) ans="YES" for i in range(3): for j in range(3): if i==0: i1=2 elif i==2: i1=0 else: i1=1 if j==0: j1=2 elif j==2: j1=0 else: ...
3.937619
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,589,293,348
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
80
218
6,963,200
num_coor, list_a= int(input("")), [] x = y = z = 0 dic = dict() for num in range(num_coor): dic[f"{num}"] = list(map(int, input("").split())) for attr in range(len(dic.keys())): x += dic[f"{attr}"][0] for attr in range(len(dic.keys())): y += dic[f"{attr}"][1] for attr in range(len(dic.keys())): ...
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python num_coor, list_a= int(input("")), [] x = y = z = 0 dic = dict() for num in range(num_coor): dic[f"{num}"] = list(map(int, input("").split())) for attr in range(len(dic.keys())): x += dic[f"{attr}"][0] for attr in range(len(dic.keys())): y += dic[f"{attr}"][1] for attr in range(len(dic.key...
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,643,989,050
2,147,483,647
PyPy 3
OK
TESTS
42
154
0
from collections import Counter k = int(input()) string = input() counts = Counter(string) done = False res = '' for char in counts: if counts[char]%k: print(-1) done = True break res += char*(counts[char]//k) if not done: print(res*k)
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 from collections import Counter k = int(input()) string = input() counts = Counter(string) done = False res = '' for char in counts: if counts[char]%k: print(-1) done = True break res += char*(counts[char]//k) if not done: print(res*k) ```
3
490
A
Team Olympiad
PROGRAMMING
800
[ "greedy", "implementation", "sortings" ]
null
null
The School №0 of the capital of Berland has *n* children studying in it. All the children in this school are gifted: some of them are good at programming, some are good at maths, others are good at PE (Physical Education). Hence, for each child we know value *t**i*: - *t**i*<==<=1, if the *i*-th child is good at prog...
The first line contains integer *n* (1<=≤<=*n*<=≤<=5000) — the number of children in the school. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=3), where *t**i* describes the skill of the *i*-th child.
In the first line output integer *w* — the largest possible number of teams. Then print *w* lines, containing three numbers in each line. Each triple represents the indexes of the children forming the team. You can print both the teams, and the numbers in the triplets in any order. The children are numbered from 1 to...
[ "7\n1 3 1 3 2 1 2\n", "4\n2 1 1 2\n" ]
[ "2\n3 5 2\n6 7 4\n", "0\n" ]
none
500
[ { "input": "7\n1 3 1 3 2 1 2", "output": "2\n3 5 2\n6 7 4" }, { "input": "4\n2 1 1 2", "output": "0" }, { "input": "1\n2", "output": "0" }, { "input": "2\n3 1", "output": "0" }, { "input": "3\n2 1 2", "output": "0" }, { "input": "3\n1 2 3", "output...
1,679,983,180
2,147,483,647
Python 3
OK
TESTS
41
46
0
num_of_students = int(input()) type_of_gifted = list(map(int,input().split())) team1, team2, team3 = [], [], [] for i in range(num_of_students): skill = type_of_gifted[i] if skill == 1: team1.append(i+1) elif skill == 2: team2.append(i+1) else: team3.append(i+1) w = mi...
Title: Team Olympiad Time Limit: None seconds Memory Limit: None megabytes Problem Description: The School №0 of the capital of Berland has *n* children studying in it. All the children in this school are gifted: some of them are good at programming, some are good at maths, others are good at PE (Physical Education)...
```python num_of_students = int(input()) type_of_gifted = list(map(int,input().split())) team1, team2, team3 = [], [], [] for i in range(num_of_students): skill = type_of_gifted[i] if skill == 1: team1.append(i+1) elif skill == 2: team2.append(i+1) else: team3.append(i+...
3
995
B
Suit and Tie
PROGRAMMING
1,400
[ "greedy", "implementation", "math" ]
null
null
Allen is hosting a formal dinner party. $2n$ people come to the event in $n$ pairs (couples). After a night of fun, Allen wants to line everyone up for a final picture. The $2n$ people line up, but Allen doesn't like the ordering. Allen prefers if each pair occupies adjacent positions in the line, as this makes the pic...
The first line contains a single integer $n$ ($1 \le n \le 100$), the number of pairs of people. The second line contains $2n$ integers $a_1, a_2, \dots, a_{2n}$. For each $i$ with $1 \le i \le n$, $i$ appears exactly twice. If $a_j = a_k = i$, that means that the $j$-th and $k$-th people in the line form a couple.
Output a single integer, representing the minimum number of adjacent swaps needed to line the people up so that each pair occupies adjacent positions.
[ "4\n1 1 2 3 3 2 4 4\n", "3\n1 1 2 2 3 3\n", "3\n3 1 2 3 1 2\n" ]
[ "2\n", "0\n", "3\n" ]
In the first sample case, we can transform $1 1 2 3 3 2 4 4 \rightarrow 1 1 2 3 2 3 4 4 \rightarrow 1 1 2 2 3 3 4 4$ in two steps. Note that the sequence $1 1 2 3 3 2 4 4 \rightarrow 1 1 3 2 3 2 4 4 \rightarrow 1 1 3 3 2 2 4 4$ also works in the same number of steps. The second sample case already satisfies the constr...
750
[ { "input": "4\n1 1 2 3 3 2 4 4", "output": "2" }, { "input": "3\n1 1 2 2 3 3", "output": "0" }, { "input": "3\n3 1 2 3 1 2", "output": "3" }, { "input": "8\n7 6 2 1 4 3 3 7 2 6 5 1 8 5 8 4", "output": "27" }, { "input": "2\n1 2 1 2", "output": "1" }, { ...
1,574,084,878
2,147,483,647
PyPy 3
OK
TESTS
22
140
0
n=int(input()) a=list(map(int, input().split())) ans=0 while len(a) > 0: x=a.pop(0) ind = a.index(x) ans += ind a.pop(ind) print(ans)
Title: Suit and Tie Time Limit: None seconds Memory Limit: None megabytes Problem Description: Allen is hosting a formal dinner party. $2n$ people come to the event in $n$ pairs (couples). After a night of fun, Allen wants to line everyone up for a final picture. The $2n$ people line up, but Allen doesn't like the o...
```python n=int(input()) a=list(map(int, input().split())) ans=0 while len(a) > 0: x=a.pop(0) ind = a.index(x) ans += ind a.pop(ind) print(ans) ```
3
911
A
Nearest Minimums
PROGRAMMING
1,100
[ "implementation" ]
null
null
You are given an array of *n* integer numbers *a*0,<=*a*1,<=...,<=*a**n*<=-<=1. Find the distance between two closest (nearest) minimums in it. It is guaranteed that in the array a minimum occurs at least two times.
The first line contains positive integer *n* (2<=≤<=*n*<=≤<=105) — size of the given array. The second line contains *n* integers *a*0,<=*a*1,<=...,<=*a**n*<=-<=1 (1<=≤<=*a**i*<=≤<=109) — elements of the array. It is guaranteed that in the array a minimum occurs at least two times.
Print the only number — distance between two nearest minimums in the array.
[ "2\n3 3\n", "3\n5 6 5\n", "9\n2 1 3 5 4 1 2 3 1\n" ]
[ "1\n", "2\n", "3\n" ]
none
0
[ { "input": "2\n3 3", "output": "1" }, { "input": "3\n5 6 5", "output": "2" }, { "input": "9\n2 1 3 5 4 1 2 3 1", "output": "3" }, { "input": "6\n4 6 7 8 6 4", "output": "5" }, { "input": "2\n1000000000 1000000000", "output": "1" }, { "input": "42\n1 1 ...
1,603,879,179
2,147,483,647
Python 3
OK
TESTS
140
202
9,216,000
n = int(input()) a = list(map(int, input().split())) m = min(a) pos = [] for i in range(n): if a[i] == m: pos.append(i) x = 99999999999 for i in range(len(pos)-1): if x>min(x ,abs(pos[i+1]-pos[i])): x = abs(pos[i+1]-pos[i]) print(x)
Title: Nearest Minimums Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array of *n* integer numbers *a*0,<=*a*1,<=...,<=*a**n*<=-<=1. Find the distance between two closest (nearest) minimums in it. It is guaranteed that in the array a minimum occurs at least two times. I...
```python n = int(input()) a = list(map(int, input().split())) m = min(a) pos = [] for i in range(n): if a[i] == m: pos.append(i) x = 99999999999 for i in range(len(pos)-1): if x>min(x ,abs(pos[i+1]-pos[i])): x = abs(pos[i+1]-pos[i]) print(x) ```
3
41
A
Translation
PROGRAMMING
800
[ "implementation", "strings" ]
A. Translation
2
256
The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pronounced) reversely. For example, a Berlandish word code corresponds to a Birlandish word edoc....
The first line contains word *s*, the second line contains word *t*. The words consist of lowercase Latin letters. The input data do not consist unnecessary spaces. The words are not empty and their lengths do not exceed 100 symbols.
If the word *t* is a word *s*, written reversely, print YES, otherwise print NO.
[ "code\nedoc\n", "abb\naba\n", "code\ncode\n" ]
[ "YES\n", "NO\n", "NO\n" ]
none
500
[ { "input": "code\nedoc", "output": "YES" }, { "input": "abb\naba", "output": "NO" }, { "input": "code\ncode", "output": "NO" }, { "input": "abacaba\nabacaba", "output": "YES" }, { "input": "q\nq", "output": "YES" }, { "input": "asrgdfngfnmfgnhweratgjkk...
1,608,549,770
470
Python 3
WRONG_ANSWER
TESTS
0
186
0
first = list(input()) second = list(input()) if second[::-1] == first: print("Yes") else: print("No")
Title: Translation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The translation from the Berland language into the Birland language is not an easy task. Those languages are very similar: a berlandish word differs from a birlandish word with the same meaning a little: it is spelled (and pron...
```python first = list(input()) second = list(input()) if second[::-1] == first: print("Yes") else: print("No") ```
0
460
B
Little Dima and Equation
PROGRAMMING
1,500
[ "brute force", "implementation", "math", "number theory" ]
null
null
Little Dima misbehaved during a math lesson a lot and the nasty teacher Mr. Pickles gave him the following problem as a punishment. Find all integer solutions *x* (0<=&lt;<=*x*<=&lt;<=109) of the equation: where *a*, *b*, *c* are some predetermined constant values and function *s*(*x*) determines the sum of all digi...
The first line contains three space-separated integers: *a*,<=*b*,<=*c* (1<=≤<=*a*<=≤<=5; 1<=≤<=*b*<=≤<=10000; <=-<=10000<=≤<=*c*<=≤<=10000).
Print integer *n* — the number of the solutions that you've found. Next print *n* integers in the increasing order — the solutions of the given equation. Print only integer solutions that are larger than zero and strictly less than 109.
[ "3 2 8\n", "1 2 -18\n", "2 2 -1\n" ]
[ "3\n10 2008 13726 ", "0\n", "4\n1 31 337 967 " ]
none
1,000
[ { "input": "3 2 8", "output": "3\n10 2008 13726 " }, { "input": "1 2 -18", "output": "0" }, { "input": "2 2 -1", "output": "4\n1 31 337 967 " }, { "input": "1 1 0", "output": "9\n1 2 3 4 5 6 7 8 9 " }, { "input": "1 37 963", "output": "16\n1000 1111 1222 1333 ...
1,686,621,735
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
46
0
MOD=10**9+7 def slove(): a,b,c=list(map(int,input().split(' '))) ans=[] for d in range(1,81+1): x=b*pow(d,a)+c cnt=0 if x<=0: continue ans.append(x) while x: cnt+=x%10 x//=10 if cnt!=d: ans.pop() print(len(ans)) fo...
Title: Little Dima and Equation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Dima misbehaved during a math lesson a lot and the nasty teacher Mr. Pickles gave him the following problem as a punishment. Find all integer solutions *x* (0<=&lt;<=*x*<=&lt;<=109) of the equation: w...
```python MOD=10**9+7 def slove(): a,b,c=list(map(int,input().split(' '))) ans=[] for d in range(1,81+1): x=b*pow(d,a)+c cnt=0 if x<=0: continue ans.append(x) while x: cnt+=x%10 x//=10 if cnt!=d: ans.pop() print(len(ans...
0
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,664,023,102
2,147,483,647
Python 3
OK
TESTS
36
124
512,000
from fractions import Fraction as f a = max(map(int, input().split())) if a != 1: print(f(7-a,6)) else: print('1/1')
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python from fractions import Fraction as f a = max(map(int, input().split())) if a != 1: print(f(7-a,6)) else: print('1/1') ```
3.934185
43
A
Football
PROGRAMMING
1,000
[ "strings" ]
A. Football
2
256
One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process. On the whole there are *n* lines in that description each of which described one goal. E...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of lines in the description. Then follow *n* lines — for each goal the names of the teams that scored it. The names are non-empty lines consisting of uppercase Latin letters whose lengths do not exceed 10 symbols. It is guaranteed that the match di...
Print the name of the winning team. We remind you that in football the team that scores more goals is considered the winner.
[ "1\nABC\n", "5\nA\nABA\nABA\nA\nA\n" ]
[ "ABC\n", "A\n" ]
none
500
[ { "input": "1\nABC", "output": "ABC" }, { "input": "5\nA\nABA\nABA\nA\nA", "output": "A" }, { "input": "2\nXTSJEP\nXTSJEP", "output": "XTSJEP" }, { "input": "3\nXZYDJAEDZ\nXZYDJAEDZ\nXZYDJAEDZ", "output": "XZYDJAEDZ" }, { "input": "3\nQCCYXL\nQCCYXL\nAXGLFQDD", ...
1,691,206,208
2,147,483,647
Python 3
OK
TESTS
34
92
0
n = int(input()) first = "" second = "" goals = [0, 0] for _ in range(n): temp = input() if first == "": first = temp elif temp != first and second == "": second = temp if temp == first: goals[0] += 1 else: goals[1] += 1 temp = first if goals[0] > go...
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: One day Vasya decided to have a look at the results of Berland 1910 Football Championship’s finals. Unfortunately he didn't find the overall score of the match; however, he got hold of a profound description of the match's process...
```python n = int(input()) first = "" second = "" goals = [0, 0] for _ in range(n): temp = input() if first == "": first = temp elif temp != first and second == "": second = temp if temp == first: goals[0] += 1 else: goals[1] += 1 temp = first if goa...
3.977
25
D
Roads not only in Berland
PROGRAMMING
1,900
[ "dsu", "graphs", "trees" ]
D. Roads not only in Berland
2
256
Berland Government decided to improve relations with neighboring countries. First of all, it was decided to build new roads so that from each city of Berland and neighboring countries it became possible to reach all the others. There are *n* cities in Berland and neighboring countries in total and exactly *n*<=-<=1 two...
The first line contains integer *n* (2<=≤<=*n*<=≤<=1000) — amount of cities in Berland and neighboring countries. Next *n*<=-<=1 lines contain the description of roads. Each road is described by two space-separated integers *a**i*, *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*,<=*a**i*<=≠<=*b**i*) — pair of cities, which the r...
Output the answer, number *t* — what is the least amount of days needed to rebuild roads so that from each city it became possible to reach all the others. Then output *t* lines — the plan of closure of old roads and building of new ones. Each line should describe one day in the format i j u v — it means that road betw...
[ "2\n1 2\n", "7\n1 2\n2 3\n3 1\n4 5\n5 6\n6 7\n" ]
[ "0\n", "1\n3 1 3 7\n" ]
none
0
[ { "input": "2\n1 2", "output": "0" }, { "input": "7\n1 2\n2 3\n3 1\n4 5\n5 6\n6 7", "output": "1\n3 1 3 7" }, { "input": "3\n3 2\n1 2", "output": "0" }, { "input": "3\n3 1\n3 2", "output": "0" }, { "input": "4\n1 4\n3 1\n3 4", "output": "1\n3 4 2 4" }, { ...
1,662,116,266
2,147,483,647
PyPy 3-64
OK
TESTS
55
248
6,553,600
# from sortedcontainers import SortedList, SortedSet, SortedDict import math from collections import defaultdict, Counter from heapq import heappush, heappop, heapify import sys class DSU(): def __init__(self, n): self.parent = [] self.size = [] self.rank = [] for i in ...
Title: Roads not only in Berland Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Berland Government decided to improve relations with neighboring countries. First of all, it was decided to build new roads so that from each city of Berland and neighboring countries it became possible to reach a...
```python # from sortedcontainers import SortedList, SortedSet, SortedDict import math from collections import defaultdict, Counter from heapq import heappush, heappop, heapify import sys class DSU(): def __init__(self, n): self.parent = [] self.size = [] self.rank = [] ...
3.925793
488
A
Giga Tower
PROGRAMMING
1,100
[ "brute force" ]
null
null
Giga Tower is the tallest and deepest building in Cyberland. There are 17<=777<=777<=777 floors, numbered from <=-<=8<=888<=888<=888 to 8<=888<=888<=888. In particular, there is floor 0 between floor <=-<=1 and floor 1. Every day, thousands of tourists come to this place to enjoy the wonderful view. In Cyberland, it ...
The only line of input contains an integer *a* (<=-<=109<=≤<=*a*<=≤<=109).
Print the minimum *b* in a line.
[ "179\n", "-1\n", "18\n" ]
[ "1\n", "9\n", "10\n" ]
For the first sample, he has to arrive at the floor numbered 180. For the second sample, he will arrive at 8. Note that *b* should be positive, so the answer for the third sample is 10, not 0.
500
[ { "input": "179", "output": "1" }, { "input": "-1", "output": "9" }, { "input": "18", "output": "10" }, { "input": "-410058385", "output": "1" }, { "input": "-586825624", "output": "1" }, { "input": "852318890", "output": "1" }, { "input": ...
1,416,653,822
2,147,483,647
Python 3
OK
TESTS
35
77
0
from sys import stdin n = int(stdin.read().split()[0]) b = 1 while '8' not in str(n + b): b += 1 print(b)
Title: Giga Tower Time Limit: None seconds Memory Limit: None megabytes Problem Description: Giga Tower is the tallest and deepest building in Cyberland. There are 17<=777<=777<=777 floors, numbered from <=-<=8<=888<=888<=888 to 8<=888<=888<=888. In particular, there is floor 0 between floor <=-<=1 and floor 1. Ever...
```python from sys import stdin n = int(stdin.read().split()[0]) b = 1 while '8' not in str(n + b): b += 1 print(b) ```
3
152
A
Marks
PROGRAMMING
900
[ "implementation" ]
null
null
Vasya, or Mr. Vasily Petrov is a dean of a department in a local university. After the winter exams he got his hands on a group's gradebook. Overall the group has *n* students. They received marks for *m* subjects. Each student got a mark from 1 to 9 (inclusive) for each subject. Let's consider a student the best at ...
The first input line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of students and the number of subjects, correspondingly. Next *n* lines each containing *m* characters describe the gradebook. Each character in the gradebook is a number from 1 to 9. Note that the marks in a rows are not sepa...
Print the single number — the number of successful students in the given group.
[ "3 3\n223\n232\n112\n", "3 5\n91728\n11828\n11111\n" ]
[ "2\n", "3\n" ]
In the first sample test the student number 1 is the best at subjects 1 and 3, student 2 is the best at subjects 1 and 2, but student 3 isn't the best at any subject. In the second sample test each student is the best at at least one subject.
500
[ { "input": "3 3\n223\n232\n112", "output": "2" }, { "input": "3 5\n91728\n11828\n11111", "output": "3" }, { "input": "2 2\n48\n27", "output": "1" }, { "input": "2 1\n4\n6", "output": "1" }, { "input": "1 2\n57", "output": "1" }, { "input": "1 1\n5", ...
1,599,825,834
2,147,483,647
PyPy 3
OK
TESTS
44
140
2,048,000
n,m=map(int,input().split()) gs=[list(map(int,input())) for _ in ' '*n] best=[0]*n for i in range(m): s=0 ran=[[] for _ in ' '*9] for j in range(n): if gs[j][i]>=s: s=gs[j][i] ran[gs[j][i]-1].append(j+1) for i in ran[s-1]: best[i-1]=1 if all(best[...
Title: Marks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya, or Mr. Vasily Petrov is a dean of a department in a local university. After the winter exams he got his hands on a group's gradebook. Overall the group has *n* students. They received marks for *m* subjects. Each student ...
```python n,m=map(int,input().split()) gs=[list(map(int,input())) for _ in ' '*n] best=[0]*n for i in range(m): s=0 ran=[[] for _ in ' '*9] for j in range(n): if gs[j][i]>=s: s=gs[j][i] ran[gs[j][i]-1].append(j+1) for i in ran[s-1]: best[i-1]=1 if...
3
439
A
Devu, the Singer and Churu, the Joker
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Devu is a renowned classical singer. He is invited to many big functions/festivals. Recently he was invited to "All World Classical Singing Festival". Other than Devu, comedian Churu was also invited. Devu has provided organizers a list of the songs and required time for singing them. He will sing *n* songs, *i**th* s...
The first line contains two space separated integers *n*, *d* (1<=≤<=*n*<=≤<=100; 1<=≤<=*d*<=≤<=10000). The second line contains *n* space-separated integers: *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=100).
If there is no way to conduct all the songs of Devu, output -1. Otherwise output the maximum number of jokes that Churu can crack in the grand event.
[ "3 30\n2 2 1\n", "3 20\n2 1 1\n" ]
[ "5\n", "-1\n" ]
Consider the first example. The duration of the event is 30 minutes. There could be maximum 5 jokes in the following way: - First Churu cracks a joke in 5 minutes. - Then Devu performs the first song for 2 minutes. - Then Churu cracks 2 jokes in 10 minutes. - Now Devu performs second song for 2 minutes. - Then Ch...
500
[ { "input": "3 30\n2 2 1", "output": "5" }, { "input": "3 20\n2 1 1", "output": "-1" }, { "input": "50 10000\n5 4 10 9 9 6 7 7 7 3 3 7 7 4 7 4 10 10 1 7 10 3 1 4 5 7 2 10 10 10 2 3 4 7 6 1 8 4 7 3 8 8 4 10 1 1 9 2 6 1", "output": "1943" }, { "input": "50 10000\n4 7 15 9 11 12 ...
1,595,522,361
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
93
6,656,000
def intmaker(arr): for i in range(len(arr)): arr[i] = int(arr[i]) return arr n, d = intmaker(input().split()) songs = intmaker(input().split()) for i in range(n): d -= songs[i] if d < (n-1) * 10: print(-1) else: print(round(d/5))
Title: Devu, the Singer and Churu, the Joker Time Limit: None seconds Memory Limit: None megabytes Problem Description: Devu is a renowned classical singer. He is invited to many big functions/festivals. Recently he was invited to "All World Classical Singing Festival". Other than Devu, comedian Churu was also invit...
```python def intmaker(arr): for i in range(len(arr)): arr[i] = int(arr[i]) return arr n, d = intmaker(input().split()) songs = intmaker(input().split()) for i in range(n): d -= songs[i] if d < (n-1) * 10: print(-1) else: print(round(d/5)) ```
0
822
A
I'm bored with life
PROGRAMMING
800
[ "implementation", "math", "number theory" ]
null
null
Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormitory for the period of university studies. Consequently Noora had to leave Vičkopolis and move to Pavlopo...
The first and single line contains two integers *A* and *B* (1<=≤<=*A*,<=*B*<=≤<=109,<=*min*(*A*,<=*B*)<=≤<=12).
Print a single integer denoting the greatest common divisor of integers *A*! and *B*!.
[ "4 3\n" ]
[ "6\n" ]
Consider the sample. 4! = 1·2·3·4 = 24. 3! = 1·2·3 = 6. The greatest common divisor of integers 24 and 6 is exactly 6.
500
[ { "input": "4 3", "output": "6" }, { "input": "10 399603090", "output": "3628800" }, { "input": "6 973151934", "output": "720" }, { "input": "2 841668075", "output": "2" }, { "input": "7 415216919", "output": "5040" }, { "input": "3 283733059", "ou...
1,650,902,153
2,147,483,647
Python 3
OK
TESTS
59
46
0
import math x,y=map(int,input().split()) print(math.factorial(min(x,y)))
Title: I'm bored with life Time Limit: None seconds Memory Limit: None megabytes Problem Description: Holidays have finished. Thanks to the help of the hacker Leha, Noora managed to enter the university of her dreams which is located in a town Pavlopolis. It's well known that universities provide students with dormi...
```python import math x,y=map(int,input().split()) print(math.factorial(min(x,y))) ```
3
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,697,268,330
2,147,483,647
Python 3
OK
TESTS
21
92
0
n = int(input()) count = 0 for i in range(0, n): x, y, z = [int(x) for x in input().split()] if x+y+z >= 2: count = count + 1 print(count)
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 n = int(input()) count = 0 for i in range(0, n): x, y, z = [int(x) for x in input().split()] if x+y+z >= 2: count = count + 1 print(count) ```
3
489
B
BerSU Ball
PROGRAMMING
1,200
[ "dfs and similar", "dp", "graph matchings", "greedy", "sortings", "two pointers" ]
null
null
The Berland State University is hosting a ballroom dance in celebration of its 100500-th anniversary! *n* boys and *m* girls are already busy rehearsing waltz, minuet, polonaise and quadrille moves. We know that several boy&amp;girl pairs are going to be invited to the ball. However, the partners' dancing skill in eac...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) — the number of boys. The second line contains sequence *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100), where *a**i* is the *i*-th boy's dancing skill. Similarly, the third line contains an integer *m* (1<=≤<=*m*<=≤<=100) — the number of girls. The fourth l...
Print a single number — the required maximum possible number of pairs.
[ "4\n1 4 6 2\n5\n5 1 5 7 9\n", "4\n1 2 3 4\n4\n10 11 12 13\n", "5\n1 1 1 1 1\n3\n1 2 3\n" ]
[ "3\n", "0\n", "2\n" ]
none
1,000
[ { "input": "4\n1 4 6 2\n5\n5 1 5 7 9", "output": "3" }, { "input": "4\n1 2 3 4\n4\n10 11 12 13", "output": "0" }, { "input": "5\n1 1 1 1 1\n3\n1 2 3", "output": "2" }, { "input": "1\n1\n1\n1", "output": "1" }, { "input": "2\n1 10\n1\n9", "output": "1" }, {...
1,686,341,446
2,147,483,647
PyPy 3-64
OK
TESTS
81
77
1,740,800
n = int(input()) boys = list(map(int,input().split())) m = int(input()) girls = list(map(int,input().split())) if n<m: base = boys other = girls else: base = girls other = boys ans = 0 base.sort() other.sort() for i in range(len(base)): for j in range(len(other)): if abs(base[...
Title: BerSU Ball Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Berland State University is hosting a ballroom dance in celebration of its 100500-th anniversary! *n* boys and *m* girls are already busy rehearsing waltz, minuet, polonaise and quadrille moves. We know that several boy...
```python n = int(input()) boys = list(map(int,input().split())) m = int(input()) girls = list(map(int,input().split())) if n<m: base = boys other = girls else: base = girls other = boys ans = 0 base.sort() other.sort() for i in range(len(base)): for j in range(len(other)): if...
3
381
A
Sereja and Dima
PROGRAMMING
800
[ "greedy", "implementation", "two pointers" ]
null
null
Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. During his turn a player can take one card: either the leftmost card in a row, or the rightmost one. Th...
The first line contains integer *n* (1<=≤<=*n*<=≤<=1000) — the number of cards on the table. The second line contains space-separated numbers on the cards from left to right. The numbers on the cards are distinct integers from 1 to 1000.
On a single line, print two integers. The first number is the number of Sereja's points at the end of the game, the second number is the number of Dima's points at the end of the game.
[ "4\n4 1 2 10\n", "7\n1 2 3 4 5 6 7\n" ]
[ "12 5\n", "16 12\n" ]
In the first sample Sereja will take cards with numbers 10 and 2, so Sereja's sum is 12. Dima will take cards with numbers 4 and 1, so Dima's sum is 5.
500
[ { "input": "4\n4 1 2 10", "output": "12 5" }, { "input": "7\n1 2 3 4 5 6 7", "output": "16 12" }, { "input": "42\n15 29 37 22 16 5 26 31 6 32 19 3 45 36 33 14 25 20 48 7 42 11 24 28 9 18 8 21 47 17 38 40 44 4 35 1 43 39 41 27 12 13", "output": "613 418" }, { "input": "43\n32 ...
1,688,534,053
2,147,483,647
PyPy 3-64
OK
TESTS
34
62
0
x=int(input()) a=list(map(int,input().split())) l=0 p=x-1 s=0 m=0 d=0 for i in range(x): if(l>=x and p<=0): break if(a[l]>=a[p]): m=a[l] l+=1 else: m=a[p] p-=1 if(i%2==0): s+=m else: d+=m print(s,d)
Title: Sereja and Dima Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sereja and Dima play a game. The rules of the game are very simple. The players have *n* cards in a row. Each card contains a number, all numbers on the cards are distinct. The players take turns, Sereja moves first. Du...
```python x=int(input()) a=list(map(int,input().split())) l=0 p=x-1 s=0 m=0 d=0 for i in range(x): if(l>=x and p<=0): break if(a[l]>=a[p]): m=a[l] l+=1 else: m=a[p] p-=1 if(i%2==0): s+=m else: d+=m print(s,d) ```
3
1,007
A
Reorder the Array
PROGRAMMING
1,300
[ "combinatorics", "data structures", "math", "sortings", "two pointers" ]
null
null
You are given an array of integers. Vasya can permute (change order) its integers. He wants to do it so that as many as possible integers will become on a place where a smaller integer used to stand. Help Vasya find the maximal number of such integers. For instance, if we are given an array $[10, 20, 30, 40]$, we can ...
The first line contains a single integer $n$ ($1 \leq n \leq 10^5$) — the length of the array. The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1 \leq a_i \leq 10^9$) — the elements of the array.
Print a single integer — the maximal number of the array's elements which after a permutation will stand on the position where a smaller element stood in the initial array.
[ "7\n10 1 1 1 5 5 3\n", "5\n1 1 1 1 1\n" ]
[ "4\n", "0\n" ]
In the first sample, one of the best permutations is $[1, 5, 5, 3, 10, 1, 1]$. On the positions from second to fifth the elements became larger, so the answer for this permutation is 4. In the second sample, there is no way to increase any element with a permutation, so the answer is 0.
500
[ { "input": "7\n10 1 1 1 5 5 3", "output": "4" }, { "input": "5\n1 1 1 1 1", "output": "0" }, { "input": "6\n300000000 200000000 300000000 200000000 1000000000 300000000", "output": "3" }, { "input": "10\n1 2 3 4 5 6 7 8 9 10", "output": "9" }, { "input": "1\n1", ...
1,659,865,399
2,147,483,647
PyPy 3
OK
TESTS
33
233
10,854,400
n = int(input()) l = list(map(int, input().split())) sorted_l = sorted(l) j = 0 for i in range(0, n): if sorted_l[i] > sorted_l[j]: j += 1 print(j)
Title: Reorder the Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array of integers. Vasya can permute (change order) its integers. He wants to do it so that as many as possible integers will become on a place where a smaller integer used to stand. Help Vasya find t...
```python n = int(input()) l = list(map(int, input().split())) sorted_l = sorted(l) j = 0 for i in range(0, n): if sorted_l[i] > sorted_l[j]: j += 1 print(j) ```
3
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,554,264,326
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
108
0
a, b = map(int, input().split()) x, y = 1, 2 while True: a -= x if a <= 0: print('Valera') exit() b -= y if b <= 0: print('Vladik') exit()
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()) x, y = 1, 2 while True: a -= x if a <= 0: print('Valera') exit() b -= y if b <= 0: print('Vladik') exit() ```
0
69
A
Young Physicist
PROGRAMMING
1,000
[ "implementation", "math" ]
A. Young Physicist
2
256
A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. Specifically, he forgot to complete his physics tasks. Next day the teacher got very angry at Vasy...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=100), then follow *n* lines containing three integers each: the *x**i* coordinate, the *y**i* coordinate and the *z**i* coordinate of the force vector, applied to the body (<=-<=100<=≤<=*x**i*,<=*y**i*,<=*z**i*<=≤<=100).
Print the word "YES" if the body is in equilibrium, or the word "NO" if it is not.
[ "3\n4 1 7\n-2 4 -1\n1 -5 -3\n", "3\n3 -1 7\n-5 2 -4\n2 -1 -3\n" ]
[ "NO", "YES" ]
none
500
[ { "input": "3\n4 1 7\n-2 4 -1\n1 -5 -3", "output": "NO" }, { "input": "3\n3 -1 7\n-5 2 -4\n2 -1 -3", "output": "YES" }, { "input": "10\n21 32 -46\n43 -35 21\n42 2 -50\n22 40 20\n-27 -9 38\n-4 1 1\n-40 6 -31\n-13 -2 34\n-21 34 -12\n-32 -29 41", "output": "NO" }, { "input": "10...
1,685,390,572
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
80
154
0
n = int(input()) l = 0 for _ in range(n): l+= sum(list(map(int,input().split()))) print("YES") if l == 0 else print("NO")
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python n = int(input()) l = 0 for _ in range(n): l+= sum(list(map(int,input().split()))) print("YES") if l == 0 else print("NO") ```
0
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,549,512,275
2,147,483,647
Python 3
OK
TESTS
35
218
0
n = int(input()) a = list(map(int, input().split())) s = 1 l = [] for i, v in enumerate(a): if v == s: l.append(2001+i) s += 1 le = len(l) print(le) if le != 0: print(*l)
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())) s = 1 l = [] for i, v in enumerate(a): if v == s: l.append(2001+i) s += 1 le = len(l) print(le) if le != 0: print(*l) ```
3.9455
774
D
Lie or Truth
PROGRAMMING
1,500
[ "*special", "constructive algorithms", "implementation", "sortings" ]
null
null
Vasya has a sequence of cubes and exactly one integer is written on each cube. Vasya exhibited all his cubes in a row. So the sequence of numbers written on the cubes in the order from the left to the right equals to *a*1,<=*a*2,<=...,<=*a**n*. While Vasya was walking, his little brother Stepan played with Vasya's cub...
The first line contains three integers *n*, *l*, *r* (1<=≤<=*n*<=≤<=105, 1<=≤<=*l*<=≤<=*r*<=≤<=*n*) — the number of Vasya's cubes and the positions told by Stepan. The second line contains the sequence *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*n*) — the sequence of integers written on cubes in the Vasya's order. ...
Print "LIE" (without quotes) if it is guaranteed that Stepan deceived his brother. In the other case, print "TRUTH" (without quotes).
[ "5 2 4\n3 4 2 3 1\n3 2 3 4 1\n", "3 1 2\n1 2 3\n3 1 2\n", "4 2 4\n1 1 1 1\n1 1 1 1\n" ]
[ "TRUTH\n", "LIE\n", "TRUTH\n" ]
In the first example there is a situation when Stepan said the truth. Initially the sequence of integers on the cubes was equal to [3, 4, 2, 3, 1]. Stepan could at first swap cubes on positions 2 and 3 (after that the sequence of integers on cubes became equal to [3, 2, 4, 3, 1]), and then swap cubes in positions 3 and...
0
[ { "input": "5 2 4\n3 4 2 3 1\n3 2 3 4 1", "output": "TRUTH" }, { "input": "3 1 2\n1 2 3\n3 1 2", "output": "LIE" }, { "input": "4 2 4\n1 1 1 1\n1 1 1 1", "output": "TRUTH" }, { "input": "5 1 3\n2 2 2 1 2\n2 2 2 1 2", "output": "TRUTH" }, { "input": "7 1 4\n2 5 5 5...
1,491,409,529
3,029
Python 3
OK
TESTS
52
186
15,872,000
nlr = input().split() a = input().split() b = input().split() if (a[:int(nlr[1])-1] != b[:int(nlr[1])-1]) | (a[int(nlr[2])+1:] != b[int(nlr[2])+1:]) | (sorted(a[int(nlr[1])-1:int(nlr[2])]) != sorted(b[int(nlr[1])-1:int(nlr[2])])): print("LIE") else: print("TRUTH") # for i in range(nlr[1]): # if ...
Title: Lie or Truth Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has a sequence of cubes and exactly one integer is written on each cube. Vasya exhibited all his cubes in a row. So the sequence of numbers written on the cubes in the order from the left to the right equals to *a*1,...
```python nlr = input().split() a = input().split() b = input().split() if (a[:int(nlr[1])-1] != b[:int(nlr[1])-1]) | (a[int(nlr[2])+1:] != b[int(nlr[2])+1:]) | (sorted(a[int(nlr[1])-1:int(nlr[2])]) != sorted(b[int(nlr[1])-1:int(nlr[2])])): print("LIE") else: print("TRUTH") # for i in range(nlr[1]): ...
3
892
A
Greed
PROGRAMMING
900
[ "greedy", "implementation" ]
null
null
Jafar has *n* cans of cola. Each can is described by two integers: remaining volume of cola *a**i* and can's capacity *b**i* (*a**i* <=≤<= *b**i*). Jafar has decided to pour all remaining cola into just 2 cans, determine if he can do this or not!
The first line of the input contains one integer *n* (2<=≤<=*n*<=≤<=100<=000) — number of cola cans. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109) — volume of remaining cola in cans. The third line contains *n* space-separated integers that *b*1,<=*b*2,<=...,<...
Print "YES" (without quotes) if it is possible to pour all remaining cola in 2 cans. Otherwise print "NO" (without quotes). You can print each letter in any case (upper or lower).
[ "2\n3 5\n3 6\n", "3\n6 8 9\n6 10 12\n", "5\n0 0 5 0 0\n1 1 8 10 5\n", "4\n4 1 0 3\n5 2 2 3\n" ]
[ "YES\n", "NO\n", "YES\n", "YES\n" ]
In the first sample, there are already 2 cans, so the answer is "YES".
500
[ { "input": "2\n3 5\n3 6", "output": "YES" }, { "input": "3\n6 8 9\n6 10 12", "output": "NO" }, { "input": "5\n0 0 5 0 0\n1 1 8 10 5", "output": "YES" }, { "input": "4\n4 1 0 3\n5 2 2 3", "output": "YES" }, { "input": "10\n9 10 24 11 1 7 8 3 28 14\n86 20 34 11 22 9...
1,665,846,374
2,147,483,647
Python 3
OK
TESTS
39
140
11,264,000
def greed_vjudge(cans,volumn,capcity): capcity = sorted(capcity) volumnleft = sum(volumn) two_cans = capcity[-1] + capcity[-2] if two_cans>=volumnleft: print("YES") else: print("NO") cans = int(input()) volumn = list(map(int,input().split())) capcity = list(map(int,input().split...
Title: Greed Time Limit: None seconds Memory Limit: None megabytes Problem Description: Jafar has *n* cans of cola. Each can is described by two integers: remaining volume of cola *a**i* and can's capacity *b**i* (*a**i* <=≤<= *b**i*). Jafar has decided to pour all remaining cola into just 2 cans, determine if he c...
```python def greed_vjudge(cans,volumn,capcity): capcity = sorted(capcity) volumnleft = sum(volumn) two_cans = capcity[-1] + capcity[-2] if two_cans>=volumnleft: print("YES") else: print("NO") cans = int(input()) volumn = list(map(int,input().split())) capcity = list(map(int,inp...
3
652
B
z-sort
PROGRAMMING
1,000
[ "sortings" ]
null
null
A student of *z*-school found a kind of sorting called *z*-sort. The array *a* with *n* elements are *z*-sorted if two conditions hold: 1. *a**i*<=≥<=*a**i*<=-<=1 for all even *i*, 1. *a**i*<=≤<=*a**i*<=-<=1 for all odd *i*<=&gt;<=1. For example the arrays [1,2,1,2] and [1,1,1,1] are *z*-sorted while the array [1,2...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of elements in the array *a*. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=109) — the elements of the array *a*.
If it's possible to make the array *a* *z*-sorted print *n* space separated integers *a**i* — the elements after *z*-sort. Otherwise print the only word "Impossible".
[ "4\n1 2 2 1\n", "5\n1 3 2 2 5\n" ]
[ "1 2 1 2\n", "1 5 2 3 2\n" ]
none
0
[ { "input": "4\n1 2 2 1", "output": "1 2 1 2" }, { "input": "5\n1 3 2 2 5", "output": "1 5 2 3 2" }, { "input": "1\n1", "output": "1" }, { "input": "10\n1 1 1 1 1 1 1 1 1 1", "output": "1 1 1 1 1 1 1 1 1 1" }, { "input": "10\n1 9 7 6 2 4 7 8 1 3", "output": "1 ...
1,653,339,139
2,147,483,647
Python 3
OK
TESTS
16
31
0
a=int(input()) b=sorted(map(int,input().split())) i=0 while(i<a//2): print(b[i],b[-i-1],end=" ") i+=1 if a%2:print(b[a//2])
Title: z-sort Time Limit: None seconds Memory Limit: None megabytes Problem Description: A student of *z*-school found a kind of sorting called *z*-sort. The array *a* with *n* elements are *z*-sorted if two conditions hold: 1. *a**i*<=≥<=*a**i*<=-<=1 for all even *i*, 1. *a**i*<=≤<=*a**i*<=-<=1 for all odd *i*<=...
```python a=int(input()) b=sorted(map(int,input().split())) i=0 while(i<a//2): print(b[i],b[-i-1],end=" ") i+=1 if a%2:print(b[a//2]) ```
3
171
B
Star
PROGRAMMING
1,300
[ "*special", "combinatorics" ]
null
null
The input contains a single integer *a* (1<=≤<=*a*<=≤<=18257).
Print a single integer *output* (1<=≤<=*output*<=≤<=2·109).
[ "2\n" ]
[ "13" ]
none
0
[ { "input": "2", "output": "13" }, { "input": "1", "output": "1" }, { "input": "3", "output": "37" }, { "input": "4", "output": "73" }, { "input": "5", "output": "121" }, { "input": "6", "output": "181" }, { "input": "7", "output": "253"...
1,585,731,042
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
154
0
n = int(input()) o = n + (n - 1) * 6 + 1 print(o)
Title: Star Time Limit: None seconds Memory Limit: None megabytes Problem Description: Input Specification: The input contains a single integer *a* (1<=≤<=*a*<=≤<=18257). Output Specification: Print a single integer *output* (1<=≤<=*output*<=≤<=2·109). Demo Input: ['2\n'] Demo Output: ['13'] Note: none
```python n = int(input()) o = n + (n - 1) * 6 + 1 print(o) ```
0
814
A
An abandoned sentiment from past
PROGRAMMING
900
[ "constructive algorithms", "greedy", "implementation", "sortings" ]
null
null
A few years ago, Hitagi encountered a giant crab, who stole the whole of her body weight. Ever since, she tried to avoid contact with others, for fear that this secret might be noticed. To get rid of the oddity and recover her weight, a special integer sequence is needed. Hitagi's sequence has been broken for a long t...
The first line of input contains two space-separated positive integers *n* (2<=≤<=*n*<=≤<=100) and *k* (1<=≤<=*k*<=≤<=*n*) — the lengths of sequence *a* and *b* respectively. The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=200) — Hitagi's broken sequence with exactly ...
Output "Yes" if it's possible to replace zeros in *a* with elements in *b* and make the resulting sequence not increasing, and "No" otherwise.
[ "4 2\n11 0 0 14\n5 4\n", "6 1\n2 3 0 8 9 10\n5\n", "4 1\n8 94 0 4\n89\n", "7 7\n0 0 0 0 0 0 0\n1 2 3 4 5 6 7\n" ]
[ "Yes\n", "No\n", "Yes\n", "Yes\n" ]
In the first sample: - Sequence *a* is 11, 0, 0, 14. - Two of the elements are lost, and the candidates in *b* are 5 and 4. - There are two possible resulting sequences: 11, 5, 4, 14 and 11, 4, 5, 14, both of which fulfill the requirements. Thus the answer is "Yes". In the second sample, the only possible resulti...
500
[ { "input": "4 2\n11 0 0 14\n5 4", "output": "Yes" }, { "input": "6 1\n2 3 0 8 9 10\n5", "output": "No" }, { "input": "4 1\n8 94 0 4\n89", "output": "Yes" }, { "input": "7 7\n0 0 0 0 0 0 0\n1 2 3 4 5 6 7", "output": "Yes" }, { "input": "40 1\n23 26 27 28 31 35 38 4...
1,500,233,182
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
12
77
4,608,000
stupid = [] stupid = input() test1 = [] test1 = input() done1 = test1.split() test2 = input() done2 = test2.split() test1 = [] a = False for i in range (done1.__len__()): if int(done1[i]) == 0: i+=1 continue else: test1.append(int(done1[i])) for i in range (test1.__len__(...
Title: An abandoned sentiment from past Time Limit: None seconds Memory Limit: None megabytes Problem Description: A few years ago, Hitagi encountered a giant crab, who stole the whole of her body weight. Ever since, she tried to avoid contact with others, for fear that this secret might be noticed. To get rid of t...
```python stupid = [] stupid = input() test1 = [] test1 = input() done1 = test1.split() test2 = input() done2 = test2.split() test1 = [] a = False for i in range (done1.__len__()): if int(done1[i]) == 0: i+=1 continue else: test1.append(int(done1[i])) for i in range (test...
0
268
B
Buttons
PROGRAMMING
1,000
[ "implementation", "math" ]
null
null
Manao is trying to open a rather challenging lock. The lock has *n* buttons on it and to open it, you should press the buttons in a certain order to open the lock. When you push some button, it either stays pressed into the lock (that means that you've guessed correctly and pushed the button that goes next in the seque...
A single line contains integer *n* (1<=≤<=*n*<=≤<=2000) — the number of buttons the lock has.
In a single line print the number of times Manao has to push a button in the worst-case scenario.
[ "2\n", "3\n" ]
[ "3\n", "7\n" ]
Consider the first test sample. Manao can fail his first push and push the wrong button. In this case he will already be able to guess the right one with his second push. And his third push will push the second right button. Thus, in the worst-case scenario he will only need 3 pushes.
1,000
[ { "input": "2", "output": "3" }, { "input": "3", "output": "7" }, { "input": "4", "output": "14" }, { "input": "1", "output": "1" }, { "input": "10", "output": "175" }, { "input": "2000", "output": "1333335000" }, { "input": "1747", "ou...
1,685,219,865
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
n = int(input()) print(n * (n * n + 5) / 6)
Title: Buttons Time Limit: None seconds Memory Limit: None megabytes Problem Description: Manao is trying to open a rather challenging lock. The lock has *n* buttons on it and to open it, you should press the buttons in a certain order to open the lock. When you push some button, it either stays pressed into the loc...
```python n = int(input()) print(n * (n * n + 5) / 6) ```
0
573
A
Bear and Poker
PROGRAMMING
1,300
[ "implementation", "math", "number theory" ]
null
null
Limak is an old brown bear. He often plays poker with his friends. Today they went to a casino. There are *n* players (including Limak himself) and right now all of them have bids on the table. *i*-th of them has bid with size *a**i* dollars. Each player can double his bid any number of times and triple his bid any nu...
First line of input contains an integer *n* (2<=≤<=*n*<=≤<=105), the number of players. The second line contains *n* integer numbers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109) — the bids of players.
Print "Yes" (without the quotes) if players can make their bids become equal, or "No" otherwise.
[ "4\n75 150 75 50\n", "3\n100 150 250\n" ]
[ "Yes\n", "No\n" ]
In the first sample test first and third players should double their bids twice, second player should double his bid once and fourth player should both double and triple his bid. It can be shown that in the second sample test there is no way to make all bids equal.
500
[ { "input": "4\n75 150 75 50", "output": "Yes" }, { "input": "3\n100 150 250", "output": "No" }, { "input": "7\n34 34 68 34 34 68 34", "output": "Yes" }, { "input": "10\n72 96 12 18 81 20 6 2 54 1", "output": "No" }, { "input": "20\n958692492 954966768 77387000 724...
1,695,670,783
2,147,483,647
Python 3
OK
TESTS
70
217
13,824,000
import math def calc(a, b): return (a * b) // math.gcd(a, b) def check(n): while n % 2 == 0: n //= 2 while n % 3 == 0: n //= 3 return n n = int(input()) arr = list(map(int, input().split())) for i in range(n): arr[i] = check(arr[i]) lcm = 1 for i in range(1, n): temp = lcm ...
Title: Bear and Poker Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is an old brown bear. He often plays poker with his friends. Today they went to a casino. There are *n* players (including Limak himself) and right now all of them have bids on the table. *i*-th of them has bid wit...
```python import math def calc(a, b): return (a * b) // math.gcd(a, b) def check(n): while n % 2 == 0: n //= 2 while n % 3 == 0: n //= 3 return n n = int(input()) arr = list(map(int, input().split())) for i in range(n): arr[i] = check(arr[i]) lcm = 1 for i in range(1, n): t...
3
34
B
Sale
PROGRAMMING
900
[ "greedy", "sortings" ]
B. Sale
2
256
Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can «buy» any TV sets he wants. Though he's very strong, Bob can carry at most *m* TV set...
The first line contains two space-separated integers *n* and *m* (1<=≤<=*m*<=≤<=*n*<=≤<=100) — amount of TV sets at the sale, and amount of TV sets that Bob can carry. The following line contains *n* space-separated integers *a**i* (<=-<=1000<=≤<=*a**i*<=≤<=1000) — prices of the TV sets.
Output the only number — the maximum sum of money that Bob can earn, given that he can carry at most *m* TV sets.
[ "5 3\n-6 0 35 -2 4\n", "4 2\n7 0 0 -7\n" ]
[ "8\n", "7\n" ]
none
1,000
[ { "input": "5 3\n-6 0 35 -2 4", "output": "8" }, { "input": "4 2\n7 0 0 -7", "output": "7" }, { "input": "6 6\n756 -611 251 -66 572 -818", "output": "1495" }, { "input": "5 5\n976 437 937 788 518", "output": "0" }, { "input": "5 3\n-2 -2 -2 -2 -2", "output": "...
1,557,339,978
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
218
0
n,m=map(int,input().split()) l=list(map(int,input().split())) l.sort() sum1=0 for i in range(m): sum1+=l[i] print(sum1*(-1))
Title: Sale Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once Bob got to a sale of old TV sets. There were *n* TV sets at that sale. TV set with index *i* costs *a**i* bellars. Some TV sets have a negative price — their owners are ready to pay Bob if he buys their useless apparatus. Bob can...
```python n,m=map(int,input().split()) l=list(map(int,input().split())) l.sort() sum1=0 for i in range(m): sum1+=l[i] print(sum1*(-1)) ```
0
447
B
DZY Loves Strings
PROGRAMMING
1,000
[ "greedy", "implementation" ]
null
null
DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter *c* DZY knows its value *w**c*. For each special string *s*<==<=*s*1*s*2... *s*|*s*| (|*s*| is the length of the string) he represents its value with a function *f*(*s*), where Now DZY has a string *s*. He wants to in...
The first line contains a single string *s* (1<=≤<=|*s*|<=≤<=103). The second line contains a single integer *k* (0<=≤<=*k*<=≤<=103). The third line contains twenty-six integers from *w**a* to *w**z*. Each such number is non-negative and doesn't exceed 1000.
Print a single integer — the largest possible value of the resulting string DZY could get.
[ "abc\n3\n1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1\n" ]
[ "41\n" ]
In the test sample DZY can obtain "abcbbc", *value* = 1·1 + 2·2 + 3·2 + 4·2 + 5·2 + 6·2 = 41.
1,000
[ { "input": "abc\n3\n1 2 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1", "output": "41" }, { "input": "mmzhr\n3\n443 497 867 471 195 670 453 413 579 466 553 881 847 642 269 996 666 702 487 209 257 741 974 133 519 453", "output": "29978" }, { "input": "ajeeseerqnpaujubmajpibxrccazaawetyw...
1,596,023,364
2,147,483,647
Python 3
OK
TESTS
24
109
6,656,000
s = input() k = int(input()) w = list(map(int, input().split())) ans = 0 for i in range(len(s)): ans += (i+1) * w[ord(s[i]) - 97] for i in range(len(s), len(s)+k): ans += (i+1) * max(w) print(ans)
Title: DZY Loves Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: DZY loves collecting special strings which only contain lowercase letters. For each lowercase letter *c* DZY knows its value *w**c*. For each special string *s*<==<=*s*1*s*2... *s*|*s*| (|*s*| is the length of the str...
```python s = input() k = int(input()) w = list(map(int, input().split())) ans = 0 for i in range(len(s)): ans += (i+1) * w[ord(s[i]) - 97] for i in range(len(s), len(s)+k): ans += (i+1) * max(w) print(ans) ```
3
2
A
Winner
PROGRAMMING
1,500
[ "hashing", "implementation" ]
A. Winner
1
64
The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes more difficult if the number of such players is more than one. During each round a pla...
The first line contains an integer number *n* (1<=<=≤<=<=*n*<=<=≤<=<=1000), *n* is the number of rounds played. Then follow *n* lines, containing the information about the rounds in "name score" format in chronological order, where name is a string of lower-case Latin letters with the length from 1 to 32, and score is ...
Print the name of the winner.
[ "3\nmike 3\nandrew 5\nmike 2\n", "3\nandrew 3\nandrew 2\nmike 5\n" ]
[ "andrew\n", "andrew\n" ]
none
0
[ { "input": "3\nmike 3\nandrew 5\nmike 2", "output": "andrew" }, { "input": "3\nandrew 3\nandrew 2\nmike 5", "output": "andrew" }, { "input": "5\nkaxqybeultn -352\nmgochgrmeyieyskhuourfg -910\nkaxqybeultn 691\nmgochgrmeyieyskhuourfg -76\nkaxqybeultn -303", "output": "kaxqybeultn" },...
1,654,088,357
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
122
3,584,000
def main(): n = int(input()) person_to_score = {} all_scores = {i: [] for i in range(-1000, 1001)} for _ in range(n): name, change = input().split(" ") old_score = person_to_score.get(name, 0) if change != 0: new_score = old_score + change all_scores[old_s...
Title: Winner Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes...
```python def main(): n = int(input()) person_to_score = {} all_scores = {i: [] for i in range(-1000, 1001)} for _ in range(n): name, change = input().split(" ") old_score = person_to_score.get(name, 0) if change != 0: new_score = old_score + change all_sc...
-1
731
B
Coupons and Discounts
PROGRAMMING
1,100
[ "constructive algorithms", "greedy" ]
null
null
The programming competition season has already started and it's time to train for ICPC. Sereja coaches his teams for a number of year and he knows that to get ready for the training session it's not enough to prepare only problems and editorial. As the training sessions lasts for several hours, teams become hungry. Thu...
The first line of input contains a single integer *n* (1<=≤<=*n*<=≤<=200<=000) — the number of training sessions. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (0<=≤<=*a**i*<=≤<=10<=000) — the number of teams that will be present on each of the days.
If there is a way to order pizzas using only coupons and discounts and do not buy any extra pizzas on any of the days, then print "YES" (without quotes) in the only line of output. Otherwise, print "NO" (without quotes).
[ "4\n1 2 1 2\n", "3\n1 0 1\n" ]
[ "YES\n", "NO\n" ]
In the first sample, Sereja can use one coupon to buy one pizza on the first and the second days, one coupon to buy pizza on the second and the third days and one discount to buy pizzas on the fourth days. This is the only way to order pizzas for this sample. In the second sample, Sereja can't use neither the coupon n...
1,000
[ { "input": "4\n1 2 1 2", "output": "YES" }, { "input": "3\n1 0 1", "output": "NO" }, { "input": "3\n1 3 1", "output": "NO" }, { "input": "3\n2 0 2", "output": "YES" }, { "input": "1\n179", "output": "NO" }, { "input": "10\n0 0 5 9 9 3 0 0 0 10", "o...
1,631,739,933
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
6,963,200
# / * # # / \ | | / \ | | | | # / __\ | | / __\ |--| | | # / \ |__ | __ / \ | | \__ / # # __ __ # / \ | / | ) / \ | ) # / __\ |< |-< / __\ |-< # / \ | \ |__) / \ | \ # # * / # / * # # / \ | | / \ ...
Title: Coupons and Discounts Time Limit: None seconds Memory Limit: None megabytes Problem Description: The programming competition season has already started and it's time to train for ICPC. Sereja coaches his teams for a number of year and he knows that to get ready for the training session it's not enough to prep...
```python # / * # # / \ | | / \ | | | | # / __\ | | / __\ |--| | | # / \ |__ | __ / \ | | \__ / # # __ __ # / \ | / | ) / \ | ) # / __\ |< |-< / __\ |-< # / \ | \ |__) / \ | \ # # * / # / * # # / \ | | ...
0
29
A
Spit Problem
PROGRAMMING
1,000
[ "brute force" ]
A. Spit Problem
2
256
In a Berland's zoo there is an enclosure with camels. It is known that camels like to spit. Bob watched these interesting animals for the whole day and registered in his notepad where each animal spitted. Now he wants to know if in the zoo there are two camels, which spitted at each other. Help him to solve this task. ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the amount of camels in the zoo. Each of the following *n* lines contains two integers *x**i* and *d**i* (<=-<=104<=≤<=*x**i*<=≤<=104,<=1<=≤<=|*d**i*|<=≤<=2·104) — records in Bob's notepad. *x**i* is a position of the *i*-th camel, and *d**i* is a distance at wh...
If there are two camels, which spitted at each other, output YES. Otherwise, output NO.
[ "2\n0 1\n1 -1\n", "3\n0 1\n1 1\n2 -2\n", "5\n2 -10\n3 10\n0 5\n5 -5\n10 1\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
500
[ { "input": "2\n0 1\n1 -1", "output": "YES" }, { "input": "3\n0 1\n1 1\n2 -2", "output": "NO" }, { "input": "5\n2 -10\n3 10\n0 5\n5 -5\n10 1", "output": "YES" }, { "input": "10\n-9897 -1144\n-4230 -6350\n2116 -3551\n-3635 4993\n3907 -9071\n-2362 4120\n-6542 984\n5807 3745\n759...
1,589,421,032
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
186
6,963,200
nums = int(input()) list1 = [] flag = 0 for i in range(nums): list1.append([int(h) for h in input().split()]) list2 = [] list3 = [] for i in range(nums): list2.append(list1[i][0]) list3.append(list1[i][1]) # print(list2) for b in range(nums): for v in range(nums): if b != v: ...
Title: Spit Problem Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: In a Berland's zoo there is an enclosure with camels. It is known that camels like to spit. Bob watched these interesting animals for the whole day and registered in his notepad where each animal spitted. Now he wants to know ...
```python nums = int(input()) list1 = [] flag = 0 for i in range(nums): list1.append([int(h) for h in input().split()]) list2 = [] list3 = [] for i in range(nums): list2.append(list1[i][0]) list3.append(list1[i][1]) # print(list2) for b in range(nums): for v in range(nums): if b != ...
0
112
A
Petya and Strings
PROGRAMMING
800
[ "implementation", "strings" ]
A. Petya and Strings
2
256
Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. The letters' case does not matter, that is an uppercase letter is considered equivalent to the corr...
Each of the first two lines contains a bought string. The strings' lengths range from 1 to 100 inclusive. It is guaranteed that the strings are of the same length and also consist of uppercase and lowercase Latin letters.
If the first string is less than the second one, print "-1". If the second string is less than the first one, print "1". If the strings are equal, print "0". Note that the letters' case is not taken into consideration when the strings are compared.
[ "aaaa\naaaA\n", "abs\nAbz\n", "abcdefg\nAbCdEfF\n" ]
[ "0\n", "-1\n", "1\n" ]
If you want more formal information about the lexicographical order (also known as the "dictionary order" or "alphabetical order"), you can visit the following site: - http://en.wikipedia.org/wiki/Lexicographical_order
500
[ { "input": "aaaa\naaaA", "output": "0" }, { "input": "abs\nAbz", "output": "-1" }, { "input": "abcdefg\nAbCdEfF", "output": "1" }, { "input": "asadasdasd\nasdwasdawd", "output": "-1" }, { "input": "aslkjlkasdd\nasdlkjdajwi", "output": "1" }, { "input":...
1,695,848,955
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
4
92
0
a = input().lower() b = input().lower() a_val = sum([ord(letter) for letter in a]) b_val = sum([ord(letter) for letter in b]) if a_val < b_val: print(-1) elif a_val > b_val: print(1) else: print(0)
Title: Petya and Strings Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya loves presents. His mum bought him two strings of the same size for his birthday. The strings consist of uppercase and lowercase Latin letters. Now Petya wants to compare those two strings lexicographically. ...
```python a = input().lower() b = input().lower() a_val = sum([ord(letter) for letter in a]) b_val = sum([ord(letter) for letter in b]) if a_val < b_val: print(-1) elif a_val > b_val: print(1) else: print(0) ```
0
879
B
Table Tennis
PROGRAMMING
1,200
[ "data structures", "implementation" ]
null
null
*n* people are standing in a line to play table tennis. At first, the first two players in the line play a game. Then the loser goes to the end of the line, and the winner plays with the next person from the line, and so on. They play until someone wins *k* games in a row. This player becomes the winner. For each of t...
The first line contains two integers: *n* and *k* (2<=≤<=*n*<=≤<=500, 2<=≤<=*k*<=≤<=1012) — the number of people and the number of wins. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*n*) — powers of the player. It's guaranteed that this line contains a valid permutation, i.e. all ...
Output a single integer — power of the winner.
[ "2 2\n1 2\n", "4 2\n3 1 2 4\n", "6 2\n6 5 3 1 2 4\n", "2 10000000000\n2 1\n" ]
[ "2 ", "3 ", "6 ", "2\n" ]
Games in the second sample: 3 plays with 1. 3 wins. 1 goes to the end of the line. 3 plays with 2. 3 wins. He wins twice in a row. He becomes the winner.
1,000
[ { "input": "2 2\n1 2", "output": "2 " }, { "input": "4 2\n3 1 2 4", "output": "3 " }, { "input": "6 2\n6 5 3 1 2 4", "output": "6 " }, { "input": "2 10000000000\n2 1", "output": "2" }, { "input": "4 4\n1 3 4 2", "output": "4 " }, { "input": "2 21474836...
1,610,463,411
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <iostream> #include <vector> #include <algorithm> #include <string> #include <cmath> #include <queue> #define ll long long #define pb push_back #define f first #define s second using namespace std; queue <int> q; int w[100500]; void solve(){ ll n, k; cin >> n >> k; for(int i = 0; i < n; i++) { ...
Title: Table Tennis Time Limit: None seconds Memory Limit: None megabytes Problem Description: *n* people are standing in a line to play table tennis. At first, the first two players in the line play a game. Then the loser goes to the end of the line, and the winner plays with the next person from the line, and so o...
```python #include <iostream> #include <vector> #include <algorithm> #include <string> #include <cmath> #include <queue> #define ll long long #define pb push_back #define f first #define s second using namespace std; queue <int> q; int w[100500]; void solve(){ ll n, k; cin >> n >> k; for(int i = 0; i < ...
-1
509
B
Painting Pebbles
PROGRAMMING
1,300
[ "constructive algorithms", "greedy", "implementation" ]
null
null
There are *n* piles of pebbles on the table, the *i*-th pile contains *a**i* pebbles. Your task is to paint each pebble using one of the *k* given colors so that for each color *c* and any two piles *i* and *j* the difference between the number of pebbles of color *c* in pile *i* and number of pebbles of color *c* in p...
The first line of the input contains positive integers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=100), separated by a space — the number of piles and the number of colors respectively. The second line contains *n* positive integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100) denoting number of pebbles in each of the pile...
If there is no way to paint the pebbles satisfying the given condition, output "NO" (without quotes) . Otherwise in the first line output "YES" (without quotes). Then *n* lines should follow, the *i*-th of them should contain *a**i* space-separated integers. *j*-th (1<=≤<=*j*<=≤<=*a**i*) of these integers should be eq...
[ "4 4\n1 2 3 4\n", "5 2\n3 2 4 1 3\n", "5 4\n3 2 4 3 5\n" ]
[ "YES\n1\n1 4\n1 2 4\n1 2 3 4\n", "NO\n", "YES\n1 2 3\n1 3\n1 2 3 4\n1 3 4\n1 1 2 3 4\n" ]
none
0
[ { "input": "4 4\n1 2 3 4", "output": "YES\n1 \n1 1 \n1 1 2 \n1 1 2 3 " }, { "input": "5 2\n3 2 4 1 3", "output": "NO" }, { "input": "5 4\n3 2 4 3 5", "output": "YES\n1 1 1 \n1 1 \n1 1 1 2 \n1 1 1 \n1 1 1 2 3 " }, { "input": "4 3\n5 6 7 8", "output": "YES\n1 1 1 1 1 \n1 1 ...
1,658,022,470
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
46
0
n,k=map(int,input().split()) l=list(map(int,input().split()))[:n] mx,mn=max(l),min(l) if mx-mn>k:print("NO");exit() else: print("YES") for i in range(n): for j in range(l[i]): print(j+1,end=" ") print()
Title: Painting Pebbles Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are *n* piles of pebbles on the table, the *i*-th pile contains *a**i* pebbles. Your task is to paint each pebble using one of the *k* given colors so that for each color *c* and any two piles *i* and *j* the dif...
```python n,k=map(int,input().split()) l=list(map(int,input().split()))[:n] mx,mn=max(l),min(l) if mx-mn>k:print("NO");exit() else: print("YES") for i in range(n): for j in range(l[i]): print(j+1,end=" ") print() ```
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,627,797,461
2,147,483,647
Python 3
OK
TESTS
35
154
6,758,400
# cook your dish here n, m = list(map(int, input().split())) print(str((m*n)//2))
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python # cook your dish here n, m = list(map(int, input().split())) print(str((m*n)//2)) ```
3.948911
507
B
Amr and Pins
PROGRAMMING
1,400
[ "geometry", "math" ]
null
null
Amr loves Geometry. One day he came up with a very interesting problem. Amr has a circle of radius *r* and center in point (*x*,<=*y*). He wants the circle center to be in new position (*x*',<=*y*'). In one step Amr can put a pin to the border of the circle in a certain point, then rotate the circle around that pin b...
Input consists of 5 space-separated integers *r*, *x*, *y*, *x*' *y*' (1<=≤<=*r*<=≤<=105, <=-<=105<=≤<=*x*,<=*y*,<=*x*',<=*y*'<=≤<=105), circle radius, coordinates of original center of the circle and coordinates of destination center of the circle respectively.
Output a single integer — minimum number of steps required to move the center of the circle to the destination point.
[ "2 0 0 0 4\n", "1 1 1 4 4\n", "4 5 6 5 6\n" ]
[ "1\n", "3\n", "0\n" ]
In the first sample test the optimal way is to put a pin at point (0, 2) and rotate the circle by 180 degrees counter-clockwise (or clockwise, no matter). <img class="tex-graphics" src="https://espresso.codeforces.com/4e40fd4cc24a2050a0488aa131e6244369328039.png" style="max-width: 100.0%;max-height: 100.0%;"/>
1,000
[ { "input": "2 0 0 0 4", "output": "1" }, { "input": "1 1 1 4 4", "output": "3" }, { "input": "4 5 6 5 6", "output": "0" }, { "input": "10 20 0 40 0", "output": "1" }, { "input": "9 20 0 40 0", "output": "2" }, { "input": "5 -1 -6 -5 1", "output": "...
1,591,535,991
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
4
140
0
r, x, y, x1, y1 = map(int, input().split(' ')) d = abs(x1 - x) + abs(y1 - y) if d%(2*r) == 0: print(d//(2*r)) else: print(d//r + 1)
Title: Amr and Pins Time Limit: None seconds Memory Limit: None megabytes Problem Description: Amr loves Geometry. One day he came up with a very interesting problem. Amr has a circle of radius *r* and center in point (*x*,<=*y*). He wants the circle center to be in new position (*x*',<=*y*'). In one step Amr can ...
```python r, x, y, x1, y1 = map(int, input().split(' ')) d = abs(x1 - x) + abs(y1 - y) if d%(2*r) == 0: print(d//(2*r)) else: print(d//r + 1) ```
0
474
D
Flowers
PROGRAMMING
1,700
[ "dp" ]
null
null
We saw the little game Marmot made for Mole's lunch. Now it's Marmot's dinner time and, as we all know, Marmot eats flowers. At every dinner he eats some red and white flowers. Therefore a dinner can be represented as a sequence of several flowers, some of them white and some of them red. But, for a dinner to be tasty...
Input contains several test cases. The first line contains two integers *t* and *k* (1<=≤<=*t*,<=*k*<=≤<=105), where *t* represents the number of test cases. The next *t* lines contain two integers *a**i* and *b**i* (1<=≤<=*a**i*<=≤<=*b**i*<=≤<=105), describing the *i*-th test.
Print *t* lines to the standard output. The *i*-th line should contain the number of ways in which Marmot can eat between *a**i* and *b**i* flowers at dinner modulo 1000000007 (109<=+<=7).
[ "3 2\n1 3\n2 3\n4 4\n" ]
[ "6\n5\n5\n" ]
- For *K* = 2 and length 1 Marmot can eat (*R*). - For *K* = 2 and length 2 Marmot can eat (*RR*) and (*WW*). - For *K* = 2 and length 3 Marmot can eat (*RRR*), (*RWW*) and (*WWR*). - For *K* = 2 and length 4 Marmot can eat, for example, (*WWWW*) or (*RWWR*), but for example he can't eat (*WWWR*).
2,000
[ { "input": "3 2\n1 3\n2 3\n4 4", "output": "6\n5\n5" }, { "input": "1 1\n1 3", "output": "14" }, { "input": "1 2\n64329 79425", "output": "0" } ]
1,680,947,635
2,147,483,647
PyPy 3-64
MEMORY_LIMIT_EXCEEDED
TESTS
0
249
268,390,400
#import math from sys import stdin,stdout #from heapq import heappop,heappush input,print = stdin.readline,stdout.write #--------------LinkedList--------------# ''' class Node: def __init__(self, data): self.data = data self.next = None class LinkedList: def __init__(self): ...
Title: Flowers Time Limit: None seconds Memory Limit: None megabytes Problem Description: We saw the little game Marmot made for Mole's lunch. Now it's Marmot's dinner time and, as we all know, Marmot eats flowers. At every dinner he eats some red and white flowers. Therefore a dinner can be represented as a sequenc...
```python #import math from sys import stdin,stdout #from heapq import heappop,heappush input,print = stdin.readline,stdout.write #--------------LinkedList--------------# ''' class Node: def __init__(self, data): self.data = data self.next = None class LinkedList: def __init__(s...
0