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
0
none
none
none
0
[ "none" ]
null
null
Slastyona and her loyal dog Pushok are playing a meaningless game that is indeed very interesting. The game consists of multiple rounds. Its rules are very simple: in each round, a natural number *k* is chosen. Then, the one who says (or barks) it faster than the other wins the round. After that, the winner's score is...
In the first string, the number of games *n* (1<=≤<=*n*<=≤<=350000) is given. Each game is represented by a pair of scores *a*, *b* (1<=≤<=*a*,<=*b*<=≤<=109) – the results of Slastyona and Pushok, correspondingly.
For each pair of scores, answer "Yes" if it's possible for a game to finish with given score, and "No" otherwise. You can output each letter in arbitrary case (upper or lower).
[ "6\n2 4\n75 45\n8 8\n16 16\n247 994\n1000000000 1000000\n" ]
[ "Yes\nYes\nYes\nNo\nNo\nYes\n" ]
First game might have been consisted of one round, in which the number 2 would have been chosen and Pushok would have won. The second game needs exactly two rounds to finish with such result: in the first one, Slastyona would have said the number 5, and in the second one, Pushok would have barked the number 3.
0
[ { "input": "6\n2 4\n75 45\n8 8\n16 16\n247 994\n1000000000 1000000", "output": "Yes\nYes\nYes\nNo\nNo\nYes" }, { "input": "3\n1 1\n8 27\n1000 1331", "output": "Yes\nNo\nNo" }, { "input": "1\n12004 18012002", "output": "Yes" }, { "input": "1\n3331 11095561", "output": "Yes...
1,608,626,813
2,147,483,647
PyPy 3
TIME_LIMIT_EXCEEDED
TESTS
7
1,000
10,854,400
import math,sys def MeaninglessGame(): n=int(sys.stdin.readline()) for x in range(0,n): i=sys.stdin.readline().split() a=int(i[0]) b=int(i[1]) r=math.ceil((a*b)**(1./3.)) bool=r**3==a*b and a%r==0 and b%r==0 if bool:print("Yes") ...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Slastyona and her loyal dog Pushok are playing a meaningless game that is indeed very interesting. The game consists of multiple rounds. Its rules are very simple: in each round, a natural number *k* is chosen. Then, the one who ...
```python import math,sys def MeaninglessGame(): n=int(sys.stdin.readline()) for x in range(0,n): i=sys.stdin.readline().split() a=int(i[0]) b=int(i[1]) r=math.ceil((a*b)**(1./3.)) bool=r**3==a*b and a%r==0 and b%r==0 if bool:prin...
0
877
B
Nikita and string
PROGRAMMING
1,500
[ "brute force", "dp" ]
null
null
One day Nikita found the string containing letters "a" and "b" only. Nikita thinks that string is beautiful if it can be cut into 3 strings (possibly empty) without changing the order of the letters, where the 1-st and the 3-rd one contain only letters "a" and the 2-nd contains only letters "b". Nikita wants to make...
The first line contains a non-empty string of length not greater than 5<=000 containing only lowercase English letters "a" and "b".
Print a single integer — the maximum possible size of beautiful string Nikita can get.
[ "abba\n", "bab\n" ]
[ "4", "2" ]
It the first sample the string is already beautiful. In the second sample he needs to delete one of "b" to make it beautiful.
1,000
[ { "input": "abba", "output": "4" }, { "input": "bab", "output": "2" }, { "input": "bbabbbaabbbb", "output": "9" }, { "input": "bbabbbbbaaba", "output": "10" }, { "input": "bbabbbababaa", "output": "9" }, { "input": "aabbaababbab", "output": "8" }...
1,636,730,817
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
17
93
19,763,200
s = str(input()) only_a = 0 only_b = 0 ab = 0 ba = 0 aba = 0 for i in s: p=[0,0,0,0,0] p[0] = only_a + (i=="a") p[1] = only_b + (i=="b") p[2] = max(ab, (max(only_a, ab)+1)*(i=="b")) p[3] = max(ba, (max(only_b, ba)+1)*(i=="a")) p[4] = max(aba, (max(ab, aba)+1)*(i=="a")) o...
Title: Nikita and string Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Nikita found the string containing letters "a" and "b" only. Nikita thinks that string is beautiful if it can be cut into 3 strings (possibly empty) without changing the order of the letters, where the 1-st ...
```python s = str(input()) only_a = 0 only_b = 0 ab = 0 ba = 0 aba = 0 for i in s: p=[0,0,0,0,0] p[0] = only_a + (i=="a") p[1] = only_b + (i=="b") p[2] = max(ab, (max(only_a, ab)+1)*(i=="b")) p[3] = max(ba, (max(only_b, ba)+1)*(i=="a")) p[4] = max(aba, (max(ab, aba)+1)*(i=="a...
0
744
A
Hongcow Builds A Nation
PROGRAMMING
1,500
[ "dfs and similar", "graphs" ]
null
null
Hongcow is ruler of the world. As ruler of the world, he wants to make it easier for people to travel by road within their own countries. The world can be modeled as an undirected graph with *n* nodes and *m* edges. *k* of the nodes are home to the governments of the *k* countries that make up the world. There is at ...
The first line of input will contain three integers *n*, *m* and *k* (1<=≤<=*n*<=≤<=1<=000, 0<=≤<=*m*<=≤<=100<=000, 1<=≤<=*k*<=≤<=*n*) — the number of vertices and edges in the graph, and the number of vertices that are homes of the government. The next line of input will contain *k* integers *c*1,<=*c*2,<=...,<=*c**...
Output a single integer, the maximum number of edges Hongcow can add to the graph while keeping it stable.
[ "4 1 2\n1 3\n1 2\n", "3 3 1\n2\n1 2\n1 3\n2 3\n" ]
[ "2\n", "0\n" ]
For the first sample test, the graph looks like this: For the second sample test, the graph looks like this:
500
[ { "input": "4 1 2\n1 3\n1 2", "output": "2" }, { "input": "3 3 1\n2\n1 2\n1 3\n2 3", "output": "0" }, { "input": "10 3 2\n1 10\n1 2\n1 3\n4 5", "output": "33" }, { "input": "1 0 1\n1", "output": "0" }, { "input": "1000 0 1\n72", "output": "499500" }, { ...
1,620,442,319
2,147,483,647
PyPy 3
OK
TESTS
61
795
29,388,800
def dfs(vertice, soma, temCapital,aux, used, capitais, am): soma += len(aux[vertice]) am += 1 if vertice in capitais: temCapital = True used[vertice] = True for i in aux[vertice]: if not used[i]: tmpC, am, soma = dfs(i, soma, temCapital, aux, used, capitais, am) ...
Title: Hongcow Builds A Nation Time Limit: None seconds Memory Limit: None megabytes Problem Description: Hongcow is ruler of the world. As ruler of the world, he wants to make it easier for people to travel by road within their own countries. The world can be modeled as an undirected graph with *n* nodes and *m* e...
```python def dfs(vertice, soma, temCapital,aux, used, capitais, am): soma += len(aux[vertice]) am += 1 if vertice in capitais: temCapital = True used[vertice] = True for i in aux[vertice]: if not used[i]: tmpC, am, soma = dfs(i, soma, temCapital, aux, used, capitais, am)...
3
918
B
Radio Station
PROGRAMMING
900
[ "implementation", "strings" ]
null
null
As the guys fried the radio station facilities, the school principal gave them tasks as a punishment. Dustin's task was to add comments to nginx configuration for school's website. The school has *n* servers. Each server has a name and an ip (names aren't necessarily unique, but ips are). Dustin knows the ip and name o...
The first line of input contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=1000). The next *n* lines contain the names and ips of the servers. Each line contains a string name, name of the server and a string ip, ip of the server, separated by space (1<=≤<=|*name*|<=≤<=10, *name* only consists of English lowercase...
Print *m* lines, the commands in the configuration file after Dustin did his task.
[ "2 2\nmain 192.168.0.2\nreplica 192.168.0.1\nblock 192.168.0.1;\nproxy 192.168.0.2;\n", "3 5\ngoogle 8.8.8.8\ncodeforces 212.193.33.27\nserver 138.197.64.57\nredirect 138.197.64.57;\nblock 8.8.8.8;\ncf 212.193.33.27;\nunblock 8.8.8.8;\ncheck 138.197.64.57;\n" ]
[ "block 192.168.0.1; #replica\nproxy 192.168.0.2; #main\n", "redirect 138.197.64.57; #server\nblock 8.8.8.8; #google\ncf 212.193.33.27; #codeforces\nunblock 8.8.8.8; #google\ncheck 138.197.64.57; #server\n" ]
none
1,000
[ { "input": "2 2\nmain 192.168.0.2\nreplica 192.168.0.1\nblock 192.168.0.1;\nproxy 192.168.0.2;", "output": "block 192.168.0.1; #replica\nproxy 192.168.0.2; #main" }, { "input": "3 5\ngoogle 8.8.8.8\ncodeforces 212.193.33.27\nserver 138.197.64.57\nredirect 138.197.64.57;\nblock 8.8.8.8;\ncf 212.193.3...
1,587,477,248
2,147,483,647
PyPy 3
OK
TESTS
28
233
3,993,600
n, m = map(int, input().split()) ips = {} for i in range(n): name, ip = map(str, input().split()) ips[ip+';'] = name for i in range(m): name1, ip1 = map(str, input().split()) print(name1 +' '+ip1+' ' +'#'+ips[ip1])
Title: Radio Station Time Limit: None seconds Memory Limit: None megabytes Problem Description: As the guys fried the radio station facilities, the school principal gave them tasks as a punishment. Dustin's task was to add comments to nginx configuration for school's website. The school has *n* servers. Each server ...
```python n, m = map(int, input().split()) ips = {} for i in range(n): name, ip = map(str, input().split()) ips[ip+';'] = name for i in range(m): name1, ip1 = map(str, input().split()) print(name1 +' '+ip1+' ' +'#'+ips[ip1]) ```
3
886
C
Petya and Catacombs
PROGRAMMING
1,300
[ "dsu", "greedy", "implementation", "trees" ]
null
null
A very brave explorer Petya once decided to explore Paris catacombs. Since Petya is not really experienced, his exploration is just walking through the catacombs. Catacombs consist of several rooms and bidirectional passages between some pairs of them. Some passages can connect a room to itself and since the passages ...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=2·105) — then number of notes in Petya's logbook. The second line contains *n* non-negative integers *t*1,<=*t*2,<=...,<=*t**n* (0<=≤<=*t**i*<=&lt;<=*i*) — notes in the logbook.
In the only line print a single integer — the minimum possible number of rooms in Paris catacombs.
[ "2\n0 0\n", "5\n0 1 0 1 3\n" ]
[ "2\n", "3\n" ]
In the first sample, sequence of rooms Petya visited could be, for example 1 → 1 → 2, 1 → 2 → 1 or 1 → 2 → 3. The minimum possible number of rooms is 2. In the second sample, the sequence could be 1 → 2 → 3 → 1 → 2 → 1.
1,500
[ { "input": "2\n0 0", "output": "2" }, { "input": "5\n0 1 0 1 3", "output": "3" }, { "input": "7\n0 1 0 0 0 0 0", "output": "6" }, { "input": "100\n0 0 0 0 0 0 1 4 4 0 2 2 4 1 7 1 11 0 8 4 12 12 3 0 3 2 2 4 3 9 1 5 4 6 9 14 6 2 4 18 7 7 19 11 20 13 17 16 0 34 2 6 12 27 9 4 29 ...
1,510,509,329
6,629
Python 3
WRONG_ANSWER
PRETESTS
0
46
0
a = int(input()) rooms = [int(i) for i in input().split(' ')] n = [0] * a for i in range(a): n[rooms[i]] = n[rooms[i]] + 1 sum = 0 print(n) for room in n: if room != 0: sum = sum + 1 print(sum)
Title: Petya and Catacombs Time Limit: None seconds Memory Limit: None megabytes Problem Description: A very brave explorer Petya once decided to explore Paris catacombs. Since Petya is not really experienced, his exploration is just walking through the catacombs. Catacombs consist of several rooms and bidirectiona...
```python a = int(input()) rooms = [int(i) for i in input().split(' ')] n = [0] * a for i in range(a): n[rooms[i]] = n[rooms[i]] + 1 sum = 0 print(n) for room in n: if room != 0: sum = sum + 1 print(sum) ```
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,620,584,220
2,147,483,647
Python 3
OK
TESTS
40
62
6,758,400
n = input() try: h = n.index('h') n = n[h+1:] e = n.index('e') n = n[e+1:] l = n.index('l') n = n[l+1:] l = n.index('l') n = n[l+1:] o = n.index('o') print("YES") except : 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 n = input() try: h = n.index('h') n = n[h+1:] e = n.index('e') n = n[e+1:] l = n.index('l') n = n[l+1:] l = n.index('l') n = n[l+1:] o = n.index('o') print("YES") except : print("NO") ```
3.956411
144
A
Arrival of the General
PROGRAMMING
800
[ "implementation" ]
null
null
A Ministry for Defense sent a general to inspect the Super Secret Military Squad under the command of the Colonel SuperDuper. Having learned the news, the colonel ordered to all *n* squad soldiers to line up on the parade ground. By the military charter the soldiers should stand in the order of non-increasing of their...
The first input line contains the only integer *n* (2<=≤<=*n*<=≤<=100) which represents the number of soldiers in the line. The second line contains integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=100) the values of the soldiers' heights in the order of soldiers' heights' increasing in the order from the beginnin...
Print the only integer — the minimum number of seconds the colonel will need to form a line-up the general will like.
[ "4\n33 44 11 22\n", "7\n10 10 58 31 63 40 76\n" ]
[ "2\n", "10\n" ]
In the first sample the colonel will need to swap the first and second soldier and then the third and fourth soldier. That will take 2 seconds. The resulting position of the soldiers is (44, 33, 22, 11). In the second sample the colonel may swap the soldiers in the following sequence: 1. (10, 10, 58, 31, 63, 40, 76)...
500
[ { "input": "4\n33 44 11 22", "output": "2" }, { "input": "7\n10 10 58 31 63 40 76", "output": "10" }, { "input": "2\n88 89", "output": "1" }, { "input": "5\n100 95 100 100 88", "output": "0" }, { "input": "7\n48 48 48 48 45 45 45", "output": "0" }, { "...
1,683,123,373
2,147,483,647
PyPy 3
OK
TESTS
39
186
0
n = int(input()) l = list(map(int,input().split())) maxi = max(l) mini = min(l) for i in range(len(l)): if l[i] == maxi: maxi = i l.pop(i) break for i in range(1,len(l)+1): if l[-1*i] == mini: mini = i break print(maxi+mini-1)
Title: Arrival of the General Time Limit: None seconds Memory Limit: None megabytes Problem Description: A Ministry for Defense sent a general to inspect the Super Secret Military Squad under the command of the Colonel SuperDuper. Having learned the news, the colonel ordered to all *n* squad soldiers to line up on t...
```python n = int(input()) l = list(map(int,input().split())) maxi = max(l) mini = min(l) for i in range(len(l)): if l[i] == maxi: maxi = i l.pop(i) break for i in range(1,len(l)+1): if l[-1*i] == mini: mini = i break print(maxi+mini-1) ```
3
774
H
Repairing Of String
PROGRAMMING
2,200
[ "*special", "constructive algorithms" ]
null
null
Stepan had a favorite string *s* which consisted of the lowercase letters of the Latin alphabet. After graduation, he decided to remember it, but it was a long time ago, so he can't now remember it. But Stepan remembers some information about the string, namely the sequence of integers *c*1,<=*c*2,<=...,<=*c**n*, whe...
The first line contains the integer *n* (1<=≤<=*n*<=≤<=2000) — the length of the Stepan's favorite string. The second line contains the sequence of integers *c*1,<=*c*2,<=...,<=*c**n* (0<=≤<=*c**i*<=≤<=2000), where *c**i* equals the number of substrings of the string *s* with the length *i*, consisting of the same let...
Print the repaired Stepan's favorite string. If there are several answers, it is allowed to print any of them. The string should contain only lowercase letters of the English alphabet.
[ "6\n6 3 1 0 0 0\n", "4\n4 0 0 0\n" ]
[ "kkrrrq", "abcd\n" ]
In the first test Stepan's favorite string, for example, can be the string "kkrrrq", because it contains 6 substrings with the length 1, consisting of identical letters (they begin in positions 1, 2, 3, 4, 5 and 6), 3 substrings with the length 2, consisting of identical letters (they begin in positions 1, 3 and 4), an...
0
[ { "input": "6\n6 3 1 0 0 0", "output": "aaabbc" }, { "input": "4\n4 0 0 0", "output": "abcd" }, { "input": "1\n1", "output": "a" }, { "input": "5\n5 0 0 0 0", "output": "abcde" }, { "input": "10\n10 8 7 6 5 4 3 2 1 0", "output": "aaaaaaaaab" }, { "inpu...
1,491,413,269
6,769
Python 3
RUNTIME_ERROR
TESTS
6
62
5,529,600
n = int(input()) a = str(input()).split() aint = [] ch = 'a' for i in range(n): aint.append(int(a[i])) for i in range(n): j = n - 1 - i for jj in range(aint[j]): for jjj in range(j + 1): print(ch, end="") ch = chr(ord(ch) + 1) for ii in range(n): ...
Title: Repairing Of String Time Limit: None seconds Memory Limit: None megabytes Problem Description: Stepan had a favorite string *s* which consisted of the lowercase letters of the Latin alphabet. After graduation, he decided to remember it, but it was a long time ago, so he can't now remember it. But Stepan rem...
```python n = int(input()) a = str(input()).split() aint = [] ch = 'a' for i in range(n): aint.append(int(a[i])) for i in range(n): j = n - 1 - i for jj in range(aint[j]): for jjj in range(j + 1): print(ch, end="") ch = chr(ord(ch) + 1) for ii in range(n): ...
-1
16
B
Burglar and Matches
PROGRAMMING
900
[ "greedy", "implementation", "sortings" ]
B. Burglar and Matches
0
64
A burglar got into a matches warehouse and wants to steal as many matches as possible. In the warehouse there are *m* containers, in the *i*-th container there are *a**i* matchboxes, and each matchbox contains *b**i* matches. All the matchboxes are of the same size. The burglar's rucksack can hold *n* matchboxes exactl...
The first line of the input contains integer *n* (1<=≤<=*n*<=≤<=2·108) and integer *m* (1<=≤<=*m*<=≤<=20). The *i*<=+<=1-th line contains a pair of numbers *a**i* and *b**i* (1<=≤<=*a**i*<=≤<=108,<=1<=≤<=*b**i*<=≤<=10). All the input numbers are integer.
Output the only number — answer to the problem.
[ "7 3\n5 10\n2 5\n3 6\n", "3 3\n1 3\n2 2\n3 1\n" ]
[ "62\n", "7\n" ]
none
0
[ { "input": "7 3\n5 10\n2 5\n3 6", "output": "62" }, { "input": "3 3\n1 3\n2 2\n3 1", "output": "7" }, { "input": "1 1\n1 2", "output": "2" }, { "input": "1 2\n1 9\n1 6", "output": "9" }, { "input": "1 10\n1 1\n1 9\n1 3\n1 9\n1 7\n1 10\n1 4\n1 7\n1 3\n1 1", "ou...
1,608,804,552
2,147,483,647
Python 3
OK
TESTS
49
218
307,200
l = list(map(int,input().split(" "))) a = [] b = [] for i in range(l[1]): x = (list(map(int,input().split(" ")))) a.append(x[0]) b.append(x[1]) z = l[0] # print(b) count = 0 if len(b)!=1: while(z!=0 and len(b)>0): maxVal = max(b) index = b.index(maxVal) if z-a[ind...
Title: Burglar and Matches Time Limit: 0 seconds Memory Limit: 64 megabytes Problem Description: A burglar got into a matches warehouse and wants to steal as many matches as possible. In the warehouse there are *m* containers, in the *i*-th container there are *a**i* matchboxes, and each matchbox contains *b**i* mat...
```python l = list(map(int,input().split(" "))) a = [] b = [] for i in range(l[1]): x = (list(map(int,input().split(" ")))) a.append(x[0]) b.append(x[1]) z = l[0] # print(b) count = 0 if len(b)!=1: while(z!=0 and len(b)>0): maxVal = max(b) index = b.index(maxVal) ...
3
518
A
Vitaly and Strings
PROGRAMMING
1,600
[ "constructive algorithms", "strings" ]
null
null
Vitaly is a diligent student who never missed a lesson in his five years of studying in the university. He always does his homework on time and passes his exams in time. During the last lesson the teacher has provided two strings *s* and *t* to Vitaly. The strings have the same length, they consist of lowercase Engli...
The first line contains string *s* (1<=≤<=|*s*|<=≤<=100), consisting of lowercase English letters. Here, |*s*| denotes the length of the string. The second line contains string *t* (|*t*|<==<=|*s*|), consisting of lowercase English letters. It is guaranteed that the lengths of strings *s* and *t* are the same and str...
If the string that meets the given requirements doesn't exist, print a single string "No such string" (without the quotes). If such string exists, print it. If there are multiple valid strings, you may print any of them.
[ "a\nc\n", "aaa\nzzz\n", "abcdefg\nabcdefh\n" ]
[ "b\n", "kkk\n", "No such string\n" ]
String *s* = *s*<sub class="lower-index">1</sub>*s*<sub class="lower-index">2</sub>... *s*<sub class="lower-index">*n*</sub> is said to be lexicographically smaller than *t* = *t*<sub class="lower-index">1</sub>*t*<sub class="lower-index">2</sub>... *t*<sub class="lower-index">*n*</sub>, if there exists such *i*, that ...
500
[ { "input": "a\nc", "output": "b" }, { "input": "aaa\nzzz", "output": "kkk" }, { "input": "abcdefg\nabcdefh", "output": "No such string" }, { "input": "abcdefg\nabcfefg", "output": "abcdefh" }, { "input": "frt\nfru", "output": "No such string" }, { "inp...
1,592,603,403
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
8
124
0
s = input() t = input() code = lambda x: sum(ord(i) for i in x) code_s = code(s) code_t = code(t) if code_s == code_t - 1: print("No such string") else: if len(s) == 1: print(chr(code_s + 1)) else: btw_str= '' for a, b in zip(s,t): if ord(a) < ord(b): ...
Title: Vitaly and Strings Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vitaly is a diligent student who never missed a lesson in his five years of studying in the university. He always does his homework on time and passes his exams in time. During the last lesson the teacher has provi...
```python s = input() t = input() code = lambda x: sum(ord(i) for i in x) code_s = code(s) code_t = code(t) if code_s == code_t - 1: print("No such string") else: if len(s) == 1: print(chr(code_s + 1)) else: btw_str= '' for a, b in zip(s,t): if ord(a) < o...
0
686
A
Free Ice Cream
PROGRAMMING
800
[ "constructive algorithms", "implementation" ]
null
null
After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, people start standing in the queue before Kay and Gerda's house even in the night. Each person in the...
The first line contains two space-separated integers *n* and *x* (1<=≤<=*n*<=≤<=1000, 0<=≤<=*x*<=≤<=109). Each of the next *n* lines contains a character '+' or '-', and an integer *d**i*, separated by a space (1<=≤<=*d**i*<=≤<=109). Record "+ *d**i*" in *i*-th line means that a carrier with *d**i* ice cream packs occ...
Print two space-separated integers — number of ice cream packs left after all operations, and number of kids that left the house in distress.
[ "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20\n", "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98\n" ]
[ "22 1\n", "3 2\n" ]
Consider the first sample. 1. Initially Kay and Gerda have 7 packs of ice cream. 1. Carrier brings 5 more, so now they have 12 packs. 1. A kid asks for 10 packs and receives them. There are only 2 packs remaining. 1. Another kid asks for 20 packs. Kay and Gerda do not have them, so the kid goes away distressed. 1....
500
[ { "input": "5 7\n+ 5\n- 10\n- 20\n+ 40\n- 20", "output": "22 1" }, { "input": "5 17\n- 16\n- 2\n- 98\n+ 100\n- 98", "output": "3 2" }, { "input": "6 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000\n+ 1000000000", "output": "7000000000 0" }, { ...
1,662,313,293
2,147,483,647
Python 3
OK
TESTS
34
46
0
n,x=map(int,input().split()) dis=0 for l in range(n): s,d=map(str,input().split()) d=int(d) if s=='+': x+=d else: if x>=d: x-=d else: dis+=1 print(x,dis)
Title: Free Ice Cream Time Limit: None seconds Memory Limit: None megabytes Problem Description: After their adventure with the magic mirror Kay and Gerda have returned home and sometimes give free ice cream to kids in the summer. At the start of the day they have *x* ice cream packs. Since the ice cream is free, p...
```python n,x=map(int,input().split()) dis=0 for l in range(n): s,d=map(str,input().split()) d=int(d) if s=='+': x+=d else: if x>=d: x-=d else: dis+=1 print(x,dis) ```
3
672
A
Summer Camp
PROGRAMMING
800
[ "implementation" ]
null
null
Every year, hundreds of people come to summer camps, they learn new algorithms and solve hard problems. This is your first year at summer camp, and you are asked to solve the following problem. All integers starting with 1 are written in one line. The prefix of these line is "123456789101112131415...". Your task is to...
The only line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the position of the digit you need to print.
Print the *n*-th digit of the line.
[ "3\n", "11\n" ]
[ "3\n", "0\n" ]
In the first sample the digit at position 3 is '3', as both integers 1 and 2 consist on one digit. In the second sample, the digit at position 11 is '0', it belongs to the integer 10.
500
[ { "input": "3", "output": "3" }, { "input": "11", "output": "0" }, { "input": "12", "output": "1" }, { "input": "13", "output": "1" }, { "input": "29", "output": "9" }, { "input": "30", "output": "2" }, { "input": "1000", "output": "3" ...
1,636,392,661
2,147,483,647
PyPy 3
RUNTIME_ERROR
TESTS
0
77
19,865,600
n = input() res ="" for i in range(1000): s+=str(i) print(s[int(n)])
Title: Summer Camp Time Limit: None seconds Memory Limit: None megabytes Problem Description: Every year, hundreds of people come to summer camps, they learn new algorithms and solve hard problems. This is your first year at summer camp, and you are asked to solve the following problem. All integers starting with 1...
```python n = input() res ="" for i in range(1000): s+=str(i) print(s[int(n)]) ```
-1
897
A
Scarborough Fair
PROGRAMMING
800
[ "implementation" ]
null
null
Parsley, sage, rosemary and thyme. Remember me to one who lives there. He once was the true love of mine. Willem is taking the girl to the highest building in island No.28, however, neither of them knows how to get there. Willem asks his friend, Grick for directions, Grick helped them, and gave them a task. Althou...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100). The second line contains a string *s* of length *n*, consisting of lowercase English letters. Each of the next *m* lines contains four parameters *l*,<=*r*,<=*c*1,<=*c*2 (1<=≤<=*l*<=≤<=*r*<=≤<=*n*, *c*1,<=*c*2 are lowercase English letters), ...
Output string *s* after performing *m* operations described above.
[ "3 1\nioi\n1 1 i n\n", "5 3\nwxhak\n3 3 h x\n1 5 x a\n1 3 w g\n" ]
[ "noi", "gaaak" ]
For the second example: After the first operation, the string is wxxak. After the second operation, the string is waaak. After the third operation, the string is gaaak.
500
[ { "input": "3 1\nioi\n1 1 i n", "output": "noi" }, { "input": "5 3\nwxhak\n3 3 h x\n1 5 x a\n1 3 w g", "output": "gaaak" }, { "input": "9 51\nbhfbdcgff\n2 3 b b\n2 8 e f\n3 8 g f\n5 7 d a\n1 5 e b\n3 4 g b\n6 7 c d\n3 6 e g\n3 6 e h\n5 6 a e\n7 9 a c\n4 9 a h\n3 7 c b\n6 9 b g\n1 7 h b\n...
1,587,180,246
2,147,483,647
Python 3
OK
TESTS
47
109
0
def s(): n,m = [int(x) for x in input().split(" ")] stri = input() for i in range(m): l,r,c1,c2 = input().split(" ") substr = stri[int(l)-1:int(r)].replace(c1,c2) stri = stri[:int(l)-1]+substr+stri[int(r):] print(stri) s()
Title: Scarborough Fair Time Limit: None seconds Memory Limit: None megabytes Problem Description: Parsley, sage, rosemary and thyme. Remember me to one who lives there. He once was the true love of mine. Willem is taking the girl to the highest building in island No.28, however, neither of them knows how to get ...
```python def s(): n,m = [int(x) for x in input().split(" ")] stri = input() for i in range(m): l,r,c1,c2 = input().split(" ") substr = stri[int(l)-1:int(r)].replace(c1,c2) stri = stri[:int(l)-1]+substr+stri[int(r):] print(stri) s() ```
3
556
A
Case of the Zeros and Ones
PROGRAMMING
900
[ "greedy" ]
null
null
Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Consider the following operation: we choose any two adjacent positions in the string, and if one them contains 0, an...
First line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=2·105), the length of the string that Andreid has. The second line contains the string of length *n* consisting only from zeros and ones.
Output the minimum length of the string that may remain after applying the described operations several times.
[ "4\n1100\n", "5\n01010\n", "8\n11101111\n" ]
[ "0\n", "1\n", "6\n" ]
In the first sample test it is possible to change the string like the following: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/10df55364c21c6e8d5da31b6ab6f6294c4fc26b3.png" style="max-width: 100.0%;max-height: 100.0%;"/>. In the second sample test it is possible to change the string like...
250
[ { "input": "4\n1100", "output": "0" }, { "input": "5\n01010", "output": "1" }, { "input": "8\n11101111", "output": "6" }, { "input": "1\n0", "output": "1" }, { "input": "1\n1", "output": "1" }, { "input": "2\n00", "output": "2" }, { "input"...
1,617,355,909
2,147,483,647
Python 3
OK
TESTS
49
108
1,433,600
n = int(input()) s = list(input()) z = 0 o = 0 for i in s: if i =='0': o = o + 1 else: z = z + 1 if z == o: print(0) else: if z > o: print(z - o) else: print(o - z)
Title: Case of the Zeros and Ones Time Limit: None seconds Memory Limit: None megabytes Problem Description: Andrewid the Android is a galaxy-famous detective. In his free time he likes to think about strings containing zeros and ones. Once he thought about a string of length *n* consisting of zeroes and ones. Cons...
```python n = int(input()) s = list(input()) z = 0 o = 0 for i in s: if i =='0': o = o + 1 else: z = z + 1 if z == o: print(0) else: if z > o: print(z - o) else: print(o - z) ```
3
733
D
Kostya the Sculptor
PROGRAMMING
1,600
[ "data structures", "hashing" ]
null
null
Kostya is a genial sculptor, he has an idea: to carve a marble sculpture in the shape of a sphere. Kostya has a friend Zahar who works at a career. Zahar knows about Kostya's idea and wants to present him a rectangular parallelepiped of marble from which he can carve the sphere. Zahar has *n* stones which are rectang...
The first line contains the integer *n* (1<=≤<=*n*<=≤<=105). *n* lines follow, in the *i*-th of which there are three integers *a**i*,<=*b**i* and *c**i* (1<=≤<=*a**i*,<=*b**i*,<=*c**i*<=≤<=109) — the lengths of edges of the *i*-th stone. Note, that two stones may have exactly the same sizes, but they still will be co...
In the first line print *k* (1<=≤<=*k*<=≤<=2) the number of stones which Zahar has chosen. In the second line print *k* distinct integers from 1 to *n* — the numbers of stones which Zahar needs to choose. Consider that stones are numbered from 1 to *n* in the order as they are given in the input data. You can print th...
[ "6\n5 5 5\n3 2 4\n1 4 1\n2 1 3\n3 2 4\n3 3 4\n", "7\n10 7 8\n5 10 3\n4 2 6\n5 5 5\n10 2 8\n4 2 1\n7 7 7\n" ]
[ "1\n1\n", "2\n1 5\n" ]
In the first example we can connect the pairs of stones: - 2 and 4, the size of the parallelepiped: 3 × 2 × 5, the radius of the inscribed sphere 1 - 2 and 5, the size of the parallelepiped: 3 × 2 × 8 or 6 × 2 × 4 or 3 × 4 × 4, the radius of the inscribed sphere 1, or 1, or 1.5 respectively. - 2 and 6, the size of ...
2,000
[ { "input": "6\n5 5 5\n3 2 4\n1 4 1\n2 1 3\n3 2 4\n3 3 4", "output": "1\n1" }, { "input": "7\n10 7 8\n5 10 3\n4 2 6\n5 5 5\n10 2 8\n4 2 1\n7 7 7", "output": "2\n1 5" }, { "input": "1\n1 1 1", "output": "1\n1" }, { "input": "2\n2 3 1\n2 2 3", "output": "2\n2 1" }, { ...
1,651,999,506
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
59
748
37,376,000
n = int(input()) stones = dict() ans = 0 gift = [] for i in range(n): stone = list(map(int, input().split())) if min(stone[0], stone[1], stone[2]) > ans: ans = min(stone[0], stone[1], stone[2]) gift = [i+1] pattern = (min(stone[0], stone[1]), max((stone[0], stone[1]))) length =...
Title: Kostya the Sculptor Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kostya is a genial sculptor, he has an idea: to carve a marble sculpture in the shape of a sphere. Kostya has a friend Zahar who works at a career. Zahar knows about Kostya's idea and wants to present him a rectangu...
```python n = int(input()) stones = dict() ans = 0 gift = [] for i in range(n): stone = list(map(int, input().split())) if min(stone[0], stone[1], stone[2]) > ans: ans = min(stone[0], stone[1], stone[2]) gift = [i+1] pattern = (min(stone[0], stone[1]), max((stone[0], stone[1]))) ...
0
748
A
Santa Claus and a Place in a Class
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Santa Claus is the first who came to the Christmas Olympiad, and he is going to be the first to take his place at a desk! In the classroom there are *n* lanes of *m* desks each, and there are two working places at each of the desks. The lanes are numbered from 1 to *n* from the left to the right, the desks in a lane ar...
The only line contains three integers *n*, *m* and *k* (1<=≤<=*n*,<=*m*<=≤<=10<=000, 1<=≤<=*k*<=≤<=2*nm*) — the number of lanes, the number of desks in each lane and the number of Santa Claus' place.
Print two integers: the number of lane *r*, the number of desk *d*, and a character *s*, which stands for the side of the desk Santa Claus. The character *s* should be "L", if Santa Clause should sit on the left, and "R" if his place is on the right.
[ "4 3 9\n", "4 3 24\n", "2 4 4\n" ]
[ "2 2 L\n", "4 3 R\n", "1 2 R\n" ]
The first and the second samples are shown on the picture. The green place corresponds to Santa Claus' place in the first example, the blue place corresponds to Santa Claus' place in the second example. In the third sample there are two lanes with four desks in each, and Santa Claus has the fourth place. Thus, his pla...
500
[ { "input": "4 3 9", "output": "2 2 L" }, { "input": "4 3 24", "output": "4 3 R" }, { "input": "2 4 4", "output": "1 2 R" }, { "input": "3 10 24", "output": "2 2 R" }, { "input": "10 3 59", "output": "10 3 L" }, { "input": "10000 10000 160845880", "...
1,527,018,308
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
5
2,000
0
n,m,k=map(int,input().split()) c=0 loop=0 for i in range(1,n+1): for j in range(1,m+1): c+=2 if c-k==1 or c==k: loop=1 break if loop: break if k%2==0: print(i,j,"R") else: print(i,j,"L")
Title: Santa Claus and a Place in a Class Time Limit: None seconds Memory Limit: None megabytes Problem Description: Santa Claus is the first who came to the Christmas Olympiad, and he is going to be the first to take his place at a desk! In the classroom there are *n* lanes of *m* desks each, and there are two work...
```python n,m,k=map(int,input().split()) c=0 loop=0 for i in range(1,n+1): for j in range(1,m+1): c+=2 if c-k==1 or c==k: loop=1 break if loop: break if k%2==0: print(i,j,"R") else: print(i,j,"L") ```
0
810
A
Straight <<A>>
PROGRAMMING
900
[ "implementation", "math" ]
null
null
Noora is a student of one famous high school. It's her final year in school — she is going to study in university next year. However, she has to get an «A» graduation certificate in order to apply to a prestigious one. In school, where Noora is studying, teachers are putting down marks to the online class register, wh...
The first line contains two integers *n* and *k* (1<=≤<=*n*<=≤<=100,<=1<=≤<=*k*<=≤<=100) denoting the number of marks, received by Noora and the value of highest possible mark. The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=*k*) denoting marks received by Noora before Leha's hack.
Print a single integer — minimal number of additional marks, that Leha has to add in order to change Noora's final mark to *k*.
[ "2 10\n8 9\n", "3 5\n4 4 4\n" ]
[ "4", "3" ]
Consider the first example testcase. Maximal mark is 10, Noora received two marks — 8 and 9, so current final mark is 9. To fix it, Leha can add marks [10, 10, 10, 10] (4 marks in total) to the registry, achieving Noora having average mark equal to <img align="middle" class="tex-formula" src="https://espresso.codeforc...
500
[ { "input": "2 10\n8 9", "output": "4" }, { "input": "3 5\n4 4 4", "output": "3" }, { "input": "3 10\n10 8 9", "output": "3" }, { "input": "2 23\n21 23", "output": "2" }, { "input": "5 10\n5 10 10 9 10", "output": "7" }, { "input": "12 50\n18 10 26 22 2...
1,604,365,574
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
29
1,000
102,400
n, k = map(int, input().split()) a = [int(i)for i in input().split()] x = 0 while k-sum(a)/len(a) > 0.5: a.append(k) x+=1 print(x)
Title: Straight <<A>> Time Limit: None seconds Memory Limit: None megabytes Problem Description: Noora is a student of one famous high school. It's her final year in school — she is going to study in university next year. However, she has to get an «A» graduation certificate in order to apply to a prestigious one. ...
```python n, k = map(int, input().split()) a = [int(i)for i in input().split()] x = 0 while k-sum(a)/len(a) > 0.5: a.append(k) x+=1 print(x) ```
0
200
B
Drinks
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Little Vasya loves orange juice very much. That's why any food and drink in his kitchen necessarily contains orange juice. There are *n* drinks in his fridge, the volume fraction of orange juice in the *i*-th drink equals *p**i* percent. One day Vasya decided to make himself an orange cocktail. He took equal proportio...
The first input line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of orange-containing drinks in Vasya's fridge. The second line contains *n* integers *p**i* (0<=≤<=*p**i*<=≤<=100) — the volume fraction of orange juice in the *i*-th drink, in percent. The numbers are separated by a space.
Print the volume fraction in percent of orange juice in Vasya's cocktail. The answer will be considered correct if the absolute or relative error does not exceed 10<=<=-<=4.
[ "3\n50 50 100\n", "4\n0 25 50 75\n" ]
[ "66.666666666667\n", "37.500000000000\n" ]
Note to the first sample: let's assume that Vasya takes *x* milliliters of each drink from the fridge. Then the volume of pure juice in the cocktail will equal <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/c1fac6e64d3a8ee6a5ac138cbe51e60039b22473.png" style="max-width: 100.0%;max-height: ...
500
[ { "input": "3\n50 50 100", "output": "66.666666666667" }, { "input": "4\n0 25 50 75", "output": "37.500000000000" }, { "input": "3\n0 1 8", "output": "3.000000000000" }, { "input": "5\n96 89 93 95 70", "output": "88.600000000000" }, { "input": "7\n62 41 78 4 38 39...
1,691,410,607
2,147,483,647
Python 3
OK
TESTS
31
92
0
n=int(input()) l=list(map(int,input().split())) x=((sum(l))/n) print(x)
Title: Drinks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Vasya loves orange juice very much. That's why any food and drink in his kitchen necessarily contains orange juice. There are *n* drinks in his fridge, the volume fraction of orange juice in the *i*-th drink equals *p**i*...
```python n=int(input()) l=list(map(int,input().split())) x=((sum(l))/n) print(x) ```
3
302
A
Eugeny and Array
PROGRAMMING
800
[ "implementation" ]
null
null
Eugeny has array *a*<==<=*a*1,<=*a*2,<=...,<=*a**n*, consisting of *n* integers. Each integer *a**i* equals to -1, or to 1. Also, he has *m* queries: - Query number *i* is given as a pair of integers *l**i*, *r**i* (1<=≤<=*l**i*<=≤<=*r**i*<=≤<=*n*). - The response to the query will be integer 1, if the elements of a...
The first line contains integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=2·105). The second line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (*a**i*<==<=-1,<=1). Next *m* lines contain Eugene's queries. The *i*-th line contains integers *l**i*,<=*r**i* (1<=≤<=*l**i*<=≤<=*r**i*<=≤<=*n*).
Print *m* integers — the responses to Eugene's queries in the order they occur in the input.
[ "2 3\n1 -1\n1 1\n1 2\n2 2\n", "5 5\n-1 1 1 1 -1\n1 1\n2 3\n3 5\n2 5\n1 5\n" ]
[ "0\n1\n0\n", "0\n1\n0\n1\n0\n" ]
none
500
[ { "input": "2 3\n1 -1\n1 1\n1 2\n2 2", "output": "0\n1\n0" }, { "input": "5 5\n-1 1 1 1 -1\n1 1\n2 3\n3 5\n2 5\n1 5", "output": "0\n1\n0\n1\n0" }, { "input": "3 3\n1 1 1\n2 2\n1 1\n1 1", "output": "0\n0\n0" }, { "input": "4 4\n-1 -1 -1 -1\n1 3\n1 2\n1 2\n1 1", "output": "...
1,374,452,950
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
n, m = map(int, input().split()) lst = [int(x) for x in input().split()] a, b = lst.count(-1), lst.count(1) print((a,b)) for _ in range (m): x, y = map(int, input().split()) z = (y - x + 1) // 2 print("1" if a >= z and b >= z and z + z == y - x + 1 else "0")
Title: Eugeny and Array Time Limit: None seconds Memory Limit: None megabytes Problem Description: Eugeny has array *a*<==<=*a*1,<=*a*2,<=...,<=*a**n*, consisting of *n* integers. Each integer *a**i* equals to -1, or to 1. Also, he has *m* queries: - Query number *i* is given as a pair of integers *l**i*, *r**i* (...
```python n, m = map(int, input().split()) lst = [int(x) for x in input().split()] a, b = lst.count(-1), lst.count(1) print((a,b)) for _ in range (m): x, y = map(int, input().split()) z = (y - x + 1) // 2 print("1" if a >= z and b >= z and z + z == y - x + 1 else "0") ```
0
0
none
none
none
0
[ "none" ]
null
null
You are given an array of positive integers *a*1,<=*a*2,<=...,<=*a**n*<=×<=*T* of length *n*<=×<=*T*. We know that for any *i*<=&gt;<=*n* it is true that *a**i*<==<=*a**i*<=-<=*n*. Find the length of the longest non-decreasing sequence of the given array.
The first line contains two space-separated integers: *n*, *T* (1<=≤<=*n*<=≤<=100, 1<=≤<=*T*<=≤<=107). The second line contains *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=300).
Print a single number — the length of a sought sequence.
[ "4 3\n3 1 4 2\n" ]
[ "5\n" ]
The array given in the sample looks like that: 3, 1, 4, 2, 3, 1, 4, 2, 3, 1, 4, 2. The elements in bold form the largest non-decreasing subsequence.
0
[ { "input": "4 3\n3 1 4 2", "output": "5" }, { "input": "1 1000\n42", "output": "1000" }, { "input": "31 3767\n16 192 152 78 224 202 186 52 118 19 13 38 199 196 35 295 100 64 205 37 166 124 169 214 66 243 134 192 253 270 92", "output": "7546" }, { "input": "15 12226\n18 125 21...
1,534,429,413
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
93
0
n=int(raw_input()) t=int(raw_input()) l=[] x=0 for i in range(0,n): a=int(raw_input()) l.append(a) l=l*t for i in range(0,((n*t)-1)): if( l[i]<l[i+1]): x+=1 print(x)
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given an array of positive integers *a*1,<=*a*2,<=...,<=*a**n*<=×<=*T* of length *n*<=×<=*T*. We know that for any *i*<=&gt;<=*n* it is true that *a**i*<==<=*a**i*<=-<=*n*. Find the length of the longest non-decreasing seq...
```python n=int(raw_input()) t=int(raw_input()) l=[] x=0 for i in range(0,n): a=int(raw_input()) l.append(a) l=l*t for i in range(0,((n*t)-1)): if( l[i]<l[i+1]): x+=1 print(x) ```
-1
78
B
Easter Eggs
PROGRAMMING
1,200
[ "constructive algorithms", "implementation" ]
B. Easter Eggs
2
256
The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: - Each of the seven colors should be used to paint at least one egg. - Any four eggs lying s...
The only line contains an integer *n* — the amount of eggs (7<=≤<=*n*<=≤<=100).
Print one line consisting of *n* characters. The *i*-th character should describe the color of the *i*-th egg in the order they lie in the circle. The colors should be represented as follows: "R" stands for red, "O" stands for orange, "Y" stands for yellow, "G" stands for green, "B" stands for blue, "I" stands for indi...
[ "8\n", "13\n" ]
[ "ROYGRBIV\n", "ROYGBIVGBIVYG\n" ]
The way the eggs will be painted in the first sample is shown on the picture:
1,000
[ { "input": "8", "output": "ROYGBIVG" }, { "input": "13", "output": "ROYGBIVOYGBIV" }, { "input": "7", "output": "ROYGBIV" }, { "input": "10", "output": "ROYGBIVYGB" }, { "input": "14", "output": "ROYGBIVROYGBIV" }, { "input": "50", "output": "ROYGB...
1,533,309,838
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
278
512,000
from random import choice n=int(input()) w=['R','O','Y','G','R','B','I','V'] for i in range(n): print(choice(w),end='')
Title: Easter Eggs Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: The Easter Rabbit laid *n* eggs in a circle and is about to paint them. Each egg should be painted one color out of 7: red, orange, yellow, green, blue, indigo or violet. Also, the following conditions should be satisfied: -...
```python from random import choice n=int(input()) w=['R','O','Y','G','R','B','I','V'] for i in range(n): print(choice(w),end='') ```
0
492
B
Vanya and Lanterns
PROGRAMMING
1,200
[ "binary search", "implementation", "math", "sortings" ]
null
null
Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the point *l*. Then the *i*-th lantern is at the point *a**i*. The lantern lights all points of the street that...
The first line contains two integers *n*, *l* (1<=≤<=*n*<=≤<=1000, 1<=≤<=*l*<=≤<=109) — the number of lanterns and the length of the street respectively. The next line contains *n* integers *a**i* (0<=≤<=*a**i*<=≤<=*l*). Multiple lanterns can be located at the same point. The lanterns may be located at the ends of th...
Print the minimum light radius *d*, needed to light the whole street. The answer will be considered correct if its absolute or relative error doesn't exceed 10<=-<=9.
[ "7 15\n15 5 3 7 9 14 0\n", "2 5\n2 5\n" ]
[ "2.5000000000\n", "2.0000000000\n" ]
Consider the second sample. At *d* = 2 the first lantern will light the segment [0, 4] of the street, and the second lantern will light segment [3, 5]. Thus, the whole street will be lit.
1,000
[ { "input": "7 15\n15 5 3 7 9 14 0", "output": "2.5000000000" }, { "input": "2 5\n2 5", "output": "2.0000000000" }, { "input": "46 615683844\n431749087 271781274 274974690 324606253 480870261 401650581 13285442 478090364 266585394 425024433 588791449 492057200 391293435 563090494 317950 1...
1,691,184,639
2,147,483,647
Python 3
OK
TESTS
32
46
0
v1,v2 = map(int,input().split()) v= sorted(map(int,input().split())) d = max(v[0],v2-v[v1-1]) for i in range(1,v1): d = max((v[i]-v[i-1])/2,d) print(d)
Title: Vanya and Lanterns Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vanya walks late at night along a straight street of length *l*, lit by *n* lanterns. Consider the coordinate system with the beginning of the street corresponding to the point 0, and its end corresponding to the poi...
```python v1,v2 = map(int,input().split()) v= sorted(map(int,input().split())) d = max(v[0],v2-v[v1-1]) for i in range(1,v1): d = max((v[i]-v[i-1])/2,d) print(d) ```
3
630
A
Again Twenty Five!
PROGRAMMING
800
[ "number theory" ]
null
null
The HR manager was disappointed again. The last applicant failed the interview the same way as 24 previous ones. "Do I give such a hard task?" — the HR manager thought. "Just raise number 5 to the power of *n* and get last two digits of the number. Yes, of course, *n* can be rather big, and one cannot find the power us...
The only line of the input contains a single integer *n* (2<=≤<=*n*<=≤<=2·1018) — the power in which you need to raise number 5.
Output the last two digits of 5*n* without spaces between them.
[ "2\n" ]
[ "25" ]
none
0
[ { "input": "2", "output": "25" }, { "input": "7", "output": "25" }, { "input": "1000000000000000000", "output": "25" }, { "input": "2000000000000000000", "output": "25" }, { "input": "987654321012345678", "output": "25" } ]
1,699,198,989
2,147,483,647
Python 3
OK
TESTS
5
46
0
def power(x, y, p): result = 1 x = x % p while y > 0: if y % 2 == 1: result = (result * x) % p y //= 2 x = (x * x) % p return result n = int(input()) result = power(5, n, 100) print(result)
Title: Again Twenty Five! Time Limit: None seconds Memory Limit: None megabytes Problem Description: The HR manager was disappointed again. The last applicant failed the interview the same way as 24 previous ones. "Do I give such a hard task?" — the HR manager thought. "Just raise number 5 to the power of *n* and ge...
```python def power(x, y, p): result = 1 x = x % p while y > 0: if y % 2 == 1: result = (result * x) % p y //= 2 x = (x * x) % p return result n = int(input()) result = power(5, n, 100) print(result) ```
3
66
B
Petya and Countryside
PROGRAMMING
1,100
[ "brute force", "implementation" ]
B. Petya and Countryside
2
256
Little Petya often travels to his grandmother in the countryside. The grandmother has a large garden, which can be represented as a rectangle 1<=×<=*n* in size, when viewed from above. This rectangle is divided into *n* equal square sections. The garden is very unusual as each of the square sections possesses its own f...
The first line contains a positive integer *n* (1<=≤<=*n*<=≤<=1000). The second line contains *n* positive integers which are the height of the sections. All the numbers are no less than 1 and not more than 1000.
Print a single number, the maximal number of watered sections if we create artificial rain above exactly one section.
[ "1\n2\n", "5\n1 2 1 2 1\n", "8\n1 2 1 1 1 3 3 4\n" ]
[ "1\n", "3\n", "6\n" ]
none
1,000
[ { "input": "1\n2", "output": "1" }, { "input": "5\n1 2 1 2 1", "output": "3" }, { "input": "8\n1 2 1 1 1 3 3 4", "output": "6" }, { "input": "10\n1 2 3 4 5 6 7 8 9 10", "output": "10" }, { "input": "10\n10 9 8 7 6 5 4 3 2 1", "output": "10" }, { "input...
1,626,053,955
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
// reading 21:08 -> 21:09 // thinking 21:11 -> 21:14 // coding 21:14 -> 21:59 // coding 20:10 -> 20:23 // debugging 20:23 -> 20:37 #include <iostream> using namespace std; int main() { int N; cin >> N; int arr[N], max_, current, upNext, current_, temporal; max_ = 1; upNext = 1001; for...
Title: Petya and Countryside Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya often travels to his grandmother in the countryside. The grandmother has a large garden, which can be represented as a rectangle 1<=×<=*n* in size, when viewed from above. This rectangle is divided into *...
```python // reading 21:08 -> 21:09 // thinking 21:11 -> 21:14 // coding 21:14 -> 21:59 // coding 20:10 -> 20:23 // debugging 20:23 -> 20:37 #include <iostream> using namespace std; int main() { int N; cin >> N; int arr[N], max_, current, upNext, current_, temporal; max_ = 1; upNext = 1001...
-1
96
A
Football
PROGRAMMING
900
[ "implementation", "strings" ]
A. Football
2
256
Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A zero corresponds to players of one team; a one corresponds to players of another team. If...
The first input line contains a non-empty string consisting of characters "0" and "1", which represents players. The length of the string does not exceed 100 characters. There's at least one player from each team present on the field.
Print "YES" if the situation is dangerous. Otherwise, print "NO".
[ "001001\n", "1000000001\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "001001", "output": "NO" }, { "input": "1000000001", "output": "YES" }, { "input": "00100110111111101", "output": "YES" }, { "input": "11110111111111111", "output": "YES" }, { "input": "01", "output": "NO" }, { "input": "10100101", "outp...
1,676,800,657
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
9
92
0
s=input() one=1;zero=1 flag=0 for i in range(0,len(s)-1): if(s[i]==s[i+1]=='0'): zero+=1 one=1 if(zero==7): flag=1 break elif(s[i]==s[i+1]=='1'): one+=1 zero=1 if(one==7): flag=1 break if(flag==0): ...
Title: Football Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves football very much. One day, as he was watching a football match, he was writing the players' current positions on a piece of paper. To simplify the situation he depicted it as a string consisting of zeroes and ones. A...
```python s=input() one=1;zero=1 flag=0 for i in range(0,len(s)-1): if(s[i]==s[i+1]=='0'): zero+=1 one=1 if(zero==7): flag=1 break elif(s[i]==s[i+1]=='1'): one+=1 zero=1 if(one==7): flag=1 break if(fl...
0
581
A
Vasya the Hipster
PROGRAMMING
800
[ "implementation", "math" ]
null
null
One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red one on the left foot, a blue one on the right foot. Every day Vasya puts on new socks in the morning ...
The single line of the input contains two positive integers *a* and *b* (1<=≤<=*a*,<=*b*<=≤<=100) — the number of red and blue socks that Vasya's got.
Print two space-separated integers — the maximum number of days when Vasya can wear different socks and the number of days when he can wear the same socks until he either runs out of socks or cannot make a single pair from the socks he's got. Keep in mind that at the end of the day Vasya throws away the socks that he'...
[ "3 1\n", "2 3\n", "7 3\n" ]
[ "1 1\n", "2 0\n", "3 2\n" ]
In the first sample Vasya can first put on one pair of different socks, after that he has two red socks left to wear on the second day.
500
[ { "input": "3 1", "output": "1 1" }, { "input": "2 3", "output": "2 0" }, { "input": "7 3", "output": "3 2" }, { "input": "100 100", "output": "100 0" }, { "input": "4 10", "output": "4 3" }, { "input": "6 10", "output": "6 2" }, { "input":...
1,691,089,649
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
4
31
0
a, b = map(int, input().split()) x = min(a, b) y = (a - b) // 2 if y < 0: y = 0 print(x, y)
Title: Vasya the Hipster Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day Vasya the Hipster decided to count how many socks he had. It turned out that he had *a* red socks and *b* blue socks. According to the latest fashion, hipsters should wear the socks of different colors: a red...
```python a, b = map(int, input().split()) x = min(a, b) y = (a - b) // 2 if y < 0: y = 0 print(x, y) ```
0
3
A
Shortest path of the king
PROGRAMMING
1,000
[ "greedy", "shortest paths" ]
A. Shortest path of the king
1
64
The king is left alone on the chessboard. In spite of this loneliness, he doesn't lose heart, because he has business of national importance. For example, he has to pay an official visit to square *t*. As the king is not in habit of wasting his time, he wants to get from his current position *s* to square *t* in the le...
The first line contains the chessboard coordinates of square *s*, the second line — of square *t*. Chessboard coordinates consist of two characters, the first one is a lowercase Latin letter (from a to h), the second one is a digit from 1 to 8.
In the first line print *n* — minimum number of the king's moves. Then in *n* lines print the moves themselves. Each move is described with one of the 8: L, R, U, D, LU, LD, RU or RD. L, R, U, D stand respectively for moves left, right, up and down (according to the picture), and 2-letter combinations stand for diago...
[ "a8\nh1\n" ]
[ "7\nRD\nRD\nRD\nRD\nRD\nRD\nRD\n" ]
none
0
[ { "input": "a8\nh1", "output": "7\nRD\nRD\nRD\nRD\nRD\nRD\nRD" }, { "input": "b2\nb4", "output": "2\nU\nU" }, { "input": "a5\na5", "output": "0" }, { "input": "h1\nb2", "output": "6\nLU\nL\nL\nL\nL\nL" }, { "input": "c5\nh2", "output": "5\nRD\nRD\nRD\nR\nR" ...
1,645,786,754
2,147,483,647
PyPy 3-64
OK
TESTS
35
124
512,000
s = input() t = input() x,y = ord(s[0])-96 , int(s[1]) p,q = ord(t[0])-96 , int(t[1]) ans = [] while (x!=p or y!=q): if x>p and y>q: ans.append("LD") x-=1 y-=1 elif x>p and y<q: ans.append("LU") x-=1 y+=1 elif x<p and y>q: ans.append("RD") x+=1...
Title: Shortest path of the king Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: The king is left alone on the chessboard. In spite of this loneliness, he doesn't lose heart, because he has business of national importance. For example, he has to pay an official visit to square *t*. As the king ...
```python s = input() t = input() x,y = ord(s[0])-96 , int(s[1]) p,q = ord(t[0])-96 , int(t[1]) ans = [] while (x!=p or y!=q): if x>p and y>q: ans.append("LD") x-=1 y-=1 elif x>p and y<q: ans.append("LU") x-=1 y+=1 elif x<p and y>q: ans.append("RD") ...
3.934185
545
C
Woodcutters
PROGRAMMING
1,500
[ "dp", "greedy" ]
null
null
Little Susie listens to fairy tales before bed every day. Today's fairy tale was about wood cutters and the little girl immediately started imagining the choppers cutting wood. She imagined the situation that is described below. There are *n* trees located along the road at points with coordinates *x*1,<=*x*2,<=...,<=...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of trees. Next *n* lines contain pairs of integers *x**i*,<=*h**i* (1<=≤<=*x**i*,<=*h**i*<=≤<=109) — the coordinate and the height of the *і*-th tree. The pairs are given in the order of ascending *x**i*. No two trees are located at the point with t...
Print a single number — the maximum number of trees that you can cut down by the given rules.
[ "5\n1 2\n2 1\n5 10\n10 9\n19 1\n", "5\n1 2\n2 1\n5 10\n10 9\n20 1\n" ]
[ "3\n", "4\n" ]
In the first sample you can fell the trees like that: - fell the 1-st tree to the left — now it occupies segment [ - 1;1] - fell the 2-nd tree to the right — now it occupies segment [2;3] - leave the 3-rd tree — it occupies point 5 - leave the 4-th tree — it occupies point 10 - fell the 5-th tree to the right — ...
1,750
[ { "input": "5\n1 2\n2 1\n5 10\n10 9\n19 1", "output": "3" }, { "input": "5\n1 2\n2 1\n5 10\n10 9\n20 1", "output": "4" }, { "input": "4\n10 4\n15 1\n19 3\n20 1", "output": "4" }, { "input": "35\n1 7\n3 11\n6 12\n7 6\n8 5\n9 11\n15 3\n16 10\n22 2\n23 3\n25 7\n27 3\n34 5\n35 10...
1,667,291,945
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
8
327
4,608,000
n = int(input()) loc = [] leng = [] for i in range(n): trees = list(map(int, input().split())) loc.append(trees[0]) leng.append(trees[1]) answer = 2 for i in range(1, n-1): zuojg = loc[i] - loc[i-1] - 1 youjg = loc[i+1] - loc[i] - 1 if leng[i] <= zuojg: answer += 1 eli...
Title: Woodcutters Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Susie listens to fairy tales before bed every day. Today's fairy tale was about wood cutters and the little girl immediately started imagining the choppers cutting wood. She imagined the situation that is described b...
```python n = int(input()) loc = [] leng = [] for i in range(n): trees = list(map(int, input().split())) loc.append(trees[0]) leng.append(trees[1]) answer = 2 for i in range(1, n-1): zuojg = loc[i] - loc[i-1] - 1 youjg = loc[i+1] - loc[i] - 1 if leng[i] <= zuojg: answer += ...
0
709
A
Juicer
PROGRAMMING
900
[ "implementation" ]
null
null
Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To be put in the juicer the orange must have size not exceeding *b*, so if Kolya sees an orange ...
The first line of the input contains three integers *n*, *b* and *d* (1<=≤<=*n*<=≤<=100<=000, 1<=≤<=*b*<=≤<=*d*<=≤<=1<=000<=000) — the number of oranges, the maximum size of the orange that fits in the juicer and the value *d*, which determines the condition when the waste section should be emptied. The second line co...
Print one integer — the number of times Kolya will have to empty the waste section.
[ "2 7 10\n5 6\n", "1 5 10\n7\n", "3 10 10\n5 7 7\n", "1 1 1\n1\n" ]
[ "1\n", "0\n", "1\n", "0\n" ]
In the first sample, Kolya will squeeze the juice from two oranges and empty the waste section afterwards. In the second sample, the orange won't fit in the juicer so Kolya will have no juice at all.
500
[ { "input": "2 7 10\n5 6", "output": "1" }, { "input": "1 5 10\n7", "output": "0" }, { "input": "3 10 10\n5 7 7", "output": "1" }, { "input": "1 1 1\n1", "output": "0" }, { "input": "2 951637 951638\n44069 951637", "output": "1" }, { "input": "50 100 12...
1,679,044,347
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
46
0
n, juicer, wastlimit = input().split() n = int(n) juicer = int(juicer) wastlimit = int(wastlimit) oranges = (map(int, input().split())) basket = 0 counter = 0 for i in range(n): if oranges[i] <= juicer: basket += oranges[i] if basket > wastlimit: basket = 0 counter += 1 prin...
Title: Juicer Time Limit: None seconds Memory Limit: None megabytes Problem Description: Kolya is going to make fresh orange juice. He has *n* oranges of sizes *a*1,<=*a*2,<=...,<=*a**n*. Kolya will put them in the juicer in the fixed order, starting with orange of size *a*1, then orange of size *a*2 and so on. To b...
```python n, juicer, wastlimit = input().split() n = int(n) juicer = int(juicer) wastlimit = int(wastlimit) oranges = (map(int, input().split())) basket = 0 counter = 0 for i in range(n): if oranges[i] <= juicer: basket += oranges[i] if basket > wastlimit: basket = 0 counter ...
-1
965
A
Paper Airplanes
PROGRAMMING
800
[ "math" ]
null
null
To make a paper airplane, one has to use a rectangular piece of paper. From a sheet of standard size you can make $s$ airplanes. A group of $k$ people decided to make $n$ airplanes each. They are going to buy several packs of paper, each of them containing $p$ sheets, and then distribute the sheets between the people....
The only line contains four integers $k$, $n$, $s$, $p$ ($1 \le k, n, s, p \le 10^4$) — the number of people, the number of airplanes each should make, the number of airplanes that can be made using one sheet and the number of sheets in one pack, respectively.
Print a single integer — the minimum number of packs they should buy.
[ "5 3 2 3\n", "5 3 100 1\n" ]
[ "4\n", "5\n" ]
In the first sample they have to buy $4$ packs of paper: there will be $12$ sheets in total, and giving $2$ sheets to each person is enough to suit everyone's needs. In the second sample they have to buy a pack for each person as they can't share sheets.
500
[ { "input": "5 3 2 3", "output": "4" }, { "input": "5 3 100 1", "output": "5" }, { "input": "10000 10000 1 1", "output": "100000000" }, { "input": "1 1 10000 10000", "output": "1" }, { "input": "300 300 21 23", "output": "196" }, { "input": "300 2 37 51...
1,586,970,668
2,147,483,647
Python 3
OK
TESTS
18
109
0
a,b,c,d=map(int,input().split()) x=b//c if(b%c!=0): x+=1 x*=a ans=(x//d) if(x%d!=0): ans+=1 print(ans)
Title: Paper Airplanes Time Limit: None seconds Memory Limit: None megabytes Problem Description: To make a paper airplane, one has to use a rectangular piece of paper. From a sheet of standard size you can make $s$ airplanes. A group of $k$ people decided to make $n$ airplanes each. They are going to buy several p...
```python a,b,c,d=map(int,input().split()) x=b//c if(b%c!=0): x+=1 x*=a ans=(x//d) if(x%d!=0): ans+=1 print(ans) ```
3
584
A
Olesya and Rodion
PROGRAMMING
1,000
[ "math" ]
null
null
Olesya loves numbers consisting of *n* digits, and Rodion only likes numbers that are divisible by *t*. Find some number that satisfies both of them. Your task is: given the *n* and *t* print an integer strictly larger than zero consisting of *n* digits that is divisible by *t*. If such number doesn't exist, print <=-...
The single line contains two numbers, *n* and *t* (1<=≤<=*n*<=≤<=100, 2<=≤<=*t*<=≤<=10) — the length of the number and the number it should be divisible by.
Print one such positive number without leading zeroes, — the answer to the problem, or <=-<=1, if such number doesn't exist. If there are multiple possible answers, you are allowed to print any of them.
[ "3 2\n" ]
[ "712" ]
none
500
[ { "input": "3 2", "output": "222" }, { "input": "2 2", "output": "22" }, { "input": "4 3", "output": "3333" }, { "input": "5 3", "output": "33333" }, { "input": "10 7", "output": "7777777777" }, { "input": "2 9", "output": "99" }, { "input"...
1,695,230,136
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
4
1,000
0
n, t = map(int, input().split()) j=pow(10,n) for i in range(1, j): if (len(str(i)) == n and i % t == 0): print(i) break if (i == j-1 and not (len(str(i)) == n and i % t == 0)): print(-1)
Title: Olesya and Rodion Time Limit: None seconds Memory Limit: None megabytes Problem Description: Olesya loves numbers consisting of *n* digits, and Rodion only likes numbers that are divisible by *t*. Find some number that satisfies both of them. Your task is: given the *n* and *t* print an integer strictly larg...
```python n, t = map(int, input().split()) j=pow(10,n) for i in range(1, j): if (len(str(i)) == n and i % t == 0): print(i) break if (i == j-1 and not (len(str(i)) == n and i % t == 0)): print(-1) ```
0
540
A
Combination Lock
PROGRAMMING
800
[ "implementation" ]
null
null
Scrooge McDuck keeps his most treasured savings in a home safe with a combination lock. Each time he wants to put there the treasures that he's earned fair and square, he has to open the lock. The combination lock is represented by *n* rotating disks with digits from 0 to 9 written on them. Scrooge McDuck has to turn ...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=1000) — the number of disks on the combination lock. The second line contains a string of *n* digits — the original state of the disks. The third line contains a string of *n* digits — Scrooge McDuck's combination that opens the lock.
Print a single integer — the minimum number of moves Scrooge McDuck needs to open the lock.
[ "5\n82195\n64723\n" ]
[ "13\n" ]
In the sample he needs 13 moves: - 1 disk: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/b8967f65a723782358b93eff9ce69f336817cf70.png" style="max-width: 100.0%;max-height: 100.0%;"/> - 2 disk: <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/07fa58573ece0d32...
500
[ { "input": "5\n82195\n64723", "output": "13" }, { "input": "12\n102021090898\n010212908089", "output": "16" }, { "input": "1\n8\n1", "output": "3" }, { "input": "2\n83\n57", "output": "7" }, { "input": "10\n0728592530\n1362615763", "output": "27" }, { ...
1,674,316,576
2,147,483,647
Python 3
OK
TESTS
43
46
0
n = int(input()) aa = input() a = [int(i) for i in aa] bb = input() b = [int(i) for i in bb] s = 0 for i in range(n): c = abs(a[i]-b[i]) if c>5: d = 10-c s = s+d else: s = s+c print(s)
Title: Combination Lock Time Limit: None seconds Memory Limit: None megabytes Problem Description: Scrooge McDuck keeps his most treasured savings in a home safe with a combination lock. Each time he wants to put there the treasures that he's earned fair and square, he has to open the lock. The combination lock is ...
```python n = int(input()) aa = input() a = [int(i) for i in aa] bb = input() b = [int(i) for i in bb] s = 0 for i in range(n): c = abs(a[i]-b[i]) if c>5: d = 10-c s = s+d else: s = s+c print(s) ```
3
588
A
Duff and Meat
PROGRAMMING
900
[ "greedy" ]
null
null
Duff is addicted to meat! Malek wants to keep her happy for *n* days. In order to be happy in *i*-th day, she needs to eat exactly *a**i* kilograms of meat. There is a big shop uptown and Malek wants to buy meat for her from there. In *i*-th day, they sell meat for *p**i* dollars per kilogram. Malek knows all numbers ...
The first line of input contains integer *n* (1<=≤<=*n*<=≤<=105), the number of days. In the next *n* lines, *i*-th line contains two integers *a**i* and *p**i* (1<=≤<=*a**i*,<=*p**i*<=≤<=100), the amount of meat Duff needs and the cost of meat in that day.
Print the minimum money needed to keep Duff happy for *n* days, in one line.
[ "3\n1 3\n2 2\n3 1\n", "3\n1 3\n2 1\n3 2\n" ]
[ "10\n", "8\n" ]
In the first sample case: An optimal way would be to buy 1 kg on the first day, 2 kg on the second day and 3 kg on the third day. In the second sample case: An optimal way would be to buy 1 kg on the first day and 5 kg (needed meat for the second and third day) on the second day.
750
[ { "input": "3\n1 3\n2 2\n3 1", "output": "10" }, { "input": "3\n1 3\n2 1\n3 2", "output": "8" }, { "input": "1\n39 52", "output": "2028" }, { "input": "2\n25 56\n94 17", "output": "2998" }, { "input": "5\n39 21\n95 89\n73 90\n9 55\n85 32", "output": "6321" }...
1,592,922,990
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
5
93
6,963,200
def totalCost(meat_p): minCost = None total = 0 for meat,price in meat_p.items(): if minCost is None or price <= minCost: total += meat * price minCost = price elif price > minCost: total += meat * minCost return total meat_p = dict() t = ...
Title: Duff and Meat Time Limit: None seconds Memory Limit: None megabytes Problem Description: Duff is addicted to meat! Malek wants to keep her happy for *n* days. In order to be happy in *i*-th day, she needs to eat exactly *a**i* kilograms of meat. There is a big shop uptown and Malek wants to buy meat for her ...
```python def totalCost(meat_p): minCost = None total = 0 for meat,price in meat_p.items(): if minCost is None or price <= minCost: total += meat * price minCost = price elif price > minCost: total += meat * minCost return total meat_p = di...
0
387
B
George and Round
PROGRAMMING
1,200
[ "brute force", "greedy", "two pointers" ]
null
null
George decided to prepare a Codesecrof round, so he has prepared *m* problems for the round. Let's number the problems with integers 1 through *m*. George estimates the *i*-th problem's complexity by integer *b**i*. To make the round good, he needs to put at least *n* problems there. Besides, he needs to have at least...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=3000) — the minimal number of problems in a good round and the number of problems George's prepared. The second line contains space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a*1<=&lt;<=*a*2<=&lt;<=...<=&lt;<=*a**n*<=≤<=106) — the requirem...
Print a single integer — the answer to the problem.
[ "3 5\n1 2 3\n1 2 2 3 3\n", "3 5\n1 2 3\n1 1 1 1 1\n", "3 1\n2 3 4\n1\n" ]
[ "0\n", "2\n", "3\n" ]
In the first sample the set of the prepared problems meets the requirements for a good round. In the second sample, it is enough to come up with and prepare two problems with complexities 2 and 3 to get a good round. In the third sample it is very easy to get a good round if come up with and prepare extra problems wi...
1,000
[ { "input": "3 5\n1 2 3\n1 2 2 3 3", "output": "0" }, { "input": "3 5\n1 2 3\n1 1 1 1 1", "output": "2" }, { "input": "3 1\n2 3 4\n1", "output": "3" }, { "input": "29 100\n20 32 41 67 72 155 331 382 399 412 465 470 484 511 515 529 616 637 679 715 733 763 826 843 862 903 925 97...
1,527,177,981
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include<iostream> #include<vector> using namespace std; int main() { int n; int m; vector<int> pro_good; vector<int> pro_pre; cin >> n >> m; int value = 0; for (int i = 0; i < n; i++) { cin >> value; pro_good.push_back(value); } for (int i = 0; i < m; i++) { cin >> value; pro_pre.pus...
Title: George and Round Time Limit: None seconds Memory Limit: None megabytes Problem Description: George decided to prepare a Codesecrof round, so he has prepared *m* problems for the round. Let's number the problems with integers 1 through *m*. George estimates the *i*-th problem's complexity by integer *b**i*. T...
```python #include<iostream> #include<vector> using namespace std; int main() { int n; int m; vector<int> pro_good; vector<int> pro_pre; cin >> n >> m; int value = 0; for (int i = 0; i < n; i++) { cin >> value; pro_good.push_back(value); } for (int i = 0; i < m; i++) { cin >> value; p...
-1
91
A
Newspaper Headline
PROGRAMMING
1,500
[ "greedy", "strings" ]
A. Newspaper Headline
2
256
A newspaper is published in Walrusland. Its heading is *s*1, it consists of lowercase Latin letters. Fangy the little walrus wants to buy several such newspapers, cut out their headings, glue them one to another in order to get one big string. After that walrus erase several letters from this string in order to get a n...
The input data contain two lines. The first line contain the heading *s*1, the second line contains the word *s*2. The lines only consist of lowercase Latin letters (1<=≤<=|*s*1|<=≤<=104,<=1<=≤<=|*s*2|<=≤<=106).
If it is impossible to get the word *s*2 in the above-described manner, print "-1" (without the quotes). Otherwise, print the least number of newspaper headings *s*1, which Fangy will need to receive the word *s*2.
[ "abc\nxyz\n", "abcd\ndabc\n" ]
[ "-1\n", "2\n" ]
none
500
[ { "input": "abc\nxyz", "output": "-1" }, { "input": "abcd\ndabc", "output": "2" }, { "input": "ab\nbabaaab", "output": "5" }, { "input": "ab\nbaaabba", "output": "6" }, { "input": "fbaaigiihhfaahgdbddgeggjdeigfadhfddja\nhbghjgijijcdafcbgiedichdeebaddfddb", "ou...
1,642,982,853
2,147,483,647
PyPy 3-64
TIME_LIMIT_EXCEEDED
TESTS
50
2,000
54,476,800
#! /usr/bin/env python3 from sys import stdin, stdout def main(): heading = stdin.readline().rstrip("\n") word = stdin.readline().rstrip("\n") relative_pos = {} position_in_word = 0 repeats = 1 if not set(word).issubset(set(heading)): stdout.write("-1\n") return 0 for pos,...
Title: Newspaper Headline Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: A newspaper is published in Walrusland. Its heading is *s*1, it consists of lowercase Latin letters. Fangy the little walrus wants to buy several such newspapers, cut out their headings, glue them one to another in order...
```python #! /usr/bin/env python3 from sys import stdin, stdout def main(): heading = stdin.readline().rstrip("\n") word = stdin.readline().rstrip("\n") relative_pos = {} position_in_word = 0 repeats = 1 if not set(word).issubset(set(heading)): stdout.write("-1\n") return 0 ...
0
291
A
Spyke Talks
PROGRAMMING
800
[ "*special", "implementation", "sortings" ]
null
null
Polycarpus is the director of a large corporation. There are *n* secretaries working for the corporation, each of them corresponds via the famous Spyke VoIP system during the day. We know that when two people call each other via Spyke, the Spyke network assigns a unique ID to this call, a positive integer session numbe...
The first line contains integer *n* (1<=≤<=*n*<=≤<=103) — the number of secretaries in Polycarpus's corporation. The next line contains *n* space-separated integers: *id*1,<=*id*2,<=...,<=*id**n* (0<=≤<=*id**i*<=≤<=109). Number *id**i* equals the number of the call session of the *i*-th secretary, if the secretary is t...
Print a single integer — the number of pairs of chatting secretaries, or -1 if Polycarpus's got a mistake in his records and the described situation could not have taken place.
[ "6\n0 1 7 1 7 10\n", "3\n1 1 1\n", "1\n0\n" ]
[ "2\n", "-1\n", "0\n" ]
In the first test sample there are two Spyke calls between secretaries: secretary 2 and secretary 4, secretary 3 and secretary 5. In the second test sample the described situation is impossible as conferences aren't allowed.
500
[ { "input": "6\n0 1 7 1 7 10", "output": "2" }, { "input": "3\n1 1 1", "output": "-1" }, { "input": "1\n0", "output": "0" }, { "input": "5\n2 2 1 1 3", "output": "2" }, { "input": "1\n1", "output": "0" }, { "input": "10\n4 21 3 21 21 1 1 2 2 3", "ou...
1,694,005,575
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
60
0
def solve(): dp = [0] * (int(input()) + 1) result = 0 for i in input().split(): i = int(i) dp[i] += 1 for i in dp[1:]: if dp[i] == 2: result += 1 elif dp[i] > 2: result = -1 break print(re...
Title: Spyke Talks Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus is the director of a large corporation. There are *n* secretaries working for the corporation, each of them corresponds via the famous Spyke VoIP system during the day. We know that when two people call each othe...
```python def solve(): dp = [0] * (int(input()) + 1) result = 0 for i in input().split(): i = int(i) dp[i] += 1 for i in dp[1:]: if dp[i] == 2: result += 1 elif dp[i] > 2: result = -1 break ...
-1
978
C
Letters
PROGRAMMING
1,000
[ "binary search", "implementation", "two pointers" ]
null
null
There are $n$ dormitories in Berland State University, they are numbered with integers from $1$ to $n$. Each dormitory consists of rooms, there are $a_i$ rooms in $i$-th dormitory. The rooms in $i$-th dormitory are numbered from $1$ to $a_i$. A postman delivers letters. Sometimes there is no specific dormitory and roo...
The first line contains two integers $n$ and $m$ $(1 \le n, m \le 2 \cdot 10^{5})$ — the number of dormitories and the number of letters. The second line contains a sequence $a_1, a_2, \dots, a_n$ $(1 \le a_i \le 10^{10})$, where $a_i$ equals to the number of rooms in the $i$-th dormitory. The third line contains a se...
Print $m$ lines. For each letter print two integers $f$ and $k$ — the dormitory number $f$ $(1 \le f \le n)$ and the room number $k$ in this dormitory $(1 \le k \le a_f)$ to deliver the letter.
[ "3 6\n10 15 12\n1 9 12 23 26 37\n", "2 3\n5 10000000000\n5 6 9999999999\n" ]
[ "1 1\n1 9\n2 2\n2 13\n3 1\n3 12\n", "1 5\n2 1\n2 9999999994\n" ]
In the first example letters should be delivered in the following order: - the first letter in room $1$ of the first dormitory - the second letter in room $9$ of the first dormitory - the third letter in room $2$ of the second dormitory - the fourth letter in room $13$ of the second dormitory - the fifth letter i...
0
[ { "input": "3 6\n10 15 12\n1 9 12 23 26 37", "output": "1 1\n1 9\n2 2\n2 13\n3 1\n3 12" }, { "input": "2 3\n5 10000000000\n5 6 9999999999", "output": "1 5\n2 1\n2 9999999994" }, { "input": "1 1\n1\n1", "output": "1 1" }, { "input": "5 15\n10 20 30 20 10\n1 6 10 11 15 30 31 54...
1,674,913,976
2,147,483,647
PyPy 3-64
OK
TESTS
16
342
32,460,800
n,m=[int(i) for i in input().split()] a=[int(i) for i in input().split()] b=[int(i) for i in input().split()] lb=0 ub=a[0] dorm=1 for z in b: while z>ub: lb=ub ub+=a[dorm] dorm+=1 print(dorm,z-lb)
Title: Letters Time Limit: None seconds Memory Limit: None megabytes Problem Description: There are $n$ dormitories in Berland State University, they are numbered with integers from $1$ to $n$. Each dormitory consists of rooms, there are $a_i$ rooms in $i$-th dormitory. The rooms in $i$-th dormitory are numbered fro...
```python n,m=[int(i) for i in input().split()] a=[int(i) for i in input().split()] b=[int(i) for i in input().split()] lb=0 ub=a[0] dorm=1 for z in b: while z>ub: lb=ub ub+=a[dorm] dorm+=1 print(dorm,z-lb) ```
3
16
B
Burglar and Matches
PROGRAMMING
900
[ "greedy", "implementation", "sortings" ]
B. Burglar and Matches
0
64
A burglar got into a matches warehouse and wants to steal as many matches as possible. In the warehouse there are *m* containers, in the *i*-th container there are *a**i* matchboxes, and each matchbox contains *b**i* matches. All the matchboxes are of the same size. The burglar's rucksack can hold *n* matchboxes exactl...
The first line of the input contains integer *n* (1<=≤<=*n*<=≤<=2·108) and integer *m* (1<=≤<=*m*<=≤<=20). The *i*<=+<=1-th line contains a pair of numbers *a**i* and *b**i* (1<=≤<=*a**i*<=≤<=108,<=1<=≤<=*b**i*<=≤<=10). All the input numbers are integer.
Output the only number — answer to the problem.
[ "7 3\n5 10\n2 5\n3 6\n", "3 3\n1 3\n2 2\n3 1\n" ]
[ "62\n", "7\n" ]
none
0
[ { "input": "7 3\n5 10\n2 5\n3 6", "output": "62" }, { "input": "3 3\n1 3\n2 2\n3 1", "output": "7" }, { "input": "1 1\n1 2", "output": "2" }, { "input": "1 2\n1 9\n1 6", "output": "9" }, { "input": "1 10\n1 1\n1 9\n1 3\n1 9\n1 7\n1 10\n1 4\n1 7\n1 3\n1 1", "ou...
1,654,776,256
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
30
0
n,m=map(int,input().split()) lst=[] for i in range(m): lst.append(list(map(int,input().split()))) lst.sort(key=lambda x:(x[0]*x[1],x[1])) print(lst) profit=0 for i in range(m-1,-1,-1): if lst[i][0]<=n: n-=lst[i][0] profit+=lst[i][0]*lst[i][1] else: lst...
Title: Burglar and Matches Time Limit: 0 seconds Memory Limit: 64 megabytes Problem Description: A burglar got into a matches warehouse and wants to steal as many matches as possible. In the warehouse there are *m* containers, in the *i*-th container there are *a**i* matchboxes, and each matchbox contains *b**i* mat...
```python n,m=map(int,input().split()) lst=[] for i in range(m): lst.append(list(map(int,input().split()))) lst.sort(key=lambda x:(x[0]*x[1],x[1])) print(lst) profit=0 for i in range(m-1,-1,-1): if lst[i][0]<=n: n-=lst[i][0] profit+=lst[i][0]*lst[i][1] else: ...
0
330
B
Road Construction
PROGRAMMING
1,300
[ "constructive algorithms", "graphs" ]
null
null
A country has *n* cities. Initially, there is no road in the country. One day, the king decides to construct some roads connecting pairs of cities. Roads can be traversed either way. He wants those roads to be constructed in such a way that it is possible to go from each city to any other city by traversing at most two...
The first line consists of two integers *n* and *m* . Then *m* lines follow, each consisting of two integers *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*, *a**i*<=≠<=*b**i*), which means that it is not possible to construct a road connecting cities *a**i* and *b**i*. Consider the cities are numbered from 1 to *n*....
You should print an integer *s*: the minimum number of roads that should be constructed, in the first line. Then *s* lines should follow, each consisting of two integers *a**i* and *b**i* (1<=≤<=*a**i*,<=*b**i*<=≤<=*n*,<=*a**i*<=≠<=*b**i*), which means that a road should be constructed between cities *a**i* and *b**i*....
[ "4 1\n1 3\n" ]
[ "3\n1 2\n4 2\n2 3\n" ]
This is one possible solution of the example: These are examples of wrong solutions:
1,000
[ { "input": "4 1\n1 3", "output": "3\n1 2\n4 2\n2 3" }, { "input": "1000 0", "output": "999\n1 2\n1 3\n1 4\n1 5\n1 6\n1 7\n1 8\n1 9\n1 10\n1 11\n1 12\n1 13\n1 14\n1 15\n1 16\n1 17\n1 18\n1 19\n1 20\n1 21\n1 22\n1 23\n1 24\n1 25\n1 26\n1 27\n1 28\n1 29\n1 30\n1 31\n1 32\n1 33\n1 34\n1 35\n1 36\n1 ...
1,659,154,988
2,147,483,647
PyPy 3-64
OK
TESTS
43
186
3,891,200
n,m = map(int,input().split()) star_node = 0 no_edge = [] for i in range(m): u,v = map(int,input().split()) no_edge.append(u) no_edge.append(v) for i in range(1,n+1): if i not in no_edge: star_node = i break print(n-1) for i in range(1,n+1): if i != star_node: p...
Title: Road Construction Time Limit: None seconds Memory Limit: None megabytes Problem Description: A country has *n* cities. Initially, there is no road in the country. One day, the king decides to construct some roads connecting pairs of cities. Roads can be traversed either way. He wants those roads to be constru...
```python n,m = map(int,input().split()) star_node = 0 no_edge = [] for i in range(m): u,v = map(int,input().split()) no_edge.append(u) no_edge.append(v) for i in range(1,n+1): if i not in no_edge: star_node = i break print(n-1) for i in range(1,n+1): if i != star_node: ...
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,681,557,490
2,147,483,647
PyPy 3
OK
TESTS
36
496
3,584,000
from fractions import Fraction w, y = map(int, input().split()) num = 6 - max(w, y) + 1 if num == 6: print("1/1") else: print(Fraction(num, 6))
Title: Die Roll Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Yakko, Wakko and Dot, world-famous animaniacs, decided to rest from acting in cartoons, and take a leave to travel a bit. Yakko dreamt to go to Pennsylvania, his Motherland and the Motherland of his ancestors. Wakko thought about T...
```python from fractions import Fraction w, y = map(int, input().split()) num = 6 - max(w, y) + 1 if num == 6: print("1/1") else: print(Fraction(num, 6)) ```
3.725297
689
C
Mike and Chocolate Thieves
PROGRAMMING
1,700
[ "binary search", "combinatorics", "math" ]
null
null
Bad news came to Mike's village, some thieves stole a bunch of chocolates from the local factory! Horrible! Aside from loving sweet things, thieves from this area are known to be very greedy. So after a thief takes his number of chocolates for himself, the next thief will take exactly *k* times more than the previous...
The single line of input contains the integer *m* (1<=≤<=*m*<=≤<=1015) — the number of ways the thieves might steal the chocolates, as rumours say.
Print the only integer *n* — the maximum amount of chocolates that thieves' bags can carry. If there are more than one *n* satisfying the rumors, print the smallest one. If there is no such *n* for a false-rumoured *m*, print <=-<=1.
[ "1\n", "8\n", "10\n" ]
[ "8\n", "54\n", "-1\n" ]
In the first sample case the smallest *n* that leads to exactly one way of stealing chocolates is *n* = 8, whereas the amounts of stealed chocolates are (1, 2, 4, 8) (the number of chocolates stolen by each of the thieves). In the second sample case the smallest *n* that leads to exactly 8 ways is *n* = 54 with the po...
1,500
[ { "input": "1", "output": "8" }, { "input": "8", "output": "54" }, { "input": "10", "output": "-1" }, { "input": "27", "output": "152" }, { "input": "28206", "output": "139840" }, { "input": "32", "output": "184" }, { "input": "115", "o...
1,525,272,405
5,505
Python 3
TIME_LIMIT_EXCEEDED
TESTS
11
2,000
7,065,600
m = int(input()) n = 6250000000000000 l, r = 0, n while l < r: t = 0 mid = (l + r) // 2 k = 2 mx = 0 while True: kc = k ** 3 if kc > mid: break t += mid // kc mx = max(mx, (mid // kc) * kc) k += 1 if t == m: print(mx) exit()...
Title: Mike and Chocolate Thieves Time Limit: None seconds Memory Limit: None megabytes Problem Description: Bad news came to Mike's village, some thieves stole a bunch of chocolates from the local factory! Horrible! Aside from loving sweet things, thieves from this area are known to be very greedy. So after a thi...
```python m = int(input()) n = 6250000000000000 l, r = 0, n while l < r: t = 0 mid = (l + r) // 2 k = 2 mx = 0 while True: kc = k ** 3 if kc > mid: break t += mid // kc mx = max(mx, (mid // kc) * kc) k += 1 if t == m: print(mx) ...
0
279
B
Books
PROGRAMMING
1,400
[ "binary search", "brute force", "implementation", "two pointers" ]
null
null
When Valera has got some free time, he goes to the library to read some books. Today he's got *t* free minutes to read. That's why Valera took *n* books in the library and for each book he estimated the time he is going to need to read it. Let's number the books by integers from 1 to *n*. Valera needs *a**i* minutes to...
The first line contains two integers *n* and *t* (1<=≤<=*n*<=≤<=105; 1<=≤<=*t*<=≤<=109) — the number of books and the number of free minutes Valera's got. The second line contains a sequence of *n* integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=104), where number *a**i* shows the number of minutes that the boy n...
Print a single integer — the maximum number of books Valera can read.
[ "4 5\n3 1 2 1\n", "3 3\n2 2 3\n" ]
[ "3\n", "1\n" ]
none
1,000
[ { "input": "4 5\n3 1 2 1", "output": "3" }, { "input": "3 3\n2 2 3", "output": "1" }, { "input": "1 3\n5", "output": "0" }, { "input": "1 10\n4", "output": "1" }, { "input": "2 10\n6 4", "output": "2" }, { "input": "6 10\n2 3 4 2 1 1", "output": "4...
1,675,122,330
2,147,483,647
Python 3
OK
TESTS
38
278
7,987,200
input1 = input() n, time = list(map(int,input1.split())) input1 = input() books = list(map(int,input1.split())) books.append(0) i = 0 j = 0 mysum = 0 best = 0 for j in range(n): mysum += books[j] while mysum > time: mysum -= books[i] i +=1 if j - i + 1 > best: ...
Title: Books Time Limit: None seconds Memory Limit: None megabytes Problem Description: When Valera has got some free time, he goes to the library to read some books. Today he's got *t* free minutes to read. That's why Valera took *n* books in the library and for each book he estimated the time he is going to need t...
```python input1 = input() n, time = list(map(int,input1.split())) input1 = input() books = list(map(int,input1.split())) books.append(0) i = 0 j = 0 mysum = 0 best = 0 for j in range(n): mysum += books[j] while mysum > time: mysum -= books[i] i +=1 if j - i + 1 > be...
3
0
none
none
none
0
[ "none" ]
null
null
Little Nastya has a hobby, she likes to remove some letters from word, to obtain another word. But it turns out to be pretty hard for her, because she is too young. Therefore, her brother Sergey always helps her. Sergey gives Nastya the word *t* and wants to get the word *p* out of it. Nastya removes letters in a cert...
The first and second lines of the input contain the words *t* and *p*, respectively. Words are composed of lowercase letters of the Latin alphabet (1<=≤<=|*p*|<=&lt;<=|*t*|<=≤<=200<=000). It is guaranteed that the word *p* can be obtained by removing the letters from word *t*. Next line contains a permutation *a*1,<=*...
Print a single integer number, the maximum number of letters that Nastya can remove.
[ "ababcba\nabb\n5 3 4 1 7 6 2\n", "bbbabb\nbb\n1 6 3 4 2 5\n" ]
[ "3", "4" ]
In the first sample test sequence of removing made by Nastya looks like this: "ababcba" <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/70a0795f45d32287dba0eb83fc4a3f470c6e5537.png" style="max-width: 100.0%;max-height: 100.0%;"/> "ababcba" <img align="middle" class="tex-formula" src="https...
0
[ { "input": "ababcba\nabb\n5 3 4 1 7 6 2", "output": "3" }, { "input": "bbbabb\nbb\n1 6 3 4 2 5", "output": "4" }, { "input": "cacaccccccacccc\ncacc\n10 9 14 5 1 7 15 3 6 12 4 8 11 13 2", "output": "9" }, { "input": "aaaabaaabaabaaaaaaaa\naaaa\n18 5 4 6 13 9 1 3 7 8 16 10 12 1...
1,490,043,918
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
46
4,608,000
def check(i): k = 0 for c, n in zip(s, ns): if n<=i: continue if s2[k] == c: k+=1 if k == len(s2): return True return False s = input() s2 = input() ns = [(i, int(x)) for i, x in enumerate(input().split())] ns.sort(key=lambda x: x[1]) ns =...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Nastya has a hobby, she likes to remove some letters from word, to obtain another word. But it turns out to be pretty hard for her, because she is too young. Therefore, her brother Sergey always helps her. Sergey gives Nas...
```python def check(i): k = 0 for c, n in zip(s, ns): if n<=i: continue if s2[k] == c: k+=1 if k == len(s2): return True return False s = input() s2 = input() ns = [(i, int(x)) for i, x in enumerate(input().split())] ns.sort(key=lambda x: x...
0
817
A
Treasure Hunt
PROGRAMMING
1,200
[ "implementation", "math", "number theory" ]
null
null
Captain Bill the Hummingbird and his crew recieved an interesting challenge offer. Some stranger gave them a map, potion of teleportation and said that only this potion might help them to reach the treasure. Bottle with potion has two values *x* and *y* written on it. These values define four moves which can be perfo...
The first line contains four integer numbers *x*1,<=*y*1,<=*x*2,<=*y*2 (<=-<=105<=≤<=*x*1,<=*y*1,<=*x*2,<=*y*2<=≤<=105) — positions of Captain Bill the Hummingbird and treasure respectively. The second line contains two integer numbers *x*,<=*y* (1<=≤<=*x*,<=*y*<=≤<=105) — values on the potion bottle.
Print "YES" if it is possible for Captain to reach the treasure using the potion, otherwise print "NO" (without quotes).
[ "0 0 0 6\n2 3\n", "1 1 3 6\n1 5\n" ]
[ "YES\n", "NO\n" ]
In the first example there exists such sequence of moves: 1. <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/7c939890fb4ed35688177327dac981bfa9216c00.png" style="max-width: 100.0%;max-height: 100.0%;"/> — the first type of move 1. <img align="middle" class="tex-formula" src="https://espr...
0
[ { "input": "0 0 0 6\n2 3", "output": "YES" }, { "input": "1 1 3 6\n1 5", "output": "NO" }, { "input": "5 4 6 -10\n1 1", "output": "NO" }, { "input": "6 -3 -7 -7\n1 2", "output": "NO" }, { "input": "2 -5 -8 8\n2 1", "output": "YES" }, { "input": "70 -81...
1,498,243,863
2,147,483,647
Python 3
OK
TESTS
61
62
5,529,600
x1, y1, x2, y2 = map(int, input().split()) x, y = map(int, input().split()) if abs(x1-x2)%x == abs(y1-y2)%y == 0 and abs(y2-y1+y*abs(x1-x2)/x)%(2*y) == 0: print("YES") else: print("NO")
Title: Treasure Hunt Time Limit: None seconds Memory Limit: None megabytes Problem Description: Captain Bill the Hummingbird and his crew recieved an interesting challenge offer. Some stranger gave them a map, potion of teleportation and said that only this potion might help them to reach the treasure. Bottle with...
```python x1, y1, x2, y2 = map(int, input().split()) x, y = map(int, input().split()) if abs(x1-x2)%x == abs(y1-y2)%y == 0 and abs(y2-y1+y*abs(x1-x2)/x)%(2*y) == 0: print("YES") else: print("NO") ```
3
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,508,768,055
2,147,483,647
Python 3
OK
TESTS
32
124
5,529,600
n = int(input()) l = [int(i)%2 for i in input().split()] if sum(l) > 1: print(l.index(0)+1) else: print(l.index(1)+1)
Title: IQ test Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given *n* numbers differs from the others. Bob observed that one number usually differs from the others in evenness. Help Bob — t...
```python n = int(input()) l = [int(i)%2 for i in input().split()] if sum(l) > 1: print(l.index(0)+1) else: print(l.index(1)+1) ```
3.9587
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,539,712,236
155
Python 3
OK
TESTS
18
124
0
arr=[0,1] n=int(input()) while(arr[-1]<n): arr.append(arr[-1]+arr[-2]) s="" for i in range(1,n+1): if(i in arr): s+='O' else: s+='o' print(s)
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 arr=[0,1] n=int(input()) while(arr[-1]<n): arr.append(arr[-1]+arr[-2]) s="" for i in range(1,n+1): if(i in arr): s+='O' else: s+='o' print(s) ```
3
5
A
Chat Servers Outgoing Traffic
PROGRAMMING
1,000
[ "implementation" ]
A. Chat Server's Outgoing Traffic
1
64
Polycarp is working on a new project called "Polychat". Following modern tendencies in IT, he decided, that this project should contain chat as well. To achieve this goal, Polycarp has spent several hours in front of his laptop and implemented a chat server that can process three types of commands: - Include a person...
Input file will contain not more than 100 commands, each in its own line. No line will exceed 100 characters. Formats of the commands will be the following: - +&lt;name&gt; for 'Add' command. - -&lt;name&gt; for 'Remove' command. - &lt;sender_name&gt;:&lt;message_text&gt; for 'Send' command. &lt;name&gt; and &lt;s...
Print a single number — answer to the problem.
[ "+Mike\nMike:hello\n+Kate\n+Dmitry\n-Dmitry\nKate:hi\n-Kate\n", "+Mike\n-Mike\n+Mike\nMike:Hi I am here\n-Mike\n+Kate\n-Kate\n" ]
[ "9\n", "14\n" ]
none
0
[ { "input": "+Mike\nMike:hello\n+Kate\n+Dmitry\n-Dmitry\nKate:hi\n-Kate", "output": "9" }, { "input": "+Mike\n-Mike\n+Mike\nMike:Hi I am here\n-Mike\n+Kate\n-Kate", "output": "14" }, { "input": "+Dmitry\n+Mike\nDmitry:All letters will be used\nDmitry:qwertyuiopasdfghjklzxcvbnm QWERTYUIO...
1,619,889,078
1,578
Python 3
OK
TESTS
30
124
0
traffic = 0 polychat = set() while True: try: cmd = input() if cmd[0] == '+': polychat.add(cmd[1:]) elif cmd[0] == '-': polychat.remove(cmd[1:]) else: name, msg = cmd.split(':') traffic += len(msg)*len(polychat) except E...
Title: Chat Servers Outgoing Traffic Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: Polycarp is working on a new project called "Polychat". Following modern tendencies in IT, he decided, that this project should contain chat as well. To achieve this goal, Polycarp has spent several hours in fr...
```python traffic = 0 polychat = set() while True: try: cmd = input() if cmd[0] == '+': polychat.add(cmd[1:]) elif cmd[0] == '-': polychat.remove(cmd[1:]) else: name, msg = cmd.split(':') traffic += len(msg)*len(polychat) ...
3.938
0
none
none
none
0
[ "none" ]
null
null
You have multiset of *n* strings of the same length, consisting of lowercase English letters. We will say that those strings are easy to remember if for each string there is some position *i* and some letter *c* of the English alphabet, such that this string is the only string in the multiset that has letter *c* in pos...
The first line contains two integers *n*, *m* (1<=≤<=*n*,<=*m*<=≤<=20) — the number of strings in the multiset and the length of the strings respectively. Next *n* lines contain the strings of the multiset, consisting only of lowercase English letters, each string's length is *m*. Next *n* lines contain *m* integers e...
Print a single number — the answer to the problem.
[ "4 5\nabcde\nabcde\nabcde\nabcde\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n", "4 3\nabc\naba\nadc\nada\n10 10 10\n10 1 10\n10 10 10\n10 1 10\n", "3 3\nabc\nada\nssa\n1 1 1\n1 1 1\n1 1 1\n" ]
[ "3\n", "2\n", "0\n" ]
none
0
[ { "input": "4 5\nabcde\nabcde\nabcde\nabcde\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1\n1 1 1 1 1", "output": "3" }, { "input": "4 3\nabc\naba\nadc\nada\n10 10 10\n10 1 10\n10 10 10\n10 1 10", "output": "2" }, { "input": "3 3\nabc\nada\nssa\n1 1 1\n1 1 1\n1 1 1", "output": "0" }, { "in...
1,538,843,768
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
124
0
from sys import stdin n,m=map(int,stdin.readline().strip().split()) s=[] for i in range(n): s.append(list(map(ord,list(stdin.readline().strip())))) for j in range(m): s[-1][j]=s[-1][j]-97 mn=[min(tuple(map(int,stdin.readline().strip().split()))) for i in range(n)] maxmask=2**n dp=[0 for i in ra...
Title: none Time Limit: None seconds Memory Limit: None megabytes Problem Description: You have multiset of *n* strings of the same length, consisting of lowercase English letters. We will say that those strings are easy to remember if for each string there is some position *i* and some letter *c* of the English alp...
```python from sys import stdin n,m=map(int,stdin.readline().strip().split()) s=[] for i in range(n): s.append(list(map(ord,list(stdin.readline().strip())))) for j in range(m): s[-1][j]=s[-1][j]-97 mn=[min(tuple(map(int,stdin.readline().strip().split()))) for i in range(n)] maxmask=2**n dp=[0 f...
0
569
A
Music
PROGRAMMING
1,500
[ "implementation", "math" ]
null
null
Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk. Unfortunately, internet is not that fast in the city of Ekaterinozavodsk and the song takes a lot of time to download. But Lesha is quite ...
The single line contains three integers *T*,<=*S*,<=*q* (2<=≤<=*q*<=≤<=104, 1<=≤<=*S*<=&lt;<=*T*<=≤<=105).
Print a single integer — the number of times the song will be restarted.
[ "5 2 2\n", "5 4 7\n", "6 2 3\n" ]
[ "2\n", "1\n", "1\n" ]
In the first test, the song is played twice faster than it is downloaded, which means that during four first seconds Lesha reaches the moment that has not been downloaded, and starts the song again. After another two seconds, the song is downloaded completely, and thus, Lesha starts the song twice. In the second test,...
500
[ { "input": "5 2 2", "output": "2" }, { "input": "5 4 7", "output": "1" }, { "input": "6 2 3", "output": "1" }, { "input": "2 1 2", "output": "1" }, { "input": "2 1 3", "output": "1" }, { "input": "2 1 10000", "output": "1" }, { "input": "12...
1,439,225,583
1,383
Python 3
OK
TESTS
33
62
0
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import time import math (T, S, q) = (int(i) for i in input().split()) start = time.time() ans = math.log(T/S, q) if int(ans) - ans != 0: ans = int(ans) + 1 else: ans = int(ans) print(ans) finish = time.time() #print(finish - start)
Title: Music Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk. Unfortunately, internet is not that fast in the...
```python #!/usr/bin/env python3 # -*- coding: utf-8 -*- import time import math (T, S, q) = (int(i) for i in input().split()) start = time.time() ans = math.log(T/S, q) if int(ans) - ans != 0: ans = int(ans) + 1 else: ans = int(ans) print(ans) finish = time.time() #print(finish - start) ```
3
140
C
New Year Snowmen
PROGRAMMING
1,800
[ "binary search", "data structures", "greedy" ]
null
null
As meticulous Gerald sets the table and caring Alexander sends the postcards, Sergey makes snowmen. Each showman should consist of three snowballs: a big one, a medium one and a small one. Sergey's twins help him: they've already made *n* snowballs with radii equal to *r*1, *r*2, ..., *r**n*. To make a snowman, one nee...
The first line contains integer *n* (1<=≤<=*n*<=≤<=105) — the number of snowballs. The next line contains *n* integers — the balls' radii *r*1, *r*2, ..., *r**n* (1<=≤<=*r**i*<=≤<=109). The balls' radii can coincide.
Print on the first line a single number *k* — the maximum number of the snowmen. Next *k* lines should contain the snowmen's descriptions. The description of each snowman should consist of three space-separated numbers — the big ball's radius, the medium ball's radius and the small ball's radius. It is allowed to print...
[ "7\n1 2 3 4 5 6 7\n", "3\n2 2 3\n" ]
[ "2\n3 2 1\n6 5 4\n", "0\n" ]
none
1,500
[ { "input": "7\n1 2 3 4 5 6 7", "output": "2\n7 5 3\n6 4 2" }, { "input": "3\n2 2 3", "output": "0" }, { "input": "1\n255317", "output": "0" }, { "input": "6\n1 1 2 2 3 3", "output": "2\n3 2 1\n3 2 1" }, { "input": "6\n1 2 2 2 3 3", "output": "1\n3 2 1" }, ...
1,592,993,954
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
9
624
34,918,400
from io import BytesIO import os from collections import Counter, deque input = BytesIO(os.read(0, os.fstat(0).st_size)).readline def main(): count = int(input()) balls = list(map(int, input().split())) counter = Counter(balls) elems = deque(counter.keys()) size = len(elems) if size <3: print(0) ...
Title: New Year Snowmen Time Limit: None seconds Memory Limit: None megabytes Problem Description: As meticulous Gerald sets the table and caring Alexander sends the postcards, Sergey makes snowmen. Each showman should consist of three snowballs: a big one, a medium one and a small one. Sergey's twins help him: they...
```python from io import BytesIO import os from collections import Counter, deque input = BytesIO(os.read(0, os.fstat(0).st_size)).readline def main(): count = int(input()) balls = list(map(int, input().split())) counter = Counter(balls) elems = deque(counter.keys()) size = len(elems) if size <3: pri...
0
629
B
Far Relative’s Problem
PROGRAMMING
1,100
[ "brute force" ]
null
null
Famil Door wants to celebrate his birthday with his friends from Far Far Away. He has *n* friends and each of them can come to the party in a specific range of days of the year from *a**i* to *b**i*. Of course, Famil Door wants to have as many friends celebrating together with him as possible. Far cars are as weird as...
The first line of the input contains a single integer *n* (1<=≤<=*n*<=≤<=5000) — then number of Famil Door's friends. Then follow *n* lines, that describe the friends. Each line starts with a capital letter 'F' for female friends and with a capital letter 'M' for male friends. Then follow two integers *a**i* and *b**i...
Print the maximum number of people that may come to Famil Door's party.
[ "4\nM 151 307\nF 343 352\nF 117 145\nM 24 128\n", "6\nM 128 130\nF 128 131\nF 131 140\nF 131 141\nM 131 200\nM 140 200\n" ]
[ "2\n", "4\n" ]
In the first sample, friends 3 and 4 can come on any day in range [117, 128]. In the second sample, friends with indices 3, 4, 5 and 6 can come on day 140.
1,000
[ { "input": "4\nM 151 307\nF 343 352\nF 117 145\nM 24 128", "output": "2" }, { "input": "6\nM 128 130\nF 128 131\nF 131 140\nF 131 141\nM 131 200\nM 140 200", "output": "4" }, { "input": "1\nF 68 307", "output": "0" }, { "input": "40\nM 55 363\nF 117 252\nM 157 282\nF 322 345\...
1,456,175,189
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
61
0
n=int(input()) c=[0]*400 end=0 for _ in range(n): s=input().split() c[int(s[1])]+=1 c[int(s[2])+1]-=1 end=max(end,int(s[2])) ans=0 t=0 for i in range(end+1): t+=c[i] ans=max(ans,t) print(ans)
Title: Far Relative’s Problem Time Limit: None seconds Memory Limit: None megabytes Problem Description: Famil Door wants to celebrate his birthday with his friends from Far Far Away. He has *n* friends and each of them can come to the party in a specific range of days of the year from *a**i* to *b**i*. Of course, F...
```python n=int(input()) c=[0]*400 end=0 for _ in range(n): s=input().split() c[int(s[1])]+=1 c[int(s[2])+1]-=1 end=max(end,int(s[2])) ans=0 t=0 for i in range(end+1): t+=c[i] ans=max(ans,t) print(ans) ```
0
722
A
Broken Clock
PROGRAMMING
1,300
[ "brute force", "implementation" ]
null
null
You are given a broken clock. You know, that it is supposed to show time in 12- or 24-hours HH:MM format. In 12-hours format hours change from 1 to 12, while in 24-hours it changes from 0 to 23. In both formats minutes change from 0 to 59. You are given a time in format HH:MM that is currently displayed on the broken ...
The first line of the input contains one integer 12 or 24, that denote 12-hours or 24-hours format respectively. The second line contains the time in format HH:MM, that is currently displayed on the clock. First two characters stand for the hours, while next two show the minutes.
The only line of the output should contain the time in format HH:MM that is a correct time in the given format. It should differ from the original in as few positions as possible. If there are many optimal solutions you can print any of them.
[ "24\n17:30\n", "12\n17:30\n", "24\n99:99\n" ]
[ "17:30\n", "07:30\n", "09:09\n" ]
none
500
[ { "input": "24\n17:30", "output": "17:30" }, { "input": "12\n17:30", "output": "07:30" }, { "input": "24\n99:99", "output": "09:09" }, { "input": "12\n05:54", "output": "05:54" }, { "input": "12\n00:05", "output": "01:05" }, { "input": "24\n23:80", ...
1,478,963,359
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
21
77
0
#Codeforces 722A format = input() time = list(input().split(':')) if format == '12': if time[0] == '00': time[0] = '01' elif int(time[0]) > 12: time[0] = '0' + time[0][-1] elif format == '24': if int(time[0]) > 23: time[0] = '1' + time[0][-1] if int(time[1]) > 59: time[1] = '1' + time[1][-1] print(time[0]...
Title: Broken Clock Time Limit: None seconds Memory Limit: None megabytes Problem Description: You are given a broken clock. You know, that it is supposed to show time in 12- or 24-hours HH:MM format. In 12-hours format hours change from 1 to 12, while in 24-hours it changes from 0 to 23. In both formats minutes cha...
```python #Codeforces 722A format = input() time = list(input().split(':')) if format == '12': if time[0] == '00': time[0] = '01' elif int(time[0]) > 12: time[0] = '0' + time[0][-1] elif format == '24': if int(time[0]) > 23: time[0] = '1' + time[0][-1] if int(time[1]) > 59: time[1] = '1' + time[1][-1] pri...
0
109
A
Lucky Sum of Digits
PROGRAMMING
1,000
[ "brute force", "implementation" ]
A. Lucky Sum of Digits
2
256
Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya wonders eagerly what minimum lucky number has the sum of digits equal to *n*. Help him cope wi...
The single line contains an integer *n* (1<=≤<=*n*<=≤<=106) — the sum of digits of the required lucky number.
Print on the single line the result — the minimum lucky number, whose sum of digits equals *n*. If such number does not exist, print -1.
[ "11\n", "10\n" ]
[ "47\n", "-1\n" ]
none
500
[ { "input": "11", "output": "47" }, { "input": "10", "output": "-1" }, { "input": "64", "output": "4477777777" }, { "input": "1", "output": "-1" }, { "input": "4", "output": "4" }, { "input": "7", "output": "7" }, { "input": "12", "outpu...
1,417,542,223
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
2
62
0
import sys import math n = int(sys.stdin.readline()) k = [] while(n - 4 >= 4): k.append('4') n -= 4 if(n == 4 or n == 7): k.append(str(n)) print("".join(k)) else: print(-1)
Title: Lucky Sum of Digits Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python import sys import math n = int(sys.stdin.readline()) k = [] while(n - 4 >= 4): k.append('4') n -= 4 if(n == 4 or n == 7): k.append(str(n)) print("".join(k)) else: print(-1) ```
0
50
A
Domino piling
PROGRAMMING
800
[ "greedy", "math" ]
A. Domino piling
2
256
You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as possible on the board so as to meet the following conditions: 1. Each domino completely covers ...
In a single line you are given two integers *M* and *N* — board sizes in squares (1<=≤<=*M*<=≤<=*N*<=≤<=16).
Output one number — the maximal number of dominoes, which can be placed.
[ "2 4\n", "3 3\n" ]
[ "4\n", "4\n" ]
none
500
[ { "input": "2 4", "output": "4" }, { "input": "3 3", "output": "4" }, { "input": "1 5", "output": "2" }, { "input": "1 6", "output": "3" }, { "input": "1 15", "output": "7" }, { "input": "1 16", "output": "8" }, { "input": "2 5", "outpu...
1,634,096,972
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
1. a,b=map(int,input().split()) 2. c=a*b 3. d=c//2 4. print(d)
Title: Domino piling Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: You are given a rectangular board of *M*<=×<=*N* squares. Also you are given an unlimited number of standard domino pieces of 2<=×<=1 squares. You are allowed to rotate the pieces. You are asked to place as many dominoes as p...
```python 1. a,b=map(int,input().split()) 2. c=a*b 3. d=c//2 4. print(d) ```
-1
194
A
Exams
PROGRAMMING
900
[ "implementation", "math" ]
null
null
One day the Codeforces round author sat exams. He had *n* exams and he needed to get an integer from 2 to 5 for each exam. He will have to re-sit each failed exam, i.e. the exam that gets mark 2. The author would need to spend too much time and effort to make the sum of his marks strictly more than *k*. That could ha...
The single input line contains space-separated integers *n* and *k* (1<=≤<=*n*<=≤<=50, 1<=≤<=*k*<=≤<=250) — the number of exams and the required sum of marks. It is guaranteed that there exists a way to pass *n* exams in the way that makes the sum of marks equal exactly *k*.
Print the single number — the minimum number of exams that the author will get a 2 for, considering that the sum of marks for all exams must equal *k*.
[ "4 8\n", "4 10\n", "1 3\n" ]
[ "4\n", "2\n", "0\n" ]
In the first sample the author has to get a 2 for all his exams. In the second sample he should get a 3 for two exams and a 2 for two more. In the third sample he should get a 3 for one exam.
500
[ { "input": "4 8", "output": "4" }, { "input": "4 10", "output": "2" }, { "input": "1 3", "output": "0" }, { "input": "1 2", "output": "1" }, { "input": "4 9", "output": "3" }, { "input": "50 234", "output": "0" }, { "input": "50 100", "...
1,551,207,772
2,147,483,647
Python 3
OK
TESTS
38
218
0
def exams(n, k): l = k - 2 * n return max(n - l, 0) N, K = [int(j) for j in input().split()] print(exams(N, K))
Title: Exams Time Limit: None seconds Memory Limit: None megabytes Problem Description: One day the Codeforces round author sat exams. He had *n* exams and he needed to get an integer from 2 to 5 for each exam. He will have to re-sit each failed exam, i.e. the exam that gets mark 2. The author would need to spend ...
```python def exams(n, k): l = k - 2 * n return max(n - l, 0) N, K = [int(j) for j in input().split()] print(exams(N, K)) ```
3
322
B
Ciel and Flowers
PROGRAMMING
1,600
[ "combinatorics", "math" ]
null
null
Fox Ciel has some flowers: *r* red flowers, *g* green flowers and *b* blue flowers. She wants to use these flowers to make several bouquets. There are 4 types of bouquets: - To make a "red bouquet", it needs 3 red flowers. - To make a "green bouquet", it needs 3 green flowers. - To make a "blue bouquet", it needs 3...
The first line contains three integers *r*, *g* and *b* (0<=≤<=*r*,<=*g*,<=*b*<=≤<=109) — the number of red, green and blue flowers.
Print the maximal number of bouquets Fox Ciel can make.
[ "3 6 9\n", "4 4 4\n", "0 0 0\n" ]
[ "6\n", "4\n", "0\n" ]
In test case 1, we can make 1 red bouquet, 2 green bouquets and 3 blue bouquets. In test case 2, we can make 1 red, 1 green, 1 blue and 1 mixing bouquet.
1,000
[ { "input": "3 6 9", "output": "6" }, { "input": "4 4 4", "output": "4" }, { "input": "0 0 0", "output": "0" }, { "input": "0 3 6", "output": "3" }, { "input": "7 8 9", "output": "7" }, { "input": "8 8 9", "output": "8" }, { "input": "15 3 9...
1,653,727,456
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
33
124
0
r, g, b = map(int, input().split()) ans = min(r, g, b) ans += (r - ans)//3 + (g - ans)//3 + (b - ans)//3 another = (r-1)//3 + (g-1)//3 + (b-1)//3 + min(r - ((r-1)//3)*3, g - ((g-1)//3)*3, b - ((b-1)//3)*3) ans = max(ans, another) print(ans)
Title: Ciel and Flowers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Fox Ciel has some flowers: *r* red flowers, *g* green flowers and *b* blue flowers. She wants to use these flowers to make several bouquets. There are 4 types of bouquets: - To make a "red bouquet", it needs 3 red fl...
```python r, g, b = map(int, input().split()) ans = min(r, g, b) ans += (r - ans)//3 + (g - ans)//3 + (b - ans)//3 another = (r-1)//3 + (g-1)//3 + (b-1)//3 + min(r - ((r-1)//3)*3, g - ((g-1)//3)*3, b - ((b-1)//3)*3) ans = max(ans, another) print(ans) ```
0
485
A
Factory
PROGRAMMING
1,400
[ "implementation", "math", "matrices" ]
null
null
One industrial factory is reforming working plan. The director suggested to set a mythical detail production norm. If at the beginning of the day there were *x* details in the factory storage, then by the end of the day the factory has to produce (remainder after dividing *x* by *m*) more details. Unfortunately, no cu...
The first line contains two integers *a* and *m* (1<=≤<=*a*,<=*m*<=≤<=105).
Print "Yes" (without quotes) if the production will eventually stop, otherwise print "No".
[ "1 5\n", "3 6\n" ]
[ "No\n", "Yes\n" ]
none
1,000
[ { "input": "1 5", "output": "No" }, { "input": "3 6", "output": "Yes" }, { "input": "1 8", "output": "Yes" }, { "input": "2 3", "output": "No" }, { "input": "3 24", "output": "Yes" }, { "input": "1 1", "output": "Yes" }, { "input": "100000 ...
1,601,892,437
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
1,000
0
l = list(map(int,input().split())) a = l[0] m = l[1] i=a i = (2*i)%m while(i != 0 and i!=a): i = (2*i)%m if i == 0: print('Yes') else: print('No')
Title: Factory Time Limit: None seconds Memory Limit: None megabytes Problem Description: One industrial factory is reforming working plan. The director suggested to set a mythical detail production norm. If at the beginning of the day there were *x* details in the factory storage, then by the end of the day the fac...
```python l = list(map(int,input().split())) a = l[0] m = l[1] i=a i = (2*i)%m while(i != 0 and i!=a): i = (2*i)%m if i == 0: print('Yes') else: print('No') ```
0
955
A
Feed the cat
PROGRAMMING
1,100
[ "greedy", "math" ]
null
null
After waking up at *hh*:*mm*, Andrew realised that he had forgotten to feed his only cat for yet another time (guess why there's only one cat). The cat's current hunger level is *H* points, moreover each minute without food increases his hunger by *D* points. At any time Andrew can visit the store where tasty buns are...
The first line contains two integers *hh* and *mm* (00<=≤<=*hh*<=≤<=23,<=00<=≤<=*mm*<=≤<=59) — the time of Andrew's awakening. The second line contains four integers *H*, *D*, *C* and *N* (1<=≤<=*H*<=≤<=105,<=1<=≤<=*D*,<=*C*,<=*N*<=≤<=102).
Output the minimum amount of money to within three decimal digits. You answer is considered correct, if its absolute or relative error does not exceed 10<=-<=4. Formally, let your answer be *a*, and the jury's answer be *b*. Your answer is considered correct if .
[ "19 00\n255 1 100 1\n", "17 41\n1000 6 15 11\n" ]
[ "25200.0000\n", "1365.0000\n" ]
In the first sample Andrew can visit the store at exactly 20:00. The cat's hunger will be equal to 315, hence it will be necessary to purchase 315 buns. The discount makes the final answer 25200 roubles. In the second sample it's optimal to visit the store right after he wakes up. Then he'll have to buy 91 bins per 15...
500
[ { "input": "19 00\n255 1 100 1", "output": "25200.0000" }, { "input": "17 41\n1000 6 15 11", "output": "1365.0000" }, { "input": "16 34\n61066 14 50 59", "output": "43360.0000" }, { "input": "18 18\n23331 86 87 41", "output": "49590.0000" }, { "input": "10 48\n684...
1,521,824,716
1,816
Python 3
WRONG_ANSWER
PRETESTS
2
78
7,065,600
from math import ceil time = [int(i) for i in input().split()] h,d,c,n = [int(i) for i in input().split()] def subtract(time): return (20-time[0])*60+time[1] def moneyAfter(time,h,d,c,n): newh = subtract(time)*d+h return ((newh/n)*c)-((newh/n)*c)*0.2 def moneyBefore(time,h,d,c,n): if subtract(time)<...
Title: Feed the cat Time Limit: None seconds Memory Limit: None megabytes Problem Description: After waking up at *hh*:*mm*, Andrew realised that he had forgotten to feed his only cat for yet another time (guess why there's only one cat). The cat's current hunger level is *H* points, moreover each minute without foo...
```python from math import ceil time = [int(i) for i in input().split()] h,d,c,n = [int(i) for i in input().split()] def subtract(time): return (20-time[0])*60+time[1] def moneyAfter(time,h,d,c,n): newh = subtract(time)*d+h return ((newh/n)*c)-((newh/n)*c)*0.2 def moneyBefore(time,h,d,c,n): if subtr...
0
283
B
Cow Program
PROGRAMMING
1,700
[ "dfs and similar", "dp", "graphs" ]
null
null
Farmer John has just given the cows a program to play with! The program contains two integer variables, *x* and *y*, and performs the following operations on a sequence *a*1,<=*a*2,<=...,<=*a**n* of positive integers: 1. Initially, *x*<==<=1 and *y*<==<=0. If, after any step, *x*<=≤<=0 or *x*<=&gt;<=*n*, the program ...
The first line contains a single integer, *n* (2<=≤<=*n*<=≤<=2·105). The next line contains *n*<=-<=1 space separated integers, *a*2,<=*a*3,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=109).
Output *n*<=-<=1 lines. On the *i*-th line, print the requested value when the program is run on the sequence *i*,<=*a*2,<=*a*3,<=...*a**n*. Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.
[ "4\n2 4 1\n", "3\n1 2\n" ]
[ "3\n6\n8\n", "-1\n-1\n" ]
In the first sample 1. For *i* = 1,  *x* becomes <img align="middle" class="tex-formula" src="https://espresso.codeforces.com/d87035805e6f1c669693d86603da6d89c5730833.png" style="max-width: 100.0%;max-height: 100.0%;"/> and *y* becomes 1 + 2 = 3. 1. For *i* = 2,  *x* becomes <img align="middle" class="tex-formula" ...
1,000
[ { "input": "4\n2 4 1", "output": "3\n6\n8" }, { "input": "3\n1 2", "output": "-1\n-1" }, { "input": "5\n2 2 1 3", "output": "3\n-1\n-1\n-1" }, { "input": "2\n1", "output": "-1" }, { "input": "8\n7 6 2 6 2 6 6", "output": "8\n8\n12\n10\n-1\n-1\n20" }, { ...
1,651,469,372
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
310
10,649,600
from collections import defaultdict from collections import deque from functools import lru_cache import heapq from locale import resetlocale import sys import random import math #parse a single integer def inp(): return(int(input())) #parse a list of integers def inlt(): return(list(map(int,input().split())))...
Title: Cow Program Time Limit: None seconds Memory Limit: None megabytes Problem Description: Farmer John has just given the cows a program to play with! The program contains two integer variables, *x* and *y*, and performs the following operations on a sequence *a*1,<=*a*2,<=...,<=*a**n* of positive integers: 1. ...
```python from collections import defaultdict from collections import deque from functools import lru_cache import heapq from locale import resetlocale import sys import random import math #parse a single integer def inp(): return(int(input())) #parse a list of integers def inlt(): return(list(map(int,input()....
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,669,044,505
2,147,483,647
Python 3
OK
TESTS
47
171
7,884,800
n, arr = int(input()), [int(t) for t in input().split()] ub = max(arr) count, dp = [0] * (ub + 1), [0] * (ub + 1) for i in arr: count[i] += i dp[1], dp[2] = count[1], count[2] for i in range(3, ub + 1): dp[i] = count[i] + max(dp[i - 2], dp[i - 3]) print(max(dp[-1], dp[-2]))
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 n, arr = int(input()), [int(t) for t in input().split()] ub = max(arr) count, dp = [0] * (ub + 1), [0] * (ub + 1) for i in arr: count[i] += i dp[1], dp[2] = count[1], count[2] for i in range(3, ub + 1): dp[i] = count[i] + max(dp[i - 2], dp[i - 3]) print(max(dp[-1], dp[-2])) ```
3
618
A
Slime Combining
PROGRAMMING
800
[ "implementation" ]
null
null
Your friend recently gave you some slimes for your birthday. You have *n* slimes all initially with value 1. You are going to play a game with these slimes. Initially, you put a single slime by itself in a row. Then, you will add the other *n*<=-<=1 slimes one by one. When you add a slime, you place it at the right of...
The first line of the input will contain a single integer, *n* (1<=≤<=*n*<=≤<=100<=000).
Output a single line with *k* integers, where *k* is the number of slimes in the row after you've finished the procedure described in the problem statement. The *i*-th of these numbers should be the value of the *i*-th slime from the left.
[ "1\n", "2\n", "3\n", "8\n" ]
[ "1\n", "2\n", "2 1\n", "4\n" ]
In the first sample, we only have a single slime with value 1. The final state of the board is just a single slime with value 1. In the second sample, we perform the following steps: Initially we place a single slime in a row by itself. Thus, row is initially 1. Then, we will add another slime. The row is now 1 1. S...
500
[ { "input": "1", "output": "1" }, { "input": "2", "output": "2" }, { "input": "3", "output": "2 1" }, { "input": "8", "output": "4" }, { "input": "100000", "output": "17 16 11 10 8 6" }, { "input": "12345", "output": "14 13 6 5 4 1" }, { "in...
1,593,258,553
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
3
140
20,172,800
n=bin(int(input()))[2:] for i in range(len(n)): if int(n[i])==1: print(2**(len(n)-i-1), end=' ')
Title: Slime Combining Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your friend recently gave you some slimes for your birthday. You have *n* slimes all initially with value 1. You are going to play a game with these slimes. Initially, you put a single slime by itself in a row. Then, y...
```python n=bin(int(input()))[2:] for i in range(len(n)): if int(n[i])==1: print(2**(len(n)-i-1), end=' ') ```
0
353
A
Domino
PROGRAMMING
1,200
[ "implementation", "math" ]
null
null
Valera has got *n* domino pieces in a row. Each piece consists of two halves — the upper one and the lower one. Each of the halves contains a number from 1 to 6. Valera loves even integers very much, so he wants the sum of the numbers on the upper halves and the sum of the numbers on the lower halves to be even. To do...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100), denoting the number of dominoes Valera has. Next *n* lines contain two space-separated integers *x**i*,<=*y**i* (1<=≤<=*x**i*,<=*y**i*<=≤<=6). Number *x**i* is initially written on the upper half of the *i*-th domino, *y**i* is initially written on the lower half...
Print a single number — the minimum required number of seconds. If Valera can't do the task in any time, print <=-<=1.
[ "2\n4 2\n6 4\n", "1\n2 3\n", "3\n1 4\n2 3\n4 4\n" ]
[ "0\n", "-1\n", "1\n" ]
In the first test case the sum of the numbers on the upper halves equals 10 and the sum of the numbers on the lower halves equals 6. Both numbers are even, so Valera doesn't required to do anything. In the second sample Valera has only one piece of domino. It is written 3 on the one of its halves, therefore one of the...
500
[ { "input": "2\n4 2\n6 4", "output": "0" }, { "input": "1\n2 3", "output": "-1" }, { "input": "3\n1 4\n2 3\n4 4", "output": "1" }, { "input": "5\n5 4\n5 4\n1 5\n5 5\n3 3", "output": "1" }, { "input": "20\n1 3\n5 2\n5 2\n2 6\n2 4\n1 1\n1 3\n1 4\n2 6\n4 2\n5 6\n2 2\n...
1,514,206,403
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
7
92
5,632,000
n = int(input()) list = [] for i in range(n): x,y = [int(i) for i in input().split()] list.append([x,y]) sumupper = 0 sumlower = 0 for i in range(n): sumupper += list[i][0] sumlower += list[i][1] if sumupper%2 == 0 and sumlower %2 == 0: print(0) elif sumupper%2 != 0 and sumlower%2 == 0: ...
Title: Domino Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera has got *n* domino pieces in a row. Each piece consists of two halves — the upper one and the lower one. Each of the halves contains a number from 1 to 6. Valera loves even integers very much, so he wants the sum of the n...
```python n = int(input()) list = [] for i in range(n): x,y = [int(i) for i in input().split()] list.append([x,y]) sumupper = 0 sumlower = 0 for i in range(n): sumupper += list[i][0] sumlower += list[i][1] if sumupper%2 == 0 and sumlower %2 == 0: print(0) elif sumupper%2 != 0 and sumlowe...
0
893
D
Credit Card
PROGRAMMING
1,900
[ "data structures", "dp", "greedy", "implementation" ]
null
null
Recenlty Luba got a credit card and started to use it. Let's consider *n* consecutive days Luba uses the card. She starts with 0 money on her account. In the evening of *i*-th day a transaction *a**i* occurs. If *a**i*<=&gt;<=0, then *a**i* bourles are deposited to Luba's account. If *a**i*<=&lt;<=0, then *a**i* bour...
The first line contains two integers *n*, *d* (1<=≤<=*n*<=≤<=105, 1<=≤<=*d*<=≤<=109) —the number of days and the money limitation. The second line contains *n* integer numbers *a*1,<=*a*2,<=... *a**n* (<=-<=104<=≤<=*a**i*<=≤<=104), where *a**i* represents the transaction in *i*-th day.
Print -1 if Luba cannot deposit the money to her account in such a way that the requirements are met. Otherwise print the minimum number of days Luba has to deposit money.
[ "5 10\n-1 5 0 -5 3\n", "3 4\n-10 0 20\n", "5 10\n-5 0 10 -11 0\n" ]
[ "0\n", "-1\n", "2\n" ]
none
0
[ { "input": "5 10\n-1 5 0 -5 3", "output": "0" }, { "input": "3 4\n-10 0 20", "output": "-1" }, { "input": "5 10\n-5 0 10 -11 0", "output": "2" }, { "input": "5 13756\n-2 -9 -10 0 10", "output": "1" }, { "input": "20 23036\n-1 1 -1 -1 -1 -1 1 -1 -1 0 0 1 1 0 0 1 0 ...
1,689,337,255
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
0
31
0
print("_RANDOM_GUESS_1689337255.131032")# 1689337255.1310751
Title: Credit Card Time Limit: None seconds Memory Limit: None megabytes Problem Description: Recenlty Luba got a credit card and started to use it. Let's consider *n* consecutive days Luba uses the card. She starts with 0 money on her account. In the evening of *i*-th day a transaction *a**i* occurs. If *a**i*<=&...
```python print("_RANDOM_GUESS_1689337255.131032")# 1689337255.1310751 ```
0
740
B
Alyona and flowers
PROGRAMMING
1,200
[ "constructive algorithms" ]
null
null
Little Alyona is celebrating Happy Birthday! Her mother has an array of *n* flowers. Each flower has some mood, the mood of *i*-th flower is *a**i*. The mood can be positive, zero or negative. Let's define a subarray as a segment of consecutive flowers. The mother suggested some set of subarrays. Alyona wants to choos...
The first line contains two integers *n* and *m* (1<=≤<=*n*,<=*m*<=≤<=100) — the number of flowers and the number of subarrays suggested by the mother. The second line contains the flowers moods — *n* integers *a*1,<=*a*2,<=...,<=*a**n* (<=-<=100<=≤<=*a**i*<=≤<=100). The next *m* lines contain the description of the ...
Print single integer — the maximum possible value added to the Alyona's happiness.
[ "5 4\n1 -2 1 3 -4\n1 2\n4 5\n3 4\n1 4\n", "4 3\n1 2 3 4\n1 3\n2 4\n1 1\n", "2 2\n-1 -2\n1 1\n1 2\n" ]
[ "7\n", "16\n", "0\n" ]
The first example is the situation described in the statements. In the second example Alyona should choose all subarrays. The third example has answer 0 because Alyona can choose none of the subarrays.
1,000
[ { "input": "5 4\n1 -2 1 3 -4\n1 2\n4 5\n3 4\n1 4", "output": "7" }, { "input": "4 3\n1 2 3 4\n1 3\n2 4\n1 1", "output": "16" }, { "input": "2 2\n-1 -2\n1 1\n1 2", "output": "0" }, { "input": "5 6\n1 1 1 -1 0\n2 4\n1 3\n4 5\n1 5\n1 4\n4 5", "output": "8" }, { "inpu...
1,502,575,169
2,147,483,647
Python 3
COMPILATION_ERROR
TESTS
0
0
0
#include <vector> #include <list> #include <map> #include <string.h> #include <cstring> #include <math.h> #include <cmath> #include <set> #include <queue> #include <deque> #include <string> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #include <utility...
Title: Alyona and flowers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little Alyona is celebrating Happy Birthday! Her mother has an array of *n* flowers. Each flower has some mood, the mood of *i*-th flower is *a**i*. The mood can be positive, zero or negative. Let's define a subarra...
```python #include <vector> #include <list> #include <map> #include <string.h> #include <cstring> #include <math.h> #include <cmath> #include <set> #include <queue> #include <deque> #include <string> #include <stack> #include <bitset> #include <algorithm> #include <functional> #include <numeric> #includ...
-1
894
A
QAQ
PROGRAMMING
800
[ "brute force", "dp" ]
null
null
"QAQ" is a word to denote an expression of crying. Imagine "Q" as eyes with tears and "A" as a mouth. Now Diamond has given Bort a string consisting of only uppercase English letters of length *n*. There is a great number of "QAQ" in the string (Diamond is so cute!). Bort wants to know how many subsequences "QAQ" are...
The only line contains a string of length *n* (1<=≤<=*n*<=≤<=100). It's guaranteed that the string only contains uppercase English letters.
Print a single integer — the number of subsequences "QAQ" in the string.
[ "QAQAQYSYIOIWIN\n", "QAQQQZZYNOIWIN\n" ]
[ "4\n", "3\n" ]
In the first example there are 4 subsequences "QAQ": "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN", "QAQAQYSYIOIWIN".
500
[ { "input": "QAQAQYSYIOIWIN", "output": "4" }, { "input": "QAQQQZZYNOIWIN", "output": "3" }, { "input": "QA", "output": "0" }, { "input": "IAQVAQZLQBQVQFTQQQADAQJA", "output": "24" }, { "input": "QQAAQASGAYAAAAKAKAQIQEAQAIAAIAQQQQQ", "output": "378" }, { ...
1,609,914,706
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
78
0
string=input() ans=0 for i in range (len(string)): if string[i]=='A': ans+=string[:i].count("Q")*string[:i].count("Q") print(ans)
Title: QAQ Time Limit: None seconds Memory Limit: None megabytes Problem Description: "QAQ" is a word to denote an expression of crying. Imagine "Q" as eyes with tears and "A" as a mouth. Now Diamond has given Bort a string consisting of only uppercase English letters of length *n*. There is a great number of "QAQ"...
```python string=input() ans=0 for i in range (len(string)): if string[i]=='A': ans+=string[:i].count("Q")*string[:i].count("Q") print(ans) ```
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,638,571,909
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
1
31
0
n = int(input()) s, m = [0, 0, 0, 0], [] l = input() for i in l: s[int(i)] += 1 ss = s.copy() l = input() for i in l: m.append(int(i)) s1 = [0, 0, 0, 0] s2 = [0, 0, 0, 0] for i in m: s1[i] += 1 s2[i - 1] += 1 ans1 = 0 for i in range(3, 0, -1): c = min(s[i], s1[i]) s[i], s1[i] = ...
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 n = int(input()) s, m = [0, 0, 0, 0], [] l = input() for i in l: s[int(i)] += 1 ss = s.copy() l = input() for i in l: m.append(int(i)) s1 = [0, 0, 0, 0] s2 = [0, 0, 0, 0] for i in m: s1[i] += 1 s2[i - 1] += 1 ans1 = 0 for i in range(3, 0, -1): c = min(s[i], s1[i]) s[i]...
-1
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,669,603,304
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
0
30
0
s=input() s1="hello" a=0 b=0 for i in range(len(s)): if(s[i]==s1[a]): a+=1 b+=1 if(b==5): 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() s1="hello" a=0 b=0 for i in range(len(s)): if(s[i]==s1[a]): a+=1 b+=1 if(b==5): print("YES") else: print("NO") ```
-1
979
A
Pizza, Pizza, Pizza!!!
PROGRAMMING
1,000
[ "math" ]
null
null
Katie, Kuro and Shiro are best friends. They have known each other since kindergarten. That's why they often share everything with each other and work together on some very hard problems. Today is Shiro's birthday. She really loves pizza so she wants to invite her friends to the pizza restaurant near her house to cele...
A single line contains one non-negative integer $n$ ($0 \le n \leq 10^{18}$) — the number of Shiro's friends. The circular pizza has to be sliced into $n + 1$ pieces.
A single integer — the number of straight cuts Shiro needs.
[ "3\n", "4\n" ]
[ "2", "5" ]
To cut the round pizza into quarters one has to make two cuts through the center with angle $90^{\circ}$ between them. To cut the round pizza into five equal parts one has to make five cuts.
500
[ { "input": "3", "output": "2" }, { "input": "4", "output": "5" }, { "input": "10", "output": "11" }, { "input": "10000000000", "output": "10000000001" }, { "input": "1234567891", "output": "617283946" }, { "input": "7509213957", "output": "37546069...
1,547,015,305
2,147,483,647
Python 3
OK
TESTS
47
109
0
t=int(input()) if (t+1)%2==0 and t!=0: print((t+1)//2) elif (t+1)%2!=0 and t!=0: print(t+1) else: print('0')
Title: Pizza, Pizza, Pizza!!! Time Limit: None seconds Memory Limit: None megabytes Problem Description: Katie, Kuro and Shiro are best friends. They have known each other since kindergarten. That's why they often share everything with each other and work together on some very hard problems. Today is Shiro's birthd...
```python t=int(input()) if (t+1)%2==0 and t!=0: print((t+1)//2) elif (t+1)%2!=0 and t!=0: print(t+1) else: print('0') ```
3
66
D
Petya and His Friends
PROGRAMMING
1,700
[ "constructive algorithms", "math", "number theory" ]
D. Petya and His Friends
2
256
Little Petya has a birthday soon. Due this wonderful event, Petya's friends decided to give him sweets. The total number of Petya's friends equals to *n*. Let us remind you the definition of the greatest common divisor: *GCD*(*a*1,<=...,<=*a**k*)<==<=*d*, where *d* represents such a maximal positive number that each *...
The first line contains an integer *n* (2<=≤<=*n*<=≤<=50).
If there is no answer, print "-1" without quotes. Otherwise print a set of *n* distinct positive numbers *a*1,<=*a*2,<=...,<=*a**n*. Each line must contain one number. Each number must consist of not more than 100 digits, and must not contain any leading zeros. If there are several solutions to that problem, print any ...
[ "3\n", "4\n" ]
[ "99\n55\n11115\n", "385\n360\n792\n8360\n" ]
none
2,000
[ { "input": "3", "output": "15\n10\n6" }, { "input": "4", "output": "105\n70\n42\n30" }, { "input": "5", "output": "1155\n770\n462\n330\n210" }, { "input": "6", "output": "15015\n10010\n6006\n4290\n2730\n2310" }, { "input": "7", "output": "255255\n170170\n10210...
1,514,006,910
2,147,483,647
Python 3
OK
TESTS
49
124
5,529,600
n = int(input()) if n < 3: print(-1) exit() a = [[0 for _ in range(n)] for o in range(n)] c = 0 def isprime(x): for i in range(2, int(x**0.5)+1): if x%i == 0: return 0 return 1 i = 2 while c != n: if isprime(i): c += 1 for j in range(n): a[c-1][j] = i ...
Title: Petya and His Friends Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Little Petya has a birthday soon. Due this wonderful event, Petya's friends decided to give him sweets. The total number of Petya's friends equals to *n*. Let us remind you the definition of the greatest common divis...
```python n = int(input()) if n < 3: print(-1) exit() a = [[0 for _ in range(n)] for o in range(n)] c = 0 def isprime(x): for i in range(2, int(x**0.5)+1): if x%i == 0: return 0 return 1 i = 2 while c != n: if isprime(i): c += 1 for j in range(n): a[c-1][j]...
3.9587
180
C
Letter
PROGRAMMING
1,400
[ "dp" ]
null
null
Patrick has just finished writing a message to his sweetheart Stacey when he noticed that the message didn't look fancy. Patrick was nervous while writing the message, so some of the letters there were lowercase and some of them were uppercase. Patrick believes that a message is fancy if any uppercase letter stands to...
The only line of the input contains a non-empty string consisting of uppercase and lowercase letters. The string's length does not exceed 105.
Print a single number — the least number of actions needed to make the message fancy.
[ "PRuvetSTAaYA\n", "OYPROSTIYAOPECHATALSYAPRIVETSTASYA\n", "helloworld\n" ]
[ "5\n", "0\n", "0\n" ]
none
0
[ { "input": "PRuvetSTAaYA", "output": "5" }, { "input": "OYPROSTIYAOPECHATALSYAPRIVETSTASYA", "output": "0" }, { "input": "helloworld", "output": "0" }, { "input": "P", "output": "0" }, { "input": "t", "output": "0" }, { "input": "XdJ", "output": "1...
1,690,690,128
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
1
154
0
S = __import__('sys').stdin.readline().strip() N = len(S) A, B = [0], [0] for i in range(N): if ord(S[i]) <= ord('Z'): # capital letter A.append(A[-1] + 1) B.append(B[-1]) else: A.append(A[-1]) B.append(B[-1] + 1) ans = 1e9 for i in range(N): an...
Title: Letter Time Limit: None seconds Memory Limit: None megabytes Problem Description: Patrick has just finished writing a message to his sweetheart Stacey when he noticed that the message didn't look fancy. Patrick was nervous while writing the message, so some of the letters there were lowercase and some of them...
```python S = __import__('sys').stdin.readline().strip() N = len(S) A, B = [0], [0] for i in range(N): if ord(S[i]) <= ord('Z'): # capital letter A.append(A[-1] + 1) B.append(B[-1]) else: A.append(A[-1]) B.append(B[-1] + 1) ans = 1e9 for i in range(N...
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,649,651,543
2,147,483,647
PyPy 3-64
OK
TESTS
40
124
0
l=[] flag=1 for _ in range(3): p=input() l.append(p) for i in range(3): if l[0][i]!=l[2][2-i]: flag=0 break if l[1][0]!=l[1][2]: flag=0 if flag==0: 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 l=[] flag=1 for _ in range(3): p=input() l.append(p) for i in range(3): if l[0][i]!=l[2][2-i]: flag=0 break if l[1][0]!=l[1][2]: flag=0 if flag==0: print("NO") else: print("YES") ```
3.969
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,538,927,038
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
34
140
0
def nsd(x, y): while x != 0: y, x = x, y % x return y def nsk(x, y): return x * y / nsd(x, y) a, b = (int(i) for i in input().split()) c, d = (int(i) for i in input().split()) interval = nsk(a, c) n = 0.1 m = 0 while not (n.is_integer() and n >= 0): n = (b + m * a - d) / c m += 1 if ...
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 def nsd(x, y): while x != 0: y, x = x, y % x return y def nsk(x, y): return x * y / nsd(x, y) a, b = (int(i) for i in input().split()) c, d = (int(i) for i in input().split()) interval = nsk(a, c) n = 0.1 m = 0 while not (n.is_integer() and n >= 0): n = (b + m * a - d) / c m +=...
0
120
A
Elevator
PROGRAMMING
1,000
[ "brute force", "implementation", "math" ]
null
null
A sky scraper with 1000 floors has been built in the city of N. It has modern superfast elevators to help to travel from one floor to another. Each elevator has two doors, the front one and the back one. If one goes in through the front door, he goes out through the back one and vice versa. The elevator has two rails n...
The first line indicates the door through which the very important person entered the elevator. It contains "front" if the person enters the elevator through the front door and "back" if he entered the elevator through the back door. The second line contains integer *a* (1<=≤<=*a*<=≤<=2) which denotes the number of the...
Print character "R" if the VIP is right-handed or "L" if he is left-handed.
[ "front\n1\n" ]
[ "L\n" ]
none
0
[ { "input": "front\n1", "output": "L" }, { "input": "back\n1", "output": "R" }, { "input": "front\n2", "output": "R" }, { "input": "back\n2", "output": "L" } ]
1,636,789,975
2,147,483,647
PyPy 3-64
RUNTIME_ERROR
TESTS
0
154
31,744,000
'''input front 1 ''' d = { "front1" : "L", "front2" : "R", "back1" : "R", "back2" : "L" } a,b = input().strip(), input().strip() print(d[a+b])
Title: Elevator Time Limit: None seconds Memory Limit: None megabytes Problem Description: A sky scraper with 1000 floors has been built in the city of N. It has modern superfast elevators to help to travel from one floor to another. Each elevator has two doors, the front one and the back one. If one goes in through...
```python '''input front 1 ''' d = { "front1" : "L", "front2" : "R", "back1" : "R", "back2" : "L" } a,b = input().strip(), input().strip() print(d[a+b]) ```
-1
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,590,251,702
2,147,483,647
PyPy 3
OK
TESTS
23
310
1,536,000
def get_primes(n): isprimes = [False, False] + [True] * (n - 1) primes = [] for i in range(2, n + 1): if isprimes[i]: primes.append(i) for p in range(i, n + 1, i): isprimes[p] = False return primes n = int(input()) primes = get_primes(n) ans = 0 for i in range(2, n + 1): ...
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 def get_primes(n): isprimes = [False, False] + [True] * (n - 1) primes = [] for i in range(2, n + 1): if isprimes[i]: primes.append(i) for p in range(i, n + 1, i): isprimes[p] = False return primes n = int(input()) primes = get_primes(n) ans = 0 for i in range(2, ...
3.919639
617
A
Elephant
PROGRAMMING
800
[ "math" ]
null
null
An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2, 3, 4 or 5 positions forward. Determine, what is the minimum number of steps he need to make ...
The first line of the input contains an integer *x* (1<=≤<=*x*<=≤<=1<=000<=000) — The coordinate of the friend's house.
Print the minimum number of steps that elephant needs to make to get from point 0 to point *x*.
[ "5\n", "12\n" ]
[ "1\n", "3\n" ]
In the first sample the elephant needs to make one step of length 5 to reach the point *x*. In the second sample the elephant can get to point *x* if he moves by 3, 5 and 4. There are other ways to get the optimal answer but the elephant cannot reach *x* in less than three moves.
500
[ { "input": "5", "output": "1" }, { "input": "12", "output": "3" }, { "input": "999999", "output": "200000" }, { "input": "41", "output": "9" }, { "input": "1000000", "output": "200000" }, { "input": "1", "output": "1" }, { "input": "2", ...
1,698,162,995
2,147,483,647
Python 3
OK
TESTS
34
46
0
a=int(input()) if a % 5 == 0: print(a//5) else: print(a//5+1)
Title: Elephant Time Limit: None seconds Memory Limit: None megabytes Problem Description: An elephant decided to visit his friend. It turned out that the elephant's house is located at point 0 and his friend's house is located at point *x*(*x*<=&gt;<=0) of the coordinate line. In one step the elephant can move 1, 2...
```python a=int(input()) if a % 5 == 0: print(a//5) else: print(a//5+1) ```
3
371
C
Hamburgers
PROGRAMMING
1,600
[ "binary search", "brute force" ]
null
null
Polycarpus loves hamburgers very much. He especially adores the hamburgers he makes with his own hands. Polycarpus thinks that there are only three decent ingredients to make hamburgers from: a bread, sausage and cheese. He writes down the recipe of his favorite "Le Hamburger de Polycarpus" as a string of letters 'B' (...
The first line of the input contains a non-empty string that describes the recipe of "Le Hamburger de Polycarpus". The length of the string doesn't exceed 100, the string contains only letters 'B' (uppercase English B), 'S' (uppercase English S) and 'C' (uppercase English C). The second line contains three integers *n...
Print the maximum number of hamburgers Polycarpus can make. If he can't make any hamburger, print 0.
[ "BBBSSC\n6 4 1\n1 2 3\n4\n", "BBC\n1 10 1\n1 10 1\n21\n", "BSC\n1 1 1\n1 1 3\n1000000000000\n" ]
[ "2\n", "7\n", "200000000001\n" ]
none
1,500
[ { "input": "BBBSSC\n6 4 1\n1 2 3\n4", "output": "2" }, { "input": "BBC\n1 10 1\n1 10 1\n21", "output": "7" }, { "input": "BSC\n1 1 1\n1 1 3\n1000000000000", "output": "200000000001" }, { "input": "B\n1 1 1\n1 1 1\n381", "output": "382" }, { "input": "BSC\n3 5 6\n7...
1,647,451,714
2,147,483,647
Python 3
RUNTIME_ERROR
TESTS
21
46
0
def bins(start, end): while start <= end: mid = (start + end) // 2 if possible(mid): start = mid + 1 else: end = mid - 1 if not possible(mid): mid -= 1 return mid def possible(mid): tot = mony tot -= max((lst[0][0] * mid - lst...
Title: Hamburgers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Polycarpus loves hamburgers very much. He especially adores the hamburgers he makes with his own hands. Polycarpus thinks that there are only three decent ingredients to make hamburgers from: a bread, sausage and cheese. He ...
```python def bins(start, end): while start <= end: mid = (start + end) // 2 if possible(mid): start = mid + 1 else: end = mid - 1 if not possible(mid): mid -= 1 return mid def possible(mid): tot = mony tot -= max((lst[0][0] *...
-1
233
A
Perfect Permutation
PROGRAMMING
800
[ "implementation", "math" ]
null
null
A permutation is a sequence of integers *p*1,<=*p*2,<=...,<=*p**n*, consisting of *n* distinct positive integers, each of them doesn't exceed *n*. Let's denote the *i*-th element of permutation *p* as *p**i*. We'll call number *n* the size of permutation *p*1,<=*p*2,<=...,<=*p**n*. Nickolas adores permutations. He lik...
A single line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the permutation size.
If a perfect permutation of size *n* doesn't exist, print a single integer -1. Otherwise print *n* distinct integers from 1 to *n*, *p*1,<=*p*2,<=...,<=*p**n* — permutation *p*, that is perfect. Separate printed numbers by whitespaces.
[ "1\n", "2\n", "4\n" ]
[ "-1\n", "2 1 \n", "2 1 4 3 \n" ]
none
500
[ { "input": "1", "output": "-1" }, { "input": "2", "output": "2 1 " }, { "input": "4", "output": "2 1 4 3 " }, { "input": "3", "output": "-1" }, { "input": "5", "output": "-1" }, { "input": "6", "output": "2 1 4 3 6 5 " }, { "input": "7", ...
1,659,487,709
2,147,483,647
Python 3
OK
TESTS
30
92
0
n = int(input()) nums = [] for i in range(n): if n > 1: nums.append(i + 1) 3 if n % 2 != 0: print(-1) else: for i in range(n - 1): if i % 2 == 0: nums[i], nums[i + 1] = nums[i + 1], nums[i] print(*nums)
Title: Perfect Permutation Time Limit: None seconds Memory Limit: None megabytes Problem Description: A permutation is a sequence of integers *p*1,<=*p*2,<=...,<=*p**n*, consisting of *n* distinct positive integers, each of them doesn't exceed *n*. Let's denote the *i*-th element of permutation *p* as *p**i*. We'll ...
```python n = int(input()) nums = [] for i in range(n): if n > 1: nums.append(i + 1) 3 if n % 2 != 0: print(-1) else: for i in range(n - 1): if i % 2 == 0: nums[i], nums[i + 1] = nums[i + 1], nums[i] print(*nums) ```
3
263
A
Beautiful Matrix
PROGRAMMING
800
[ "implementation" ]
null
null
You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to right. In one move, you are allowed to apply one of the two following transformations to the matrix: 1....
The input consists of five lines, each line contains five integers: the *j*-th integer in the *i*-th line of the input represents the element of the matrix that is located on the intersection of the *i*-th row and the *j*-th column. It is guaranteed that the matrix consists of 24 zeroes and a single number one.
Print a single integer — the minimum number of moves needed to make the matrix beautiful.
[ "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n", "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0\n" ]
[ "3\n", "1\n" ]
none
500
[ { "input": "0 0 0 0 0\n0 0 0 0 1\n0 0 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "3" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 1 0 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "1" }, { "input": "0 0 0 0 0\n0 0 0 0 0\n0 0 1 0 0\n0 0 0 0 0\n0 0 0 0 0", "output": "0" }, { "input": "0 0 0 0 0...
1,694,317,246
2,147,483,647
Python 3
OK
TESTS
25
92
0
""" Problem Statement: https://codeforces.com/problemset/problem/263/A Author: striker """ MAX_ROWS = 5 MAX_COLS = 5 def main(): matrix = [list(map(int, input().strip().split())) for row in range(MAX_ROWS)] one_loc = tuple() for row in range(MAX_ROWS): for col in range(MAX_COLS): if ma...
Title: Beautiful Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got a 5<=×<=5 matrix, consisting of 24 zeroes and a single number one. Let's index the matrix rows by numbers from 1 to 5 from top to bottom, let's index the matrix columns by numbers from 1 to 5 from left to ri...
```python """ Problem Statement: https://codeforces.com/problemset/problem/263/A Author: striker """ MAX_ROWS = 5 MAX_COLS = 5 def main(): matrix = [list(map(int, input().strip().split())) for row in range(MAX_ROWS)] one_loc = tuple() for row in range(MAX_ROWS): for col in range(MAX_COLS): ...
3
21
B
Intersection
PROGRAMMING
2,000
[ "implementation", "math" ]
B. Intersection
1
256
You are given two set of points. The first set is determined by the equation *A*1*x*<=+<=*B*1*y*<=+<=*C*1<==<=0, and the second one is determined by the equation *A*2*x*<=+<=*B*2*y*<=+<=*C*2<==<=0. Write the program which finds the number of points in the intersection of two given sets.
The first line of the input contains three integer numbers *A*1,<=*B*1,<=*C*1 separated by space. The second line contains three integer numbers *A*2,<=*B*2,<=*C*2 separated by space. All the numbers are between -100 and 100, inclusive.
Print the number of points in the intersection or -1 if there are infinite number of points.
[ "1 1 0\n2 2 0\n", "1 1 0\n2 -2 0\n" ]
[ "-1\n", "1\n" ]
none
1,000
[ { "input": "1 1 0\n2 2 0", "output": "-1" }, { "input": "1 1 0\n2 -2 0", "output": "1" }, { "input": "0 0 0\n0 0 0", "output": "-1" }, { "input": "1 1 1\n1 1 1", "output": "-1" }, { "input": "8 3 -4\n-5 2 7", "output": "1" }, { "input": "-1 -1 0\n0 -1 ...
1,460,161,232
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
21
122
5,120,000
a = [int(i) for i in input().split(' ')] b = [int(i) for i in input().split(' ')] if (a[0]*b[1] == a[1]*b[0]): if (a[2]*b[0] == a[0]*b[2]): print(-1) else: print(0) else: print(1)
Title: Intersection Time Limit: 1 seconds Memory Limit: 256 megabytes Problem Description: You are given two set of points. The first set is determined by the equation *A*1*x*<=+<=*B*1*y*<=+<=*C*1<==<=0, and the second one is determined by the equation *A*2*x*<=+<=*B*2*y*<=+<=*C*2<==<=0. Write the program which fin...
```python a = [int(i) for i in input().split(' ')] b = [int(i) for i in input().split(' ')] if (a[0]*b[1] == a[1]*b[0]): if (a[2]*b[0] == a[0]*b[2]): print(-1) else: print(0) else: print(1) ```
0
32
B
Borze
PROGRAMMING
800
[ "expression parsing", "implementation" ]
B. Borze
2
256
Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary number given its representation in Borze alphabet.
The first line contains a number in Borze code. The length of the string is between 1 and 200 characters. It's guaranteed that the given string is a valid Borze code of some ternary number (this number can have leading zeroes).
Output the decoded ternary number. It can have leading zeroes.
[ ".-.--\n", "--.\n", "-..-.--\n" ]
[ "012", "20", "1012" ]
none
1,000
[ { "input": ".-.--", "output": "012" }, { "input": "--.", "output": "20" }, { "input": "-..-.--", "output": "1012" }, { "input": "---..", "output": "210" }, { "input": "..--.---..", "output": "0020210" }, { "input": "-.....----.", "output": "1000022...
1,694,937,424
2,147,483,647
PyPy 3-64
OK
TESTS
30
124
0
sn=input() j=0 while j<len(sn): if sn[j]=='-' and sn[j+1]=='-': print("2",end="") j+=2 elif sn[j]=='-' and sn[j+1]=='.': print("1",end="") j+=2 else: print("0",end="") j+=1
Title: Borze Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Ternary numeric notation is quite popular in Berland. To telegraph the ternary number the Borze alphabet is used. Digit 0 is transmitted as «.», 1 as «-.» and 2 as «--». You are to decode the Borze code, i.e. to find out the ternary ...
```python sn=input() j=0 while j<len(sn): if sn[j]=='-' and sn[j+1]=='-': print("2",end="") j+=2 elif sn[j]=='-' and sn[j+1]=='.': print("1",end="") j+=2 else: print("0",end="") j+=1 ```
3.969
678
A
Johny Likes Numbers
PROGRAMMING
800
[ "implementation", "math" ]
null
null
Johny likes numbers *n* and *k* very much. Now Johny wants to find the smallest integer *x* greater than *n*, so it is divisible by the number *k*.
The only line contains two integers *n* and *k* (1<=≤<=*n*,<=*k*<=≤<=109).
Print the smallest integer *x*<=&gt;<=*n*, so it is divisible by the number *k*.
[ "5 3\n", "25 13\n", "26 13\n" ]
[ "6\n", "26\n", "39\n" ]
none
0
[ { "input": "5 3", "output": "6" }, { "input": "25 13", "output": "26" }, { "input": "26 13", "output": "39" }, { "input": "1 1", "output": "2" }, { "input": "8 8", "output": "16" }, { "input": "14 15", "output": "15" }, { "input": "197 894"...
1,621,229,783
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
11
500
0
n,k=input().split() n,k=int(n),int(k) m=n while(True): if m%k==0 and m>n: print(m) break m+=1
Title: Johny Likes Numbers Time Limit: None seconds Memory Limit: None megabytes Problem Description: Johny likes numbers *n* and *k* very much. Now Johny wants to find the smallest integer *x* greater than *n*, so it is divisible by the number *k*. Input Specification: The only line contains two integers *n* and *...
```python n,k=input().split() n,k=int(n),int(k) m=n while(True): if m%k==0 and m>n: print(m) break m+=1 ```
0
841
B
Godsend
PROGRAMMING
1,100
[ "games", "math" ]
null
null
Leha somehow found an array consisting of *n* integers. Looking at it, he came up with a task. Two players play the game on the array. Players move one by one. The first player can choose for his move a subsegment of non-zero length with an odd sum of numbers and remove it from the array, after that the remaining parts...
First line of input data contains single integer *n* (1<=≤<=*n*<=≤<=106) — length of the array. Next line contains *n* integers *a*1,<=*a*2,<=...,<=*a**n* (0<=≤<=*a**i*<=≤<=109).
Output answer in single line. "First", if first player wins, and "Second" otherwise (without quotes).
[ "4\n1 3 2 3\n", "2\n2 2\n" ]
[ "First\n", "Second\n" ]
In first sample first player remove whole array in one move and win. In second sample first player can't make a move and lose.
1,000
[ { "input": "4\n1 3 2 3", "output": "First" }, { "input": "2\n2 2", "output": "Second" }, { "input": "4\n2 4 6 8", "output": "Second" }, { "input": "5\n1 1 1 1 1", "output": "First" }, { "input": "4\n720074544 345031254 849487632 80870826", "output": "Second" ...
1,590,851,183
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
9
327
80,076,800
import sys input=sys.stdin.buffer.readline n=int(input()) arr=list(map(int,input().split())) odd=0 even=0 for x in arr: if x%2==0: even+=1 else: odd+=1 if odd>even: print("First") else: print("Second") #unknown_2433
Title: Godsend Time Limit: None seconds Memory Limit: None megabytes Problem Description: Leha somehow found an array consisting of *n* integers. Looking at it, he came up with a task. Two players play the game on the array. Players move one by one. The first player can choose for his move a subsegment of non-zero l...
```python import sys input=sys.stdin.buffer.readline n=int(input()) arr=list(map(int,input().split())) odd=0 even=0 for x in arr: if x%2==0: even+=1 else: odd+=1 if odd>even: print("First") else: print("Second") #unknown_2433 ```
0
656
F
Ace It!
PROGRAMMING
1,900
[ "*special" ]
null
null
The only line of the input is a string of 7 characters. The first character is letter A, followed by 6 digits. The input is guaranteed to be valid (for certain definition of "valid"). Output a single integer.
The only line of the input is a string of 7 characters. The first character is letter A, followed by 6 digits. The input is guaranteed to be valid (for certain definition of "valid").
Output a single integer.
[ "A221033\n", "A223635\n", "A232726\n" ]
[ "21\n", "22\n", "23\n" ]
none
0
[ { "input": "A221033", "output": "21" }, { "input": "A223635", "output": "22" }, { "input": "A232726", "output": "23" }, { "input": "A102210", "output": "25" }, { "input": "A231010", "output": "26" }, { "input": "A222222", "output": "13" }, { ...
1,574,345,557
2,147,483,647
Python 3
OK
TESTS
33
109
0
s = list(input()) dex = 0 for i in s: if i == "A": dex += 1 elif i == "1": dex += 10 else: dex += int(i) print(dex)
Title: Ace It! Time Limit: None seconds Memory Limit: None megabytes Problem Description: The only line of the input is a string of 7 characters. The first character is letter A, followed by 6 digits. The input is guaranteed to be valid (for certain definition of "valid"). Output a single integer. Input Specificat...
```python s = list(input()) dex = 0 for i in s: if i == "A": dex += 1 elif i == "1": dex += 10 else: dex += int(i) print(dex) ```
3
404
A
Valera and X
PROGRAMMING
1,000
[ "implementation" ]
null
null
Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a test on alphabet today. At the test Valera got a square piece of squared paper. The length of the...
The first line contains integer *n* (3<=≤<=*n*<=&lt;<=300; *n* is odd). Each of the next *n* lines contains *n* small English letters — the description of Valera's paper.
Print string "YES", if the letters on the paper form letter "X". Otherwise, print string "NO". Print the strings without quotes.
[ "5\nxooox\noxoxo\nsoxoo\noxoxo\nxooox\n", "3\nwsw\nsws\nwsw\n", "3\nxpx\npxp\nxpe\n" ]
[ "NO\n", "YES\n", "NO\n" ]
none
500
[ { "input": "5\nxooox\noxoxo\nsoxoo\noxoxo\nxooox", "output": "NO" }, { "input": "3\nwsw\nsws\nwsw", "output": "YES" }, { "input": "3\nxpx\npxp\nxpe", "output": "NO" }, { "input": "5\nliiil\nilili\niilii\nilili\nliiil", "output": "YES" }, { "input": "7\nbwccccb\nck...
1,669,375,333
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
6
31
0
n = int(input()) l = [];l2 = [];c = 0 for i in range(n): a = input() for i in range(n): if i == c or i == n-c-1: l2.append(a[i]) else: l.append(a[i]) c += 1 for i in l: while l.count(i) > 1: l.remove(i) for i in l2: while l2.count(i) > 1:...
Title: Valera and X Time Limit: None seconds Memory Limit: None megabytes Problem Description: Valera is a little boy. Yesterday he got a huge Math hometask at school, so Valera didn't have enough time to properly learn the English alphabet for his English lesson. Unfortunately, the English teacher decided to have a...
```python n = int(input()) l = [];l2 = [];c = 0 for i in range(n): a = input() for i in range(n): if i == c or i == n-c-1: l2.append(a[i]) else: l.append(a[i]) c += 1 for i in l: while l.count(i) > 1: l.remove(i) for i in l2: while l2.cou...
0
4
A
Watermelon
PROGRAMMING
800
[ "brute force", "math" ]
A. Watermelon
1
64
One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dying of thirst, and decided to divide the berry, however they faced a hard problem. Pete and ...
The first (and the only) input line contains integer number *w* (1<=≤<=*w*<=≤<=100) — the weight of the watermelon bought by the boys.
Print YES, if the boys can divide the watermelon into two parts, each of them weighing even number of kilos; and NO in the opposite case.
[ "8\n" ]
[ "YES\n" ]
For example, the boys can divide the watermelon into two parts of 2 and 6 kilos respectively (another variant — two parts of 4 and 4 kilos).
0
[ { "input": "8", "output": "YES" }, { "input": "5", "output": "NO" }, { "input": "4", "output": "YES" }, { "input": "3", "output": "NO" }, { "input": "2", "output": "NO" }, { "input": "1", "output": "NO" }, { "input": "7", "output": "NO"...
1,694,611,450
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
1
92
0
def solve(): w = int(input()) print('YES' if w % 2 == 0 and w > 2 else 'NOP') # t = int(input()) t = 1 while t: solve() t -= 1
Title: Watermelon Time Limit: 1 seconds Memory Limit: 64 megabytes Problem Description: One hot summer day Pete and his friend Billy decided to buy a watermelon. They chose the biggest and the ripest one, in their opinion. After that the watermelon was weighed, and the scales showed *w* kilos. They rushed home, dyin...
```python def solve(): w = int(input()) print('YES' if w % 2 == 0 and w > 2 else 'NOP') # t = int(input()) t = 1 while t: solve() t -= 1 ```
0
753
A
Santa Claus and Candies
PROGRAMMING
1,000
[ "dp", "greedy", "math" ]
null
null
Santa Claus has *n* candies, he dreams to give them as gifts to children. What is the maximal number of children for whose he can give candies if Santa Claus want each kid should get distinct positive integer number of candies. Santa Class wants to give all *n* candies he has.
The only line contains positive integer number *n* (1<=≤<=*n*<=≤<=1000) — number of candies Santa Claus has.
Print to the first line integer number *k* — maximal number of kids which can get candies. Print to the second line *k* distinct integer numbers: number of candies for each of *k* kid. The sum of *k* printed numbers should be exactly *n*. If there are many solutions, print any of them.
[ "5\n", "9\n", "2\n" ]
[ "2\n2 3\n", "3\n3 5 1\n", "1\n2 \n" ]
none
500
[ { "input": "5", "output": "2\n1 4 " }, { "input": "9", "output": "3\n1 2 6 " }, { "input": "2", "output": "1\n2 " }, { "input": "1", "output": "1\n1 " }, { "input": "3", "output": "2\n1 2 " }, { "input": "1000", "output": "44\n1 2 3 4 5 6 7 8 9 10 ...
1,589,840,016
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
77
0
n=int(input()) count=0 total_so_far=0 l=[] for i in range(1,n+1): if total_so_far+i>n: l[-1]+=n-total_so_far else: count+=1 l.append(i) print(count) print(*l,sep=' ')
Title: Santa Claus and Candies Time Limit: None seconds Memory Limit: None megabytes Problem Description: Santa Claus has *n* candies, he dreams to give them as gifts to children. What is the maximal number of children for whose he can give candies if Santa Claus want each kid should get distinct positive integer n...
```python n=int(input()) count=0 total_so_far=0 l=[] for i in range(1,n+1): if total_so_far+i>n: l[-1]+=n-total_so_far else: count+=1 l.append(i) print(count) print(*l,sep=' ') ```
0
34
A
Reconnaissance 2
PROGRAMMING
800
[ "implementation" ]
A. Reconnaissance 2
2
256
*n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So each of them will be less noticeable with the other. Output any pair of soldiers that can form a ...
The first line contains integer *n* (2<=≤<=*n*<=≤<=100) — amount of soldiers. Then follow the heights of the soldiers in their order in the circle — *n* space-separated integers *a*1,<=*a*2,<=...,<=*a**n* (1<=≤<=*a**i*<=≤<=1000). The soldier heights are given in clockwise or counterclockwise direction.
Output two integers — indexes of neighbouring soldiers, who should form a reconnaissance unit. If there are many optimum solutions, output any of them. Remember, that the soldiers stand in a circle.
[ "5\n10 12 13 15 10\n", "4\n10 20 30 40\n" ]
[ "5 1\n", "1 2\n" ]
none
500
[ { "input": "5\n10 12 13 15 10", "output": "5 1" }, { "input": "4\n10 20 30 40", "output": "1 2" }, { "input": "6\n744 359 230 586 944 442", "output": "2 3" }, { "input": "5\n826 747 849 687 437", "output": "1 2" }, { "input": "5\n999 999 993 969 999", "output"...
1,641,574,221
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
92
0
n=int(input()) soilders=list(map(int,input().split())) print(*sorted(soilders)[:2])
Title: Reconnaissance 2 Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: *n* soldiers stand in a circle. For each soldier his height *a**i* is known. A reconnaissance unit can be made of such two neighbouring soldiers, whose heights difference is minimal, i.e. |*a**i*<=-<=*a**j*| is minimal. So...
```python n=int(input()) soilders=list(map(int,input().split())) print(*sorted(soilders)[:2]) ```
0
413
B
Spyke Chatting
PROGRAMMING
1,300
[ "implementation" ]
null
null
The R2 company has *n* employees working for it. The work involves constant exchange of ideas, sharing the stories of success and upcoming challenging. For that, R2 uses a famous instant messaging program Spyke. R2 has *m* Spyke chats just to discuss all sorts of issues. In each chat, some group of employees exchanges...
The first line contains three space-separated integers *n*, *m* and *k* (2<=≤<=*n*<=≤<=2·104; 1<=≤<=*m*<=≤<=10; 1<=≤<=*k*<=≤<=2·105) — the number of the employees, the number of chats and the number of events in the log, correspondingly. Next *n* lines contain matrix *a* of size *n*<=×<=*m*, consisting of numbers zer...
Print in the single line *n* space-separated integers, where the *i*-th integer shows the number of message notifications the *i*-th employee receives.
[ "3 4 5\n1 1 1 1\n1 0 1 1\n1 1 0 0\n1 1\n3 1\n1 3\n2 4\n3 2\n", "4 3 4\n0 1 1\n1 0 1\n1 1 1\n0 0 0\n1 2\n2 1\n3 1\n1 3\n" ]
[ "3 3 1 ", "0 2 3 0 " ]
none
1,000
[ { "input": "3 4 5\n1 1 1 1\n1 0 1 1\n1 1 0 0\n1 1\n3 1\n1 3\n2 4\n3 2", "output": "3 3 1 " }, { "input": "4 3 4\n0 1 1\n1 0 1\n1 1 1\n0 0 0\n1 2\n2 1\n3 1\n1 3", "output": "0 2 3 0 " }, { "input": "2 1 1\n1\n1\n1 1", "output": "0 1 " }, { "input": "3 3 1\n1 1 1\n1 1 1\n1 1 1\...
1,399,306,690
2,147,483,647
Python 3
TIME_LIMIT_EXCEEDED
TESTS
9
1,000
1,843,200
#!/usr/local/bin/python3 n, m, k = map(int, input().split()) room = [[] for i in range(m)] person = [] result = [0] * n for i in range(n): person.append(list(input().split())) for i in range(n): n_room = 0 for n_be in person[i]: if n_be == '1': room[n_room].append(i) ...
Title: Spyke Chatting Time Limit: None seconds Memory Limit: None megabytes Problem Description: The R2 company has *n* employees working for it. The work involves constant exchange of ideas, sharing the stories of success and upcoming challenging. For that, R2 uses a famous instant messaging program Spyke. R2 has ...
```python #!/usr/local/bin/python3 n, m, k = map(int, input().split()) room = [[] for i in range(m)] person = [] result = [0] * n for i in range(n): person.append(list(input().split())) for i in range(n): n_room = 0 for n_be in person[i]: if n_be == '1': room[n_room].append(i)...
0
483
A
Counterexample
PROGRAMMING
1,100
[ "brute force", "implementation", "math", "number theory" ]
null
null
Your friend has recently learned about coprime numbers. A pair of numbers {*a*,<=*b*} is called coprime if the maximum number that divides both *a* and *b* is equal to one. Your friend often comes up with different statements. He has recently supposed that if the pair (*a*,<=*b*) is coprime and the pair (*b*,<=*c*) i...
The single line contains two positive space-separated integers *l*, *r* (1<=≤<=*l*<=≤<=*r*<=≤<=1018; *r*<=-<=*l*<=≤<=50).
Print three positive space-separated integers *a*, *b*, *c* — three distinct numbers (*a*,<=*b*,<=*c*) that form the counterexample. If there are several solutions, you are allowed to print any of them. The numbers must be printed in ascending order. If the counterexample does not exist, print the single number -1.
[ "2 4\n", "10 11\n", "900000000000000009 900000000000000029\n" ]
[ "2 3 4\n", "-1\n", "900000000000000009 900000000000000010 900000000000000021\n" ]
In the first sample pair (2, 4) is not coprime and pairs (2, 3) and (3, 4) are. In the second sample you cannot form a group of three distinct integers, so the answer is -1. In the third sample it is easy to see that numbers 900000000000000009 and 900000000000000021 are divisible by three.
500
[ { "input": "2 4", "output": "2 3 4" }, { "input": "10 11", "output": "-1" }, { "input": "900000000000000009 900000000000000029", "output": "900000000000000009 900000000000000010 900000000000000021" }, { "input": "640097987171091791 640097987171091835", "output": "64009798...
1,677,043,149
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
62
0
import math x, y = list(map(int, input().split())) if x%2==0: if(y-x >= 2): print(x,x+1,x+2) else: print(-1) else: if y-x >= 3: print(x,x+1,x+3) elif math.gcd(x,x+1) != 1 or math.gcd(x+1,x+2) != 1 or math.gcd(x,x+2): print(x,x+1,x+2) else: print...
Title: Counterexample Time Limit: None seconds Memory Limit: None megabytes Problem Description: Your friend has recently learned about coprime numbers. A pair of numbers {*a*,<=*b*} is called coprime if the maximum number that divides both *a* and *b* is equal to one. Your friend often comes up with different st...
```python import math x, y = list(map(int, input().split())) if x%2==0: if(y-x >= 2): print(x,x+1,x+2) else: print(-1) else: if y-x >= 3: print(x,x+1,x+3) elif math.gcd(x,x+1) != 1 or math.gcd(x+1,x+2) != 1 or math.gcd(x,x+2): print(x,x+1,x+2) else: ...
0
466
C
Number of Ways
PROGRAMMING
1,700
[ "binary search", "brute force", "data structures", "dp", "two pointers" ]
null
null
You've got array *a*[1],<=*a*[2],<=...,<=*a*[*n*], consisting of *n* integers. Count the number of ways to split all the elements of the array into three contiguous parts so that the sum of elements in each part is the same. More formally, you need to find the number of such pairs of indices *i*,<=*j* (2<=≤<=*i*<=≤<=...
The first line contains integer *n* (1<=≤<=*n*<=≤<=5·105), showing how many numbers are in the array. The second line contains *n* integers *a*[1], *a*[2], ..., *a*[*n*] (|*a*[*i*]|<=≤<=<=109) — the elements of array *a*.
Print a single integer — the number of ways to split the array into three parts with the same sum.
[ "5\n1 2 3 0 3\n", "4\n0 1 -1 0\n", "2\n4 1\n" ]
[ "2\n", "1\n", "0\n" ]
none
1,500
[ { "input": "5\n1 2 3 0 3", "output": "2" }, { "input": "4\n0 1 -1 0", "output": "1" }, { "input": "2\n4 1", "output": "0" }, { "input": "9\n0 0 0 0 0 0 0 0 0", "output": "28" }, { "input": "10\n2 5 -2 2 -3 -2 3 5 -5 -2", "output": "0" }, { "input": "1\...
1,699,363,613
2,147,483,647
Python 3
OK
TESTS
30
576
61,235,200
n=int(input()) array=list(map(int,input().split())) s=sum(array) if s%3 != 0 or len(array)<3: print(0) else: t=s/3 sum1=0;sum2=0;ans=0 a=[0]*n b=[0]*n for j in range(n-1,0,-1): sum2+=array[j] if sum2 == t: a[j]=1 if j == n-1: b[j]=a[...
Title: Number of Ways Time Limit: None seconds Memory Limit: None megabytes Problem Description: You've got array *a*[1],<=*a*[2],<=...,<=*a*[*n*], consisting of *n* integers. Count the number of ways to split all the elements of the array into three contiguous parts so that the sum of elements in each part is the s...
```python n=int(input()) array=list(map(int,input().split())) s=sum(array) if s%3 != 0 or len(array)<3: print(0) else: t=s/3 sum1=0;sum2=0;ans=0 a=[0]*n b=[0]*n for j in range(n-1,0,-1): sum2+=array[j] if sum2 == t: a[j]=1 if j == n-1: ...
3
583
A
Asphalting Roads
PROGRAMMING
1,000
[ "implementation" ]
null
null
City X consists of *n* vertical and *n* horizontal infinite roads, forming *n*<=×<=*n* intersections. Roads (both vertical and horizontal) are numbered from 1 to *n*, and the intersections are indicated by the numbers of the roads that form them. Sand roads have long been recognized out of date, so the decision was ma...
The first line contains integer *n* (1<=≤<=*n*<=≤<=50) — the number of vertical and horizontal roads in the city. Next *n*2 lines contain the order of intersections in the schedule. The *i*-th of them contains two numbers *h**i*,<=*v**i* (1<=≤<=*h**i*,<=*v**i*<=≤<=*n*), separated by a space, and meaning that the inte...
In the single line print the numbers of the days when road works will be in progress in ascending order. The days are numbered starting from 1.
[ "2\n1 1\n1 2\n2 1\n2 2\n", "1\n1 1\n" ]
[ "1 4 \n", "1 \n" ]
In the sample the brigade acts like that: 1. On the first day the brigade comes to the intersection of the 1-st horizontal and the 1-st vertical road. As none of them has been asphalted, the workers asphalt the 1-st vertical and the 1-st horizontal road; 1. On the second day the brigade of the workers comes to the i...
500
[ { "input": "2\n1 1\n1 2\n2 1\n2 2", "output": "1 4 " }, { "input": "1\n1 1", "output": "1 " }, { "input": "2\n1 1\n2 2\n1 2\n2 1", "output": "1 2 " }, { "input": "2\n1 2\n2 2\n2 1\n1 1", "output": "1 3 " }, { "input": "3\n2 2\n1 2\n3 2\n3 3\n1 1\n2 3\n1 3\n3 1\n2 ...
1,448,879,435
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
46
0
c = int(input()) n = str(input()) def f(s): s = str(s) if len(s) > 1: for i in range(len(s)-1): if s[i] != s[i+1]: s = s[:i]+s[i+2:] return 2 + f(s) elif len(s) <= 1: return 0 return 0 print(c - f(n))
Title: Asphalting Roads Time Limit: None seconds Memory Limit: None megabytes Problem Description: City X consists of *n* vertical and *n* horizontal infinite roads, forming *n*<=×<=*n* intersections. Roads (both vertical and horizontal) are numbered from 1 to *n*, and the intersections are indicated by the numbers ...
```python c = int(input()) n = str(input()) def f(s): s = str(s) if len(s) > 1: for i in range(len(s)-1): if s[i] != s[i+1]: s = s[:i]+s[i+2:] return 2 + f(s) elif len(s) <= 1: return 0 return 0 print(c - f(n)) ```
0
109
A
Lucky Sum of Digits
PROGRAMMING
1,000
[ "brute force", "implementation" ]
A. Lucky Sum of Digits
2
256
Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya wonders eagerly what minimum lucky number has the sum of digits equal to *n*. Help him cope wi...
The single line contains an integer *n* (1<=≤<=*n*<=≤<=106) — the sum of digits of the required lucky number.
Print on the single line the result — the minimum lucky number, whose sum of digits equals *n*. If such number does not exist, print -1.
[ "11\n", "10\n" ]
[ "47\n", "-1\n" ]
none
500
[ { "input": "11", "output": "47" }, { "input": "10", "output": "-1" }, { "input": "64", "output": "4477777777" }, { "input": "1", "output": "-1" }, { "input": "4", "output": "4" }, { "input": "7", "output": "7" }, { "input": "12", "outpu...
1,686,010,095
2,147,483,647
PyPy 3-64
WRONG_ANSWER
TESTS
2
92
0
import sys input = sys.stdin.readline f=int(input()) def q(f): if f%4==1: if f<21: return '-1' elif f%4==2: if f<14: return '-1' elif f%4==3: if f<7: return '-1' if f%4==0: g=f//4 return "4"*g ...
Title: Lucky Sum of Digits Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: Petya loves lucky numbers. We all know that lucky numbers are the positive integers whose decimal representations contain only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. ...
```python import sys input = sys.stdin.readline f=int(input()) def q(f): if f%4==1: if f<21: return '-1' elif f%4==2: if f<14: return '-1' elif f%4==3: if f<7: return '-1' if f%4==0: g=f//4 ret...
0
289
B
Polo the Penguin and Matrix
PROGRAMMING
1,400
[ "brute force", "dp", "implementation", "sortings", "ternary search" ]
null
null
Little penguin Polo has an *n*<=×<=*m* matrix, consisting of integers. Let's index the matrix rows from 1 to *n* from top to bottom and let's index the columns from 1 to *m* from left to right. Let's represent the matrix element on the intersection of row *i* and column *j* as *a**ij*. In one move the penguin can add ...
The first line contains three integers *n*, *m* and *d* (1<=≤<=*n*,<=*m*<=≤<=100,<=1<=≤<=*d*<=≤<=104) — the matrix sizes and the *d* parameter. Next *n* lines contain the matrix: the *j*-th integer in the *i*-th row is the matrix element *a**ij* (1<=≤<=*a**ij*<=≤<=104).
In a single line print a single integer — the minimum number of moves the penguin needs to make all matrix elements equal. If that is impossible, print "-1" (without the quotes).
[ "2 2 2\n2 4\n6 8\n", "1 2 7\n6 7\n" ]
[ "4\n", "-1\n" ]
none
1,000
[ { "input": "2 2 2\n2 4\n6 8", "output": "4" }, { "input": "1 2 7\n6 7", "output": "-1" }, { "input": "3 2 1\n5 7\n1 2\n5 100", "output": "104" }, { "input": "3 3 3\n5 8 5\n11 11 17\n14 5 2", "output": "12" }, { "input": "3 3 3\n5 8 5\n11 11 17\n14 5 3", "outpu...
1,564,861,326
2,147,483,647
PyPy 3
WRONG_ANSWER
TESTS
2
280
0
''' بِسْمِ اللَّهِ الرَّحْمَٰنِ الرَّحِيمِ ''' #codeforces289B import itertools gi = lambda : list(map(int,input().split())) n, m, d = gi() l = list(itertools.chain.from_iterable([gi() for _ in range(n)])) l.sort() ma = l[-1] for e in l: if (ma - e) % d: print(-1) exit() if (n * m) % 2: temp = l[n //...
Title: Polo the Penguin and Matrix Time Limit: None seconds Memory Limit: None megabytes Problem Description: Little penguin Polo has an *n*<=×<=*m* matrix, consisting of integers. Let's index the matrix rows from 1 to *n* from top to bottom and let's index the columns from 1 to *m* from left to right. Let's represe...
```python ''' بِسْمِ اللَّهِ الرَّحْمَٰنِ الرَّحِيمِ ''' #codeforces289B import itertools gi = lambda : list(map(int,input().split())) n, m, d = gi() l = list(itertools.chain.from_iterable([gi() for _ in range(n)])) l.sort() ma = l[-1] for e in l: if (ma - e) % d: print(-1) exit() if (n * m) % 2: tem...
0
520
A
Pangram
PROGRAMMING
800
[ "implementation", "strings" ]
null
null
A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices. You are given a string consisting of lowercase and uppercase Latin letters. Check whether thi...
The first line contains a single integer *n* (1<=≤<=*n*<=≤<=100) — the number of characters in the string. The second line contains the string. The string consists only of uppercase and lowercase Latin letters.
Output "YES", if the string is a pangram and "NO" otherwise.
[ "12\ntoosmallword\n", "35\nTheQuickBrownFoxJumpsOverTheLazyDog\n" ]
[ "NO\n", "YES\n" ]
none
500
[ { "input": "12\ntoosmallword", "output": "NO" }, { "input": "35\nTheQuickBrownFoxJumpsOverTheLazyDog", "output": "YES" }, { "input": "1\na", "output": "NO" }, { "input": "26\nqwertyuiopasdfghjklzxcvbnm", "output": "YES" }, { "input": "26\nABCDEFGHIJKLMNOPQRSTUVWXY...
1,698,481,547
2,147,483,647
Python 3
OK
TESTS
59
46
0
def check(text): text = text.lower() text=text.replace(' ','') unique_letters = set(text) if len(unique_letters) == 26: pass1='YES' return pass1 else: pass1='NO' return pass1 n=input() text1=input() print(check(text1))
Title: Pangram Time Limit: None seconds Memory Limit: None megabytes Problem Description: A word or a sentence in some language is called a pangram if all the characters of the alphabet of this language appear in it at least once. Pangrams are often used to demonstrate fonts in printing or test the output devices. ...
```python def check(text): text = text.lower() text=text.replace(' ','') unique_letters = set(text) if len(unique_letters) == 26: pass1='YES' return pass1 else: pass1='NO' return pass1 n=input() text1=input() print(check(text1)) ```
3
810
B
Summer sell-off
PROGRAMMING
1,300
[ "greedy", "sortings" ]
null
null
Summer holidays! Someone is going on trips, someone is visiting grandparents, but someone is trying to get a part-time job. This summer Noora decided that she wants to earn some money, and took a job in a shop as an assistant. Shop, where Noora is working, has a plan on the following *n* days. For each day sales manag...
The first line contains two integers *n* and *f* (1<=≤<=*n*<=≤<=105,<=0<=≤<=*f*<=≤<=*n*) denoting the number of days in shop's plan and the number of days that Noora has to choose for sell-out. Each line of the following *n* subsequent lines contains two integers *k**i*,<=*l**i* (0<=≤<=*k**i*,<=*l**i*<=≤<=109) denotin...
Print a single integer denoting the maximal number of products that shop can sell.
[ "4 2\n2 1\n3 5\n2 3\n1 5\n", "4 1\n0 2\n0 3\n3 5\n0 6\n" ]
[ "10", "5" ]
In the first example we can choose days with numbers 2 and 4 for sell-out. In this case new numbers of products for sale would be equal to [2, 6, 2, 2] respectively. So on the first day shop will sell 1 product, on the second — 5, on the third — 2, on the fourth — 2. In total 1 + 5 + 2 + 2 = 10 product units. In the s...
1,000
[ { "input": "4 2\n2 1\n3 5\n2 3\n1 5", "output": "10" }, { "input": "4 1\n0 2\n0 3\n3 5\n0 6", "output": "5" }, { "input": "1 1\n5 8", "output": "8" }, { "input": "2 1\n8 12\n6 11", "output": "19" }, { "input": "2 1\n6 7\n5 7", "output": "13" }, { "inpu...
1,688,259,951
2,147,483,647
PyPy 3-64
OK
TESTS
159
670
15,769,600
n, f = map(int, input().split()) k = [] for i in range(n): a, b = map(int, input().split()) k.append((a, b)) k = [p for p in k if p[0] != 0] ans = sum(p[0] if p[0] < p[1] else p[1] for p in k) v = [min(2 * p[0], p[1]) - min(p[0], p[1]) for p in k] v.sort(reverse=True) ans += sum(v[:f]) print...
Title: Summer sell-off Time Limit: None seconds Memory Limit: None megabytes Problem Description: Summer holidays! Someone is going on trips, someone is visiting grandparents, but someone is trying to get a part-time job. This summer Noora decided that she wants to earn some money, and took a job in a shop as an ass...
```python n, f = map(int, input().split()) k = [] for i in range(n): a, b = map(int, input().split()) k.append((a, b)) k = [p for p in k if p[0] != 0] ans = sum(p[0] if p[0] < p[1] else p[1] for p in k) v = [min(2 * p[0], p[1]) - min(p[0], p[1]) for p in k] v.sort(reverse=True) ans += sum(v[:f]...
3
776
B
Sherlock and his girlfriend
PROGRAMMING
1,200
[ "constructive algorithms", "number theory" ]
null
null
Sherlock has a new girlfriend (so unlike him!). Valentine's day is coming and he wants to gift her some jewelry. He bought *n* pieces of jewelry. The *i*-th piece has price equal to *i*<=+<=1, that is, the prices of the jewelry are 2,<=3,<=4,<=... *n*<=+<=1. Watson gave Sherlock a challenge to color these jewelry pie...
The only line contains single integer *n* (1<=≤<=*n*<=≤<=100000) — the number of jewelry pieces.
The first line of output should contain a single integer *k*, the minimum number of colors that can be used to color the pieces of jewelry with the given constraints. The next line should consist of *n* space-separated integers (between 1 and *k*) that specify the color of each piece in the order of increasing price. ...
[ "3\n", "4\n" ]
[ "2\n1 1 2 ", "2\n2 1 1 2\n" ]
In the first input, the colors for first, second and third pieces of jewelry having respective prices 2, 3 and 4 are 1, 1 and 2 respectively. In this case, as 2 is a prime divisor of 4, colors of jewelry having prices 2 and 4 must be distinct.
1,000
[ { "input": "3", "output": "2\n1 1 2 " }, { "input": "4", "output": "2\n1 1 2 1 " }, { "input": "17", "output": "2\n1 1 2 1 2 1 2 2 2 1 2 1 2 2 2 1 2 " }, { "input": "25", "output": "2\n1 1 2 1 2 1 2 2 2 1 2 1 2 2 2 1 2 1 2 2 2 1 2 2 2 " }, { "input": "85", "ou...
1,680,928,729
2,147,483,647
Python 3
OK
TESTS
53
171
1,126,400
n = int(input()) k = n + 2 arr = [1] * k for index in range(2, int(k ** 0.5) + 1): for idx in range(index * index, k, index): arr[idx] = 2 print(len(set(arr[2:]))) print(*arr[2:])
Title: Sherlock and his girlfriend Time Limit: None seconds Memory Limit: None megabytes Problem Description: Sherlock has a new girlfriend (so unlike him!). Valentine's day is coming and he wants to gift her some jewelry. He bought *n* pieces of jewelry. The *i*-th piece has price equal to *i*<=+<=1, that is, the ...
```python n = int(input()) k = n + 2 arr = [1] * k for index in range(2, int(k ** 0.5) + 1): for idx in range(index * index, k, index): arr[idx] = 2 print(len(set(arr[2:]))) print(*arr[2:]) ```
3
260
A
Adding Digits
PROGRAMMING
1,400
[ "implementation", "math" ]
null
null
Vasya has got two number: *a* and *b*. However, Vasya finds number *a* too short. So he decided to repeat the operation of lengthening number *a* *n* times. One operation of lengthening a number means adding exactly one digit to the number (in the decimal notation) to the right provided that the resulting number is di...
The first line contains three integers: *a*,<=*b*,<=*n* (1<=≤<=*a*,<=*b*,<=*n*<=≤<=105).
In a single line print the integer without leading zeros, which Vasya can get when he applies the lengthening operations to number *a* *n* times. If no such number exists, then print number -1. If there are multiple possible answers, print any of them.
[ "5 4 5\n", "12 11 1\n", "260 150 10\n" ]
[ "524848\n", "121\n", "-1\n" ]
none
500
[ { "input": "5 4 5", "output": "524848" }, { "input": "12 11 1", "output": "121" }, { "input": "260 150 10", "output": "-1" }, { "input": "78843 5684 42717", "output": "-1" }, { "input": "93248 91435 1133", "output": "-1" }, { "input": "100000 10 64479"...
1,627,622,017
2,147,483,647
PyPy 3
OK
TESTS
25
124
20,787,200
a,b,n = map(int,input().split()) flag = False for i in range(0,10): if (a*10+i)%b==0: print(a*10+i,end='') print('0'*(n-1)) flag = True break if not flag: print(-1)
Title: Adding Digits Time Limit: None seconds Memory Limit: None megabytes Problem Description: Vasya has got two number: *a* and *b*. However, Vasya finds number *a* too short. So he decided to repeat the operation of lengthening number *a* *n* times. One operation of lengthening a number means adding exactly one ...
```python a,b,n = map(int,input().split()) flag = False for i in range(0,10): if (a*10+i)%b==0: print(a*10+i,end='') print('0'*(n-1)) flag = True break if not flag: print(-1) ```
3
29
A
Spit Problem
PROGRAMMING
1,000
[ "brute force" ]
A. Spit Problem
2
256
In a Berland's zoo there is an enclosure with camels. It is known that camels like to spit. Bob watched these interesting animals for the whole day and registered in his notepad where each animal spitted. Now he wants to know if in the zoo there are two camels, which spitted at each other. Help him to solve this task. ...
The first line contains integer *n* (1<=≤<=*n*<=≤<=100) — the amount of camels in the zoo. Each of the following *n* lines contains two integers *x**i* and *d**i* (<=-<=104<=≤<=*x**i*<=≤<=104,<=1<=≤<=|*d**i*|<=≤<=2·104) — records in Bob's notepad. *x**i* is a position of the *i*-th camel, and *d**i* is a distance at wh...
If there are two camels, which spitted at each other, output YES. Otherwise, output NO.
[ "2\n0 1\n1 -1\n", "3\n0 1\n1 1\n2 -2\n", "5\n2 -10\n3 10\n0 5\n5 -5\n10 1\n" ]
[ "YES\n", "NO\n", "YES\n" ]
none
500
[ { "input": "2\n0 1\n1 -1", "output": "YES" }, { "input": "3\n0 1\n1 1\n2 -2", "output": "NO" }, { "input": "5\n2 -10\n3 10\n0 5\n5 -5\n10 1", "output": "YES" }, { "input": "10\n-9897 -1144\n-4230 -6350\n2116 -3551\n-3635 4993\n3907 -9071\n-2362 4120\n-6542 984\n5807 3745\n759...
1,667,930,188
2,147,483,647
Python 3
WRONG_ANSWER
TESTS
0
62
0
n = int(input()) a = [input().split() for i in range(n)] for i in range(len(a)): a[i][1] = a[i][0] + a[i][1] a[i] = set(a[i]) for i in a: if a.count(i) > 1: print('YES') exit() print('NO')
Title: Spit Problem Time Limit: 2 seconds Memory Limit: 256 megabytes Problem Description: In a Berland's zoo there is an enclosure with camels. It is known that camels like to spit. Bob watched these interesting animals for the whole day and registered in his notepad where each animal spitted. Now he wants to know ...
```python n = int(input()) a = [input().split() for i in range(n)] for i in range(len(a)): a[i][1] = a[i][0] + a[i][1] a[i] = set(a[i]) for i in a: if a.count(i) > 1: print('YES') exit() print('NO') ```
0
271
A
Beautiful Year
PROGRAMMING
800
[ "brute force" ]
null
null
It seems like the year of 2013 came only yesterday. Do you know a curious fact? The year of 2013 is the first year after the old 1987 with only distinct digits. Now you are suggested to solve the following problem: given a year number, find the minimum year number which is strictly larger than the given one and has on...
The single line contains integer *y* (1000<=≤<=*y*<=≤<=9000) — the year number.
Print a single integer — the minimum year number that is strictly larger than *y* and all it's digits are distinct. It is guaranteed that the answer exists.
[ "1987\n", "2013\n" ]
[ "2013\n", "2014\n" ]
none
500
[ { "input": "1987", "output": "2013" }, { "input": "2013", "output": "2014" }, { "input": "1000", "output": "1023" }, { "input": "1001", "output": "1023" }, { "input": "1234", "output": "1235" }, { "input": "5555", "output": "5601" }, { "inp...
1,693,972,484
2,147,483,647
Python 3
OK
TESTS
27
92
0
k=int(input())+1 while len(set(str(k)))<4:k+=1 print(k)
Title: Beautiful Year Time Limit: None seconds Memory Limit: None megabytes Problem Description: It seems like the year of 2013 came only yesterday. Do you know a curious fact? The year of 2013 is the first year after the old 1987 with only distinct digits. Now you are suggested to solve the following problem: give...
```python k=int(input())+1 while len(set(str(k)))<4:k+=1 print(k) ```
3
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,554,754,486
2,147,483,647
PyPy 3
OK
TESTS
25
186
819,200
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #define PB push_back #define MP make_pair #define LL long long #define int LL #define FOR(i,a,b) for(int i = (a); i <= (b); i++) #define RE(i,n) FOR(i,1,n) #define REP(i,n) FOR(i,0,(int)(n)-1) #define R(i,n) REP(i,n) #define VI vector<int> #...
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 #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #define PB push_back #define MP make_pair #define LL long long #define int LL #define FOR(i,a,b) for(int i = (a); i <= (b); i++) #define RE(i,n) FOR(i,1,n) #define REP(i,n) FOR(i,0,(int)(n)-1) #define R(i,n) REP(i,n) #define VI vect...
3