message stringlengths 2 11.9k | message_type stringclasses 2
values | message_id int64 0 1 | conversation_id int64 137 108k | cluster float64 18 18 | __index_level_0__ int64 274 217k |
|---|---|---|---|---|---|
Provide a correct Python 3 solution for this coding contest problem.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than ... | instruction | 0 | 102,804 | 18 | 205,608 |
"Correct Solution:
```
print(''.join(list(map(lambda i: i.upper(),input()))))
``` | output | 1 | 102,804 | 18 | 205,609 |
Provide a correct Python 3 solution for this coding contest problem.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than ... | instruction | 0 | 102,805 | 18 | 205,610 |
"Correct Solution:
```
from functools import reduce
from operator import add
print(reduce(add, map(str.capitalize, input()[:]), ''))
``` | output | 1 | 102,805 | 18 | 205,611 |
Provide a correct Python 3 solution for this coding contest problem.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than ... | instruction | 0 | 102,806 | 18 | 205,612 |
"Correct Solution:
```
import math
def run():
text = input().strip()
print(text.upper())
if __name__ == '__main__':
run()
``` | output | 1 | 102,806 | 18 | 205,613 |
Provide a correct Python 3 solution for this coding contest problem.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than ... | instruction | 0 | 102,807 | 18 | 205,614 |
"Correct Solution:
```
a=input()
a=str.upper(a)
print(a)
``` | output | 1 | 102,807 | 18 | 205,615 |
Provide a correct Python 3 solution for this coding contest problem.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than ... | instruction | 0 | 102,808 | 18 | 205,616 |
"Correct Solution:
```
l = str(input())
print(str.upper(l))
``` | output | 1 | 102,808 | 18 | 205,617 |
Provide a correct Python 3 solution for this coding contest problem.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than ... | instruction | 0 | 102,809 | 18 | 205,618 |
"Correct Solution:
```
a=str(input())
b=str.upper(a)
print(b)
``` | output | 1 | 102,809 | 18 | 205,619 |
Provide a correct Python 3 solution for this coding contest problem.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than ... | instruction | 0 | 102,810 | 18 | 205,620 |
"Correct Solution:
```
A=input()
print(A.upper())
``` | output | 1 | 102,810 | 18 | 205,621 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a ... | instruction | 0 | 102,811 | 18 | 205,622 |
Yes | output | 1 | 102,811 | 18 | 205,623 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a ... | instruction | 0 | 102,812 | 18 | 205,624 |
Yes | output | 1 | 102,812 | 18 | 205,625 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a ... | instruction | 0 | 102,813 | 18 | 205,626 |
Yes | output | 1 | 102,813 | 18 | 205,627 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a ... | instruction | 0 | 102,814 | 18 | 205,628 |
Yes | output | 1 | 102,814 | 18 | 205,629 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a ... | instruction | 0 | 102,815 | 18 | 205,630 |
No | output | 1 | 102,815 | 18 | 205,631 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a ... | instruction | 0 | 102,816 | 18 | 205,632 |
No | output | 1 | 102,816 | 18 | 205,633 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a ... | instruction | 0 | 102,817 | 18 | 205,634 |
No | output | 1 | 102,817 | 18 | 205,635 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
Input
A text including lower-case letters, periods, and space is given in a ... | instruction | 0 | 102,818 | 18 | 205,636 |
No | output | 1 | 102,818 | 18 | 205,637 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Constanze is the smartest girl in her village but she has bad eyesight.
One day, she was able to invent an incredible machine! When you pronounce letters, the machine will inscribe them onto a ... | instruction | 0 | 103,018 | 18 | 206,036 |
Yes | output | 1 | 103,018 | 18 | 206,037 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Constanze is the smartest girl in her village but she has bad eyesight.
One day, she was able to invent an incredible machine! When you pronounce letters, the machine will inscribe them onto a ... | instruction | 0 | 103,019 | 18 | 206,038 |
Yes | output | 1 | 103,019 | 18 | 206,039 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Constanze is the smartest girl in her village but she has bad eyesight.
One day, she was able to invent an incredible machine! When you pronounce letters, the machine will inscribe them onto a ... | instruction | 0 | 103,020 | 18 | 206,040 |
Yes | output | 1 | 103,020 | 18 | 206,041 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Constanze is the smartest girl in her village but she has bad eyesight.
One day, she was able to invent an incredible machine! When you pronounce letters, the machine will inscribe them onto a ... | instruction | 0 | 103,021 | 18 | 206,042 |
Yes | output | 1 | 103,021 | 18 | 206,043 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Constanze is the smartest girl in her village but she has bad eyesight.
One day, she was able to invent an incredible machine! When you pronounce letters, the machine will inscribe them onto a ... | instruction | 0 | 103,022 | 18 | 206,044 |
No | output | 1 | 103,022 | 18 | 206,045 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Constanze is the smartest girl in her village but she has bad eyesight.
One day, she was able to invent an incredible machine! When you pronounce letters, the machine will inscribe them onto a ... | instruction | 0 | 103,023 | 18 | 206,046 |
No | output | 1 | 103,023 | 18 | 206,047 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Constanze is the smartest girl in her village but she has bad eyesight.
One day, she was able to invent an incredible machine! When you pronounce letters, the machine will inscribe them onto a ... | instruction | 0 | 103,024 | 18 | 206,048 |
No | output | 1 | 103,024 | 18 | 206,049 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Constanze is the smartest girl in her village but she has bad eyesight.
One day, she was able to invent an incredible machine! When you pronounce letters, the machine will inscribe them onto a ... | instruction | 0 | 103,025 | 18 | 206,050 |
No | output | 1 | 103,025 | 18 | 206,051 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This problem is different with easy version only by constraints on total answers length
It is an interactive problem
Venya joined a tour to the madhouse, in which orderlies play with patients ... | instruction | 0 | 103,042 | 18 | 206,084 |
No | output | 1 | 103,042 | 18 | 206,085 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This problem is different with easy version only by constraints on total answers length
It is an interactive problem
Venya joined a tour to the madhouse, in which orderlies play with patients ... | instruction | 0 | 103,043 | 18 | 206,086 |
No | output | 1 | 103,043 | 18 | 206,087 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
This problem is different with easy version only by constraints on total answers length
It is an interactive problem
Venya joined a tour to the madhouse, in which orderlies play with patients ... | instruction | 0 | 103,044 | 18 | 206,088 |
No | output | 1 | 103,044 | 18 | 206,089 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word that satisfies the following conditions:
* That word is ... | instruction | 0 | 103,495 | 18 | 206,990 |
"Correct Solution:
```
n=int(input())
li=[input() for _ in range(n)]
if len(set(li))!=n:
print("No");exit()
else:
for i,j in zip(li,li[1:]):
if i[-1]!=j[0]:
print("No");exit()
print("Yes")
``` | output | 1 | 103,495 | 18 | 206,991 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word that satisfies the following conditions:
* That word is ... | instruction | 0 | 103,496 | 18 | 206,992 |
"Correct Solution:
```
print("No" if (lambda w:(sum([w.count(s)-1 for s in w])) or sum([1-(w[i][0] == w[i-1][-1]) for i in range(1,len(w))]))([input() for i in range(int(input()))]) else "Yes")
``` | output | 1 | 103,496 | 18 | 206,993 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word that satisfies the following conditions:
* That word is ... | instruction | 0 | 103,497 | 18 | 206,994 |
"Correct Solution:
```
L=[input()for x in' '*int(input())];print('YNeos'[any(i[-1]!=j[0]*(L.count(i))for i,j in zip(L,L[1:]))::2])
``` | output | 1 | 103,497 | 18 | 206,995 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word that satisfies the following conditions:
* That word is ... | instruction | 0 | 103,498 | 18 | 206,996 |
"Correct Solution:
```
n = int(input())
w = [input() for i in range(n)]
x = False
if n == len(set(w)):
if all(w[i-1][-1] == w[i][0] for i in range(1,n)):
x = True
print('Yes' if x else 'No')
``` | output | 1 | 103,498 | 18 | 206,997 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word that satisfies the following conditions:
* That word is ... | instruction | 0 | 103,499 | 18 | 206,998 |
"Correct Solution:
```
N = int(input())
w = [input()]
ans = 'Yes'
for i in range(N-1):
tmp = input()
if (tmp in w) or (w[-1][-1] != tmp[0]):
ans = 'No'
break
w.append(tmp)
print(ans)
``` | output | 1 | 103,499 | 18 | 206,999 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word that satisfies the following conditions:
* That word is ... | instruction | 0 | 103,500 | 18 | 207,000 |
"Correct Solution:
```
l=[input() for _ in range(int(input()))]
for i,w in enumerate(l):
if i:
if l[i][0]==l[i-1][-1] and w not in l[:i]:
continue
exit(print('No'))
print('Yes')
``` | output | 1 | 103,500 | 18 | 207,001 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word that satisfies the following conditions:
* That word is ... | instruction | 0 | 103,501 | 18 | 207,002 |
"Correct Solution:
```
#b
N=int(input())
W=[None]*N
for i in range(N):
W[i] = input()
if all( W[i][0]==W[i-1][-1] for i in range(1,N) ) and len(set(W))==N:
print("Yes")
else:
print("No")
``` | output | 1 | 103,501 | 18 | 207,003 |
Provide a correct Python 3 solution for this coding contest problem.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word that satisfies the following conditions:
* That word is ... | instruction | 0 | 103,502 | 18 | 207,004 |
"Correct Solution:
```
N = int(input())
W = [input()]
for i in range(1,N):
w = input()
if W[i-1][-1] != w[0] or w in W:
print('No')
break
else:
W.append(w)
if len(W)==N:
print('Yes')
``` | output | 1 | 103,502 | 18 | 207,005 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word ... | instruction | 0 | 103,503 | 18 | 207,006 |
Yes | output | 1 | 103,503 | 18 | 207,007 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word ... | instruction | 0 | 103,504 | 18 | 207,008 |
Yes | output | 1 | 103,504 | 18 | 207,009 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word ... | instruction | 0 | 103,505 | 18 | 207,010 |
Yes | output | 1 | 103,505 | 18 | 207,011 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word ... | instruction | 0 | 103,506 | 18 | 207,012 |
Yes | output | 1 | 103,506 | 18 | 207,013 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word ... | instruction | 0 | 103,507 | 18 | 207,014 |
No | output | 1 | 103,507 | 18 | 207,015 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word ... | instruction | 0 | 103,508 | 18 | 207,016 |
No | output | 1 | 103,508 | 18 | 207,017 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word ... | instruction | 0 | 103,509 | 18 | 207,018 |
No | output | 1 | 103,509 | 18 | 207,019 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Takahashi is practicing shiritori alone again today.
Shiritori is a game as follows:
* In the first turn, a player announces any one word.
* In the subsequent turns, a player announces a word ... | instruction | 0 | 103,510 | 18 | 207,020 |
No | output | 1 | 103,510 | 18 | 207,021 |
Provide a correct Python 3 solution for this coding contest problem.
Rng is going to a festival.
The name of the festival is given to you as a string S, which ends with `FESTIVAL`, from input. Answer the question: "Rng is going to a festival of what?" Output the answer.
Here, assume that the name of "a festival of s... | instruction | 0 | 103,527 | 18 | 207,054 |
"Correct Solution:
```
S = input()
print(S[:S.rfind("FESTIVAL")])
``` | output | 1 | 103,527 | 18 | 207,055 |
Provide a correct Python 3 solution for this coding contest problem.
Rng is going to a festival.
The name of the festival is given to you as a string S, which ends with `FESTIVAL`, from input. Answer the question: "Rng is going to a festival of what?" Output the answer.
Here, assume that the name of "a festival of s... | instruction | 0 | 103,528 | 18 | 207,056 |
"Correct Solution:
```
#CODE FESTIVAL 2017 qual B a
s=input()
n=len(s)-len("FESTIVAL")
ans=""
for i in range(n):
ans+=s[i]
print(ans)
``` | output | 1 | 103,528 | 18 | 207,057 |
Provide a correct Python 3 solution for this coding contest problem.
Rng is going to a festival.
The name of the festival is given to you as a string S, which ends with `FESTIVAL`, from input. Answer the question: "Rng is going to a festival of what?" Output the answer.
Here, assume that the name of "a festival of s... | instruction | 0 | 103,529 | 18 | 207,058 |
"Correct Solution:
```
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
sys.setrecursionlimit(10 ** 7)
s = input()
print(s[:len(s) - 8])
``` | output | 1 | 103,529 | 18 | 207,059 |
Provide a correct Python 3 solution for this coding contest problem.
Rng is going to a festival.
The name of the festival is given to you as a string S, which ends with `FESTIVAL`, from input. Answer the question: "Rng is going to a festival of what?" Output the answer.
Here, assume that the name of "a festival of s... | instruction | 0 | 103,530 | 18 | 207,060 |
"Correct Solution:
```
s=str(input())
print(s[:-8])
``` | output | 1 | 103,530 | 18 | 207,061 |
Provide a correct Python 3 solution for this coding contest problem.
Rng is going to a festival.
The name of the festival is given to you as a string S, which ends with `FESTIVAL`, from input. Answer the question: "Rng is going to a festival of what?" Output the answer.
Here, assume that the name of "a festival of s... | instruction | 0 | 103,531 | 18 | 207,062 |
"Correct Solution:
```
# CODE FESTIVAL 2017 予選 B: A – XXFESTIVAL
s = input()
print(s[:-8])
``` | output | 1 | 103,531 | 18 | 207,063 |
Provide a correct Python 3 solution for this coding contest problem.
Rng is going to a festival.
The name of the festival is given to you as a string S, which ends with `FESTIVAL`, from input. Answer the question: "Rng is going to a festival of what?" Output the answer.
Here, assume that the name of "a festival of s... | instruction | 0 | 103,532 | 18 | 207,064 |
"Correct Solution:
```
S = input()
if S[-8:] == "FESTIVAL":
print("{}".format(S[0:-8]))
``` | output | 1 | 103,532 | 18 | 207,065 |
Provide a correct Python 3 solution for this coding contest problem.
Rng is going to a festival.
The name of the festival is given to you as a string S, which ends with `FESTIVAL`, from input. Answer the question: "Rng is going to a festival of what?" Output the answer.
Here, assume that the name of "a festival of s... | instruction | 0 | 103,533 | 18 | 207,066 |
"Correct Solution:
```
def main():
s = input()
print(s[:-8])
if __name__ == "__main__":
main()
``` | output | 1 | 103,533 | 18 | 207,067 |
Provide a correct Python 3 solution for this coding contest problem.
Rng is going to a festival.
The name of the festival is given to you as a string S, which ends with `FESTIVAL`, from input. Answer the question: "Rng is going to a festival of what?" Output the answer.
Here, assume that the name of "a festival of s... | instruction | 0 | 103,534 | 18 | 207,068 |
"Correct Solution:
```
a = input().strip()
print(a[:-8])
``` | output | 1 | 103,534 | 18 | 207,069 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.