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
664
A
Complicated GCD
PROGRAMMING
800
[ "math", "number theory" ]
null
null
Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find greatest common divisor *GCD*(*a*,<=*b*), for example, Euclid algorithm. Formally, find the biggest in...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10100).
Output one integer — greatest common divisor of all integers from *a* to *b* inclusive.
[ "1 2\n", "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576\n" ]
[ "1\n", "61803398874989484820458683436563811772030917980576\n" ]
none
500
[ { "input": "1 2", "output": "1" }, { "input": "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576", "output": "61803398874989484820458683436563811772030917980576" }, { "input": "1 100", "output": "1" }, { "input": "100 100000...
1,687,376,227
2,147,483,647
PyPy 3-64
OK
TESTS
28
62
0
a, b = (int(_) for _ in input().split()) print(a if a ==b else 1)
Title: Complicated GCD Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find gre...
```python a, b = (int(_) for _ in input().split()) print(a if a ==b else 1) ```
3
714
A
Meeting of Old Friends
PROGRAMMING
1,100
[ "implementation", "math" ]
null
null
Today an outstanding event is going to happen in the forest — hedgehog Filya will come to his old fried Sonya! Sonya is an owl and she sleeps during the day and stay awake from minute *l*1 to minute *r*1 inclusive. Also, during the minute *k* she prinks and is unavailable for Filya. Filya works a lot and he plans to ...
The only line of the input contains integers *l*1, *r*1, *l*2, *r*2 and *k* (1<=≤<=*l*1,<=*r*1,<=*l*2,<=*r*2,<=*k*<=≤<=1018, *l*1<=≤<=*r*1, *l*2<=≤<=*r*2), providing the segments of time for Sonya and Filya and the moment of time when Sonya prinks.
Print one integer — the number of minutes Sonya and Filya will be able to spend together.
[ "1 10 9 20 1\n", "1 100 50 200 75\n" ]
[ "2\n", "50\n" ]
In the first sample, they will be together during minutes 9 and 10. In the second sample, they will be together from minute 50 to minute 74 and from minute 76 to minute 100.
500
[ { "input": "1 10 9 20 1", "output": "2" }, { "input": "1 100 50 200 75", "output": "50" }, { "input": "6 6 5 8 9", "output": "1" }, { "input": "1 1000000000 1 1000000000 1", "output": "999999999" }, { "input": "5 100 8 8 8", "output": "0" }, { "input":...
1,642,830,485
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
9
156
0
a, b, c, d, e = map(int, input().split()) start = max(a, c); end = min(b, d) + 1 ans = end - start if e >= start and e <= end: ans -= 1 print(ans)
Title: Meeting of Old Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today an outstanding event is going to happen in the forest — hedgehog Filya will come to his old fried Sonya! Sonya is an owl and she sleeps during the day and stay awake from minute *l*1 to minute *r*1 inclusi...
```python a, b, c, d, e = map(int, input().split()) start = max(a, c); end = min(b, d) + 1 ans = end - start if e >= start and e <= end: ans -= 1 print(ans) ```
0
63
A
Sinking Ship
PROGRAMMING
900
[ "implementation", "sortings", "strings" ]
A. Sinking Ship
2
256
The ship crashed into a reef and is sinking. Now the entire crew must be evacuated. All *n* crew members have already lined up in a row (for convenience let's label them all from left to right with positive integers from 1 to *n*) and await further instructions. However, one should evacuate the crew properly, in a stri...
The first line contains an integer *n*, which is the number of people in the crew (1<=≤<=*n*<=≤<=100). Then follow *n* lines. The *i*-th of those lines contains two words — the name of the crew member who is *i*-th in line, and his status on the ship. The words are separated by exactly one space. There are no other spa...
Print *n* lines. The *i*-th of them should contain the name of the crew member who must be the *i*-th one to leave the ship.
[ "6\nJack captain\nAlice woman\nCharlie man\nTeddy rat\nBob child\nJulia woman\n" ]
[ "Teddy\nAlice\nBob\nJulia\nCharlie\nJack\n" ]
none
500
[ { "input": "6\nJack captain\nAlice woman\nCharlie man\nTeddy rat\nBob child\nJulia woman", "output": "Teddy\nAlice\nBob\nJulia\nCharlie\nJack" }, { "input": "1\nA captain", "output": "A" }, { "input": "1\nAbcdefjhij captain", "output": "Abcdefjhij" }, { "input": "5\nA captain...
1,676,054,759
2,147,483,647
Python 3
OK
TESTS
26
92
0
n = int(input()) rat = [] childwoman = [] man = [] captain = [] for i in range(n): str = input() if str[-1:] == 't': rat.append(str[:-4]) elif str[-1:] == 'd': childwoman.append(str[:-6]) elif str[-5:] == 'woman': childwoman.append(str[:-6]) elif str[-3:] == 'man...
Title: Sinking Ship Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The ship crashed into a reef and is sinking. Now the entire crew must be evacuated. All *n* crew members have already lined up in a row (for convenience let's label them all from left to right with positive integers from 1 to ...
```python n = int(input()) rat = [] childwoman = [] man = [] captain = [] for i in range(n): str = input() if str[-1:] == 't': rat.append(str[:-4]) elif str[-1:] == 'd': childwoman.append(str[:-6]) elif str[-5:] == 'woman': childwoman.append(str[:-6]) elif str[-3...
3.977
659
B
Qualifying Contest
PROGRAMMING
1,300
[ "constructive algorithms", "sortings" ]
null
null
Very soon Berland will hold a School Team Programming Olympiad. From each of the *m* Berland regions a team of two people is invited to participate in the olympiad. The qualifying contest to form teams was held and it was attended by *n* Berland students. There were at least two schoolboys participating from each of th...
The first line of the input contains two integers *n* and *m* (2<=≤<=*n*<=≤<=100<=000, 1<=≤<=*m*<=≤<=10<=000, *n*<=≥<=2*m*) — the number of participants of the qualifying contest and the number of regions in Berland. Next *n* lines contain the description of the participants of the qualifying contest in the following ...
Print *m* lines. On the *i*-th line print the team of the *i*-th region — the surnames of the two team members in an arbitrary order, or a single character "?" (without the quotes) if you need to spend further qualifying contests in the region.
[ "5 2\nIvanov 1 763\nAndreev 2 800\nPetrov 1 595\nSidorov 1 790\nSemenov 2 503\n", "5 2\nIvanov 1 800\nAndreev 2 763\nPetrov 1 800\nSidorov 1 800\nSemenov 2 503\n" ]
[ "Sidorov Ivanov\nAndreev Semenov\n", "?\nAndreev Semenov\n" ]
In the first sample region teams are uniquely determined. In the second sample the team from region 2 is uniquely determined and the team from region 1 can have three teams: "Petrov"-"Sidorov", "Ivanov"-"Sidorov", "Ivanov" -"Petrov", so it is impossible to determine a team uniquely.
1,000
[ { "input": "5 2\nIvanov 1 763\nAndreev 2 800\nPetrov 1 595\nSidorov 1 790\nSemenov 2 503", "output": "Sidorov Ivanov\nAndreev Semenov" }, { "input": "5 2\nIvanov 1 800\nAndreev 2 763\nPetrov 1 800\nSidorov 1 800\nSemenov 2 503", "output": "?\nAndreev Semenov" }, { "input": "10 2\nSHiBIEz...
1,643,228,267
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
295
10,035,200
def Qualified(i): k = sorted(region[i],key=lambda x: x[1],reverse=True) if(k[0][1]==k[1][1]): print("?") return if(len(k)>2): if(k[1][1]==k[2][1]): print("?") else: print(k[0][0],k[1][0]) return else: print(k[0][0],k[1][0]) return n,m = ...
Title: Qualifying Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Very soon Berland will hold a School Team Programming Olympiad. From each of the *m* Berland regions a team of two people is invited to participate in the olympiad. The qualifying contest to form teams was held and i...
```python def Qualified(i): k = sorted(region[i],key=lambda x: x[1],reverse=True) if(k[0][1]==k[1][1]): print("?") return if(len(k)>2): if(k[1][1]==k[2][1]): print("?") else: print(k[0][0],k[1][0]) return else: print(k[0][0],k[1][0]) retu...
0
455
A
Boredom
PROGRAMMING
1,500
[ "dp" ]
null
null
Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it. Given a sequence *a* consisting of *n* integers. The player can make several steps. In a single step he can choose an element of the sequence (let's denote it *a*...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) that shows how many numbers are in Alex's sequence. The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=105).
Print a single integer — the maximum number of points that Alex can earn.
[ "2\n1 2\n", "3\n1 2 3\n", "9\n1 2 1 3 2 2 2 2 3\n" ]
[ "2\n", "4\n", "10\n" ]
Consider the third test example. At first step we need to choose any element equal to 2. After that step our sequence looks like this [2, 2, 2, 2]. Then we do 4 steps, on each step we choose any element equals to 2. In total we earn 10 points.
500
[ { "input": "2\n1 2", "output": "2" }, { "input": "3\n1 2 3", "output": "4" }, { "input": "9\n1 2 1 3 2 2 2 2 3", "output": "10" }, { "input": "5\n3 3 4 5 4", "output": "11" }, { "input": "5\n5 3 5 3 4", "output": "16" }, { "input": "5\n4 2 3 2 5", ...
1,696,520,237
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
42
124
20,275,200
from collections import defaultdict def solve(): n = int(input()) l = [int(i) for i in input().split()] dp, cnt = [0]*(n+1), defaultdict(int) for i in l: cnt[i] += 1 dp[1] = cnt[1] for i in range(2, max(l)+1): dp[i] = max(dp[i-1], dp[i-2]+cnt[i]*i) print(dp[max(...
Title: Boredom Time Limit: None seconds Memory Limit: None megabytes Problem Description: Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to play it. Given a sequence *a* consisting of *n* integers. The player can make ...
```python from collections import defaultdict def solve(): n = int(input()) l = [int(i) for i in input().split()] dp, cnt = [0]*(n+1), defaultdict(int) for i in l: cnt[i] += 1 dp[1] = cnt[1] for i in range(2, max(l)+1): dp[i] = max(dp[i-1], dp[i-2]+cnt[i]*i) pri...
-1
747
B
Mammoth's Genome Decoding
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
The process of mammoth's genome decoding in Berland comes to its end! One of the few remaining tasks is to restore unrecognized nucleotides in a found chain *s*. Each nucleotide is coded with a capital letter of English alphabet: 'A', 'C', 'G' or 'T'. Unrecognized nucleotides are coded by a question mark '?'. Thus, *s...
The first line contains the integer *n* (4<=≤<=*n*<=≤<=255) — the length of the genome. The second line contains the string *s* of length *n* — the coded genome. It consists of characters 'A', 'C', 'G', 'T' and '?'.
If it is possible to decode the genome, print it. If there are multiple answer, print any of them. If it is not possible, print three equals signs in a row: "===" (without quotes).
[ "8\nAG?C??CT\n", "4\nAGCT\n", "6\n????G?\n", "4\nAA??\n" ]
[ "AGACGTCT\n", "AGCT\n", "===\n", "===\n" ]
In the first example you can replace the first question mark with the letter 'A', the second question mark with the letter 'G', the third question mark with the letter 'T', then each nucleotide in the genome would be presented twice. In the second example the genome is already decoded correctly and each nucleotide is ...
1,000
[ { "input": "8\nAG?C??CT", "output": "AGACGTCT" }, { "input": "4\nAGCT", "output": "AGCT" }, { "input": "6\n????G?", "output": "===" }, { "input": "4\nAA??", "output": "===" }, { "input": "4\n????", "output": "ACGT" }, { "input": "252\n???????GCG??T??TT...
1,690,780,253
2,147,483,647
PyPy 3-64
OK
TESTS
95
77
102,400
from collections import Counter length, gene = int(input()), input() c = Counter(gene) nucls_left = {"A": c["A"], "C": c["C"], "G": c["G"], "T": c["T"]} if length % 4 != 0 or any(value > length / 4 for value in nucls_left.values()): print("===") else: for letter in gene: if letter == "?": ...
Title: Mammoth's Genome Decoding Time Limit: None seconds Memory Limit: None megabytes Problem Description: The process of mammoth's genome decoding in Berland comes to its end! One of the few remaining tasks is to restore unrecognized nucleotides in a found chain *s*. Each nucleotide is coded with a capital letter...
```python from collections import Counter length, gene = int(input()), input() c = Counter(gene) nucls_left = {"A": c["A"], "C": c["C"], "G": c["G"], "T": c["T"]} if length % 4 != 0 or any(value > length / 4 for value in nucls_left.values()): print("===") else: for letter in gene: if letter == "?": ...
3
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,512,500
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
7
3,000
7,270,400
def rakesh(a, n): for i in range(0,n): for j in range(i+1,n): if(a[i]+a[j]>a[j]+a[i]): s=a[i] a[i]=a[j] a[j]=s an = "" for i in range( n): an += a[i] print(an) n=int(input()) a=[] for i in range(n): a.append(input()) rakes...
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 def rakesh(a, n): for i in range(0,n): for j in range(i+1,n): if(a[i]+a[j]>a[j]+a[i]): s=a[i] a[i]=a[j] a[j]=s an = "" for i in range( n): an += a[i] print(an) n=int(input()) a=[] for i in range(n): a.append(inpu...
0
160
A
Twins
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very well know what it's like. Now let's imagine a typical morning in your family. You haven't w...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of coins. The second line contains a sequence of *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=100) — the coins' values. All numbers are separated with spaces.
In the single line print the single number — the minimum needed number of coins.
[ "2\n3 3\n", "3\n2 1 2\n" ]
[ "2\n", "2\n" ]
In the first sample you will have to take 2 coins (you and your twin have sums equal to 6, 0 correspondingly). If you take 1 coin, you get sums 3, 3. If you take 0 coins, you get sums 0, 6. Those variants do not satisfy you as your sum should be strictly more that your twins' sum. In the second sample one coin isn't e...
500
[ { "input": "2\n3 3", "output": "2" }, { "input": "3\n2 1 2", "output": "2" }, { "input": "1\n5", "output": "1" }, { "input": "5\n4 2 2 2 2", "output": "3" }, { "input": "7\n1 10 1 2 1 1 1", "output": "1" }, { "input": "5\n3 2 3 3 1", "output": "3" ...
1,692,910,437
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
60
0
import math def my_solution(coins): half = math.floor(sum(coins)/2) coins = sorted(coins) stolen = 0 i = 0 while stolen <= half: stolen += coins[i] i += 1 print(i) n = input() coins = [int(coin) for coin in input().split()] my_solution(coins)
Title: Twins Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It's hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very w...
```python import math def my_solution(coins): half = math.floor(sum(coins)/2) coins = sorted(coins) stolen = 0 i = 0 while stolen <= half: stolen += coins[i] i += 1 print(i) n = input() coins = [int(coin) for coin in input().split()] my_solution(coins) ```
0
56
B
Spoilt Permutation
PROGRAMMING
1,300
[ "implementation" ]
B. Spoilt Permutation
2
256
Vasya collects coins: he has exactly one coin for every year from 1 to *n*. Naturally, Vasya keeps all the coins in his collection in the order in which they were released. Once Vasya's younger brother made a change — he took all the coins whose release year dated from *l* to *r* inclusively and put them in the reverse...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=1000) which is the number of coins in Vasya's collection. The second line contains space-separated *n* integers which are the spoilt sequence of coins. It is guaranteed that the given sequence is a permutation, i.e. it contains only integers from 1 to *n*, and every...
If it is impossible to obtain the given permutation from the original one in exactly one action, print 0 0. Otherwise, print two numbers *l* *r* (1<=≤<=*l*<=&lt;<=*r*<=≤<=*n*) which are the endpoints of the segment that needs to be reversed to obtain from permutation 1 2 ... *n* the given one.
[ "8\n1 6 5 4 3 2 7 8\n", "4\n2 3 4 1\n", "4\n1 2 3 4\n" ]
[ "2 6\n", "0 0\n", "0 0\n" ]
none
1,000
[ { "input": "8\n1 6 5 4 3 2 7 8", "output": "2 6" }, { "input": "4\n2 3 4 1", "output": "0 0" }, { "input": "4\n1 2 3 4", "output": "0 0" }, { "input": "8\n1 3 2 4 6 5 7 8", "output": "0 0" }, { "input": "8\n1 3 4 2 6 5 7 8", "output": "0 0" }, { "input...
1,631,543,198
2,147,483,647
Python 3
OK
TESTS
33
124
6,963,200
def solve(a,sol): f=0 s=0 for i in range(len(a)): if(a[i]!=i+1): f=i break for j in range(len(a)-1,-1,-1): if(a[j]!=j+1): s=j break x=a[f:s+1] x.reverse() if(a[:f]+x+a[s+1:]==sol): print(f+1,s+1...
Title: Spoilt Permutation Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Vasya collects coins: he has exactly one coin for every year from 1 to *n*. Naturally, Vasya keeps all the coins in his collection in the order in which they were released. Once Vasya's younger brother made a change — he...
```python def solve(a,sol): f=0 s=0 for i in range(len(a)): if(a[i]!=i+1): f=i break for j in range(len(a)-1,-1,-1): if(a[j]!=j+1): s=j break x=a[f:s+1] x.reverse() if(a[:f]+x+a[s+1:]==sol): pri...
3.95603
526
C
Om Nom and Candies
PROGRAMMING
2,000
[ "brute force", "greedy", "math" ]
null
null
A sweet little monster Om Nom loves candies very much. One day he found himself in a rather tricky situation that required him to think a bit in order to enjoy candies the most. Would you succeed with the same task if you were on his place? One day, when he came to his friend Evan, Om Nom didn't find him at home but h...
The single line contains five integers *C*,<=*H**r*,<=*H**b*,<=*W**r*,<=*W**b* (1<=≤<=*C*,<=*H**r*,<=*H**b*,<=*W**r*,<=*W**b*<=≤<=109).
Print a single integer — the maximum number of joy units that Om Nom can get.
[ "10 3 5 2 3\n" ]
[ "16\n" ]
In the sample test Om Nom can eat two candies of each type and thus get 16 joy units.
1,250
[ { "input": "10 3 5 2 3", "output": "16" }, { "input": "5 3 1 6 7", "output": "0" }, { "input": "982068341 55 57 106 109", "output": "513558662" }, { "input": "930064129 32726326 25428197 83013449 64501049", "output": "363523396" }, { "input": "927155987 21197 1599...
1,591,339,551
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
5
1,000
1,536,000
C, Pr, Pb, Wr, Wb = list(map(int, input().split())) result = 0 if Wr * Wr >= C: i = 0 while Wr * i <= C: j = int((C - Wr * i) / Wb) result = max(result, Pr * i + Pb * j) i += 1 print(result) exit(0) if Wb * Wb <= C: i = 0 while Wb * i <= C: j = int(...
Title: Om Nom and Candies Time Limit: None seconds Memory Limit: None megabytes Problem Description: A sweet little monster Om Nom loves candies very much. One day he found himself in a rather tricky situation that required him to think a bit in order to enjoy candies the most. Would you succeed with the same task i...
```python C, Pr, Pb, Wr, Wb = list(map(int, input().split())) result = 0 if Wr * Wr >= C: i = 0 while Wr * i <= C: j = int((C - Wr * i) / Wb) result = max(result, Pr * i + Pb * j) i += 1 print(result) exit(0) if Wb * Wb <= C: i = 0 while Wb * i <= C: ...
0
25
A
IQ test
PROGRAMMING
1,300
[ "brute force" ]
A. IQ test
2
256
Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — to check his answers, he needs a program that among the given *n* numbers finds one that i...
The first line contains integer *n* (3<=≤<=*n*<=≤<=100) — amount of numbers in the task. The second line contains *n* space-separated natural numbers, not exceeding 100. It is guaranteed, that exactly one of these numbers differs from the others in evenness.
Output index of number that differs from the others in evenness. Numbers are numbered from 1 in the input order.
[ "5\n2 4 7 8 10\n", "4\n1 2 1 1\n" ]
[ "3\n", "2\n" ]
none
0
[ { "input": "5\n2 4 7 8 10", "output": "3" }, { "input": "4\n1 2 1 1", "output": "2" }, { "input": "3\n1 2 2", "output": "1" }, { "input": "3\n100 99 100", "output": "2" }, { "input": "3\n5 3 2", "output": "3" }, { "input": "4\n43 28 1 91", "output"...
1,682,885,414
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
n=input() n=list(map(int,input().split(' '))) ret=-1 if n[0]%2!=n[1]%2 and n[1]%2==n[2]%2: ret=1 if ret=-1: for i in range(1,len(n)-1): if n[i]%2!=n[i-1]%2 and n[i]%2!=n[i+1]%2: ret=i+1 break if ret=-1: ret=len(n) print(ret)
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python n=input() n=list(map(int,input().split(' '))) ret=-1 if n[0]%2!=n[1]%2 and n[1]%2==n[2]%2: ret=1 if ret=-1: for i in range(1,len(n)-1): if n[i]%2!=n[i-1]%2 and n[i]%2!=n[i+1]%2: ret=i+1 break if ret=-1: ret=len(n) print(ret) ```
-1
401
C
Team
PROGRAMMING
1,400
[ "constructive algorithms", "greedy", "implementation" ]
null
null
Now it's time of Olympiads. Vanya and Egor decided to make his own team to take part in a programming Olympiad. They've been best friends ever since primary school and hopefully, that can somehow help them in teamwork. For each team Olympiad, Vanya takes his play cards with numbers. He takes only the cards containing ...
The first line contains two integers: *n* (1<=≤<=*n*<=≤<=106) — the number of cards containing number 0; *m* (1<=≤<=*m*<=≤<=106) — the number of cards containing number 1.
In a single line print the required sequence of zeroes and ones without any spaces. If such sequence is impossible to obtain, print -1.
[ "1 2\n", "4 8\n", "4 10\n", "1 5\n" ]
[ "101\n", "110110110101\n", "11011011011011\n", "-1\n" ]
none
1,500
[ { "input": "1 2", "output": "101" }, { "input": "4 8", "output": "110110110101" }, { "input": "4 10", "output": "11011011011011" }, { "input": "1 5", "output": "-1" }, { "input": "3 4", "output": "1010101" }, { "input": "3 10", "output": "-1" }, ...
1,599,623,228
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
13
327
33,382,400
# import sys # sys.stdin = open('input.txt', 'r') # sys.stdout = open('output.txt', 'w') n, m = list(map(int, input().split())) # if m not in range(n-1, 2*(n+1)+1): # print(-1) # exit() ans = ['0']*n for i in range(n): if m: ans[i] += '1' m -= 1 if not m: break...
Title: Team Time Limit: None seconds Memory Limit: None megabytes Problem Description: Now it's time of Olympiads. Vanya and Egor decided to make his own team to take part in a programming Olympiad. They've been best friends ever since primary school and hopefully, that can somehow help them in teamwork. For each t...
```python # import sys # sys.stdin = open('input.txt', 'r') # sys.stdout = open('output.txt', 'w') n, m = list(map(int, input().split())) # if m not in range(n-1, 2*(n+1)+1): # print(-1) # exit() ans = ['0']*n for i in range(n): if m: ans[i] += '1' m -= 1 if not m: ...
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,587,715,789
2,147,483,647
Python 3
OK
TESTS
40
218
0
a=[] for i in range(3): a.append(input()) if (a[0][0]!=a[2][2] or a[0][1]!=a[2][1] or a[0][2]!=a[2][0] or a[1][0]!=a[1][2]): print('NO') else: print('YES')
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()) if (a[0][0]!=a[2][2] or a[0][1]!=a[2][1] or a[0][2]!=a[2][0] or a[1][0]!=a[1][2]): print('NO') else: print('YES') ```
3.9455
340
A
The Wall
PROGRAMMING
1,200
[ "math" ]
null
null
Iahub and his friend Floyd have started painting a wall. Iahub is painting the wall red and Floyd is painting it pink. You can consider the wall being made of a very large number of bricks, numbered 1, 2, 3 and so on. Iahub has the following scheme of painting: he skips *x*<=-<=1 consecutive bricks, then he paints th...
The input will have a single line containing four integers in this order: *x*, *y*, *a*, *b*. (1<=≤<=*x*,<=*y*<=≤<=1000, 1<=≤<=*a*,<=*b*<=≤<=2·109, *a*<=≤<=*b*).
Output a single integer — the number of bricks numbered no less than *a* and no greater than *b* that are painted both red and pink.
[ "2 3 6 18\n" ]
[ "3" ]
Let's look at the bricks from *a* to *b* (*a* = 6, *b* = 18). The bricks colored in red are numbered 6, 8, 10, 12, 14, 16, 18. The bricks colored in pink are numbered 6, 9, 12, 15, 18. The bricks colored in both red and pink are numbered with 6, 12 and 18.
500
[ { "input": "2 3 6 18", "output": "3" }, { "input": "4 6 20 201", "output": "15" }, { "input": "15 27 100 10000", "output": "74" }, { "input": "105 60 3456 78910", "output": "179" }, { "input": "1 1 1000 100000", "output": "99001" }, { "input": "3 2 5 5...
1,644,255,201
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
92
0
from math import gcd x,y,a,b=map(int,input().split()) l=(x)*(y)//gcd(x,y) if l>=a: gap=max(0,b-l) print(gap//l+(1 if l==a or b%l==0 else 0)) else : d=a%l start=a+l-d gap=max(0,b-start) print(gap//l+1)
Title: The Wall Time Limit: None seconds Memory Limit: None megabytes Problem Description: Iahub and his friend Floyd have started painting a wall. Iahub is painting the wall red and Floyd is painting it pink. You can consider the wall being made of a very large number of bricks, numbered 1, 2, 3 and so on. Iahub ...
```python from math import gcd x,y,a,b=map(int,input().split()) l=(x)*(y)//gcd(x,y) if l>=a: gap=max(0,b-l) print(gap//l+(1 if l==a or b%l==0 else 0)) else : d=a%l start=a+l-d gap=max(0,b-start) print(gap//l+1) ```
0
912
B
New Year's Eve
PROGRAMMING
1,300
[ "bitmasks", "constructive algorithms", "number theory" ]
null
null
Since Grisha behaved well last year, at New Year's Eve he was visited by Ded Moroz who brought an enormous bag of gifts with him! The bag contains *n* sweet candies from the good ol' bakery, each labeled from 1 to *n* corresponding to its tastiness. No two candies have the same tastiness. The choice of candies has a d...
The sole string contains two integers *n* and *k* (1<=≤<=*k*<=≤<=*n*<=≤<=1018).
Output one number — the largest possible xor-sum.
[ "4 3\n", "6 6\n" ]
[ "7\n", "7\n" ]
In the first sample case, one optimal answer is 1, 2 and 4, giving the xor-sum of 7. In the second sample case, one can, for example, take all six candies and obtain the xor-sum of 7.
1,000
[ { "input": "4 3", "output": "7" }, { "input": "6 6", "output": "7" }, { "input": "2 2", "output": "3" }, { "input": "1022 10", "output": "1023" }, { "input": "415853337373441 52", "output": "562949953421311" }, { "input": "75 12", "output": "127" ...
1,622,909,910
2,147,483,647
PyPy 3
OK
TESTS
58
140
0
n, k = map(int, input().split()) print(2**(len(bin(n))-2)-1 if k>1 else n)
Title: New Year's Eve Time Limit: None seconds Memory Limit: None megabytes Problem Description: Since Grisha behaved well last year, at New Year's Eve he was visited by Ded Moroz who brought an enormous bag of gifts with him! The bag contains *n* sweet candies from the good ol' bakery, each labeled from 1 to *n* co...
```python n, k = map(int, input().split()) print(2**(len(bin(n))-2)-1 if k>1 else n) ```
3
133
A
HQ9+
PROGRAMMING
900
[ "implementation" ]
null
null
HQ9+ is a joke programming language which has only four one-character instructions: - "H" prints "Hello, World!",- "Q" prints the source code of the program itself,- "9" prints the lyrics of "99 Bottles of Beer" song, - "+" increments the value stored in the internal accumulator. Instructions "H" and "Q" are case-s...
The input will consist of a single line *p* which will give a program in HQ9+. String *p* will contain between 1 and 100 characters, inclusive. ASCII-code of each character of *p* will be between 33 (exclamation mark) and 126 (tilde), inclusive.
Output "YES", if executing the program will produce any output, and "NO" otherwise.
[ "Hi!\n", "Codeforces\n" ]
[ "YES\n", "NO\n" ]
In the first case the program contains only one instruction — "H", which prints "Hello, World!". In the second case none of the program characters are language instructions.
500
[ { "input": "Hi!", "output": "YES" }, { "input": "Codeforces", "output": "NO" }, { "input": "a+b=c", "output": "NO" }, { "input": "hq-lowercase", "output": "NO" }, { "input": "Q", "output": "YES" }, { "input": "9", "output": "YES" }, { "inpu...
1,693,852,013
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
0
s = input() flag = False for c in s: if ord(c) == ord('H') or ord(c) == ord('Q') or ord(c) == ord('9') or ord(c) == ord('+'): flag = True if flag: print('YES') else: print('NO')
Title: HQ9+ Time Limit: None seconds Memory Limit: None megabytes Problem Description: HQ9+ is a joke programming language which has only four one-character instructions: - "H" prints "Hello, World!",- "Q" prints the source code of the program itself,- "9" prints the lyrics of "99 Bottles of Beer" song, - "+" in...
```python s = input() flag = False for c in s: if ord(c) == ord('H') or ord(c) == ord('Q') or ord(c) == ord('9') or ord(c) == ord('+'): flag = True if flag: print('YES') else: print('NO') ```
0
376
B
I.O.U.
PROGRAMMING
1,300
[ "implementation" ]
null
null
Imagine that there is a group of three friends: A, B and С. A owes B 20 rubles and B owes C 20 rubles. The total sum of the debts is 40 rubles. You can see that the debts are not organized in a very optimal manner. Let's rearrange them like that: assume that A owes C 20 rubles and B doesn't owe anything to anybody. The...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=100; 0<=≤<=*m*<=≤<=104). The next *m* lines contain the debts. The *i*-th line contains three integers *a**i*,<=*b**i*,<=*c**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*; *a**i*<=≠<=*b**i*; 1<=≤<=*c**i*<=≤<=100), which mean that person *a**i* owes person *b**i* *c**i...
Print a single integer — the minimum sum of debts in the optimal rearrangement.
[ "5 3\n1 2 10\n2 3 1\n2 4 1\n", "3 0\n", "4 3\n1 2 1\n2 3 1\n3 1 1\n" ]
[ "10\n", "0\n", "0\n" ]
In the first sample, you can assume that person number 1 owes 8 rubles to person number 2, 1 ruble to person number 3 and 1 ruble to person number 4. He doesn't owe anybody else anything. In the end, the total debt equals 10. In the second sample, there are no debts. In the third sample, you can annul all the debts.
1,000
[ { "input": "5 3\n1 2 10\n2 3 1\n2 4 1", "output": "10" }, { "input": "3 0", "output": "0" }, { "input": "4 3\n1 2 1\n2 3 1\n3 1 1", "output": "0" }, { "input": "20 28\n1 5 6\n1 12 7\n1 13 4\n1 15 7\n1 20 3\n2 4 1\n2 15 6\n3 5 3\n3 8 10\n3 13 8\n3 20 6\n4 6 10\n4 12 8\n4 19 5\...
1,620,851,176
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
3
46
7,065,600
import math import random def main(arr,n): ans=0 owe=[0]*(n) for i in range(len(arr)): a,b,c=arr[i] owe[a]+=c owe[b]-=c return sum([x for x in owe if x>0]) n,m=list(map(int,input().split())) arr=[] for i in range(m): arr.append(list(map(int,input().sp...
Title: I.O.U. Time Limit: None seconds Memory Limit: None megabytes Problem Description: Imagine that there is a group of three friends: A, B and С. A owes B 20 rubles and B owes C 20 rubles. The total sum of the debts is 40 rubles. You can see that the debts are not organized in a very optimal manner. Let's rearran...
```python import math import random def main(arr,n): ans=0 owe=[0]*(n) for i in range(len(arr)): a,b,c=arr[i] owe[a]+=c owe[b]-=c return sum([x for x in owe if x>0]) n,m=list(map(int,input().split())) arr=[] for i in range(m): arr.append(list(map(int,...
-1
626
B
Cards
PROGRAMMING
1,300
[ "constructive algorithms", "dp", "math" ]
null
null
Catherine has a deck of *n* cards, each of which is either red, green, or blue. As long as there are at least two cards left, she can do one of two actions: - take any two (not necessarily adjacent) cards with different colors and exchange them for a new card of the third color; - take any two (not necessarily adja...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=200) — the total number of cards. The next line contains a string *s* of length *n* — the colors of the cards. *s* contains only the characters 'B', 'G', and 'R', representing blue, green, and red, respectively.
Print a single string of up to three characters — the possible colors of the final card (using the same symbols as the input) in alphabetical order.
[ "2\nRB\n", "3\nGRG\n", "5\nBBBBB\n" ]
[ "G\n", "BR\n", "B\n" ]
In the first sample, Catherine has one red card and one blue card, which she must exchange for a green card. In the second sample, Catherine has two green cards and one red card. She has two options: she can exchange the two green cards for a green card, then exchange the new green card and the red card for a blue car...
750
[ { "input": "2\nRB", "output": "G" }, { "input": "3\nGRG", "output": "BR" }, { "input": "5\nBBBBB", "output": "B" }, { "input": "1\nR", "output": "R" }, { "input": "200\nBBRGRRBBRGGGBGBGBGRRGRGRGRBGRGRRBBGRGBGRRGRRRGGBBRGBGBGBRBBBBBBBGGBRGGRRRGGRGBGBGGBRRRRBRRRBRBB...
1,455,386,585
1,685
Python 3
WRONG_ANSWER
PRETESTS
7
61
512,000
import collections import math n = int(input()) s = input() a, b, c = s.count('B'), s.count('G'), s.count('R') if a * b * c != 0: print('BGR') elif a != 0 and b == 0 and c == 0: print('B') elif a == 0 and b != 0 and c == 0: print('G') elif a == 0 and b == 0 and c != 0: print('R') elif a =...
Title: Cards Time Limit: None seconds Memory Limit: None megabytes Problem Description: Catherine has a deck of *n* cards, each of which is either red, green, or blue. As long as there are at least two cards left, she can do one of two actions: - take any two (not necessarily adjacent) cards with different colors...
```python import collections import math n = int(input()) s = input() a, b, c = s.count('B'), s.count('G'), s.count('R') if a * b * c != 0: print('BGR') elif a != 0 and b == 0 and c == 0: print('B') elif a == 0 and b != 0 and c == 0: print('G') elif a == 0 and b == 0 and c != 0: print('R')...
0
703
A
Mishka and Game
PROGRAMMING
800
[ "implementation" ]
null
null
Mishka is a little polar bear. As known, little bears loves spending their free time playing dice for chocolates. Once in a wonderful sunny morning, walking around blocks of ice, Mishka met her friend Chris, and they started playing the game. Rules of the game are very simple: at first number of rounds *n* is defined....
The first line of the input contains single integer *n* *n* (1<=≤<=*n*<=≤<=100) — the number of game rounds. The next *n* lines contains rounds description. *i*-th of them contains pair of integers *m**i* and *c**i* (1<=≤<=*m**i*,<=<=*c**i*<=≤<=6) — values on dice upper face after Mishka's and Chris' throws in *i*-th ...
If Mishka is the winner of the game, print "Mishka" (without quotes) in the only line. If Chris is the winner of the game, print "Chris" (without quotes) in the only line. If the result of the game is draw, print "Friendship is magic!^^" (without quotes) in the only line.
[ "3\n3 5\n2 1\n4 2\n", "2\n6 1\n1 6\n", "3\n1 5\n3 3\n2 2\n" ]
[ "Mishka", "Friendship is magic!^^", "Chris" ]
In the first sample case Mishka loses the first round, but wins second and third rounds and thus she is the winner of the game. In the second sample case Mishka wins the first round, Chris wins the second round, and the game ends with draw with score 1:1. In the third sample case Chris wins the first round, but there...
500
[ { "input": "3\n3 5\n2 1\n4 2", "output": "Mishka" }, { "input": "2\n6 1\n1 6", "output": "Friendship is magic!^^" }, { "input": "3\n1 5\n3 3\n2 2", "output": "Chris" }, { "input": "6\n4 1\n4 2\n5 3\n5 1\n5 3\n4 1", "output": "Mishka" }, { "input": "8\n2 4\n1 4\n1 ...
1,689,658,293
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
30
0
s=0 s1=0 for i in range(int(input())): a,b=map(int,input().split()) s = s + a s1 = s1 + b if s>s1: print("Mishka") elif s<s1: print("Chris") else: print("Friendship is magic!^^")
Title: Mishka and Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mishka is a little polar bear. As known, little bears loves spending their free time playing dice for chocolates. Once in a wonderful sunny morning, walking around blocks of ice, Mishka met her friend Chris, and they st...
```python s=0 s1=0 for i in range(int(input())): a,b=map(int,input().split()) s = s + a s1 = s1 + b if s>s1: print("Mishka") elif s<s1: print("Chris") else: print("Friendship is magic!^^") ```
0
900
D
Unusual Sequences
PROGRAMMING
2,000
[ "bitmasks", "combinatorics", "dp", "math", "number theory" ]
null
null
Count the number of distinct sequences *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*) consisting of positive integers such that *gcd*(*a*1,<=*a*2,<=...,<=*a**n*)<==<=*x* and . As this number could be large, print the answer modulo 109<=+<=7. *gcd* here means the [greatest common divisor](https://en.wikipedia.org/wiki/Great...
The only line contains two positive integers *x* and *y* (1<=≤<=*x*,<=*y*<=≤<=109).
Print the number of such sequences modulo 109<=+<=7.
[ "3 9\n", "5 8\n" ]
[ "3\n", "0\n" ]
There are three suitable sequences in the first test: (3, 3, 3), (3, 6), (6, 3). There are no suitable sequences in the second test.
2,000
[ { "input": "3 9", "output": "3" }, { "input": "5 8", "output": "0" }, { "input": "2 12", "output": "27" }, { "input": "1 8", "output": "120" }, { "input": "1 9", "output": "252" }, { "input": "1000000000 1000000000", "output": "1" }, { "inp...
1,513,400,100
2,147,483,647
Python 3
OK
TESTS
25
109
6,758,400
#!/usr/bin/env python3 from fractions import gcd from operator import mul from functools import reduce from itertools import combinations eval_function = lambda x: lambda f: f(x) @eval_function(int((10**9)**0.5)) def prime(n): sieve = [True] * (n+1) sieve[0] = sieve[1] = False index = 2 for i in ra...
Title: Unusual Sequences Time Limit: None seconds Memory Limit: None megabytes Problem Description: Count the number of distinct sequences *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*) consisting of positive integers such that *gcd*(*a*1,<=*a*2,<=...,<=*a**n*)<==<=*x* and . As this number could be large, print the answe...
```python #!/usr/bin/env python3 from fractions import gcd from operator import mul from functools import reduce from itertools import combinations eval_function = lambda x: lambda f: f(x) @eval_function(int((10**9)**0.5)) def prime(n): sieve = [True] * (n+1) sieve[0] = sieve[1] = False index = 2 f...
3
18
C
Stripe
PROGRAMMING
1,200
[ "data structures", "implementation" ]
C. Stripe
2
64
Once Bob took a paper stripe of *n* squares (the height of the stripe is 1 square). In each square he wrote an integer number, possibly negative. He became interested in how many ways exist to cut this stripe into two pieces so that the sum of numbers from one piece is equal to the sum of numbers from the other piece, ...
The first input line contains integer *n* (1<=≤<=*n*<=≤<=105) — amount of squares in the stripe. The second line contains *n* space-separated numbers — they are the numbers written in the squares of the stripe. These numbers are integer and do not exceed 10000 in absolute value.
Output the amount of ways to cut the stripe into two non-empty pieces so that the sum of numbers from one piece is equal to the sum of numbers from the other piece. Don't forget that it's allowed to cut the stripe along the squares' borders only.
[ "9\n1 5 -6 7 9 -16 0 -2 2\n", "3\n1 1 1\n", "2\n0 0\n" ]
[ "3\n", "0\n", "1\n" ]
none
0
[ { "input": "9\n1 5 -6 7 9 -16 0 -2 2", "output": "3" }, { "input": "3\n1 1 1", "output": "0" }, { "input": "2\n0 0", "output": "1" }, { "input": "4\n100 1 10 111", "output": "1" }, { "input": "10\n0 4 -3 0 -2 2 -3 -3 2 5", "output": "3" }, { "input": "...
1,670,446,961
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
18
2,000
1,331,200
n=int(input()) l=list(map(int,input().split())) c=0 cu=0 for i in range(n-1): cu+=l[i] if cu==sum(l[i+1:]): c+=1 print(c)
Title: Stripe Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Once Bob took a paper stripe of *n* squares (the height of the stripe is 1 square). In each square he wrote an integer number, possibly negative. He became interested in how many ways exist to cut this stripe into two pieces so that ...
```python n=int(input()) l=list(map(int,input().split())) c=0 cu=0 for i in range(n-1): cu+=l[i] if cu==sum(l[i+1:]): c+=1 print(c) ```
0
386
A
Second-Price Auction
PROGRAMMING
800
[ "implementation" ]
null
null
In this problem we consider a special type of an auction, which is called the second-price auction. As in regular auction *n* bidders place a bid which is price a bidder ready to pay. The auction is closed, that is, each bidder secretly informs the organizer of the auction price he is willing to pay. After that, the au...
The first line of the input contains *n* (2<=≤<=*n*<=≤<=1000) — number of bidders. The second line contains *n* distinct integer numbers *p*1,<=*p*2,<=... *p**n*, separated by single spaces (1<=≤<=*p**i*<=≤<=10000), where *p**i* stands for the price offered by the *i*-th bidder.
The single output line should contain two integers: index of the winner and the price he will pay. Indices are 1-based.
[ "2\n5 7\n", "3\n10 2 8\n", "6\n3 8 2 9 4 14\n" ]
[ "2 5\n", "1 8\n", "6 9\n" ]
none
500
[ { "input": "2\n5 7", "output": "2 5" }, { "input": "3\n10 2 8", "output": "1 8" }, { "input": "6\n3 8 2 9 4 14", "output": "6 9" }, { "input": "4\n4707 7586 4221 5842", "output": "2 5842" }, { "input": "5\n3304 4227 4869 6937 6002", "output": "4 6002" }, {...
1,654,765,608
2,147,483,647
Python 3
OK
TESTS
42
46
0
n=int(input()) a=list(map(int,input().split())) c=a.index(max(a))+1 a.remove(max(a)) print(c,max(a))
Title: Second-Price Auction Time Limit: None seconds Memory Limit: None megabytes Problem Description: In this problem we consider a special type of an auction, which is called the second-price auction. As in regular auction *n* bidders place a bid which is price a bidder ready to pay. The auction is closed, that is...
```python n=int(input()) a=list(map(int,input().split())) c=a.index(max(a))+1 a.remove(max(a)) print(c,max(a)) ```
3
527
A
Playing with Paper
PROGRAMMING
1,100
[ "implementation", "math" ]
null
null
One day Vasya was sitting on a not so interesting Maths lesson and making an origami from a rectangular *a* mm <=×<= *b* mm sheet of paper (*a*<=&gt;<=*b*). Usually the first step in making an origami is making a square piece of paper from the rectangular sheet by folding the sheet along the bisector of the right angle...
The first line of the input contains two integers *a*, *b* (1<=≤<=*b*<=&lt;<=*a*<=≤<=1012) — the sizes of the original sheet of paper.
Print a single integer — the number of ships that Vasya will make.
[ "2 1\n", "10 7\n", "1000000000000 1\n" ]
[ "2\n", "6\n", "1000000000000\n" ]
Pictures to the first and second sample test.
500
[ { "input": "2 1", "output": "2" }, { "input": "10 7", "output": "6" }, { "input": "1000000000000 1", "output": "1000000000000" }, { "input": "3 1", "output": "3" }, { "input": "4 1", "output": "4" }, { "input": "3 2", "output": "3" }, { "in...
1,514,005,863
2,147,483,647
Python 3
OK
TESTS
46
62
5,529,600
a,b=map(int,input().split()) if(a==b): print("1") exit(0) count=0 while(a!=b): if(a>b): count+=int(a/b) a=a%b elif(b>a): count+=int(b/a) b=b%a if(a==0 or b==0): break print(count)
Title: Playing with Paper Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya was sitting on a not so interesting Maths lesson and making an origami from a rectangular *a* mm <=×<= *b* mm sheet of paper (*a*<=&gt;<=*b*). Usually the first step in making an origami is making a squ...
```python a,b=map(int,input().split()) if(a==b): print("1") exit(0) count=0 while(a!=b): if(a>b): count+=int(a/b) a=a%b elif(b>a): count+=int(b/a) b=b%a if(a==0 or b==0): break print(count) ```
3
208
A
Dubstep
PROGRAMMING
900
[ "strings" ]
null
null
Vasya works as a DJ in the best Berland nightclub, and he often uses dubstep music in his performance. Recently, he has decided to take a couple of old songs and make dubstep remixes from them. Let's assume that a song consists of some number of words. To make the dubstep remix of this song, Vasya inserts a certain nu...
The input consists of a single non-empty string, consisting only of uppercase English letters, the string's length doesn't exceed 200 characters. It is guaranteed that before Vasya remixed the song, no word contained substring "WUB" in it; Vasya didn't change the word order. It is also guaranteed that initially the son...
Print the words of the initial song that Vasya used to make a dubsteb remix. Separate the words with a space.
[ "WUBWUBABCWUB\n", "WUBWEWUBAREWUBWUBTHEWUBCHAMPIONSWUBMYWUBFRIENDWUB\n" ]
[ "ABC ", "WE ARE THE CHAMPIONS MY FRIEND " ]
In the first sample: "WUBWUBABCWUB" = "WUB" + "WUB" + "ABC" + "WUB". That means that the song originally consisted of a single word "ABC", and all words "WUB" were added by Vasya. In the second sample Vasya added a single word "WUB" between all neighbouring words, in the beginning and in the end, except for words "ARE...
500
[ { "input": "WUBWUBABCWUB", "output": "ABC " }, { "input": "WUBWEWUBAREWUBWUBTHEWUBCHAMPIONSWUBMYWUBFRIENDWUB", "output": "WE ARE THE CHAMPIONS MY FRIEND " }, { "input": "WUBWUBWUBSR", "output": "SR " }, { "input": "RWUBWUBWUBLWUB", "output": "R L " }, { "input": "...
1,677,428,888
2,147,483,647
Python 3
OK
TESTS
71
92
0
''''' ................... ♥ ♥ صلي علي محمد ♥ ♥ ........... ''''' word = str (input()).upper() list_contain_word = [] for i in word : if "WUB" in word: word = word.replace("WUB"," ") for i in word : print(i , end = "")
Title: Dubstep Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya works as a DJ in the best Berland nightclub, and he often uses dubstep music in his performance. Recently, he has decided to take a couple of old songs and make dubstep remixes from them. Let's assume that a song consist...
```python ''''' ................... ♥ ♥ صلي علي محمد ♥ ♥ ........... ''''' word = str (input()).upper() list_contain_word = [] for i in word : if "WUB" in word: word = word.replace("WUB"," ") for i in word : print(i , end = "") ```
3
918
A
Eleven
PROGRAMMING
800
[ "brute force", "implementation" ]
null
null
Eleven wants to choose a new name for herself. As a bunch of geeks, her friends suggested an algorithm to choose a name for her. Eleven wants her name to have exactly *n* characters. Her friend suggested that her name should only consist of uppercase and lowercase letters 'O'. More precisely, they suggested that the ...
The first and only line of input contains an integer *n* (1<=≤<=*n*<=≤<=1000).
Print Eleven's new name on the first and only line of output.
[ "8\n", "15\n" ]
[ "OOOoOooO\n", "OOOoOooOooooOoo\n" ]
none
500
[ { "input": "8", "output": "OOOoOooO" }, { "input": "15", "output": "OOOoOooOooooOoo" }, { "input": "85", "output": "OOOoOooOooooOoooooooOooooooooooooOooooooooooooooooooooOoooooooooooooooooooooooooooooo" }, { "input": "381", "output": "OOOoOooOooooOoooooooOooooooooooooOooo...
1,683,727,710
2,147,483,647
PyPy 3-64
COMPILATION_ERROR
TESTS
0
0
0
n=(int(input)) l=[1] s1=1 s2=1 s=0 while s<n: s=s1+s2 s1=s2 s2=s l.append(s) ch="" for i in range(1,n+1) if i in l ch='O' else ch='o' print(ch)
Title: Eleven Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eleven wants to choose a new name for herself. As a bunch of geeks, her friends suggested an algorithm to choose a name for her. Eleven wants her name to have exactly *n* characters. Her friend suggested that her name should o...
```python n=(int(input)) l=[1] s1=1 s2=1 s=0 while s<n: s=s1+s2 s1=s2 s2=s l.append(s) ch="" for i in range(1,n+1) if i in l ch='O' else ch='o' print(ch) ```
-1
552
B
Vanya and Books
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
Vanya got an important task — he should enumerate books in the library and label each book with its number. Each of the *n* books should be assigned with a number from 1 to *n*. Naturally, distinct books should be assigned distinct numbers. Vanya wants to know how many digits he will have to write down as he labels th...
The first line contains integer *n* (1<=≤<=*n*<=≤<=109) — the number of books in the library.
Print the number of digits needed to number all the books.
[ "13\n", "4\n" ]
[ "17\n", "4\n" ]
Note to the first test. The books get numbers 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, which totals to 17 digits. Note to the second sample. The books get numbers 1, 2, 3, 4, which totals to 4 digits.
1,000
[ { "input": "13", "output": "17" }, { "input": "4", "output": "4" }, { "input": "100", "output": "192" }, { "input": "99", "output": "189" }, { "input": "1000000000", "output": "8888888899" }, { "input": "1000000", "output": "5888896" }, { "...
1,508,703,683
2,147,483,647
Python 3
OK
TESTS
55
62
5,529,600
n=int(input()) l=len(str(n)) #l=l-1 #yo=l-1 #ro=(10**(l-1)-1) ro=int(((9*l-10)*(10**(l-1))+1)/9) #print(int(ro)) if l!=1: yo=n-int('9'*(l-1)) else: yo=n #print(yo) yoyo=yo*l ans=ro+yoyo print(ans)
Title: Vanya and Books Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya got an important task — he should enumerate books in the library and label each book with its number. Each of the *n* books should be assigned with a number from 1 to *n*. Naturally, distinct books should be assig...
```python n=int(input()) l=len(str(n)) #l=l-1 #yo=l-1 #ro=(10**(l-1)-1) ro=int(((9*l-10)*(10**(l-1))+1)/9) #print(int(ro)) if l!=1: yo=n-int('9'*(l-1)) else: yo=n #print(yo) yoyo=yo*l ans=ro+yoyo print(ans) ```
3
461
A
Appleman and Toastman
PROGRAMMING
1,200
[ "greedy", "sortings" ]
null
null
Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all the numbers and adds this sum to the score. Then he gives the group to the Appleman. - Each time Appleman...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=3·105). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=106) — the initial group that is given to Toastman.
Print a single integer — the largest possible score.
[ "3\n3 1 5\n", "1\n10\n" ]
[ "26\n", "10\n" ]
Consider the following situation in the first example. Initially Toastman gets group [3, 1, 5] and adds 9 to the score, then he give the group to Appleman. Appleman splits group [3, 1, 5] into two groups: [3, 5] and [1]. Both of them should be given to Toastman. When Toastman receives group [1], he adds 1 to score and ...
500
[ { "input": "3\n3 1 5", "output": "26" }, { "input": "1\n10", "output": "10" }, { "input": "10\n8 10 2 5 6 2 4 7 2 1", "output": "376" }, { "input": "10\n171308 397870 724672 431255 228496 892002 542924 718337 888642 161821", "output": "40204082" }, { "input": "10\...
1,443,554,119
2,147,483,647
Python 3
OK
TESTS
36
421
20,787,200
count=0 x=input() num=[int(x) for x in input().split()] num.sort() if len(num)==1: print(num[0]) exit() else: for i in range(len(num)-2): count+=num[i]*(i+2) count+=(num[-1]+num[-2])*(len(num)) print(count)
Title: Appleman and Toastman Time Limit: None seconds Memory Limit: None megabytes Problem Description: Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all...
```python count=0 x=input() num=[int(x) for x in input().split()] num.sort() if len(num)==1: print(num[0]) exit() else: for i in range(len(num)-2): count+=num[i]*(i+2) count+=(num[-1]+num[-2])*(len(num)) print(count) ```
3
621
A
Wet Shark and Odd and Even
PROGRAMMING
900
[ "implementation" ]
null
null
Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, that if Wet Shark uses no integers from the *n* integers, the sum is an even integer 0.
The first line of the input contains one integer, *n* (1<=≤<=*n*<=≤<=100<=000). The next line contains *n* space separated integers given to Wet Shark. Each of these integers is in range from 1 to 109, inclusive.
Print the maximum possible even sum that can be obtained if we use some of the given integers.
[ "3\n1 2 3\n", "5\n999999999 999999999 999999999 999999999 999999999\n" ]
[ "6", "3999999996" ]
In the first sample, we can simply take all three integers for a total sum of 6. In the second sample Wet Shark should take any four out of five integers 999 999 999.
500
[ { "input": "3\n1 2 3", "output": "6" }, { "input": "5\n999999999 999999999 999999999 999999999 999999999", "output": "3999999996" }, { "input": "1\n1", "output": "0" }, { "input": "15\n39 52 88 78 46 95 84 98 55 3 68 42 6 18 98", "output": "870" }, { "input": "15\...
1,658,571,375
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
108
7,065,600
n = int(input()) arr = map(int, input().split(" ")) res = sum = 0 for a in arr: sum += a if sum % 2 == 0: res = max(res, sum) print(res)
Title: Wet Shark and Odd and Even Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today, Wet Shark is given *n* integers. Using any of these integers no more than once, Wet Shark wants to get maximum possible even (divisible by 2) sum. Please, calculate this value for Wet Shark. Note, th...
```python n = int(input()) arr = map(int, input().split(" ")) res = sum = 0 for a in arr: sum += a if sum % 2 == 0: res = max(res, sum) print(res) ```
0
189
A
Cut Ribbon
PROGRAMMING
1,300
[ "brute force", "dp" ]
null
null
Polycarpus has a ribbon, its length is *n*. He wants to cut the ribbon in a way that fulfils the following two conditions: - After the cutting each ribbon piece should have length *a*, *b* or *c*. - After the cutting the number of ribbon pieces should be maximum. Help Polycarpus and find the number of ribbon piece...
The first line contains four space-separated integers *n*, *a*, *b* and *c* (1<=≤<=*n*,<=*a*,<=*b*,<=*c*<=≤<=4000) — the length of the original ribbon and the acceptable lengths of the ribbon pieces after the cutting, correspondingly. The numbers *a*, *b* and *c* can coincide.
Print a single number — the maximum possible number of ribbon pieces. It is guaranteed that at least one correct ribbon cutting exists.
[ "5 5 3 2\n", "7 5 5 2\n" ]
[ "2\n", "2\n" ]
In the first example Polycarpus can cut the ribbon in such way: the first piece has length 2, the second piece has length 3. In the second example Polycarpus can cut the ribbon in such way: the first piece has length 5, the second piece has length 2.
500
[ { "input": "5 5 3 2", "output": "2" }, { "input": "7 5 5 2", "output": "2" }, { "input": "4 4 4 4", "output": "1" }, { "input": "1 1 1 1", "output": "1" }, { "input": "4000 1 2 3", "output": "4000" }, { "input": "4000 3 4 5", "output": "1333" }, ...
1,675,003,924
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
x = input().split() target = int(x[0]) memo = {} for i in range(1,len(x)): remainder = target - int(x[i]) memo[remainder] = x[i] ans = 0 for i in range(1,len(x)): if int(x[i]) in memo: ans += 1 memo.pop(int(x[i])) print(ans)
Title: Cut Ribbon Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus has a ribbon, its length is *n*. He wants to cut the ribbon in a way that fulfils the following two conditions: - After the cutting each ribbon piece should have length *a*, *b* or *c*. - After the cutting the...
```python x = input().split() target = int(x[0]) memo = {} for i in range(1,len(x)): remainder = target - int(x[i]) memo[remainder] = x[i] ans = 0 for i in range(1,len(x)): if int(x[i]) in memo: ans += 1 memo.pop(int(x[i])) print(ans) ```
0
859
C
Pie Rules
PROGRAMMING
1,500
[ "dp", "games" ]
null
null
You may have heard of the pie rule before. It states that if two people wish to fairly share a slice of pie, one person should cut the slice in half, and the other person should choose who gets which slice. Alice and Bob have many slices of pie, and rather than cutting the slices in half, each individual slice will be ...
Input will begin with an integer *N* (1<=≤<=*N*<=≤<=50), the number of slices of pie. Following this is a line with *N* integers indicating the sizes of the slices (each between 1 and 100000, inclusive), in the order in which they must be handed out.
Print two integers. First, the sum of the sizes of slices eaten by Alice, then the sum of the sizes of the slices eaten by Bob, assuming both players make their decisions optimally.
[ "3\n141 592 653\n", "5\n10 21 10 21 10\n" ]
[ "653 733\n", "31 41\n" ]
In the first example, Bob takes the size 141 slice for himself and gives the decider token to Alice. Then Alice gives the size 592 slice to Bob and keeps the decider token for herself, so that she can then give the size 653 slice to herself.
1,000
[ { "input": "3\n141 592 653", "output": "653 733" }, { "input": "5\n10 21 10 21 10", "output": "31 41" }, { "input": "1\n100000", "output": "0 100000" }, { "input": "50\n100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 100000 10...
1,507,226,202
2,147,483,647
PyPy 3
OK
TESTS
70
108
307,200
n = int(input()) d = [[0 for i in range(2)] for i in range(n)] w = [int(z) for z in input().split()] w.reverse() d[0][1] = w[0] d[0][0] = 0 summ = w[0] for i in range(1,n): summ += w[i] d[i][1] = max(d[i - 1][1], d[i - 1][0] + w[i]) d[i][0] = summ - d[i][1] print(min(d[n - 1][1],d[n - 1][0]), sum...
Title: Pie Rules Time Limit: None seconds Memory Limit: None megabytes Problem Description: You may have heard of the pie rule before. It states that if two people wish to fairly share a slice of pie, one person should cut the slice in half, and the other person should choose who gets which slice. Alice and Bob have...
```python n = int(input()) d = [[0 for i in range(2)] for i in range(n)] w = [int(z) for z in input().split()] w.reverse() d[0][1] = w[0] d[0][0] = 0 summ = w[0] for i in range(1,n): summ += w[i] d[i][1] = max(d[i - 1][1], d[i - 1][0] + w[i]) d[i][0] = summ - d[i][1] print(min(d[n - 1][1],d[n - 1...
3
626
C
Block Towers
PROGRAMMING
1,600
[ "brute force", "greedy", "math", "number theory" ]
null
null
Students in a class are making towers of blocks. Each student makes a (non-zero) tower by stacking pieces lengthwise on top of each other. *n* of the students use pieces made of two blocks and *m* of the students use pieces made of three blocks. The students don’t want to use too many blocks, but they also want to be ...
The first line of the input contains two space-separated integers *n* and *m* (0<=≤<=*n*,<=*m*<=≤<=1<=000<=000, *n*<=+<=*m*<=&gt;<=0) — the number of students using two-block pieces and the number of students using three-block pieces, respectively.
Print a single integer, denoting the minimum possible height of the tallest tower.
[ "1 3\n", "3 2\n", "5 0\n" ]
[ "9\n", "8\n", "10\n" ]
In the first case, the student using two-block pieces can make a tower of height 4, and the students using three-block pieces can make towers of height 3, 6, and 9 blocks. The tallest tower has a height of 9 blocks. In the second case, the students can make towers of heights 2, 4, and 8 with two-block pieces and tower...
1,000
[ { "input": "1 3", "output": "9" }, { "input": "3 2", "output": "8" }, { "input": "5 0", "output": "10" }, { "input": "4 2", "output": "9" }, { "input": "0 1000000", "output": "3000000" }, { "input": "1000000 1", "output": "2000000" }, { "in...
1,507,581,876
2,147,483,647
Python 3
OK
TESTS
78
62
0
n, m = map(int, input().split()) k = n + m a = [6, 3][m % 2] + 6 * ((m - 1) // 2) b = [6, 2, 4][n % 3] + 6 * ((n - 1) // 3) c = [6, 2, 3, 4][k % 4] + 6 * ((k - 1) // 4) print(a if n < m else b if n > 3 * m else c)
Title: Block Towers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Students in a class are making towers of blocks. Each student makes a (non-zero) tower by stacking pieces lengthwise on top of each other. *n* of the students use pieces made of two blocks and *m* of the students use piece...
```python n, m = map(int, input().split()) k = n + m a = [6, 3][m % 2] + 6 * ((m - 1) // 2) b = [6, 2, 4][n % 3] + 6 * ((n - 1) // 3) c = [6, 2, 3, 4][k % 4] + 6 * ((k - 1) // 4) print(a if n < m else b if n > 3 * m else c) ```
3
365
A
Good Number
PROGRAMMING
1,100
[ "implementation" ]
null
null
Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number every time it occurs in array *a*).
The first line contains integers *n* and *k* (1<=≤<=*n*<=≤<=100, 0<=≤<=*k*<=≤<=9). The *i*-th of the following *n* lines contains integer *a**i* without leading zeroes (1<=≤<=*a**i*<=≤<=109).
Print a single integer — the number of *k*-good numbers in *a*.
[ "10 6\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n", "2 1\n1\n10\n" ]
[ "10\n", "1\n" ]
none
500
[ { "input": "10 6\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560\n1234560", "output": "10" }, { "input": "2 1\n1\n10", "output": "1" }, { "input": "1 0\n1000000000", "output": "1" }, { "input": "1 1\n1000000000", "output": "1" }, { ...
1,644,544,276
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
nnumbers = list(map(int,input().split())) ccount=0 a=[] k = nnumbers[-1] for i in range(0, nnumbers[0]): n=int(input()) a.append(n) for i in a: i = str(i) if int(max(i)) <= k and str(0) in i: ccount+=1 print(ccount)
Title: Good Number Time Limit: None seconds Memory Limit: None megabytes Problem Description: Let's call a number *k*-good if it contains all digits not exceeding *k* (0,<=...,<=*k*). You've got a number *k* and an array *a* containing *n* numbers. Find out how many *k*-good numbers are in *a* (count each number eve...
```python nnumbers = list(map(int,input().split())) ccount=0 a=[] k = nnumbers[-1] for i in range(0, nnumbers[0]): n=int(input()) a.append(n) for i in a: i = str(i) if int(max(i)) <= k and str(0) in i: ccount+=1 print(ccount) ```
0
653
A
Bear and Three Balls
PROGRAMMING
900
[ "brute force", "implementation", "sortings" ]
null
null
Limak is a little polar bear. He has *n* balls, the *i*-th ball has size *t**i*. Limak wants to give one ball to each of his three friends. Giving gifts isn't easy — there are two rules Limak must obey to make friends happy: - No two friends can get balls of the same size. - No two friends can get balls of sizes th...
The first line of the input contains one integer *n* (3<=≤<=*n*<=≤<=50) — the number of balls Limak has. The second line contains *n* integers *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=1000) where *t**i* denotes the size of the *i*-th ball.
Print "YES" (without quotes) if Limak can choose three balls of distinct sizes, such that any two of them differ by no more than 2. Otherwise, print "NO" (without quotes).
[ "4\n18 55 16 17\n", "6\n40 41 43 44 44 44\n", "8\n5 972 3 4 1 4 970 971\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first sample, there are 4 balls and Limak is able to choose three of them to satisfy the rules. He must must choose balls with sizes 18, 16 and 17. In the second sample, there is no way to give gifts to three friends without breaking the rules. In the third sample, there is even more than one way to choose bal...
500
[ { "input": "4\n18 55 16 17", "output": "YES" }, { "input": "6\n40 41 43 44 44 44", "output": "NO" }, { "input": "8\n5 972 3 4 1 4 970 971", "output": "YES" }, { "input": "3\n959 747 656", "output": "NO" }, { "input": "4\n1 2 2 3", "output": "YES" }, { ...
1,683,003,879
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
46
0
n = int(input()) a = list(map(int, input().split())) a.sort() kol = 0 for i in range(n-3): if a[i] != a[i+1] and a[i+1] != a[i+2]: if abs(a[i] - a[i+1]) <=2 and abs(a[i+1] - a[i+2]) <= 2: kol += 1 if kol == 1: print('YES') exit() print('NO') exit()
Title: Bear and Three Balls Time Limit: None seconds Memory Limit: None megabytes Problem Description: Limak is a little polar bear. He has *n* balls, the *i*-th ball has size *t**i*. Limak wants to give one ball to each of his three friends. Giving gifts isn't easy — there are two rules Limak must obey to make fri...
```python n = int(input()) a = list(map(int, input().split())) a.sort() kol = 0 for i in range(n-3): if a[i] != a[i+1] and a[i+1] != a[i+2]: if abs(a[i] - a[i+1]) <=2 and abs(a[i+1] - a[i+2]) <= 2: kol += 1 if kol == 1: print('YES') exit() print('NO') exit() ``...
0
801
A
Vicious Keyboard
PROGRAMMING
1,100
[ "brute force" ]
null
null
Tonio has a keyboard with only two letters, "V" and "K". One day, he has typed out a string *s* with only these two letters. He really likes it when the string "VK" appears, so he wishes to change at most one letter in the string (or do no changes) to maximize the number of occurrences of that string. Compute the maxi...
The first line will contain a string *s* consisting only of uppercase English letters "V" and "K" with length not less than 1 and not greater than 100.
Output a single integer, the maximum number of times "VK" can appear as a substring of the given string after changing at most one character.
[ "VK\n", "VV\n", "V\n", "VKKKKKKKKKVVVVVVVVVK\n", "KVKV\n" ]
[ "1\n", "1\n", "0\n", "3\n", "1\n" ]
For the first case, we do not change any letters. "VK" appears once, which is the maximum number of times it could appear. For the second case, we can change the second character from a "V" to a "K". This will give us the string "VK". This has one occurrence of the string "VK" as a substring. For the fourth case, we ...
500
[ { "input": "VK", "output": "1" }, { "input": "VV", "output": "1" }, { "input": "V", "output": "0" }, { "input": "VKKKKKKKKKVVVVVVVVVK", "output": "3" }, { "input": "KVKV", "output": "1" }, { "input": "VKKVVVKVKVK", "output": "5" }, { "input...
1,493,657,254
274
Python 3
WRONG_ANSWER
TESTS
1
46
5,529,600
s = input() V = "V" K = "K" res = 0 flag = False for i, c in enumerate(list(s)): if i == 0: continue if s[i] == K and s[i-1] == V: res += 1 if i == len(s)-1: continue if s[i] == s[i-1] == s[i+1]: flag = True print(res + (1 if flag else 0))
Title: Vicious Keyboard Time Limit: None seconds Memory Limit: None megabytes Problem Description: Tonio has a keyboard with only two letters, "V" and "K". One day, he has typed out a string *s* with only these two letters. He really likes it when the string "VK" appears, so he wishes to change at most one letter i...
```python s = input() V = "V" K = "K" res = 0 flag = False for i, c in enumerate(list(s)): if i == 0: continue if s[i] == K and s[i-1] == V: res += 1 if i == len(s)-1: continue if s[i] == s[i-1] == s[i+1]: flag = True print(res + (1 if flag else 0)) ```
0
757
C
Felicity is Coming!
PROGRAMMING
1,900
[ "data structures", "hashing", "sortings", "strings" ]
null
null
It's that time of the year, Felicity is around the corner and you can see people celebrating all around the Himalayan region. The Himalayan region has *n* gyms. The *i*-th gym has *g**i* Pokemon in it. There are *m* distinct Pokemon types in the Himalayan region numbered from 1 to *m*. There is a special evolution camp...
The first line contains two integers *n* and *m* (1<=≤<=*n*<=≤<=105, 1<=≤<=*m*<=≤<=106) — the number of gyms and the number of Pokemon types. The next *n* lines contain the description of Pokemons in the gyms. The *i*-th of these lines begins with the integer *g**i* (1<=≤<=*g**i*<=≤<=105) — the number of Pokemon in th...
Output the number of valid evolution plans modulo 109<=+<=7.
[ "2 3\n2 1 2\n2 2 3\n", "1 3\n3 1 2 3\n", "2 4\n2 1 2\n3 2 3 4\n", "2 2\n3 2 2 1\n2 1 2\n", "3 7\n2 1 2\n2 3 4\n3 5 6 7\n" ]
[ "1\n", "6\n", "2\n", "1\n", "24\n" ]
In the first case, the only possible evolution plan is: In the second case, any permutation of (1,  2,  3) is valid. In the third case, there are two possible plans: In the fourth case, the only possible evolution plan is:
1,500
[ { "input": "2 3\n2 1 2\n2 2 3", "output": "1" }, { "input": "1 3\n3 1 2 3", "output": "6" }, { "input": "2 4\n2 1 2\n3 2 3 4", "output": "2" }, { "input": "2 2\n3 2 2 1\n2 1 2", "output": "1" }, { "input": "3 7\n2 1 2\n2 3 4\n3 5 6 7", "output": "24" }, { ...
1,484,983,192
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
from array import array from collections import Counter n, m = [int(x) for x in input().split()] inv = array('Q', (0 for t in range(m))) for i in range(n): tcs = Counter([int(x) for x in input().split()][1:]) for t, c in tcs.iteritems(): inv[t-1] = 0xffffffffffffffff & (inv[t-1] + ...
Title: Felicity is Coming! Time Limit: None seconds Memory Limit: None megabytes Problem Description: It's that time of the year, Felicity is around the corner and you can see people celebrating all around the Himalayan region. The Himalayan region has *n* gyms. The *i*-th gym has *g**i* Pokemon in it. There are *m*...
```python from array import array from collections import Counter n, m = [int(x) for x in input().split()] inv = array('Q', (0 for t in range(m))) for i in range(n): tcs = Counter([int(x) for x in input().split()][1:]) for t, c in tcs.iteritems(): inv[t-1] = 0xffffffffffffffff & (inv[t-1] + ...
-1
734
A
Anton and Danik
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Anton likes to play chess, and so does his friend Danik. Once they have played *n* games in a row. For each game it's known who was the winner — Anton or Danik. None of the games ended with a tie. Now Anton wonders, who won more games, he or Danik? Help him determine this.
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the number of games played. The second line contains a string *s*, consisting of *n* uppercase English letters 'A' and 'D' — the outcome of each of the games. The *i*-th character of the string is equal to 'A' if the Anton won the *i*...
If Anton won more games than Danik, print "Anton" (without quotes) in the only line of the output. If Danik won more games than Anton, print "Danik" (without quotes) in the only line of the output. If Anton and Danik won the same number of games, print "Friendship" (without quotes).
[ "6\nADAAAA\n", "7\nDDDAADA\n", "6\nDADADA\n" ]
[ "Anton\n", "Danik\n", "Friendship\n" ]
In the first sample, Anton won 6 games, while Danik — only 1. Hence, the answer is "Anton". In the second sample, Anton won 3 games and Danik won 4 games, so the answer is "Danik". In the third sample, both Anton and Danik won 3 games and the answer is "Friendship".
500
[ { "input": "6\nADAAAA", "output": "Anton" }, { "input": "7\nDDDAADA", "output": "Danik" }, { "input": "6\nDADADA", "output": "Friendship" }, { "input": "10\nDDDDADDADD", "output": "Danik" }, { "input": "40\nAAAAAAAAADDAAAAAAAAAAADADDAAAAAAAAAAADAA", "output": ...
1,695,374,355
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
31
0
n=int(input()) s=input() Ap=0 Dp=0 for i in s: if i=='A': Ap+=1 else: Dp+=1 if Ap==Dp: print("FRENDSHIP") elif Ap>Dp: print("Anton") else: print("Danik")
Title: Anton and Danik Time Limit: None seconds Memory Limit: None megabytes Problem Description: Anton likes to play chess, and so does his friend Danik. Once they have played *n* games in a row. For each game it's known who was the winner — Anton or Danik. None of the games ended with a tie. Now Anton wonders, w...
```python n=int(input()) s=input() Ap=0 Dp=0 for i in s: if i=='A': Ap+=1 else: Dp+=1 if Ap==Dp: print("FRENDSHIP") elif Ap>Dp: print("Anton") else: print("Danik") ```
0
284
A
Cows and Primitive Roots
PROGRAMMING
1,400
[ "implementation", "math", "number theory" ]
null
null
The cows have just learned what a primitive root is! Given a prime *p*, a primitive root is an integer *x* (1<=≤<=*x*<=&lt;<=*p*) such that none of integers *x*<=-<=1,<=*x*2<=-<=1,<=...,<=*x**p*<=-<=2<=-<=1 are divisible by *p*, but *x**p*<=-<=1<=-<=1 is. Unfortunately, computing primitive roots can be time consumin...
The input contains a single line containing an integer *p* (2<=≤<=*p*<=&lt;<=2000). It is guaranteed that *p* is a prime.
Output on a single line the number of primitive roots .
[ "3\n", "5\n" ]
[ "1\n", "2\n" ]
The only primitive root <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/3722298ba062e95b18705d1253eb4e5d31e3b2d1.png" style="max-width: 100.0%;max-height: 100.0%;"/> is 2. The primitive roots <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/1d85c6a17ef1c42b53cf9...
500
[ { "input": "3", "output": "1" }, { "input": "5", "output": "2" }, { "input": "7", "output": "2" }, { "input": "11", "output": "4" }, { "input": "17", "output": "8" }, { "input": "19", "output": "6" }, { "input": "1583", "output": "672" ...
1,555,838,430
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
1,058
0
n=int(input()) ro=0 for i in range(2,n): c=1 for h in range(1,n): c=(c*i)%n if(c%n==1): if(h==n-1): ro+=1 else: break print(ro)
Title: Cows and Primitive Roots Time Limit: None seconds Memory Limit: None megabytes Problem Description: The cows have just learned what a primitive root is! Given a prime *p*, a primitive root is an integer *x* (1<=≤<=*x*<=&lt;<=*p*) such that none of integers *x*<=-<=1,<=*x*2<=-<=1,<=...,<=*x**p*<=-<=2<=-<=1 ar...
```python n=int(input()) ro=0 for i in range(2,n): c=1 for h in range(1,n): c=(c*i)%n if(c%n==1): if(h==n-1): ro+=1 else: break print(ro) ```
0
724
B
Batch Sort
PROGRAMMING
1,500
[ "brute force", "greedy", "implementation", "math" ]
null
null
You are given a table consisting of *n* rows and *m* columns. Numbers in each row form a permutation of integers from 1 to *m*. You are allowed to pick two elements in one row and swap them, but no more than once for each row. Also, no more than once you are allowed to pick two columns and swap them. Thus, you are al...
The first line of the input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=20) — the number of rows and the number of columns in the given table. Each of next *n* lines contains *m* integers — elements of the table. It's guaranteed that numbers in each line form a permutation of integers from 1 to *m*.
If there is a way to obtain the identity permutation in each row by following the given rules, print "YES" (without quotes) in the only line of the output. Otherwise, print "NO" (without quotes).
[ "2 4\n1 3 2 4\n1 3 4 2\n", "4 4\n1 2 3 4\n2 3 4 1\n3 4 1 2\n4 1 2 3\n", "3 6\n2 1 3 4 5 6\n1 2 4 3 5 6\n1 2 3 4 6 5\n" ]
[ "YES\n", "NO\n", "YES\n" ]
In the first sample, one can act in the following way: 1. Swap second and third columns. Now the table is <center class="tex-equation">1 2 3 4</center> <center class="tex-equation">1 4 3 2</center> 1. In the second row, swap the second and the fourth elements. Now the table is <center class="tex-equation">1 2 3 4</...
1,000
[ { "input": "2 4\n1 3 2 4\n1 3 4 2", "output": "YES" }, { "input": "4 4\n1 2 3 4\n2 3 4 1\n3 4 1 2\n4 1 2 3", "output": "NO" }, { "input": "3 6\n2 1 3 4 5 6\n1 2 4 3 5 6\n1 2 3 4 6 5", "output": "YES" }, { "input": "3 10\n1 2 3 4 5 6 7 10 9 8\n5 2 3 4 1 6 7 8 9 10\n1 2 3 4 5 6...
1,476,020,128
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
4,608,000
n, m = map(int, input().split()) t = [[]for i in range(m)] for _ in range(n): for i, v in zip(range(m), map(int, input().split())): t[i] += [v] pattern = list(range(1, m + 1)) for i in range(m): for j in range(i, m): t[i], t[j] = t[j], t[i] if all(3 > sum(t[i][j] != pattern[i] for i in range(m)) for j in range(...
Title: Batch Sort Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a table consisting of *n* rows and *m* columns. Numbers in each row form a permutation of integers from 1 to *m*. You are allowed to pick two elements in one row and swap them, but no more than once for each ...
```python n, m = map(int, input().split()) t = [[]for i in range(m)] for _ in range(n): for i, v in zip(range(m), map(int, input().split())): t[i] += [v] pattern = list(range(1, m + 1)) for i in range(m): for j in range(i, m): t[i], t[j] = t[j], t[i] if all(3 > sum(t[i][j] != pattern[i] for i in range(m)) for j...
0
4
C
Registration System
PROGRAMMING
1,300
[ "data structures", "hashing", "implementation" ]
C. Registration system
5
64
A new e-mail service "Berlandesk" is going to be opened in Berland in the near future. The site administration wants to launch their project as soon as possible, that's why they ask you to help. You're suggested to implement the prototype of site registration system. The system should work on the following principle. ...
The first line contains number *n* (1<=≤<=*n*<=≤<=105). The following *n* lines contain the requests to the system. Each request is a non-empty line, and consists of not more than 32 characters, which are all lowercase Latin letters.
Print *n* lines, which are system responses to the requests: OK in case of successful registration, or a prompt with a new name, if the requested name is already taken.
[ "4\nabacaba\nacaba\nabacaba\nacab\n", "6\nfirst\nfirst\nsecond\nsecond\nthird\nthird\n" ]
[ "OK\nOK\nabacaba1\nOK\n", "OK\nfirst1\nOK\nsecond1\nOK\nthird1\n" ]
none
0
[ { "input": "4\nabacaba\nacaba\nabacaba\nacab", "output": "OK\nOK\nabacaba1\nOK" }, { "input": "6\nfirst\nfirst\nsecond\nsecond\nthird\nthird", "output": "OK\nfirst1\nOK\nsecond1\nOK\nthird1" }, { "input": "1\nn", "output": "OK" }, { "input": "2\nu\nu", "output": "OK\nu1" ...
1,693,221,799
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
6
5,000
8,089,600
n = int(input()) l = [] s = [0]*n c = 0 for _ in range(n): a = input() if a in l: s[c] = f"{a}{l.count(a)}" else: s[c] = "OK" l.append(a) c += 1 print('\n'.join(map(str, s)))
Title: Registration System Time Limit: 5 seconds Memory Limit: 64 megabytes Problem Description: A new e-mail service "Berlandesk" is going to be opened in Berland in the near future. The site administration wants to launch their project as soon as possible, that's why they ask you to help. You're suggested to imple...
```python n = int(input()) l = [] s = [0]*n c = 0 for _ in range(n): a = input() if a in l: s[c] = f"{a}{l.count(a)}" else: s[c] = "OK" l.append(a) c += 1 print('\n'.join(map(str, s))) ```
0
56
A
Bar
PROGRAMMING
1,000
[ "implementation" ]
A. Bar
2
256
According to Berland laws it is only allowed to sell alcohol to people not younger than 18 years. Vasya's job is to monitor the law's enforcement. Tonight he entered a bar and saw *n* people sitting there. For every one of them Vasya happened to determine either the age or the drink the person is having. Vasya can chec...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100) which is the number of the bar's clients. Then follow *n* lines, each describing one visitor. A line either contains his age (an integer from 0 to 1000) or his drink (a string of capital Latin letters from 1 to 100 in length). It is guaranteed that the input da...
Print a single number which is the number of people Vasya should check to guarantee the law enforcement.
[ "5\n18\nVODKA\nCOKE\n19\n17\n" ]
[ "2\n" ]
In the sample test the second and fifth clients should be checked.
500
[ { "input": "5\n18\nVODKA\nCOKE\n19\n17", "output": "2" }, { "input": "2\n2\nGIN", "output": "2" }, { "input": "3\nWHISKEY\n3\nGIN", "output": "3" }, { "input": "4\n813\nIORBQITQXMPTFAEMEQDQIKFGKGOTNKTOSZCBRPXJLUKVLVHJYNRUJXK\nRUM\nRHVRWGODYWWTYZFLFYKCVUFFRTQDINKNWPKFHZBFWBHWI...
1,509,259,981
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
92
0
n=int(input()) c=0 for i in range(0,n): p=input() if ord(p[0])>=65 and ord(p[0])<=96 : pass else: p=int(p) if p>=18 : c+=1 print(c)
Title: Bar Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: According to Berland laws it is only allowed to sell alcohol to people not younger than 18 years. Vasya's job is to monitor the law's enforcement. Tonight he entered a bar and saw *n* people sitting there. For every one of them Vasya h...
```python n=int(input()) c=0 for i in range(0,n): p=input() if ord(p[0])>=65 and ord(p[0])<=96 : pass else: p=int(p) if p>=18 : c+=1 print(c) ```
0
831
A
Unimodal Array
PROGRAMMING
1,000
[ "implementation" ]
null
null
Array of integers is unimodal, if: - it is strictly increasing in the beginning; - after that it is constant; - after that it is strictly decreasing. The first block (increasing) and the last block (decreasing) may be absent. It is allowed that both of this blocks are absent. For example, the following three arra...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in the array. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1<=000) — the elements of the array.
Print "YES" if the given array is unimodal. Otherwise, print "NO". You can output each letter in any case (upper or lower).
[ "6\n1 5 5 5 4 2\n", "5\n10 20 30 20 10\n", "4\n1 2 1 2\n", "7\n3 3 3 3 3 3 3\n" ]
[ "YES\n", "YES\n", "NO\n", "YES\n" ]
In the first example the array is unimodal, because it is strictly increasing in the beginning (from position 1 to position 2, inclusively), that it is constant (from position 2 to position 4, inclusively) and then it is strictly decreasing (from position 4 to position 6, inclusively).
500
[ { "input": "6\n1 5 5 5 4 2", "output": "YES" }, { "input": "5\n10 20 30 20 10", "output": "YES" }, { "input": "4\n1 2 1 2", "output": "NO" }, { "input": "7\n3 3 3 3 3 3 3", "output": "YES" }, { "input": "6\n5 7 11 11 2 1", "output": "YES" }, { "input":...
1,640,892,605
2,147,483,647
Python 3
OK
TESTS
101
46
0
n=int(input()) a=list(map(int,input().split())) c=0 while c<n-1 and a[c]<a[c+1]: c=c+1 while c<n-1 and a[c]==a[c+1]: c=c+1 while c<n-1 and a[c]>a[c+1]: c=c+1 d=n-1 if c==d: print('YES') else: print('NO')
Title: Unimodal Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Array of integers is unimodal, if: - it is strictly increasing in the beginning; - after that it is constant; - after that it is strictly decreasing. The first block (increasing) and the last block (decreasing) may ...
```python n=int(input()) a=list(map(int,input().split())) c=0 while c<n-1 and a[c]<a[c+1]: c=c+1 while c<n-1 and a[c]==a[c+1]: c=c+1 while c<n-1 and a[c]>a[c+1]: c=c+1 d=n-1 if c==d: print('YES') else: print('NO') ```
3
463
D
Gargari and Permutations
PROGRAMMING
1,900
[ "dfs and similar", "dp", "graphs", "implementation" ]
null
null
Gargari got bored to play with the bishops and now, after solving the problem about them, he is trying to do math homework. In a math book he have found *k* permutations. Each of them consists of numbers 1,<=2,<=...,<=*n* in some order. Now he should find the length of the longest common subsequence of these permutatio...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=1000; 2<=≤<=*k*<=≤<=5). Each of the next *k* lines contains integers 1,<=2,<=...,<=*n* in some order — description of the current permutation.
Print the length of the longest common subsequence.
[ "4 3\n1 4 2 3\n4 1 2 3\n1 2 4 3\n" ]
[ "3\n" ]
The answer for the first test sample is subsequence [1, 2, 3].
2,000
[ { "input": "4 3\n1 4 2 3\n4 1 2 3\n1 2 4 3", "output": "3" }, { "input": "6 3\n2 5 1 4 6 3\n5 1 4 3 2 6\n5 4 2 6 3 1", "output": "3" }, { "input": "41 4\n24 15 17 35 13 41 4 14 23 5 8 16 21 18 30 36 6 22 11 29 26 1 40 31 7 3 32 10 28 38 12 20 39 37 34 19 33 27 2 25 9\n22 13 25 24 38 35 2...
1,623,054,215
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
140
1,536,000
import sys input=sys.stdin.readline n,k=map(int,input().split()) a=[list(map(int,input().split())) for i in range(k)] g=[[] for i in range(n+1)] for i in range(n): x=a[0][i] s1=set(a[0][i+1:]) idx2=a[1].index(x) s2=set(a[1][idx2+1:]) idx3=a[2].index(x) s3=set(a[2][idx3+1:]) s=s1&...
Title: Gargari and Permutations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Gargari got bored to play with the bishops and now, after solving the problem about them, he is trying to do math homework. In a math book he have found *k* permutations. Each of them consists of numbers 1,<=2,...
```python import sys input=sys.stdin.readline n,k=map(int,input().split()) a=[list(map(int,input().split())) for i in range(k)] g=[[] for i in range(n+1)] for i in range(n): x=a[0][i] s1=set(a[0][i+1:]) idx2=a[1].index(x) s2=set(a[1][idx2+1:]) idx3=a[2].index(x) s3=set(a[2][idx3+1:]) ...
0
731
A
Night at the Museum
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devise that allows to "print" the text of a plastic tape. Text is printed sequentially, character by character...
The only line of input contains the name of some exhibit — the non-empty string consisting of no more than 100 characters. It's guaranteed that the string consists of only lowercase English letters.
Print one integer — the minimum number of rotations of the wheel, required to print the name given in the input.
[ "zeus\n", "map\n", "ares\n" ]
[ "18\n", "35\n", "34\n" ]
To print the string from the first sample it would be optimal to perform the following sequence of rotations: 1. from 'a' to 'z' (1 rotation counterclockwise), 1. from 'z' to 'e' (5 clockwise rotations), 1. from 'e' to 'u' (10 rotations counterclockwise), 1. from 'u' to 's' (2 counterclockwise rotations).
500
[ { "input": "zeus", "output": "18" }, { "input": "map", "output": "35" }, { "input": "ares", "output": "34" }, { "input": "l", "output": "11" }, { "input": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuv", "...
1,636,785,002
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
5
218
42,803,200
import math import itertools import random s=input() o=0 q=0 ans='abcdefghijklmnopqrstuvwxyz' if len(s)==1: w=ans.index(s[0]) print(w) else: for l in s: ans=ans[o:]+ans[:o] a=ans.index(l)+1 o=a p=min(len(ans)-a,a) q+=p if 'a' in s: ...
Title: Night at the Museum Time Limit: None seconds Memory Limit: None megabytes Problem Description: Grigoriy, like the hero of one famous comedy film, found a job as a night security guard at the museum. At first night he received embosser and was to take stock of the whole exposition. Embosser is a special devis...
```python import math import itertools import random s=input() o=0 q=0 ans='abcdefghijklmnopqrstuvwxyz' if len(s)==1: w=ans.index(s[0]) print(w) else: for l in s: ans=ans[o:]+ans[:o] a=ans.index(l)+1 o=a p=min(len(ans)-a,a) q+=p if 'a' i...
0
714
A
Meeting of Old Friends
PROGRAMMING
1,100
[ "implementation", "math" ]
null
null
Today an outstanding event is going to happen in the forest — hedgehog Filya will come to his old fried Sonya! Sonya is an owl and she sleeps during the day and stay awake from minute *l*1 to minute *r*1 inclusive. Also, during the minute *k* she prinks and is unavailable for Filya. Filya works a lot and he plans to ...
The only line of the input contains integers *l*1, *r*1, *l*2, *r*2 and *k* (1<=≤<=*l*1,<=*r*1,<=*l*2,<=*r*2,<=*k*<=≤<=1018, *l*1<=≤<=*r*1, *l*2<=≤<=*r*2), providing the segments of time for Sonya and Filya and the moment of time when Sonya prinks.
Print one integer — the number of minutes Sonya and Filya will be able to spend together.
[ "1 10 9 20 1\n", "1 100 50 200 75\n" ]
[ "2\n", "50\n" ]
In the first sample, they will be together during minutes 9 and 10. In the second sample, they will be together from minute 50 to minute 74 and from minute 76 to minute 100.
500
[ { "input": "1 10 9 20 1", "output": "2" }, { "input": "1 100 50 200 75", "output": "50" }, { "input": "6 6 5 8 9", "output": "1" }, { "input": "1 1000000000 1 1000000000 1", "output": "999999999" }, { "input": "5 100 8 8 8", "output": "0" }, { "input":...
1,564,804,883
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
108
0
l11, l12, l21, l22, prink = [int(x) for x in input().split()] begin = max(l11, l21) ends = min(l12, l22) meeting = max(0, ends - begin + 1) meeting += begin <= prink <= ends print(meeting)
Title: Meeting of Old Friends Time Limit: None seconds Memory Limit: None megabytes Problem Description: Today an outstanding event is going to happen in the forest — hedgehog Filya will come to his old fried Sonya! Sonya is an owl and she sleeps during the day and stay awake from minute *l*1 to minute *r*1 inclusi...
```python l11, l12, l21, l22, prink = [int(x) for x in input().split()] begin = max(l11, l21) ends = min(l12, l22) meeting = max(0, ends - begin + 1) meeting += begin <= prink <= ends print(meeting) ```
0
622
B
The Time
PROGRAMMING
900
[ "implementation" ]
null
null
You are given the current time in 24-hour format hh:mm. Find and print the time after *a* minutes. Note that you should find only the time after *a* minutes, see the examples to clarify the problem statement. You can read more about 24-hour format here [https://en.wikipedia.org/wiki/24-hour_clock](https://en.wikipedi...
The first line contains the current time in the format hh:mm (0<=≤<=*hh*<=&lt;<=24,<=0<=≤<=*mm*<=&lt;<=60). The hours and the minutes are given with two digits (the hours or the minutes less than 10 are given with the leading zeroes). The second line contains integer *a* (0<=≤<=*a*<=≤<=104) — the number of the minutes...
The only line should contain the time after *a* minutes in the format described in the input. Note that you should print exactly two digits for the hours and the minutes (add leading zeroes to the numbers if needed). See the examples to check the input/output format.
[ "23:59\n10\n", "20:20\n121\n", "10:10\n0\n" ]
[ "00:09\n", "22:21\n", "10:10\n" ]
none
0
[ { "input": "23:59\n10", "output": "00:09" }, { "input": "20:20\n121", "output": "22:21" }, { "input": "10:10\n0", "output": "10:10" }, { "input": "12:34\n10000", "output": "11:14" }, { "input": "00:00\n10000", "output": "22:40" }, { "input": "00:00\n14...
1,455,217,172
2,147,483,647
Python 3
OK
TESTS
59
62
0
hh, mm = [int(t) for t in input().split(':')] dm = int(input()) mm += dm hh += mm//60 mm %= 60 hh %= 24 print("{0}:{1}".format(str(hh).zfill(2), str(mm).zfill(2)))
Title: The Time Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given the current time in 24-hour format hh:mm. Find and print the time after *a* minutes. Note that you should find only the time after *a* minutes, see the examples to clarify the problem statement. You can read mo...
```python hh, mm = [int(t) for t in input().split(':')] dm = int(input()) mm += dm hh += mm//60 mm %= 60 hh %= 24 print("{0}:{1}".format(str(hh).zfill(2), str(mm).zfill(2))) ```
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,593,047,435
2,147,483,647
PyPy 3
OK
TESTS
20
340
21,913,600
n = int(input()) d = {} l = [] for i in range(n): x , y = input().split() d[x] = d.get(x , 0) + int(y) l.append([x , d[x]]) m = max(d.values()) for i , j in l : if d[i] == m and int(j) >= m : print(i) break
Title: Winner Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The winner of the card game popular in Berland "Berlogging" is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes...
```python n = int(input()) d = {} l = [] for i in range(n): x , y = input().split() d[x] = d.get(x , 0) + int(y) l.append([x , d[x]]) m = max(d.values()) for i , j in l : if d[i] == m and int(j) >= m : print(i) break ```
3.666731
224
B
Array
PROGRAMMING
1,500
[ "bitmasks", "implementation", "two pointers" ]
null
null
You've got an array *a*, consisting of *n* integers: *a*1,<=*a*2,<=...,<=*a**n*. Your task is to find a minimal by inclusion segment [*l*,<=*r*] (1<=≤<=*l*<=≤<=*r*<=≤<=*n*) such, that among numbers *a**l*,<= *a**l*<=+<=1,<= ...,<= *a**r* there are exactly *k* distinct numbers. Segment [*l*,<=*r*] (1<=≤<=*l*<=≤<=*r*<=≤...
The first line contains two space-separated integers: *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=105). The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* — elements of the array *a* (1<=≤<=*a**i*<=≤<=105).
Print a space-separated pair of integers *l* and *r* (1<=≤<=*l*<=≤<=*r*<=≤<=*n*) such, that the segment [*l*,<=*r*] is the answer to the problem. If the sought segment does not exist, print "-1 -1" without the quotes. If there are multiple correct answers, print any of them.
[ "4 2\n1 2 2 3\n", "8 3\n1 1 2 2 3 3 4 5\n", "7 4\n4 7 7 4 7 4 7\n" ]
[ "1 2\n", "2 5\n", "-1 -1\n" ]
In the first sample among numbers *a*<sub class="lower-index">1</sub> and *a*<sub class="lower-index">2</sub> there are exactly two distinct numbers. In the second sample segment [2, 5] is a minimal by inclusion segment with three distinct numbers, but it is not minimal in length among such segments. In the third sam...
1,000
[ { "input": "4 2\n1 2 2 3", "output": "1 2" }, { "input": "8 3\n1 1 2 2 3 3 4 5", "output": "2 5" }, { "input": "7 4\n4 7 7 4 7 4 7", "output": "-1 -1" }, { "input": "5 1\n1 7 2 3 2", "output": "1 1" }, { "input": "1 2\n666", "output": "-1 -1" }, { "inp...
1,631,894,558
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
124
6,758,400
n = list(map(int, input().split())) a = list(map(int, input().split())) check_point = n[1] set_A = set(a) # print (set_A) len_set = len(set_A) # print(len_set) list = list(set_A) if len_set >= check_point: print (list[0],list[check_point-1])
Title: Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got an array *a*, consisting of *n* integers: *a*1,<=*a*2,<=...,<=*a**n*. Your task is to find a minimal by inclusion segment [*l*,<=*r*] (1<=≤<=*l*<=≤<=*r*<=≤<=*n*) such, that among numbers *a**l*,<= *a**l*<=+<=1,<= ...,<...
```python n = list(map(int, input().split())) a = list(map(int, input().split())) check_point = n[1] set_A = set(a) # print (set_A) len_set = len(set_A) # print(len_set) list = list(set_A) if len_set >= check_point: print (list[0],list[check_point-1]) ```
0
777
B
Game of Credit Cards
PROGRAMMING
1,300
[ "data structures", "dp", "greedy", "sortings" ]
null
null
After the fourth season Sherlock and Moriary have realized the whole foolishness of the battle between them and decided to continue their competitions in peaceful game of Credit Cards. Rules of this game are simple: each player bring his favourite *n*-digit credit card. Then both players name the digits written on the...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of digits in the cards Sherlock and Moriarty are going to use. The second line contains *n* digits — Sherlock's credit card number. The third line contains *n* digits — Moriarty's credit card number.
First print the minimum possible number of flicks Moriarty will get. Then print the maximum possible number of flicks that Sherlock can get from Moriarty.
[ "3\n123\n321\n", "2\n88\n00\n" ]
[ "0\n2\n", "2\n0\n" ]
First sample is elaborated in the problem statement. In the second sample, there is no way Moriarty can avoid getting two flicks.
1,000
[ { "input": "3\n123\n321", "output": "0\n2" }, { "input": "2\n88\n00", "output": "2\n0" }, { "input": "1\n4\n5", "output": "0\n1" }, { "input": "1\n8\n7", "output": "1\n0" }, { "input": "2\n55\n55", "output": "0\n0" }, { "input": "3\n534\n432", "out...
1,587,234,587
4,487
Python 3
RUNTIME_ERROR
TESTS
17
139
409,600
import collections t=int(input()) n=str(input()) m=str(input()) d=collections.Counter(n) #print(d,n) v=collections.Counter(m) k=d-v l=[] l1=[] #print(k) for i in n: if i in k: l.append(i) k[i]-=1 if k[i]==0: del k[i] for j in m: if j not in d: l1...
Title: Game of Credit Cards Time Limit: None seconds Memory Limit: None megabytes Problem Description: After the fourth season Sherlock and Moriary have realized the whole foolishness of the battle between them and decided to continue their competitions in peaceful game of Credit Cards. Rules of this game are simpl...
```python import collections t=int(input()) n=str(input()) m=str(input()) d=collections.Counter(n) #print(d,n) v=collections.Counter(m) k=d-v l=[] l1=[] #print(k) for i in n: if i in k: l.append(i) k[i]-=1 if k[i]==0: del k[i] for j in m: if j not in d: ...
-1
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,671,917,969
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
77
2,764,800
for n in [0]*int(input()): s = input() b = len(input())-2 print(s[0]+b+s[-1] if b>8 else s)
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python for n in [0]*int(input()): s = input() b = len(input())-2 print(s[0]+b+s[-1] if b>8 else s) ```
-1
926
G
Large Bouquets
PROGRAMMING
1,500
[]
null
null
A flower shop has got *n* bouquets, and the *i*-th bouquet consists of *a**i* flowers. Vasya, the manager of the shop, decided to make large bouquets from these bouquets. Vasya thinks that a bouquet is large if it is made of two or more initial bouquets, and there is a constraint: the total number of flowers in a lar...
The first line contains a single positive integer *n* (1<=≤<=*n*<=≤<=105) — the number of initial bouquets. The second line contains a sequence of integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=106) — the number of flowers in each of the initial bouquets.
Print the maximum number of large bouquets Vasya can make.
[ "5\n2 3 4 2 7\n", "6\n2 2 6 8 6 12\n", "3\n11 4 10\n" ]
[ "2\n", "0\n", "1\n" ]
In the first example Vasya can make 2 large bouquets. For example, the first bouquet can contain the first and the fifth initial bouquets (the total number of flowers is then equal to 9), and the second bouquet can consist of the second and the third initial bouquets (the total number of flowers is then equal to 7). Th...
0
[ { "input": "5\n2 3 4 2 7", "output": "2" }, { "input": "6\n2 2 6 8 6 12", "output": "0" }, { "input": "3\n11 4 10", "output": "1" }, { "input": "1\n1", "output": "0" }, { "input": "1\n2", "output": "0" }, { "input": "1\n999999", "output": "0" }, ...
1,521,357,727
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
n = int(input()) l = 0 k = 0 arr = list(map(int,input().split())) for i in range(0,n) if arr[i] % 2 == 0 : l = l + 1 if arr[i] % 2 == 1 : k = k + 1 if l>k : print(k) if l<k : print(l+(k-l)/3)
Title: Large Bouquets Time Limit: None seconds Memory Limit: None megabytes Problem Description: A flower shop has got *n* bouquets, and the *i*-th bouquet consists of *a**i* flowers. Vasya, the manager of the shop, decided to make large bouquets from these bouquets. Vasya thinks that a bouquet is large if it is m...
```python n = int(input()) l = 0 k = 0 arr = list(map(int,input().split())) for i in range(0,n) if arr[i] % 2 == 0 : l = l + 1 if arr[i] % 2 == 1 : k = k + 1 if l>k : print(k) if l<k : print(l+(k-l)/3) ```
-1
389
B
Fox and Cross
PROGRAMMING
1,100
[ "greedy", "implementation" ]
null
null
Fox Ciel has a board with *n* rows and *n* columns. So, the board consists of *n*<=×<=*n* cells. Each cell contains either a symbol '.', or a symbol '#'. A cross on the board is a connected set of exactly five cells of the board that looks like a cross. The picture below shows how it looks. Ciel wants to draw several...
The first line contains an integer *n* (3<=≤<=*n*<=≤<=100) — the size of the board. Each of the next *n* lines describes one row of the board. The *i*-th line describes the *i*-th row of the board and consists of *n* characters. Each character is either a symbol '.', or a symbol '#'.
Output a single line with "YES" if Ciel can draw the crosses in the described way. Otherwise output a single line with "NO".
[ "5\n.#...\n####.\n.####\n...#.\n.....\n", "4\n####\n####\n####\n####\n", "6\n.#....\n####..\n.####.\n.#.##.\n######\n.#..#.\n", "6\n.#..#.\n######\n.####.\n.####.\n######\n.#..#.\n", "3\n...\n...\n...\n" ]
[ "YES\n", "NO\n", "YES\n", "NO\n", "YES\n" ]
In example 1, you can draw two crosses. The picture below shows what they look like. In example 2, the board contains 16 cells with '#', but each cross contains 5. Since 16 is not a multiple of 5, so it's impossible to cover all.
1,000
[ { "input": "4\n####\n####\n####\n####", "output": "NO" }, { "input": "6\n.#....\n####..\n.####.\n.#.##.\n######\n.#..#.", "output": "YES" }, { "input": "6\n.#..#.\n######\n.####.\n.####.\n######\n.#..#.", "output": "NO" }, { "input": "5\n.....\n.#...\n####.\n.####\n...#.", ...
1,646,007,144
2,147,483,647
PyPy 3
OK
TESTS
42
77
1,843,200
grid = [] yes = True size = int(input()) for x in range(size): grid.append(list(input())) for y in range(size): if not yes: break for x in range(size): if grid[y][x] == "#": if x == 0 or x == size-1 or y >= size-2: print("NO") yes = Fal...
Title: Fox and Cross Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel has a board with *n* rows and *n* columns. So, the board consists of *n*<=×<=*n* cells. Each cell contains either a symbol '.', or a symbol '#'. A cross on the board is a connected set of exactly five cells of t...
```python grid = [] yes = True size = int(input()) for x in range(size): grid.append(list(input())) for y in range(size): if not yes: break for x in range(size): if grid[y][x] == "#": if x == 0 or x == size-1 or y >= size-2: print("NO") ...
3
461
A
Appleman and Toastman
PROGRAMMING
1,200
[ "greedy", "sortings" ]
null
null
Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all the numbers and adds this sum to the score. Then he gives the group to the Appleman. - Each time Appleman...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=3·105). The second line contains *n* integers *a*1, *a*2, ..., *a**n* (1<=≤<=*a**i*<=≤<=106) — the initial group that is given to Toastman.
Print a single integer — the largest possible score.
[ "3\n3 1 5\n", "1\n10\n" ]
[ "26\n", "10\n" ]
Consider the following situation in the first example. Initially Toastman gets group [3, 1, 5] and adds 9 to the score, then he give the group to Appleman. Appleman splits group [3, 1, 5] into two groups: [3, 5] and [1]. Both of them should be given to Toastman. When Toastman receives group [1], he adds 1 to score and ...
500
[ { "input": "3\n3 1 5", "output": "26" }, { "input": "1\n10", "output": "10" }, { "input": "10\n8 10 2 5 6 2 4 7 2 1", "output": "376" }, { "input": "10\n171308 397870 724672 431255 228496 892002 542924 718337 888642 161821", "output": "40204082" }, { "input": "10\...
1,424,374,258
2,147,483,647
Python 3
OK
TESTS
36
514
19,865,600
input() l = list(map(int, input().split())) l.sort() i = 0 s = 0 while i < len(l) - 1: s += (i+2)*l[i] i += 1 s += (i+1)*l[i] print(s)
Title: Appleman and Toastman Time Limit: None seconds Memory Limit: None megabytes Problem Description: Appleman and Toastman play a game. Initially Appleman gives one group of *n* numbers to the Toastman, then they start to complete the following tasks: - Each time Toastman gets a group of numbers, he sums up all...
```python input() l = list(map(int, input().split())) l.sort() i = 0 s = 0 while i < len(l) - 1: s += (i+2)*l[i] i += 1 s += (i+1)*l[i] print(s) ```
3
6
C
Alice, Bob and Chocolate
PROGRAMMING
1,200
[ "greedy", "two pointers" ]
C. Alice, Bob and Chocolate
2
64
Alice and Bob like games. And now they are ready to start a new game. They have placed *n* chocolate bars in a line. Alice starts to eat chocolate bars one by one from left to right, and Bob — from right to left. For each chocololate bar the time, needed for the player to consume it, is known (Alice and Bob eat them wi...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=105) — the amount of bars on the table. The second line contains a sequence *t*1,<=*t*2,<=...,<=*t**n* (1<=≤<=*t**i*<=≤<=1000), where *t**i* is the time (in seconds) needed to consume the *i*-th bar (in the order from left to right).
Print two numbers *a* and *b*, where *a* is the amount of bars consumed by Alice, and *b* is the amount of bars consumed by Bob.
[ "5\n2 9 8 2 7\n" ]
[ "2 3\n" ]
none
0
[ { "input": "5\n2 9 8 2 7", "output": "2 3" }, { "input": "1\n1", "output": "1 0" }, { "input": "2\n1 1", "output": "1 1" }, { "input": "3\n1 1 1", "output": "2 1" }, { "input": "4\n1 1 1 1", "output": "2 2" }, { "input": "1\n6", "output": "1 0" }...
1,614,786,943
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
62
307,200
# import sys n = int(sys.stdin.readline()) choc_ls = [int(i.strip()) for i in sys.stdin.readline().rstrip().split()] sum_choc = sum(choc_ls) a_choc_t = a = b_choc_t = b = 0 for i in choc_ls: a_choc_t += i a += 1 if a_choc_t > 1 / 2 * sum_choc: a_choc_t -= i a -= 1 break elif a_c...
Title: Alice, Bob and Chocolate Time Limit: 2 seconds Memory Limit: 64 megabytes Problem Description: Alice and Bob like games. And now they are ready to start a new game. They have placed *n* chocolate bars in a line. Alice starts to eat chocolate bars one by one from left to right, and Bob — from right to left. Fo...
```python # import sys n = int(sys.stdin.readline()) choc_ls = [int(i.strip()) for i in sys.stdin.readline().rstrip().split()] sum_choc = sum(choc_ls) a_choc_t = a = b_choc_t = b = 0 for i in choc_ls: a_choc_t += i a += 1 if a_choc_t > 1 / 2 * sum_choc: a_choc_t -= i a -= 1 break ...
0
197
A
Plate Game
PROGRAMMING
1,600
[ "constructive algorithms", "games", "math" ]
null
null
You've got a rectangular table with length *a* and width *b* and the infinite number of plates of radius *r*. Two players play the following game: they take turns to put the plates on the table so that the plates don't lie on each other (but they can touch each other), and so that any point on any plate is located with...
A single line contains three space-separated integers *a*, *b*, *r* (1<=≤<=*a*,<=*b*,<=*r*<=≤<=100) — the table sides and the plates' radius, correspondingly.
If wins the player who moves first, print "First" (without the quotes). Otherwise print "Second" (without the quotes).
[ "5 5 2\n", "6 7 4\n" ]
[ "First\n", "Second\n" ]
In the first sample the table has place for only one plate. The first player puts a plate on the table, the second player can't do that and loses. In the second sample the table is so small that it doesn't have enough place even for one plate. So the first player loses without making a single move.
1,000
[ { "input": "5 5 2", "output": "First" }, { "input": "6 7 4", "output": "Second" }, { "input": "100 100 1", "output": "First" }, { "input": "1 1 100", "output": "Second" }, { "input": "13 7 3", "output": "First" }, { "input": "23 7 3", "output": "Fi...
1,689,420,265
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
60
0
print("_RANDOM_GUESS_1689420265.1456444")# 1689420265.1456645
Title: Plate Game Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a rectangular table with length *a* and width *b* and the infinite number of plates of radius *r*. Two players play the following game: they take turns to put the plates on the table so that the plates don't lie o...
```python print("_RANDOM_GUESS_1689420265.1456444")# 1689420265.1456645 ```
0
722
C
Destroying Array
PROGRAMMING
1,600
[ "data structures", "dsu" ]
null
null
You are given an array consisting of *n* non-negative integers *a*1,<=*a*2,<=...,<=*a**n*. You are going to destroy integers in the array one by one. Thus, you are given the permutation of integers from 1 to *n* defining the order elements of the array are destroyed. After each element is destroyed you have to find o...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=100<=000) — the length of the array. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109). The third line contains a permutation of integers from 1 to *n* — the order used to destroy elements.
Print *n* lines. The *i*-th line should contain a single integer — the maximum possible sum of elements on the segment containing no destroyed elements, after first *i* operations are performed.
[ "4\n1 3 2 5\n3 4 1 2\n", "5\n1 2 3 4 5\n4 2 3 5 1\n", "8\n5 5 4 4 6 6 5 5\n5 2 8 7 1 3 4 6\n" ]
[ "5\n4\n3\n0\n", "6\n5\n5\n1\n0\n", "18\n16\n11\n8\n8\n6\n6\n0\n" ]
Consider the first sample: 1. Third element is destroyed. Array is now 1 3  *  5. Segment with maximum sum 5 consists of one integer 5. 1. Fourth element is destroyed. Array is now 1 3  *   * . Segment with maximum sum 4 consists of two integers 1 3. 1. First element is destroyed. Array is now  *  3  *   * . Segme...
1,000
[ { "input": "4\n1 3 2 5\n3 4 1 2", "output": "5\n4\n3\n0" }, { "input": "5\n1 2 3 4 5\n4 2 3 5 1", "output": "6\n5\n5\n1\n0" }, { "input": "8\n5 5 4 4 6 6 5 5\n5 2 8 7 1 3 4 6", "output": "18\n16\n11\n8\n8\n6\n6\n0" }, { "input": "10\n3 3 3 5 6 9 3 1 7 3\n3 4 6 7 5 1 10 9 2 8"...
1,607,546,095
2,147,483,647
PyPy 3
COMPILATION_ERROR
TESTS
0
0
0
// ================================ c++ ==================================================== # include <bits/stdc++.h> using namespace std; # define fastio ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); // ================================= TYPEDEF MACROS =======================================...
Title: Destroying Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array consisting of *n* non-negative integers *a*1,<=*a*2,<=...,<=*a**n*. You are going to destroy integers in the array one by one. Thus, you are given the permutation of integers from 1 to *n* defin...
```python // ================================ c++ ==================================================== # include <bits/stdc++.h> using namespace std; # define fastio ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); // ================================= TYPEDEF MACROS =============================...
-1
939
A
Love Triangle
PROGRAMMING
800
[ "graphs" ]
null
null
As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are *n* planes on Earth, numbered from 1 to *n*, and the plane with number *i* likes the plane with number *f**i*, where 1<=≤<=*f**i*<=≤<=*n* and *f**i*<=≠<=*i*. We call a love triangle a situation ...
The first line contains a single integer *n* (2<=≤<=*n*<=≤<=5000) — the number of planes. The second line contains *n* integers *f*1,<=*f*2,<=...,<=*f**n* (1<=≤<=*f**i*<=≤<=*n*, *f**i*<=≠<=*i*), meaning that the *i*-th plane likes the *f**i*-th.
Output «YES» if there is a love triangle consisting of planes on Earth. Otherwise, output «NO». You can output any letter in lower case or in upper case.
[ "5\n2 4 5 1 3\n", "5\n5 5 5 5 1\n" ]
[ "YES\n", "NO\n" ]
In first example plane 2 likes plane 4, plane 4 likes plane 1, plane 1 likes plane 2 and that is a love triangle. In second example there are no love triangles.
500
[ { "input": "5\n2 4 5 1 3", "output": "YES" }, { "input": "5\n5 5 5 5 1", "output": "NO" }, { "input": "3\n3 1 2", "output": "YES" }, { "input": "10\n4 10 9 5 3 1 5 10 6 4", "output": "NO" }, { "input": "10\n5 5 4 9 10 9 9 5 3 1", "output": "YES" }, { "...
1,696,351,854
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
print("893")
Title: Love Triangle Time Limit: None seconds Memory Limit: None megabytes Problem Description: As you could know there are no male planes nor female planes. However, each plane on Earth likes some other plane. There are *n* planes on Earth, numbered from 1 to *n*, and the plane with number *i* likes the plane with ...
```python print("893") ```
0
893
B
Beautiful Divisors
PROGRAMMING
1,000
[ "brute force", "implementation" ]
null
null
Recently Luba learned about a special kind of numbers that she calls beautiful numbers. The number is called beautiful iff its binary representation consists of *k*<=+<=1 consecutive ones, and then *k* consecutive zeroes. Some examples of beautiful numbers: - 12 (110); - 1102 (610); - 11110002 (12010); - 1111100...
The only line of input contains one number *n* (1<=≤<=*n*<=≤<=105) — the number Luba has got.
Output one number — the greatest beautiful divisor of Luba's number. It is obvious that the answer always exists.
[ "3\n", "992\n" ]
[ "1\n", "496\n" ]
none
0
[ { "input": "3", "output": "1" }, { "input": "992", "output": "496" }, { "input": "81142", "output": "1" }, { "input": "76920", "output": "120" }, { "input": "2016", "output": "2016" }, { "input": "1", "output": "1" }, { "input": "6", "o...
1,667,567,376
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
31
0
values=[((pow(2,k)-1)*pow(2,k-1)) for k in range(8)] values=values[1:] n=int(input()) s=[] for i in values: if n%int(i)==0: s.append(int(i)) print(max(s))
Title: Beautiful Divisors Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recently Luba learned about a special kind of numbers that she calls beautiful numbers. The number is called beautiful iff its binary representation consists of *k*<=+<=1 consecutive ones, and then *k* consecutive ze...
```python values=[((pow(2,k)-1)*pow(2,k-1)) for k in range(8)] values=values[1:] n=int(input()) s=[] for i in values: if n%int(i)==0: s.append(int(i)) print(max(s)) ```
0
862
B
Mahmoud and Ehab and the bipartiteness
PROGRAMMING
1,300
[ "dfs and similar", "graphs", "trees" ]
null
null
Mahmoud and Ehab continue their adventures! As everybody in the evil land knows, Dr. Evil likes bipartite graphs, especially trees. A tree is a connected acyclic graph. A bipartite graph is a graph, whose vertices can be partitioned into 2 sets in such a way, that for each edge (*u*,<=*v*) that belongs to the graph, *...
The first line of input contains an integer *n* — the number of nodes in the tree (1<=≤<=*n*<=≤<=105). The next *n*<=-<=1 lines contain integers *u* and *v* (1<=≤<=*u*,<=*v*<=≤<=*n*, *u*<=≠<=*v*) — the description of the edges of the tree. It's guaranteed that the given graph is a tree.
Output one integer — the maximum number of edges that Mahmoud and Ehab can add to the tree while fulfilling the conditions.
[ "3\n1 2\n1 3\n", "5\n1 2\n2 3\n3 4\n4 5\n" ]
[ "0\n", "2\n" ]
Tree definition: [https://en.wikipedia.org/wiki/Tree_(graph_theory)](https://en.wikipedia.org/wiki/Tree_(graph_theory)) Bipartite graph definition: [https://en.wikipedia.org/wiki/Bipartite_graph](https://en.wikipedia.org/wiki/Bipartite_graph) In the first test case the only edge that can be added in such a way, that ...
1,000
[ { "input": "3\n1 2\n1 3", "output": "0" }, { "input": "5\n1 2\n2 3\n3 4\n4 5", "output": "2" }, { "input": "10\n3 8\n6 2\n9 7\n10 1\n3 5\n1 3\n6 7\n5 4\n3 6", "output": "16" }, { "input": "10\n7 6\n2 7\n4 1\n8 5\n9 4\n5 3\n8 7\n10 8\n10 4", "output": "16" }, { "in...
1,680,928,043
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
from collections import defaultdict def dfs(node, color, graph, visited): visited[node] = True for neighbor in graph[node]: if not visited[neighbor]: graph[neighbor].remove(node) dfs(neighbor, 3-color, graph, visited) n = int(input()) graph = defaultdict(list) for _ ...
Title: Mahmoud and Ehab and the bipartiteness Time Limit: None seconds Memory Limit: None megabytes Problem Description: Mahmoud and Ehab continue their adventures! As everybody in the evil land knows, Dr. Evil likes bipartite graphs, especially trees. A tree is a connected acyclic graph. A bipartite graph is a gra...
```python from collections import defaultdict def dfs(node, color, graph, visited): visited[node] = True for neighbor in graph[node]: if not visited[neighbor]: graph[neighbor].remove(node) dfs(neighbor, 3-color, graph, visited) n = int(input()) graph = defaultdict(lis...
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,672,478,536
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
s = input() if len(s) > 10: n = s[1:-1] print(s[0] + str(len(n)) + s[-1]) else: print(s)
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python s = input() if len(s) > 10: n = s[1:-1] print(s[0] + str(len(n)) + s[-1]) else: print(s) ```
0
631
B
Print Check
PROGRAMMING
1,200
[ "constructive algorithms", "implementation" ]
null
null
Kris works in a large company "Blake Technologies". As a best engineer of the company he was assigned a task to develop a printer that will be able to print horizontal and vertical strips. First prototype is already built and Kris wants to tests it. He wants you to implement the program that checks the result of the pr...
The first line of the input contains three integers *n*, *m* and *k* (1<=<=≤<=<=*n*,<=<=*m*<=<=≤<=5000, *n*·*m*<=≤<=100<=000, 1<=≤<=*k*<=≤<=100<=000) — the dimensions of the sheet and the number of operations, respectively. Each of the next *k* lines contains the description of exactly one query: - 1 *r**i* *a**i* ...
Print *n* lines containing *m* integers each — the resulting table after all operations are applied.
[ "3 3 3\n1 1 3\n2 2 1\n1 2 2\n", "5 3 5\n1 1 1\n1 3 1\n1 5 1\n2 1 1\n2 3 1\n" ]
[ "3 1 3 \n2 2 2 \n0 1 0 \n", "1 1 1 \n1 0 1 \n1 1 1 \n1 0 1 \n1 1 1 \n" ]
The figure below shows all three operations for the first sample step by step. The cells that were painted on the corresponding step are marked gray.
1,000
[ { "input": "3 3 3\n1 1 3\n2 2 1\n1 2 2", "output": "3 1 3 \n2 2 2 \n0 1 0 " }, { "input": "5 3 5\n1 1 1\n1 3 1\n1 5 1\n2 1 1\n2 3 1", "output": "1 1 1 \n1 0 1 \n1 1 1 \n1 0 1 \n1 1 1 " }, { "input": "5 5 4\n1 2 1\n1 4 1\n2 2 1\n2 4 1", "output": "0 1 0 1 0 \n1 1 1 1 1 \n0 1 0 1 0 \n1...
1,697,608,889
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
21
1,000
35,737,600
import sys input = sys.stdin.readline ############ ---- Input Functions ---- ############ def inp(): return(int(input())) def inlt(): return(list(map(int,input().split()))) def insr(): s = input() return(list(s[:len(s) - 1])) def invr(): return(map(int,input().split())) n, m, k = i...
Title: Print Check Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kris works in a large company "Blake Technologies". As a best engineer of the company he was assigned a task to develop a printer that will be able to print horizontal and vertical strips. First prototype is already built a...
```python import sys input = sys.stdin.readline ############ ---- Input Functions ---- ############ def inp(): return(int(input())) def inlt(): return(list(map(int,input().split()))) def insr(): s = input() return(list(s[:len(s) - 1])) def invr(): return(map(int,input().split())) n...
0
71
A
Way Too Long Words
PROGRAMMING
800
[ "strings" ]
A. Way Too Long Words
1
256
Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 characters. All too long words should be replaced with a special abbreviation. This abbreviation is made lik...
The first line contains an integer *n* (1<=≤<=*n*<=≤<=100). Each of the following *n* lines contains one word. All the words consist of lowercase Latin letters and possess the lengths of from 1 to 100 characters.
Print *n* lines. The *i*-th line should contain the result of replacing of the *i*-th word from the input data.
[ "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis\n" ]
[ "word\nl10n\ni18n\np43s\n" ]
none
500
[ { "input": "4\nword\nlocalization\ninternationalization\npneumonoultramicroscopicsilicovolcanoconiosis", "output": "word\nl10n\ni18n\np43s" }, { "input": "5\nabcdefgh\nabcdefghi\nabcdefghij\nabcdefghijk\nabcdefghijklm", "output": "abcdefgh\nabcdefghi\nabcdefghij\na9k\na11m" }, { "input":...
1,689,687,301
2,147,483,647
Python 3
OK
TESTS
20
46
0
n = int (input()) l = [] for i in range(n): s = str(input()) if len(s)>10: x = str(len(s)-2) y = s[0]+x+s[-1] l.append(y) else: l.append(s) for t in l: print(t)
Title: Way Too Long Words Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Sometimes some words like "localization" or "internationalization" are so long that writing them many times in one text is quite tiresome. Let's consider a word too long, if its length is strictly more than 10 character...
```python n = int (input()) l = [] for i in range(n): s = str(input()) if len(s)>10: x = str(len(s)-2) y = s[0]+x+s[-1] l.append(y) else: l.append(s) for t in l: print(t) ```
3.977
441
A
Valera and Antique Items
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera is a collector. Once he wanted to expand his collection with exactly one antique item. Valera knows *n* sellers of antiques, the *i*-th of them auctioned *k**i* items. Currently the auction price of the *j*-th object of the *i*-th seller is *s**ij*. Valera gets on well with each of the *n* sellers. He is perfec...
The first line contains two space-separated integers *n*,<=*v* (1<=≤<=*n*<=≤<=50; 104<=≤<=*v*<=≤<=106) — the number of sellers and the units of money the Valera has. Then *n* lines follow. The *i*-th line first contains integer *k**i* (1<=≤<=*k**i*<=≤<=50) the number of items of the *i*-th seller. Then go *k**i* space...
In the first line, print integer *p* — the number of sellers with who Valera can make a deal. In the second line print *p* space-separated integers *q*1,<=*q*2,<=...,<=*q**p* (1<=≤<=*q**i*<=≤<=*n*) — the numbers of the sellers with who Valera can make a deal. Print the numbers of the sellers in the increasing order.
[ "3 50000\n1 40000\n2 20000 60000\n3 10000 70000 190000\n", "3 50000\n1 50000\n3 100000 120000 110000\n3 120000 110000 120000\n" ]
[ "3\n1 2 3\n", "0\n\n" ]
In the first sample Valera can bargain with each of the sellers. He can outbid the following items: a 40000 item from the first seller, a 20000 item from the second seller, and a 10000 item from the third seller. In the second sample Valera can not make a deal with any of the sellers, as the prices of all items in the...
500
[ { "input": "3 50000\n1 40000\n2 20000 60000\n3 10000 70000 190000", "output": "3\n1 2 3" }, { "input": "3 50000\n1 50000\n3 100000 120000 110000\n3 120000 110000 120000", "output": "0" }, { "input": "2 100001\n1 895737\n1 541571", "output": "0" }, { "input": "1 1000000\n1 100...
1,644,048,841
2,147,483,647
PyPy 3
OK
TESTS
26
93
1,536,000
n, v = map(int, input().split()) ans = [] for i in range(n): tmp = list(map(int, input().split())) if min(tmp[1:]) + 1 <= v: ans.append(i + 1) print(len(ans)) print(*ans)
Title: Valera and Antique Items Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera is a collector. Once he wanted to expand his collection with exactly one antique item. Valera knows *n* sellers of antiques, the *i*-th of them auctioned *k**i* items. Currently the auction price of the...
```python n, v = map(int, input().split()) ans = [] for i in range(n): tmp = list(map(int, input().split())) if min(tmp[1:]) + 1 <= v: ans.append(i + 1) print(len(ans)) print(*ans) ```
3
431
A
Black Square
PROGRAMMING
800
[ "implementation" ]
null
null
Quite recently, a very smart student named Jury decided that lectures are boring, so he downloaded a game called "Black Square" on his super cool touchscreen phone. In this game, the phone's screen is divided into four vertical strips. Each second, a black square appears on some of the strips. According to the rules o...
The first line contains four space-separated integers *a*1, *a*2, *a*3, *a*4 (0<=≤<=*a*1,<=*a*2,<=*a*3,<=*a*4<=≤<=104). The second line contains string *s* (1<=≤<=|*s*|<=≤<=105), where the *і*-th character of the string equals "1", if on the *i*-th second of the game the square appears on the first strip, "2", if it a...
Print a single integer — the total number of calories that Jury wastes.
[ "1 2 3 4\n123214\n", "1 5 3 2\n11221\n" ]
[ "13\n", "13\n" ]
none
500
[ { "input": "1 2 3 4\n123214", "output": "13" }, { "input": "1 5 3 2\n11221", "output": "13" }, { "input": "5 5 5 1\n3422", "output": "16" }, { "input": "4 3 2 1\n2", "output": "3" }, { "input": "5651 6882 6954 4733\n2442313421", "output": "60055" }, { ...
1,660,864,278
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
#!/usr/bin/env python3 # coding:utf-8 if __name__ == "__main__": a = [int(item) for item in input().split()] s = input() t = 0 for i in s: t += a[int(i)] print(t)
Title: Black Square Time Limit: None seconds Memory Limit: None megabytes Problem Description: Quite recently, a very smart student named Jury decided that lectures are boring, so he downloaded a game called "Black Square" on his super cool touchscreen phone. In this game, the phone's screen is divided into four ve...
```python #!/usr/bin/env python3 # coding:utf-8 if __name__ == "__main__": a = [int(item) for item in input().split()] s = input() t = 0 for i in s: t += a[int(i)] print(t) ```
-1
53
C
Little Frog
PROGRAMMING
1,200
[ "constructive algorithms" ]
C. Little Frog
2
256
Once upon a time a little frog whose name was Vasya decided to travel around his home swamp. Overall there are *n* mounds on the swamp, located on one line. The distance between the neighboring mounds is one meter. Vasya wants to visit all the mounds in one day; besides, he wants to visit each one exactly once. For tha...
The single line contains a number *n* (1<=≤<=*n*<=≤<=104) which is the number of mounds.
Print *n* integers *p**i* (1<=≤<=*p**i*<=≤<=*n*) which are the frog's route plan. - All the *p**i*'s should be mutually different. - All the |*p**i*–*p**i*<=+<=1|'s should be mutually different (1<=≤<=*i*<=≤<=*n*<=-<=1). If there are several solutions, output any.
[ "2\n", "3\n" ]
[ "1 2 ", "1 3 2 " ]
none
1,500
[ { "input": "2", "output": "1 2 " }, { "input": "3", "output": "1 3 2 " }, { "input": "4", "output": "1 4 2 3 " }, { "input": "5", "output": "1 5 2 4 3 " }, { "input": "6", "output": "1 6 2 5 3 4 " }, { "input": "1", "output": "1 " }, { "inp...
1,688,015,143
2,147,483,647
PyPy 3-64
OK
TESTS
22
154
4,300,800
import sys input = sys.stdin.readline n = int(input()) d = n - 1 ans = [1] v = [0] * (n + 1) for i in range(n - 1): if(ans[-1] + d <= n and not v[ans[-1] + d]): ans.append(ans[-1] + d) v[ans[-1]] = 1 else: ans.append(ans[-1] - d) v[ans[-1]] = 1 d -= 1 pr...
Title: Little Frog Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Once upon a time a little frog whose name was Vasya decided to travel around his home swamp. Overall there are *n* mounds on the swamp, located on one line. The distance between the neighboring mounds is one meter. Vasya wants ...
```python import sys input = sys.stdin.readline n = int(input()) d = n - 1 ans = [1] v = [0] * (n + 1) for i in range(n - 1): if(ans[-1] + d <= n and not v[ans[-1] + d]): ans.append(ans[-1] + d) v[ans[-1]] = 1 else: ans.append(ans[-1] - d) v[ans[-1]] = 1 d...
3.953489
363
A
Soroban
PROGRAMMING
800
[ "implementation" ]
null
null
You know that Japan is the country with almost the largest 'electronic devices per person' ratio. So you might be quite surprised to find out that the primary school in Japan teaches to count using a Soroban — an abacus developed in Japan. This phenomenon has its reasons, of course, but we are not going to speak about ...
The first line contains a single integer *n* (0<=≤<=*n*<=&lt;<=109).
Print the description of the decimal digits of number *n* from the last one to the first one (as mentioned on the picture in the statement), one per line. Print the beads as large English letters 'O', rod pieces as character '-' and the reckoning bar as '|'. Print as many rods, as many digits are in the decimal represe...
[ "2\n", "13\n", "720\n" ]
[ "O-|OO-OO\n", "O-|OOO-O\nO-|O-OOO\n", "O-|-OOOO\nO-|OO-OO\n-O|OO-OO\n" ]
none
500
[ { "input": "2", "output": "O-|OO-OO" }, { "input": "13", "output": "O-|OOO-O\nO-|O-OOO" }, { "input": "720", "output": "O-|-OOOO\nO-|OO-OO\n-O|OO-OO" }, { "input": "0", "output": "O-|-OOOO" }, { "input": "1", "output": "O-|O-OOO" }, { "input": "3", ...
1,668,432,266
2,147,483,647
Python 3
OK
TESTS
36
46
0
n=input() l=[] def soroban(x): if x==0: return("O-|-OOOO") elif x==1: return("O-|O-OOO") elif x==2: return("O-|OO-OO") elif x==3: return("O-|OOO-O") elif x==4: return("O-|OOOO-") elif x==5: return("-O|-OOOO") elif x==6: ...
Title: Soroban Time Limit: None seconds Memory Limit: None megabytes Problem Description: You know that Japan is the country with almost the largest 'electronic devices per person' ratio. So you might be quite surprised to find out that the primary school in Japan teaches to count using a Soroban — an abacus develop...
```python n=input() l=[] def soroban(x): if x==0: return("O-|-OOOO") elif x==1: return("O-|O-OOO") elif x==2: return("O-|OO-OO") elif x==3: return("O-|OOO-O") elif x==4: return("O-|OOOO-") elif x==5: return("-O|-OOOO") elif x==6:...
3
116
A
Tram
PROGRAMMING
800
[ "implementation" ]
null
null
Linear Kingdom has exactly one tram line. It has *n* stops, numbered from 1 to *n* in the order of tram's movement. At the *i*-th stop *a**i* passengers exit the tram, while *b**i* passengers enter it. The tram is empty before it arrives at the first stop. Also, when the tram arrives at the last stop, all passengers ex...
The first line contains a single number *n* (2<=≤<=*n*<=≤<=1000) — the number of the tram's stops. Then *n* lines follow, each contains two integers *a**i* and *b**i* (0<=≤<=*a**i*,<=*b**i*<=≤<=1000) — the number of passengers that exits the tram at the *i*-th stop, and the number of passengers that enter the tram at...
Print a single integer denoting the minimum possible capacity of the tram (0 is allowed).
[ "4\n0 3\n2 5\n4 2\n4 0\n" ]
[ "6\n" ]
For the first example, a capacity of 6 is sufficient: - At the first stop, the number of passengers inside the tram before arriving is 0. Then, 3 passengers enter the tram, and the number of passengers inside the tram becomes 3. - At the second stop, 2 passengers exit the tram (1 passenger remains inside). Then, 5 ...
500
[ { "input": "4\n0 3\n2 5\n4 2\n4 0", "output": "6" }, { "input": "5\n0 4\n4 6\n6 5\n5 4\n4 0", "output": "6" }, { "input": "10\n0 5\n1 7\n10 8\n5 3\n0 5\n3 3\n8 8\n0 6\n10 1\n9 0", "output": "18" }, { "input": "3\n0 1\n1 1\n1 0", "output": "1" }, { "input": "4\n0 1...
1,690,969,804
2,147,483,647
Python 3
OK
TESTS
71
92
0
m=0 l=[] n=int(input()) for i in range(n): a,b=list(map(int,input().split())) m+=b-a l.append(m) print(max(l))
Title: Tram Time Limit: None seconds Memory Limit: None megabytes Problem Description: Linear Kingdom has exactly one tram line. It has *n* stops, numbered from 1 to *n* in the order of tram's movement. At the *i*-th stop *a**i* passengers exit the tram, while *b**i* passengers enter it. The tram is empty before it ...
```python m=0 l=[] n=int(input()) for i in range(n): a,b=list(map(int,input().split())) m+=b-a l.append(m) print(max(l)) ```
3
486
A
Calculating Function
PROGRAMMING
800
[ "implementation", "math" ]
null
null
For a positive integer *n* let's define a function *f*: *f*(*n*)<==<=<=-<=1<=+<=2<=-<=3<=+<=..<=+<=(<=-<=1)*n**n* Your task is to calculate *f*(*n*) for a given integer *n*.
The single line contains the positive integer *n* (1<=≤<=*n*<=≤<=1015).
Print *f*(*n*) in a single line.
[ "4\n", "5\n" ]
[ "2\n", "-3\n" ]
*f*(4) =  - 1 + 2 - 3 + 4 = 2 *f*(5) =  - 1 + 2 - 3 + 4 - 5 =  - 3
500
[ { "input": "4", "output": "2" }, { "input": "5", "output": "-3" }, { "input": "1000000000", "output": "500000000" }, { "input": "1000000001", "output": "-500000001" }, { "input": "1000000000000000", "output": "500000000000000" }, { "input": "100", ...
1,694,898,857
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
2
1,000
1,536,000
n = int(input()) s = 0 g = 0 for i in range(n): if s == 0: g += -(i+1) s = 1 else: g += i+1 s = 0 print(g)
Title: Calculating Function Time Limit: None seconds Memory Limit: None megabytes Problem Description: For a positive integer *n* let's define a function *f*: *f*(*n*)<==<=<=-<=1<=+<=2<=-<=3<=+<=..<=+<=(<=-<=1)*n**n* Your task is to calculate *f*(*n*) for a given integer *n*. Input Specification: The single line...
```python n = int(input()) s = 0 g = 0 for i in range(n): if s == 0: g += -(i+1) s = 1 else: g += i+1 s = 0 print(g) ```
0
296
A
Yaroslav and Permutations
PROGRAMMING
1,100
[ "greedy", "math" ]
null
null
Yaroslav has an array that consists of *n* integers. In one second Yaroslav can swap two neighboring array elements. Now Yaroslav is wondering if he can obtain an array where any two neighboring elements would be distinct in a finite time. Help Yaroslav.
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the number of elements in the array. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1000) — the array elements.
In the single line print "YES" (without the quotes) if Yaroslav can obtain the array he needs, and "NO" (without the quotes) otherwise.
[ "1\n1\n", "3\n1 1 2\n", "4\n7 7 7 7\n" ]
[ "YES\n", "YES\n", "NO\n" ]
In the first sample the initial array fits well. In the second sample Yaroslav can get array: 1, 2, 1. He can swap the last and the second last elements to obtain it. In the third sample Yarosav can't get the array he needs.
500
[ { "input": "1\n1", "output": "YES" }, { "input": "3\n1 1 2", "output": "YES" }, { "input": "4\n7 7 7 7", "output": "NO" }, { "input": "4\n479 170 465 146", "output": "YES" }, { "input": "5\n996 437 605 996 293", "output": "YES" }, { "input": "6\n727 53...
1,609,133,416
2,147,483,647
PyPy 3
OK
TESTS
37
280
0
n = int(input()) arr = list(map(int, input().strip().split())) dic = {} for x in range(n): if arr[x] not in dic: dic[arr[x]] = 1 else: dic[arr[x]] += 1 r = 0 if n % 2 ==0: r = n // 2 else: r = n // 2 + 1 flag =0 for e in dic: if dic[e] > r: pr...
Title: Yaroslav and Permutations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Yaroslav has an array that consists of *n* integers. In one second Yaroslav can swap two neighboring array elements. Now Yaroslav is wondering if he can obtain an array where any two neighboring elements would...
```python n = int(input()) arr = list(map(int, input().strip().split())) dic = {} for x in range(n): if arr[x] not in dic: dic[arr[x]] = 1 else: dic[arr[x]] += 1 r = 0 if n % 2 ==0: r = n // 2 else: r = n // 2 + 1 flag =0 for e in dic: if dic[e] > r: ...
3
9
A
Die Roll
PROGRAMMING
800
[ "math", "probabilities" ]
A. Die Roll
1
64
Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about Tasmania, its beaches, sun and sea. Dot chose Transylvania as the most mysterious and unpr...
The only line of the input file contains two natural numbers Y and W — the results of Yakko's and Wakko's die rolls.
Output the required probability in the form of irreducible fraction in format «A/B», where A — the numerator, and B — the denominator. If the required probability equals to zero, output «0/1». If the required probability equals to 1, output «1/1».
[ "4 2\n" ]
[ "1/2\n" ]
Dot will go to Transylvania, if she is lucky to roll 4, 5 or 6 points.
0
[ { "input": "4 2", "output": "1/2" }, { "input": "1 1", "output": "1/1" }, { "input": "1 2", "output": "5/6" }, { "input": "1 3", "output": "2/3" }, { "input": "1 4", "output": "1/2" }, { "input": "1 5", "output": "1/3" }, { "input": "1 6", ...
1,651,338,448
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
60
0
y, w = map(int, input().split()) res = (7 - max(y, w)) if res in [1, 5]: print(f'{res}/6') elif res in [2, 4]: print(f'{res//2}/3') elif res == 3: print('1/2') else: print('{res}/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 y, w = map(int, input().split()) res = (7 - max(y, w)) if res in [1, 5]: print(f'{res}/6') elif res in [2, 4]: print(f'{res//2}/3') elif res == 3: print('1/2') else: print('{res}/1') ```
0
0
none
none
none
0
[ "none" ]
null
null
Santa Claus decided to disassemble his keyboard to clean it. After he returned all the keys back, he suddenly realized that some pairs of keys took each other's place! That is, Santa suspects that each key is either on its place, or on the place of another key, which is located exactly where the first key should be. ...
The input consists of only two strings *s* and *t* denoting the favorite Santa's patter and the resulting string. *s* and *t* are not empty and have the same length, which is at most 1000. Both strings consist only of lowercase English letters.
If Santa is wrong, and there is no way to divide some of keys into pairs and swap keys in each pair so that the keyboard will be fixed, print «-1» (without quotes). Otherwise, the first line of output should contain the only integer *k* (*k*<=≥<=0) — the number of pairs of keys that should be swapped. The following *k...
[ "helloworld\nehoolwlroz\n", "hastalavistababy\nhastalavistababy\n", "merrychristmas\nchristmasmerry\n" ]
[ "3\nh e\nl o\nd z\n", "0\n", "-1\n" ]
none
0
[ { "input": "helloworld\nehoolwlroz", "output": "3\nh e\nl o\nd z" }, { "input": "hastalavistababy\nhastalavistababy", "output": "0" }, { "input": "merrychristmas\nchristmasmerry", "output": "-1" }, { "input": "kusyvdgccw\nkusyvdgccw", "output": "0" }, { "input": "...
1,483,390,252
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
41
62
4,608,000
s, t = input(), input() n = len(s) a = [-1]*26 for i in range(0, n): x = s[i] y = t[i] if x != y: a[ord(y) - ord('a')] = ord(x) - ord('a') a[ord(x) - ord('a')] = ord(y) - ord('a') for i in range(0, n): if a[ord(t[i]) - ord('a')] == -1: continue if (ord(s[i]) -...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Santa Claus decided to disassemble his keyboard to clean it. After he returned all the keys back, he suddenly realized that some pairs of keys took each other's place! That is, Santa suspects that each key is either on its place, ...
```python s, t = input(), input() n = len(s) a = [-1]*26 for i in range(0, n): x = s[i] y = t[i] if x != y: a[ord(y) - ord('a')] = ord(x) - ord('a') a[ord(x) - ord('a')] = ord(y) - ord('a') for i in range(0, n): if a[ord(t[i]) - ord('a')] == -1: continue if (o...
0
765
A
Neverending competitions
PROGRAMMING
900
[ "implementation", "math" ]
null
null
There are literally dozens of snooker competitions held each year, and team Jinotega tries to attend them all (for some reason they prefer name "snookah")! When a competition takes place somewhere far from their hometown, Ivan, Artsem and Konstantin take a flight to the contest and back. Jinotega's best friends, team ...
In the first line of input there is a single integer *n*: the number of Jinotega's flights (1<=≤<=*n*<=≤<=100). In the second line there is a string of 3 capital Latin letters: the name of Jinotega's home airport. In the next *n* lines there is flight information, one flight per line, in form "XXX-&gt;YYY", where "XXX"...
If Jinotega is now at home, print "home" (without quotes), otherwise print "contest".
[ "4\nSVO\nSVO-&gt;CDG\nLHR-&gt;SVO\nSVO-&gt;LHR\nCDG-&gt;SVO\n", "3\nSVO\nSVO-&gt;HKT\nHKT-&gt;SVO\nSVO-&gt;RAP\n" ]
[ "home\n", "contest\n" ]
In the first sample Jinotega might first fly from SVO to CDG and back, and then from SVO to LHR and back, so now they should be at home. In the second sample Jinotega must now be at RAP because a flight from RAP back to SVO is not on the list.
500
[ { "input": "4\nSVO\nSVO->CDG\nLHR->SVO\nSVO->LHR\nCDG->SVO", "output": "home" }, { "input": "3\nSVO\nSVO->HKT\nHKT->SVO\nSVO->RAP", "output": "contest" }, { "input": "1\nESJ\nESJ->TSJ", "output": "contest" }, { "input": "2\nXMR\nFAJ->XMR\nXMR->FAJ", "output": "home" }, ...
1,579,341,976
2,147,483,647
PyPy 3
OK
TESTS
23
171
0
import sys import math import bisect import itertools def main(): n = int(input()) home = input() nout = 0 nin = 0 for i in range(n): s = input() src = s[0:3] dst = s[5:8] if src == home: nout += 1 if dst == home: nin ...
Title: Neverending competitions Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are literally dozens of snooker competitions held each year, and team Jinotega tries to attend them all (for some reason they prefer name "snookah")! When a competition takes place somewhere far from thei...
```python import sys import math import bisect import itertools def main(): n = int(input()) home = input() nout = 0 nin = 0 for i in range(n): s = input() src = s[0:3] dst = s[5:8] if src == home: nout += 1 if dst == home: ...
3
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,592,395,329
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
1
78
307,200
a = input() t = list(a) c = 0 for i in range(len(t)): if t[i] == 'l': for j in range(i+1,len(t)): if t[j] == 'l': c = 1 break a = '' for i in range(len(t)): if t[i] not in a: a += t[i] if 'h' in a and 'e' in a and 'o' in a and c == 1: print("YES") else: print("NO")
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python a = input() t = list(a) c = 0 for i in range(len(t)): if t[i] == 'l': for j in range(i+1,len(t)): if t[j] == 'l': c = 1 break a = '' for i in range(len(t)): if t[i] not in a: a += t[i] if 'h' in a and 'e' in a and 'o' in a and c == 1: print("YES") else: print("NO") ...
0
523
C
Name Quest
PROGRAMMING
1,400
[ "*special", "greedy" ]
null
null
A Martian boy is named *s* — he has got this name quite recently from his parents for his coming of age birthday. Now he enjoys looking for his name everywhere. If he sees that he can obtain his name from some string by removing zero or more letters (at that, the remaining letters remain in the same order), he gets hap...
The first line contains string *s*, consisting of lowercase English letters. The length of string *s* is from 1 to 1000 letters. The second line contains string *t*, that also consists of lowercase English letters. The length of string *t* is from 1 to 106 letters.
Print the sought number of ways to cut string *t* in two so that each part made *s* happy.
[ "aba\nbaobababbah\n", "mars\nsunvenusearthmarsjupitersaturnuranusneptune\n" ]
[ "2\n", "0\n" ]
none
1,500
[ { "input": "aba\nbaobababbah", "output": "2" }, { "input": "mars\nsunvenusearthmarsjupitersaturnuranusneptune", "output": "0" }, { "input": "rry\nsorrymercuryismissedabove", "output": "3" }, { "input": "a\naaaaaaaaaaaaaa", "output": "13" }, { "input": "abcaba\nabc...
1,426,355,245
10,045
Python 3
WRONG_ANSWER
PRETESTS
2
31
0
s=input() a=input() j=0 v=0 for i in range(len(s)): k=s[i] while j<len(a): if a[j]==k: if i==len(s)-1: c=j break else: break j+=1 j=len(a)-1 for i in range(len(s)-1,-1,-1): k=s[i] while j>c: ...
Title: Name Quest Time Limit: None seconds Memory Limit: None megabytes Problem Description: A Martian boy is named *s* — he has got this name quite recently from his parents for his coming of age birthday. Now he enjoys looking for his name everywhere. If he sees that he can obtain his name from some string by remo...
```python s=input() a=input() j=0 v=0 for i in range(len(s)): k=s[i] while j<len(a): if a[j]==k: if i==len(s)-1: c=j break else: break j+=1 j=len(a)-1 for i in range(len(s)-1,-1,-1): k=s[i] while j>c...
0
204
A
Little Elephant and Interval
PROGRAMMING
1,500
[ "binary search", "combinatorics", "dp" ]
null
null
The Little Elephant very much loves sums on intervals. This time he has a pair of integers *l* and *r* (*l*<=≤<=*r*). The Little Elephant has to find the number of such integers *x* (*l*<=≤<=*x*<=≤<=*r*), that the first digit of integer *x* equals the last one (in decimal notation). For example, such numbers as 101, 4...
The single line contains a pair of integers *l* and *r* (1<=≤<=*l*<=≤<=*r*<=≤<=1018) — the boundaries of the interval. Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use cin, cout streams or the %I64d specifier.
On a single line print a single integer — the answer to the problem.
[ "2 47\n", "47 1024\n" ]
[ "12\n", "98\n" ]
In the first sample the answer includes integers 2, 3, 4, 5, 6, 7, 8, 9, 11, 22, 33, 44.
500
[ { "input": "2 47", "output": "12" }, { "input": "47 1024", "output": "98" }, { "input": "1 1000", "output": "108" }, { "input": "1 10000", "output": "1008" }, { "input": "47 8545", "output": "849" }, { "input": "1000 1000", "output": "0" }, { ...
1,552,495,312
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
218
307,200
def size(x): res = 0 while x > 0: x //= 10 res += 1 return res def first(x): last = 0 while x > 0: last = x % 10 x //= 10 return last def last(x): return x % 10 def cut(x): x //= 10 x -= first(x) * 10 ** (size(x) - 1) return x l, r = list(m...
Title: Little Elephant and Interval Time Limit: None seconds Memory Limit: None megabytes Problem Description: The Little Elephant very much loves sums on intervals. This time he has a pair of integers *l* and *r* (*l*<=≤<=*r*). The Little Elephant has to find the number of such integers *x* (*l*<=≤<=*x*<=≤<=*r*), ...
```python def size(x): res = 0 while x > 0: x //= 10 res += 1 return res def first(x): last = 0 while x > 0: last = x % 10 x //= 10 return last def last(x): return x % 10 def cut(x): x //= 10 x -= first(x) * 10 ** (size(x) - 1) return x l, ...
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,604,894,140
2,147,483,647
PyPy 3
OK
TESTS
30
310
0
n = input() s = 0 for i in range(len(n)): if n[i].islower(): s += 1 if s >= len(n)-s: print(n.lower()) else: print(n.upper())
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 n = input() s = 0 for i in range(len(n)): if n[i].islower(): s += 1 if s >= len(n)-s: print(n.lower()) else: print(n.upper()) ```
3.9225
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,664,096,539
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
80
92
0
m = int(input()) i=0 xi=0 yi=0 zi=0 while i <m: x,y,z=map(int,input().split()) xi=xi+x yi=yi+y zi=zi+z i+=1 if xi+yi+zi ==0: print('YES') else: print('NO')
Title: Young Physicist Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A guy named Vasya attends the final grade of a high school. One day Vasya decided to watch a match of his favorite hockey team. And, as the boy loves hockey very much, even more than physics, he forgot to do the homework. S...
```python m = int(input()) i=0 xi=0 yi=0 zi=0 while i <m: x,y,z=map(int,input().split()) xi=xi+x yi=yi+y zi=zi+z i+=1 if xi+yi+zi ==0: print('YES') else: print('NO') ```
0
26
A
Almost Prime
PROGRAMMING
900
[ "number theory" ]
A. Almost Prime
2
256
A number is called almost prime if it has exactly two distinct prime divisors. For example, numbers 6, 18, 24 are almost prime, while 4, 8, 9, 42 are not. Find the amount of almost prime numbers which are between 1 and *n*, inclusive.
Input contains one integer number *n* (1<=≤<=*n*<=≤<=3000).
Output the amount of almost prime numbers between 1 and *n*, inclusive.
[ "10\n", "21\n" ]
[ "2\n", "8\n" ]
none
500
[ { "input": "10", "output": "2" }, { "input": "21", "output": "8" }, { "input": "1", "output": "0" }, { "input": "2", "output": "0" }, { "input": "4", "output": "0" }, { "input": "3", "output": "0" }, { "input": "8", "output": "1" }, ...
1,643,967,737
2,147,483,647
PyPy 3-64
OK
TESTS
23
218
2,457,600
n=int(input()) ans=0 v=[0]*(n+1) for i in range(2,n+1): if(v[i]==0): for j in range(i,n+1,i): v[j]+=1 if(v[i]==2): ans+=1 print(ans)
Title: Almost Prime Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A number is called almost prime if it has exactly two distinct prime divisors. For example, numbers 6, 18, 24 are almost prime, while 4, 8, 9, 42 are not. Find the amount of almost prime numbers which are between 1 and *n*, in...
```python n=int(input()) ans=0 v=[0]*(n+1) for i in range(2,n+1): if(v[i]==0): for j in range(i,n+1,i): v[j]+=1 if(v[i]==2): ans+=1 print(ans) ```
3.940922
305
A
Strange Addition
PROGRAMMING
1,600
[ "brute force", "constructive algorithms", "implementation" ]
null
null
Unfortunately, Vasya can only sum pairs of integers (*a*, *b*), such that for any decimal place at least one number has digit 0 in this place. For example, Vasya can sum numbers 505 and 50, but he cannot sum 1 and 4. Vasya has a set of *k* distinct non-negative integers *d*1,<=*d*2,<=...,<=*d**k*. Vasya wants to choo...
The first input line contains integer *k* (1<=≤<=*k*<=≤<=100) — the number of integers. The second line contains *k* distinct space-separated integers *d*1,<=*d*2,<=...,<=*d**k* (0<=≤<=*d**i*<=≤<=100).
In the first line print a single integer *n* the maximum number of the chosen integers. In the second line print *n* distinct non-negative integers — the required integers. If there are multiple solutions, print any of them. You can print the numbers in any order.
[ "4\n100 10 1 0\n", "3\n2 70 3\n" ]
[ "4\n0 1 10 100 ", "2\n2 70 " ]
none
500
[ { "input": "4\n100 10 1 0", "output": "4\n0 1 10 100 " }, { "input": "3\n2 70 3", "output": "2\n2 70 " }, { "input": "39\n16 72 42 70 17 36 32 40 47 94 27 30 100 55 23 77 67 28 49 50 53 83 38 33 60 65 62 64 6 66 69 86 96 75 85 0 89 73 29", "output": "4\n0 6 30 100 " }, { "inp...
1,593,770,542
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
248
0
n=int(input()) list1=list(map(int,input().split())) c=0 ll=[] for i in range(n): if(list1[i]%10==0): c+=1 ll.append(list1[i]) if(c<n): for i in range(n): if(list1[i]%10!=0): c+=1 ll.append(list1[i]) break print(c) print(*ll)
Title: Strange Addition Time Limit: None seconds Memory Limit: None megabytes Problem Description: Unfortunately, Vasya can only sum pairs of integers (*a*, *b*), such that for any decimal place at least one number has digit 0 in this place. For example, Vasya can sum numbers 505 and 50, but he cannot sum 1 and 4. ...
```python n=int(input()) list1=list(map(int,input().split())) c=0 ll=[] for i in range(n): if(list1[i]%10==0): c+=1 ll.append(list1[i]) if(c<n): for i in range(n): if(list1[i]%10!=0): c+=1 ll.append(list1[i]) break print(c) print(*...
0
931
B
World Cup
PROGRAMMING
1,200
[ "constructive algorithms", "implementation" ]
null
null
The last stage of Football World Cup is played using the play-off system. There are *n* teams left in this stage, they are enumerated from 1 to *n*. Several rounds are held, in each round the remaining teams are sorted in the order of their ids, then the first in this order plays with the second, the third — with the ...
The only line contains three integers *n*, *a* and *b* (2<=≤<=*n*<=≤<=256, 1<=≤<=*a*,<=*b*<=≤<=*n*) — the total number of teams, and the ids of the teams that Arkady is interested in. It is guaranteed that *n* is such that in each round an even number of team advance, and that *a* and *b* are not equal.
In the only line print "Final!" (without quotes), if teams *a* and *b* can meet in the Final. Otherwise, print a single integer — the number of the round in which teams *a* and *b* can meet. The round are enumerated from 1.
[ "4 1 2\n", "8 2 6\n", "8 7 5\n" ]
[ "1\n", "Final!\n", "2\n" ]
In the first example teams 1 and 2 meet in the first round. In the second example teams 2 and 6 can only meet in the third round, which is the Final, if they win all their opponents in earlier rounds. In the third example the teams with ids 7 and 5 can meet in the second round, if they win their opponents in the firs...
1,000
[ { "input": "4 1 2", "output": "1" }, { "input": "8 2 6", "output": "Final!" }, { "input": "8 7 5", "output": "2" }, { "input": "128 30 98", "output": "Final!" }, { "input": "256 128 256", "output": "Final!" }, { "input": "256 2 127", "output": "7" ...
1,524,757,807
2,147,483,647
PyPy 3
OK
TESTS
64
93
21,401,600
def f(n, aim): xs = [x for x in range(1, n+1)] rn = 1 while len(xs) > 2: new_xs = [] for i in range(len(xs)//2): f, l = xs[2*i], xs[2*i+1] if f in aim and l in aim: return rn new_xs.append(f if f in aim else l) xs = new_xs...
Title: World Cup Time Limit: None seconds Memory Limit: None megabytes Problem Description: The last stage of Football World Cup is played using the play-off system. There are *n* teams left in this stage, they are enumerated from 1 to *n*. Several rounds are held, in each round the remaining teams are sorted in th...
```python def f(n, aim): xs = [x for x in range(1, n+1)] rn = 1 while len(xs) > 2: new_xs = [] for i in range(len(xs)//2): f, l = xs[2*i], xs[2*i+1] if f in aim and l in aim: return rn new_xs.append(f if f in aim else l) x...
3
148
A
Insomnia cure
PROGRAMMING
800
[ "constructive algorithms", "implementation", "math" ]
null
null
«One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entertained herself at best she could. Tonight she imagined that all dragons were here to steal her, and ...
Input data contains integer numbers *k*,<=*l*,<=*m*,<=*n* and *d*, each number in a separate line (1<=≤<=*k*,<=*l*,<=*m*,<=*n*<=≤<=10, 1<=≤<=*d*<=≤<=105).
Output the number of damaged dragons.
[ "1\n2\n3\n4\n12\n", "2\n3\n4\n5\n24\n" ]
[ "12\n", "17\n" ]
In the first case every first dragon got punched with a frying pan. Some of the dragons suffered from other reasons as well, but the pan alone would be enough. In the second case dragons 1, 7, 11, 13, 17, 19 and 23 escaped unharmed.
1,000
[ { "input": "1\n2\n3\n4\n12", "output": "12" }, { "input": "2\n3\n4\n5\n24", "output": "17" }, { "input": "1\n1\n1\n1\n100000", "output": "100000" }, { "input": "10\n9\n8\n7\n6", "output": "0" }, { "input": "8\n4\n4\n3\n65437", "output": "32718" }, { "i...
1,699,048,130
2,147,483,647
Python 3
OK
TESTS
40
122
614,400
k = int(input()) l = int(input()) m = int(input()) n = int(input()) d = int(input()) dragons = [False] * d for i in range(1, d+1): if i % k == 0 or i % l == 0 or i % m == 0 or i % n == 0: dragons[i-1] = True damaged_dragons = dragons.count(True) print(damaged_dragons)
Title: Insomnia cure Time Limit: None seconds Memory Limit: None megabytes Problem Description: «One dragon. Two dragon. Three dragon», — the princess was counting. She had trouble falling asleep, and she got bored of counting lambs when she was nine. However, just counting dragons was boring as well, so she entert...
```python k = int(input()) l = int(input()) m = int(input()) n = int(input()) d = int(input()) dragons = [False] * d for i in range(1, d+1): if i % k == 0 or i % l == 0 or i % m == 0 or i % n == 0: dragons[i-1] = True damaged_dragons = dragons.count(True) print(damaged_dragons) ```
3
214
A
System of Equations
PROGRAMMING
800
[ "brute force" ]
null
null
Furik loves math lessons very much, so he doesn't attend them, unlike Rubik. But now Furik wants to get a good mark for math. For that Ms. Ivanova, his math teacher, gave him a new task. Furik solved the task immediately. Can you? You are given a system of equations: You should count, how many there are pairs of int...
A single line contains two integers *n*,<=*m* (1<=≤<=*n*,<=*m*<=≤<=1000) — the parameters of the system. The numbers on the line are separated by a space.
On a single line print the answer to the problem.
[ "9 3\n", "14 28\n", "4 20\n" ]
[ "1\n", "1\n", "0\n" ]
In the first sample the suitable pair is integers (3, 0). In the second sample the suitable pair is integers (3, 5). In the third sample there is no suitable pair.
500
[ { "input": "9 3", "output": "1" }, { "input": "14 28", "output": "1" }, { "input": "4 20", "output": "0" }, { "input": "18 198", "output": "1" }, { "input": "22 326", "output": "1" }, { "input": "26 104", "output": "1" }, { "input": "14 10"...
1,677,369,599
2,147,483,647
Python 3
OK
TESTS
54
498
0
n,m=map(int,input().split()) count=0 for a in range(1001): for b in range(1001): if n==a*a+b and m==a+b*b and n>=1 and m>=1 and n<=1000 and m<=1000: count=count+1 print(count)
Title: System of Equations Time Limit: None seconds Memory Limit: None megabytes Problem Description: Furik loves math lessons very much, so he doesn't attend them, unlike Rubik. But now Furik wants to get a good mark for math. For that Ms. Ivanova, his math teacher, gave him a new task. Furik solved the task immedi...
```python n,m=map(int,input().split()) count=0 for a in range(1001): for b in range(1001): if n==a*a+b and m==a+b*b and n>=1 and m>=1 and n<=1000 and m<=1000: count=count+1 print(count) ```
3
355
B
Vasya and Public Transport
PROGRAMMING
1,100
[ "greedy", "implementation" ]
null
null
Vasya often uses public transport. The transport in the city is of two types: trolleys and buses. The city has *n* buses and *m* trolleys, the buses are numbered by integers from 1 to *n*, the trolleys are numbered by integers from 1 to *m*. Public transport is not free. There are 4 types of tickets: 1. A ticket fo...
The first line contains four integers *c*1,<=*c*2,<=*c*3,<=*c*4 (1<=≤<=*c*1,<=*c*2,<=*c*3,<=*c*4<=≤<=1000) — the costs of the tickets. The second line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000) — the number of buses and trolleys Vasya is going to use. The third line contains *n* integers *a**i* (0<=...
Print a single number — the minimum sum of burles Vasya will have to spend on the tickets.
[ "1 3 7 19\n2 3\n2 5\n4 4 4\n", "4 3 2 1\n1 3\n798\n1 2 3\n", "100 100 8 100\n3 5\n7 94 12\n100 1 47 0 42\n" ]
[ "12\n", "1\n", "16\n" ]
In the first sample the profitable strategy is to buy two tickets of the first type (for the first bus), one ticket of the second type (for the second bus) and one ticket of the third type (for all trolleys). It totals to (2·1) + 3 + 7 = 12 burles. In the second sample the profitable strategy is to buy one ticket of t...
1,000
[ { "input": "1 3 7 19\n2 3\n2 5\n4 4 4", "output": "12" }, { "input": "4 3 2 1\n1 3\n798\n1 2 3", "output": "1" }, { "input": "100 100 8 100\n3 5\n7 94 12\n100 1 47 0 42", "output": "16" }, { "input": "3 103 945 1000\n7 9\n34 35 34 35 34 35 34\n0 0 0 0 0 0 0 0 0", "output"...
1,615,726,482
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
8
92
1,228,800
if __name__ == '__main__': c1,c2,c3,c4 = map(int, input().split()) n,m = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) s = min(c1,c2,c3,c4) l = [] if s == c4: print(c4) else: required = 0 for i in range (n): required = required+min(c2,c1*a...
Title: Vasya and Public Transport Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya often uses public transport. The transport in the city is of two types: trolleys and buses. The city has *n* buses and *m* trolleys, the buses are numbered by integers from 1 to *n*, the trolleys are nu...
```python if __name__ == '__main__': c1,c2,c3,c4 = map(int, input().split()) n,m = map(int, input().split()) a = list(map(int, input().split())) b = list(map(int, input().split())) s = min(c1,c2,c3,c4) l = [] if s == c4: print(c4) else: required = 0 for i in range (n): required = required+m...
0
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,622,036,002
2,147,483,647
PyPy 3
OK
TESTS
44
108
1,740,800
def main_function(): n, m = [int(i) for i in input().split(" ")] students = [] for i in range(n): students.append(input()) hash_table = {} max_scores = [] for i in range(m): maxis = 0 for j in range(n): if int(students[j][i]) > maxis: ...
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 def main_function(): n, m = [int(i) for i in input().split(" ")] students = [] for i in range(n): students.append(input()) hash_table = {} max_scores = [] for i in range(m): maxis = 0 for j in range(n): if int(students[j][i]) > maxis: ...
3
469
B
Chat Online
PROGRAMMING
1,300
[ "implementation" ]
null
null
Little X and Little Z are good friends. They always chat online. But both of them have schedules. Little Z has fixed schedule. He always online at any moment of time between *a*1 and *b*1, between *a*2 and *b*2, ..., between *a**p* and *b**p* (all borders inclusive). But the schedule of Little X is quite strange, it d...
The first line contains four space-separated integers *p*,<=*q*,<=*l*,<=*r* (1<=≤<=<=*p*,<=*q*<=≤<=50; 0<=≤<=*l*<=≤<=*r*<=≤<=1000). Each of the next *p* lines contains two space-separated integers *a**i*,<=*b**i* (0<=≤<=*a**i*<=&lt;<=*b**i*<=≤<=1000). Each of the next *q* lines contains two space-separated integers *c...
Output a single integer — the number of moments of time from the segment [*l*,<=*r*] which suit for online conversation.
[ "1 1 0 4\n2 3\n0 1\n", "2 3 0 20\n15 17\n23 26\n1 4\n7 11\n15 17\n" ]
[ "3\n", "20\n" ]
none
1,000
[ { "input": "1 1 0 4\n2 3\n0 1", "output": "3" }, { "input": "2 3 0 20\n15 17\n23 26\n1 4\n7 11\n15 17", "output": "20" }, { "input": "5 2 27 452\n148 154\n421 427\n462 470\n777 786\n969 978\n245 247\n313 322", "output": "54" }, { "input": "3 6 25 785\n273 275\n391 397\n775 78...
1,694,036,583
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <bits/stdc++.h> using namespace std; int main() { int p, q, l, r; scanf("%d%d%d%d", &p, &q, &l, &r); vector<pair<int, int>> Z(p), X(q); int ans = 0; for (int i = 0; i < p; i++) cin >> Z[i].first >> Z[i].second; for (int i = 0; i < q; i++) cin >> X[i].first >> X[i].second; ...
Title: Chat Online Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little X and Little Z are good friends. They always chat online. But both of them have schedules. Little Z has fixed schedule. He always online at any moment of time between *a*1 and *b*1, between *a*2 and *b*2, ..., betwe...
```python #include <bits/stdc++.h> using namespace std; int main() { int p, q, l, r; scanf("%d%d%d%d", &p, &q, &l, &r); vector<pair<int, int>> Z(p), X(q); int ans = 0; for (int i = 0; i < p; i++) cin >> Z[i].first >> Z[i].second; for (int i = 0; i < q; i++) cin >> X[i].first >> X[i].sec...
-1
597
C
Subsequences
PROGRAMMING
1,900
[ "data structures", "dp" ]
null
null
For the given sequence with *n* different elements find the number of increasing subsequences with *k*<=+<=1 elements. It is guaranteed that the answer is not greater than 8·1018.
First line contain two integer values *n* and *k* (1<=≤<=*n*<=≤<=105,<=0<=≤<=*k*<=≤<=10) — the length of sequence and the number of elements in increasing subsequences. Next *n* lines contains one integer *a**i* (1<=≤<=*a**i*<=≤<=*n*) each — elements of sequence. All values *a**i* are different.
Print one integer — the answer to the problem.
[ "5 2\n1\n2\n3\n5\n4\n" ]
[ "7\n" ]
none
1,500
[ { "input": "5 2\n1\n2\n3\n5\n4", "output": "7" }, { "input": "1 0\n1", "output": "1" }, { "input": "2 1\n1\n2", "output": "1" }, { "input": "2 1\n2\n1", "output": "0" }, { "input": "3 2\n1\n2\n3", "output": "1" }, { "input": "3 1\n1\n3\n2", "output...
1,647,854,273
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
31
0
n, k = map(int, input().split()) nums = [] for i in range(n): nums.append(int(input())) dp = [[0] * (k + 1) for _ in range(n)] dp[-1][0] = 1 dp[-1][1] = 1 for i in range(n - 2, -1, -1): dp[i][0] = 1 dp[i][1] = 1 for length in range(1, k): for j in range(i + 1, n): if nums[i] > nums[j...
Title: Subsequences Time Limit: None seconds Memory Limit: None megabytes Problem Description: For the given sequence with *n* different elements find the number of increasing subsequences with *k*<=+<=1 elements. It is guaranteed that the answer is not greater than 8·1018. Input Specification: First line contain t...
```python n, k = map(int, input().split()) nums = [] for i in range(n): nums.append(int(input())) dp = [[0] * (k + 1) for _ in range(n)] dp[-1][0] = 1 dp[-1][1] = 1 for i in range(n - 2, -1, -1): dp[i][0] = 1 dp[i][1] = 1 for length in range(1, k): for j in range(i + 1, n): if nums[i...
0
385
B
Bear and Strings
PROGRAMMING
1,200
[ "brute force", "greedy", "implementation", "math", "strings" ]
null
null
The bear has a string *s*<==<=*s*1*s*2... *s*|*s*| (record |*s*| is the string's length), consisting of lowercase English letters. The bear wants to count the number of such pairs of indices *i*,<=*j* (1<=≤<=*i*<=≤<=*j*<=≤<=|*s*|), that string *x*(*i*,<=*j*)<==<=*s**i**s**i*<=+<=1... *s**j* contains at least one string...
The first line contains a non-empty string *s* (1<=≤<=|*s*|<=≤<=5000). It is guaranteed that the string only consists of lowercase English letters.
Print a single number — the answer to the problem.
[ "bearbtear\n", "bearaabearc\n" ]
[ "6\n", "20\n" ]
In the first sample, the following pairs (*i*, *j*) match: (1, 4), (1, 5), (1, 6), (1, 7), (1, 8), (1, 9). In the second sample, the following pairs (*i*, *j*) match: (1,  4), (1,  5), (1,  6), (1,  7), (1,  8), (1,  9), (1,  10), (1,  11), (2,  10), (2,  11), (3,  10), (3,  11), (4,  10), (4,  11), (5,  10), (5,  11)...
1,000
[ { "input": "bearbtear", "output": "6" }, { "input": "bearaabearc", "output": "20" }, { "input": "pbearbearhbearzqbearjkterasjhy", "output": "291" }, { "input": "pbearjbearbebearnbabcffbearbearwubearjezpiorrbearbearjbdlbearbearqbearjbearwipmsbearoaftrsebearzsnqb", "output"...
1,598,257,452
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
139
20,172,800
s = input() l = len(s) num = s.count('bear') occurences = num * (l - 3) + 4 * (num - 1) print(occurences)
Title: Bear and Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: The bear has a string *s*<==<=*s*1*s*2... *s*|*s*| (record |*s*| is the string's length), consisting of lowercase English letters. The bear wants to count the number of such pairs of indices *i*,<=*j* (1<=≤<=*i*<=≤<=*j...
```python s = input() l = len(s) num = s.count('bear') occurences = num * (l - 3) + 4 * (num - 1) print(occurences) ```
0
405
A
Gravity Flip
PROGRAMMING
900
[ "greedy", "implementation", "sortings" ]
null
null
Little Chris is bored during his physics lessons (too easy), so he has built a toy box to keep himself occupied. The box is special, since it has the ability to change gravity. There are *n* columns of toy cubes in the box arranged in a line. The *i*-th column contains *a**i* cubes. At first, the gravity in the box is...
The first line of input contains an integer *n* (1<=≤<=*n*<=≤<=100), the number of the columns in the box. The next line contains *n* space-separated integer numbers. The *i*-th number *a**i* (1<=≤<=*a**i*<=≤<=100) denotes the number of cubes in the *i*-th column.
Output *n* integer numbers separated by spaces, where the *i*-th number is the amount of cubes in the *i*-th column after the gravity switch.
[ "4\n3 2 1 2\n", "3\n2 3 8\n" ]
[ "1 2 2 3 \n", "2 3 8 \n" ]
The first example case is shown on the figure. The top cube of the first column falls to the top of the last column; the top cube of the second column falls to the top of the third column; the middle cube of the first column falls to the top of the second column. In the second example case the gravity switch does not ...
500
[ { "input": "4\n3 2 1 2", "output": "1 2 2 3 " }, { "input": "3\n2 3 8", "output": "2 3 8 " }, { "input": "5\n2 1 2 1 2", "output": "1 1 2 2 2 " }, { "input": "1\n1", "output": "1 " }, { "input": "2\n4 3", "output": "3 4 " }, { "input": "6\n100 40 60 20...
1,699,118,343
2,147,483,647
Python 3
OK
TESTS
32
46
0
lst = int(input()) num = list(map(int,input().split())) num.sort() print(*num,sep=" ")
Title: Gravity Flip Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Chris is bored during his physics lessons (too easy), so he has built a toy box to keep himself occupied. The box is special, since it has the ability to change gravity. There are *n* columns of toy cubes in the bo...
```python lst = int(input()) num = list(map(int,input().split())) num.sort() print(*num,sep=" ") ```
3
983
A
Finite or not?
PROGRAMMING
1,700
[ "implementation", "math" ]
null
null
You are given several queries. Each query consists of three integers $p$, $q$ and $b$. You need to answer whether the result of $p/q$ in notation with base $b$ is a finite fraction. A fraction in notation with base $b$ is finite if it contains finite number of numerals after the decimal point. It is also possible that...
The first line contains a single integer $n$ ($1 \le n \le 10^5$) — the number of queries. Next $n$ lines contain queries, one per line. Each line contains three integers $p$, $q$, and $b$ ($0 \le p \le 10^{18}$, $1 \le q \le 10^{18}$, $2 \le b \le 10^{18}$). All numbers are given in notation with base $10$.
For each question, in a separate line, print Finite if the fraction is finite and Infinite otherwise.
[ "2\n6 12 10\n4 3 10\n", "4\n1 1 2\n9 36 2\n4 12 3\n3 5 4\n" ]
[ "Finite\nInfinite\n", "Finite\nFinite\nFinite\nInfinite\n" ]
$\frac{6}{12} = \frac{1}{2} = 0,5_{10}$ $\frac{4}{3} = 1,(3)_{10}$ $\frac{9}{36} = \frac{1}{4} = 0,01_2$ $\frac{4}{12} = \frac{1}{3} = 0,1_3$
500
[ { "input": "2\n6 12 10\n4 3 10", "output": "Finite\nInfinite" }, { "input": "4\n1 1 2\n9 36 2\n4 12 3\n3 5 4", "output": "Finite\nFinite\nFinite\nInfinite" }, { "input": "10\n10 5 3\n1 7 10\n7 5 7\n4 4 9\n6 5 2\n6 7 5\n9 9 7\n7 5 5\n6 6 4\n10 8 2", "output": "Finite\nInfinite\nInfini...
1,548,944,583
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
6
186
23,142,400
import math for _ in range(int(input())): a,b,c=map(int,input().split()) s=str(a/b) k='0'+s[s.find('.'):] #print("Initial:",k) count=0;t=1 while(float(k)!=0): count+=1 s=str(float(k)*c) k='0'+s[s.find('.'):] #print(k) if count>8: b...
Title: Finite or not? Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given several queries. Each query consists of three integers $p$, $q$ and $b$. You need to answer whether the result of $p/q$ in notation with base $b$ is a finite fraction. A fraction in notation with base $b$ ...
```python import math for _ in range(int(input())): a,b,c=map(int,input().split()) s=str(a/b) k='0'+s[s.find('.'):] #print("Initial:",k) count=0;t=1 while(float(k)!=0): count+=1 s=str(float(k)*c) k='0'+s[s.find('.'):] #print(k) if count>8: ...
0
813
A
The Contest
PROGRAMMING
1,100
[ "implementation" ]
null
null
Pasha is participating in a contest on one well-known website. This time he wants to win the contest and will do anything to get to the first place! This contest consists of *n* problems, and Pasha solves *i*th problem in *a**i* time units (his solutions are always correct). At any moment of time he can be thinking ab...
The first line contains one integer *n* (1<=≤<=*n*<=≤<=1000) — the number of problems. The second line contains *n* integers *a**i* (1<=≤<=*a**i*<=≤<=105) — the time Pasha needs to solve *i*th problem. The third line contains one integer *m* (0<=≤<=*m*<=≤<=1000) — the number of periods of time when the website is work...
If Pasha can solve and submit all the problems before the end of the contest, print the minimal moment of time by which he can have all the solutions submitted. Otherwise print "-1" (without brackets).
[ "2\n3 4\n2\n1 4\n7 9\n", "1\n5\n1\n1 4\n", "1\n5\n1\n1 5\n" ]
[ "7\n", "-1\n", "5\n" ]
In the first example Pasha can act like this: he solves the second problem in 4 units of time and sends it immediately. Then he spends 3 time units to solve the first problem and sends it 7 time units after the contest starts, because at this moment the website starts working again. In the second example Pasha invents...
0
[ { "input": "2\n3 4\n2\n1 4\n7 9", "output": "7" }, { "input": "1\n5\n1\n1 4", "output": "-1" }, { "input": "1\n5\n1\n1 5", "output": "5" }, { "input": "5\n100000 100000 100000 100000 100000\n0", "output": "-1" }, { "input": "5\n886 524 128 4068 298\n3\n416 3755\n4...
1,592,253,059
2,147,483,647
Python 3
OK
TESTS
29
109
307,200
import math n=int(input()) list=[int(i) for i in input().split()] some=sum(list) m=int(input()) for i in range(m): a,b=map(int,input().split()) if(some<=b): if(some<a): print(a) else: print(some) exit() print("-1")
Title: The Contest Time Limit: None seconds Memory Limit: None megabytes Problem Description: Pasha is participating in a contest on one well-known website. This time he wants to win the contest and will do anything to get to the first place! This contest consists of *n* problems, and Pasha solves *i*th problem in ...
```python import math n=int(input()) list=[int(i) for i in input().split()] some=sum(list) m=int(input()) for i in range(m): a,b=map(int,input().split()) if(some<=b): if(some<a): print(a) else: print(some) exit() print("-1") ```
3
962
C
Make a Square
PROGRAMMING
1,400
[ "brute force", "implementation", "math" ]
null
null
You are given a positive integer $n$, written without leading zeroes (for example, the number 04 is incorrect). In one operation you can delete any digit of the given integer so that the result remains a positive integer without leading zeros. Determine the minimum number of operations that you need to consistently ...
The first line contains a single integer $n$ ($1 \le n \le 2 \cdot 10^{9}$). The number is given without leading zeroes.
If it is impossible to make the square of some positive integer from $n$, print -1. In the other case, print the minimal number of operations required to do it.
[ "8314\n", "625\n", "333\n" ]
[ "2\n", "0\n", "-1\n" ]
In the first example we should delete from $8314$ the digits $3$ and $4$. After that $8314$ become equals to $81$, which is the square of the integer $9$. In the second example the given $625$ is the square of the integer $25$, so you should not delete anything. In the third example it is impossible to make the squa...
0
[ { "input": "8314", "output": "2" }, { "input": "625", "output": "0" }, { "input": "333", "output": "-1" }, { "input": "1881388645", "output": "6" }, { "input": "1059472069", "output": "3" }, { "input": "1354124829", "output": "4" }, { "inpu...
1,523,611,473
2,147,483,647
Python 3
OK
TESTS
70
280
7,372,800
def check(a, b): k = 0 asize = len(a) for j in range(asize): if a[j] == b[k]: k += 1 if k == len(b): break if k == len(b): return asize - len(b) return -1 s = input() for i in range(45000, 0, -1): d = check(s,...
Title: Make a Square Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a positive integer $n$, written without leading zeroes (for example, the number 04 is incorrect). In one operation you can delete any digit of the given integer so that the result remains a positive intege...
```python def check(a, b): k = 0 asize = len(a) for j in range(asize): if a[j] == b[k]: k += 1 if k == len(b): break if k == len(b): return asize - len(b) return -1 s = input() for i in range(45000, 0, -1): d ...
3
787
A
The Monster
PROGRAMMING
1,200
[ "brute force", "math", "number theory" ]
null
null
A monster is chasing after Rick and Morty on another planet. They're so frightened that sometimes they scream. More accurately, Rick screams at times *b*,<=*b*<=+<=*a*,<=*b*<=+<=2*a*,<=*b*<=+<=3*a*,<=... and Morty screams at times *d*,<=*d*<=+<=*c*,<=*d*<=+<=2*c*,<=*d*<=+<=3*c*,<=.... The Monster will catch them if a...
The first line of input contains two integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=100). The second line contains two integers *c* and *d* (1<=≤<=*c*,<=*d*<=≤<=100).
Print the first time Rick and Morty will scream at the same time, or <=-<=1 if they will never scream at the same time.
[ "20 2\n9 19\n", "2 1\n16 12\n" ]
[ "82\n", "-1\n" ]
In the first sample testcase, Rick's 5th scream and Morty's 8th time are at time 82. In the second sample testcase, all Rick's screams will be at odd times and Morty's will be at even times, so they will never scream at the same time.
500
[ { "input": "20 2\n9 19", "output": "82" }, { "input": "2 1\n16 12", "output": "-1" }, { "input": "39 52\n88 78", "output": "1222" }, { "input": "59 96\n34 48", "output": "1748" }, { "input": "87 37\n91 29", "output": "211" }, { "input": "11 81\n49 7", ...
1,682,013,502
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
35
92
1,331,200
a, b = map(int, input().split()) c, d = map(int, input().split()) n = -1 for i in range(10000): tmp = d-b+i*c if tmp%a == 0: #print(tmp//a, i) n = i break if n == -1: print(-1) else: print(d+n*c)
Title: The Monster Time Limit: None seconds Memory Limit: None megabytes Problem Description: A monster is chasing after Rick and Morty on another planet. They're so frightened that sometimes they scream. More accurately, Rick screams at times *b*,<=*b*<=+<=*a*,<=*b*<=+<=2*a*,<=*b*<=+<=3*a*,<=... and Morty screams a...
```python a, b = map(int, input().split()) c, d = map(int, input().split()) n = -1 for i in range(10000): tmp = d-b+i*c if tmp%a == 0: #print(tmp//a, i) n = i break if n == -1: print(-1) else: print(d+n*c) ```
0
11
A
Increasing Sequence
PROGRAMMING
900
[ "constructive algorithms", "implementation", "math" ]
A. Increasing Sequence
1
64
A sequence *a*0,<=*a*1,<=...,<=*a**t*<=-<=1 is called increasing if *a**i*<=-<=1<=&lt;<=*a**i* for each *i*:<=0<=&lt;<=*i*<=&lt;<=*t*. You are given a sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 and a positive integer *d*. In each move you may choose one element of the given sequence and add *d* to it. What is the least...
The first line of the input contains two integer numbers *n* and *d* (2<=≤<=*n*<=≤<=2000,<=1<=≤<=*d*<=≤<=106). The second line contains space separated sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 (1<=≤<=*b**i*<=≤<=106).
Output the minimal number of moves needed to make the sequence increasing.
[ "4 2\n1 3 3 2\n" ]
[ "3\n" ]
none
0
[ { "input": "4 2\n1 3 3 2", "output": "3" }, { "input": "2 1\n1 1", "output": "1" }, { "input": "2 1\n2 5", "output": "0" }, { "input": "2 1\n1 2", "output": "0" }, { "input": "2 1\n1 1", "output": "1" }, { "input": "2 7\n10 20", "output": "0" }, ...
1,442,828,263
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
15
1,000
0
n,d = input().split() d = int(d) def inp(s): j = 0 a = [] for i in range(len(s)): if s[i] == " ": a.append(int(s[j:i])) j = i+1 if i == len(s)-1: a.append(int(s[j:])) return a s = input() a = inp(s) c = 0 for i in range(len(a)-1): ...
Title: Increasing Sequence Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: A sequence *a*0,<=*a*1,<=...,<=*a**t*<=-<=1 is called increasing if *a**i*<=-<=1<=&lt;<=*a**i* for each *i*:<=0<=&lt;<=*i*<=&lt;<=*t*. You are given a sequence *b*0,<=*b*1,<=...,<=*b**n*<=-<=1 and a positive integer *d*...
```python n,d = input().split() d = int(d) def inp(s): j = 0 a = [] for i in range(len(s)): if s[i] == " ": a.append(int(s[j:i])) j = i+1 if i == len(s)-1: a.append(int(s[j:])) return a s = input() a = inp(s) c = 0 for i in range(l...
0
237
A
Free Cash
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera runs a 24/7 fast food cafe. He magically learned that next day *n* people will visit his cafe. For each person we know the arrival time: the *i*-th person comes exactly at *h**i* hours *m**i* minutes. The cafe spends less than a minute to serve each client, but if a client comes in and sees that there is no free...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=105), that is the number of cafe visitors. Each of the following *n* lines has two space-separated integers *h**i* and *m**i* (0<=≤<=*h**i*<=≤<=23; 0<=≤<=*m**i*<=≤<=59), representing the time when the *i*-th person comes into the cafe. Note that the time is...
Print a single integer — the minimum number of cashes, needed to serve all clients next day.
[ "4\n8 0\n8 10\n8 10\n8 45\n", "3\n0 12\n10 11\n22 22\n" ]
[ "2\n", "1\n" ]
In the first sample it is not enough one cash to serve all clients, because two visitors will come into cafe in 8:10. Therefore, if there will be one cash in cafe, then one customer will be served by it, and another one will not wait and will go away. In the second sample all visitors will come in different times, so ...
500
[ { "input": "4\n8 0\n8 10\n8 10\n8 45", "output": "2" }, { "input": "3\n0 12\n10 11\n22 22", "output": "1" }, { "input": "5\n12 8\n15 27\n15 27\n16 2\n19 52", "output": "2" }, { "input": "7\n5 6\n7 34\n7 34\n7 34\n12 29\n15 19\n20 23", "output": "3" }, { "input": "...
1,620,386,239
2,147,483,647
Python 3
OK
TESTS
67
342
11,059,200
from collections import Counter n = int(input()) lookup = [input() for _ in range(n)] lookup=Counter(lookup).most_common() print(lookup[0][1])
Title: Free Cash Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera runs a 24/7 fast food cafe. He magically learned that next day *n* people will visit his cafe. For each person we know the arrival time: the *i*-th person comes exactly at *h**i* hours *m**i* minutes. The cafe spends l...
```python from collections import Counter n = int(input()) lookup = [input() for _ in range(n)] lookup=Counter(lookup).most_common() print(lookup[0][1]) ```
3
1,006
C
Three Parts of the Array
PROGRAMMING
1,200
[ "binary search", "data structures", "two pointers" ]
null
null
You are given an array $d_1, d_2, \dots, d_n$ consisting of $n$ integer numbers. Your task is to split this array into three parts (some of which may be empty) in such a way that each element of the array belongs to exactly one of the three parts, and each of the parts forms a consecutive contiguous subsegment (possib...
The first line of the input contains one integer $n$ ($1 \le n \le 2 \cdot 10^5$) — the number of elements in the array $d$. The second line of the input contains $n$ integers $d_1, d_2, \dots, d_n$ ($1 \le d_i \le 10^9$) — the elements of the array $d$.
Print a single integer — the maximum possible value of $sum_1$, considering that the condition $sum_1 = sum_3$ must be met. Obviously, at least one valid way to split the array exists (use $a=c=0$ and $b=n$).
[ "5\n1 3 1 1 4\n", "5\n1 3 2 1 4\n", "3\n4 1 2\n" ]
[ "5\n", "4\n", "0\n" ]
In the first example there is only one possible splitting which maximizes $sum_1$: $[1, 3, 1], [~], [1, 4]$. In the second example the only way to have $sum_1=4$ is: $[1, 3], [2, 1], [4]$. In the third example there is only one way to split the array: $[~], [4, 1, 2], [~]$.
0
[ { "input": "5\n1 3 1 1 4", "output": "5" }, { "input": "5\n1 3 2 1 4", "output": "4" }, { "input": "3\n4 1 2", "output": "0" }, { "input": "1\n1000000000", "output": "0" }, { "input": "2\n1 1", "output": "1" }, { "input": "5\n1 3 5 4 5", "output": ...
1,622,472,457
2,147,483,647
Python 3
OK
TESTS
27
343
18,329,600
n = int(input()) a = list(map(int, input().split())) s1, s2 = 0, 0 r = n ans = 0 for l in range(n): s1 += a[l] while s2 < s1: r -= 1 s2 += a[r] if s1 == s2 and r > l: ans = max(ans, s1) print(ans)
Title: Three Parts of the Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array $d_1, d_2, \dots, d_n$ consisting of $n$ integer numbers. Your task is to split this array into three parts (some of which may be empty) in such a way that each element of the array belo...
```python n = int(input()) a = list(map(int, input().split())) s1, s2 = 0, 0 r = n ans = 0 for l in range(n): s1 += a[l] while s2 < s1: r -= 1 s2 += a[r] if s1 == s2 and r > l: ans = max(ans, s1) print(ans) ```
3
664
A
Complicated GCD
PROGRAMMING
800
[ "math", "number theory" ]
null
null
Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find greatest common divisor *GCD*(*a*,<=*b*), for example, Euclid algorithm. Formally, find the biggest in...
The only line of the input contains two integers *a* and *b* (1<=≤<=*a*<=≤<=*b*<=≤<=10100).
Output one integer — greatest common divisor of all integers from *a* to *b* inclusive.
[ "1 2\n", "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576\n" ]
[ "1\n", "61803398874989484820458683436563811772030917980576\n" ]
none
500
[ { "input": "1 2", "output": "1" }, { "input": "61803398874989484820458683436563811772030917980576 61803398874989484820458683436563811772030917980576", "output": "61803398874989484820458683436563811772030917980576" }, { "input": "1 100", "output": "1" }, { "input": "100 100000...
1,680,328,238
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
3
46
0
n,m = map(int,input().split()) def Gcd(a,b): if b == 0: return a return Gcd(b,a%b) print(Gcd(n,m))
Title: Complicated GCD Time Limit: None seconds Memory Limit: None megabytes Problem Description: Greatest common divisor *GCD*(*a*,<=*b*) of two positive integers *a* and *b* is equal to the biggest integer *d* such that both integers *a* and *b* are divisible by *d*. There are many efficient algorithms to find gre...
```python n,m = map(int,input().split()) def Gcd(a,b): if b == 0: return a return Gcd(b,a%b) print(Gcd(n,m)) ```
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,595,957,105
2,147,483,647
PyPy 3
OK
TESTS
29
140
20,172,800
p,n = list(map(int,input().split(" "))) l = [] for i in range(n): l.append(int(input())) s = set() for i in range(len(l)): m = l[i]%p if m in s: print(i+1) break s.add(m) 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 = list(map(int,input().split(" "))) l = [] for i in range(n): l.append(int(input())) s = set() for i in range(len(l)): m = l[i]%p if m in s: print(i+1) break s.add(m) else: print("-1") ```
3
816
A
Karen and Morning
PROGRAMMING
1,000
[ "brute force", "implementation" ]
null
null
Karen is getting ready for a new school day! It is currently hh:mm, given in a 24-hour format. As you know, Karen loves palindromes, and she believes that it is good luck to wake up when the time is a palindrome. What is the minimum number of minutes she should sleep, such that, when she wakes up, the time is a palin...
The first and only line of input contains a single string in the format hh:mm (00<=≤<= hh <=≤<=23, 00<=≤<= mm <=≤<=59).
Output a single integer on a line by itself, the minimum number of minutes she should sleep, such that, when she wakes up, the time is a palindrome.
[ "05:39\n", "13:31\n", "23:59\n" ]
[ "11\n", "0\n", "1\n" ]
In the first test case, the minimum number of minutes Karen should sleep for is 11. She can wake up at 05:50, when the time is a palindrome. In the second test case, Karen can wake up immediately, as the current time, 13:31, is already a palindrome. In the third test case, the minimum number of minutes Karen should s...
500
[ { "input": "05:39", "output": "11" }, { "input": "13:31", "output": "0" }, { "input": "23:59", "output": "1" }, { "input": "13:32", "output": "69" }, { "input": "14:40", "output": "1" }, { "input": "14:00", "output": "41" }, { "input": "05:...
1,503,151,740
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
28
77
0
s=list(map(int,input().split(':'))) a=s[0]%10*10+s[0]//10 if s[1]<=a: print(a-s[1]) elif s[0]==23: print(60-s[1]) elif s[0]%10<5 or s[0]%10>8: print(60-s[1]+a+10) else: print(60-s[1]+2+60*(9-s[0]%10)) #print(' '.join([str(i) for i in s]))
Title: Karen and Morning Time Limit: None seconds Memory Limit: None megabytes Problem Description: Karen is getting ready for a new school day! It is currently hh:mm, given in a 24-hour format. As you know, Karen loves palindromes, and she believes that it is good luck to wake up when the time is a palindrome. Wh...
```python s=list(map(int,input().split(':'))) a=s[0]%10*10+s[0]//10 if s[1]<=a: print(a-s[1]) elif s[0]==23: print(60-s[1]) elif s[0]%10<5 or s[0]%10>8: print(60-s[1]+a+10) else: print(60-s[1]+2+60*(9-s[0]%10)) #print(' '.join([str(i) for i in s])) ```
0
58
A
Chat room
PROGRAMMING
1,000
[ "greedy", "strings" ]
A. Chat room
1
256
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, ...
The first and only line contains the word *s*, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
[ "ahhellllloou\n", "hlelo\n" ]
[ "YES\n", "NO\n" ]
none
500
[ { "input": "ahhellllloou", "output": "YES" }, { "input": "hlelo", "output": "NO" }, { "input": "helhcludoo", "output": "YES" }, { "input": "hehwelloho", "output": "YES" }, { "input": "pnnepelqomhhheollvlo", "output": "YES" }, { "input": "tymbzjyqhymeda...
1,564,339,501
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
108
0
s = input() a = s.find('h') b = s.find('e', a, -1) c = s.find('l', b, -1) d = s.find('l', c, -1) e = s.find('o', d, -1) if a>=0 and b>=0 and c>=0 and e>=0 and d>=0: print('YES') else: print('NO')
Title: Chat room Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word *s*. It is considered that Vasya managed to say hello if several letter...
```python s = input() a = s.find('h') b = s.find('e', a, -1) c = s.find('l', b, -1) d = s.find('l', c, -1) e = s.find('o', d, -1) if a>=0 and b>=0 and c>=0 and e>=0 and d>=0: print('YES') else: print('NO') ```
0
875
A
Classroom Watch
PROGRAMMING
1,200
[ "brute force", "math" ]
null
null
Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answered Vova that *n* is the answer to the arithmetic task for first-graders. In the textbook, a certain ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=109).
In the first line print one integer *k* — number of different values of *x* satisfying the condition. In next *k* lines print these values in ascending order.
[ "21\n", "20\n" ]
[ "1\n15\n", "0\n" ]
In the first test case *x* = 15 there is only one variant: 15 + 1 + 5 = 21. In the second test case there are no such *x*.
500
[ { "input": "21", "output": "1\n15" }, { "input": "20", "output": "0" }, { "input": "1", "output": "0" }, { "input": "2", "output": "1\n1" }, { "input": "3", "output": "0" }, { "input": "100000001", "output": "2\n99999937\n100000000" }, { "i...
1,577,154,712
2,147,483,647
Python 3
OK
TESTS
18
124
0
def fun(n): return sum(int(n[i]) for i in range (0,len(n))) n=int(input()) p=[] for i in range (1,min(100,n+1)): if i==fun(str(n-i)): p.append(n-i) p=sorted(p) print(len(p)) for i in range (0,len(p)): print(p[i])
Title: Classroom Watch Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eighth-grader Vova is on duty today in the class. After classes, he went into the office to wash the board, and found on it the number *n*. He asked what is this number and the teacher of mathematics Inna Petrovna answe...
```python def fun(n): return sum(int(n[i]) for i in range (0,len(n))) n=int(input()) p=[] for i in range (1,min(100,n+1)): if i==fun(str(n-i)): p.append(n-i) p=sorted(p) print(len(p)) for i in range (0,len(p)): print(p[i]) ```
3
991
B
Getting an A
PROGRAMMING
900
[ "greedy", "sortings" ]
null
null
Translator's note: in Russia's most widespread grading system, there are four grades: 5, 4, 3, 2, the higher the better, roughly corresponding to A, B, C and F respectively in American grading system. The term is coming to an end and students start thinking about their grades. Today, a professor told his students that...
The first line contains a single integer $n$ — the number of Vasya's grades ($1 \leq n \leq 100$). The second line contains $n$ integers from $2$ to $5$ — Vasya's grades for his lab works.
Output a single integer — the minimum amount of lab works that Vasya has to redo. It can be shown that Vasya can always redo enough lab works to get a $5$.
[ "3\n4 4 4\n", "4\n5 4 5 5\n", "4\n5 3 3 5\n" ]
[ "2\n", "0\n", "1\n" ]
In the first sample, it is enough to redo two lab works to make two $4$s into $5$s. In the second sample, Vasya's average is already $4.75$ so he doesn't have to redo anything to get a $5$. In the second sample Vasya has to redo one lab work to get rid of one of the $3$s, that will make the average exactly $4.5$ so t...
1,000
[ { "input": "3\n4 4 4", "output": "2" }, { "input": "4\n5 4 5 5", "output": "0" }, { "input": "4\n5 3 3 5", "output": "1" }, { "input": "1\n5", "output": "0" }, { "input": "4\n3 2 5 4", "output": "2" }, { "input": "5\n5 4 3 2 5", "output": "2" }, ...
1,643,291,512
2,147,483,647
Python 3
OK
TESTS
61
61
0
a = int(input()) nota = (list(map(int,input().split()))) count = 0 while sum(nota) / len(nota) < 4.5: nota = sorted(nota) nota[0] = 5 count += 1 print(count)
Title: Getting an A Time Limit: None seconds Memory Limit: None megabytes Problem Description: Translator's note: in Russia's most widespread grading system, there are four grades: 5, 4, 3, 2, the higher the better, roughly corresponding to A, B, C and F respectively in American grading system. The term is coming t...
```python a = int(input()) nota = (list(map(int,input().split()))) count = 0 while sum(nota) / len(nota) < 4.5: nota = sorted(nota) nota[0] = 5 count += 1 print(count) ```
3