s_id
stringlengths 10
10
| p_id
stringlengths 6
6
| u_id
stringlengths 10
10
| date
stringlengths 10
10
| language
stringclasses 1
value | original_language
stringclasses 11
values | filename_ext
stringclasses 1
value | status
stringclasses 1
value | cpu_time
int64 0
100
| memory
stringlengths 4
6
| code_size
int64 15
14.7k
| code
stringlengths 15
14.7k
| problem_id
stringlengths 6
6
| problem_description
stringlengths 358
9.83k
| input
stringlengths 2
4.87k
| output
stringclasses 807
values | __index_level_0__
int64 1.1k
1.22M
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s629041747
|
p00006
|
u742178809
|
1511332835
|
Python
|
Python3
|
py
|
Accepted
| 30
|
7412
| 110
|
import sys
#from me.io import dup_file_stdin
#@dup_file_stdin
def solve():
print(input()[::-1])
solve()
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,202
|
s071190974
|
p00006
|
u548155360
|
1512381796
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5548
| 76
|
# coding=utf-8
sentence = input()
sentence = sentence[::-1]
print(sentence)
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,203
|
s570084810
|
p00006
|
u024715419
|
1513245768
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 26
|
s = input()
print(s[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,204
|
s803477164
|
p00006
|
u846136461
|
1513436037
|
Python
|
Python
|
py
|
Accepted
| 10
|
4628
| 97
|
# coding: utf-8
str = raw_input()
ans = ""
for i in range(len(str)):
ans += str[-i-1]
print ans
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,205
|
s593654044
|
p00006
|
u471400255
|
1513699138
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5540
| 20
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,206
|
s034269501
|
p00006
|
u546285759
|
1514004944
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 20
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,207
|
s881109757
|
p00006
|
u480287988
|
1514102972
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 20
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,208
|
s775691069
|
p00006
|
u764789069
|
1514218886
|
Python
|
Python
|
py
|
Accepted
| 10
|
4628
| 168
|
str = []
a = raw_input()
count = len(a)
str = list(a)
str_reverse = []
for i in range(0,count):
str_reverse.append(str[count - i -1])
print ''.join(str_reverse)
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,209
|
s074019112
|
p00006
|
u600263347
|
1514293270
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5556
| 103
|
def main():
str = input()
str = str[::-1]
print(str)
if __name__ == '__main__':
main()
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,210
|
s299355578
|
p00006
|
u183079216
|
1514344239
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5548
| 20
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,211
|
s236693193
|
p00006
|
u585035894
|
1514534735
|
Python
|
Python3
|
py
|
Accepted
| 30
|
5548
| 20
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,212
|
s486649731
|
p00006
|
u028347703
|
1514556530
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 20
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,213
|
s030439527
|
p00006
|
u298999032
|
1514589229
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 20
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,214
|
s335522629
|
p00006
|
u273843182
|
1514720092
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5540
| 20
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,215
|
s648281108
|
p00006
|
u009288816
|
1515148964
|
Python
|
Python
|
py
|
Accepted
| 10
|
4608
| 24
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,216
|
s692572490
|
p00006
|
u706217959
|
1515826077
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5552
| 117
|
def main():
l = []
str = input()
str = str[::-1]
print(str)
if __name__ == "__main__":
main()
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,217
|
s392653024
|
p00006
|
u043254318
|
1516201645
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5552
| 81
|
S = input()
N = len(S)
for i in range(N):
print(S[N-i-1], end="")
print("")
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,218
|
s000680654
|
p00006
|
u737311644
|
1516491424
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5536
| 50
|
a=list(str(input()))
a.reverse()
print(*a,sep="")
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,219
|
s807877743
|
p00006
|
u150984829
|
1516552519
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5548
| 21
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,220
|
s970331329
|
p00006
|
u803045841
|
1516565096
|
Python
|
Python3
|
py
|
Accepted
| 30
|
5544
| 21
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,221
|
s606879286
|
p00006
|
u650071126
|
1517301383
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5540
| 21
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,222
|
s780882299
|
p00006
|
u650071126
|
1517301515
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5548
| 21
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,223
|
s788065165
|
p00006
|
u536089081
|
1517566572
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5548
| 21
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,224
|
s331805746
|
p00006
|
u328199937
|
1519037883
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5540
| 33
|
stra = input()
print(stra[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,225
|
s027006399
|
p00006
|
u780025254
|
1519187550
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5548
| 21
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,226
|
s618532589
|
p00006
|
u553148578
|
1519819847
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 21
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,227
|
s841929341
|
p00006
|
u613534067
|
1520064429
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 40
|
import sys
a = input()
print(a[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,228
|
s971939235
|
p00006
|
u646461156
|
1521006840
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 30
|
s=input()
s=s[::-1]
print(s)
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,229
|
s561396492
|
p00006
|
u911420691
|
1523197270
|
Python
|
Python
|
py
|
Accepted
| 10
|
4612
| 52
|
l = list(raw_input())
l.reverse()
print ''.join(l)
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,230
|
s207782735
|
p00006
|
u619400176
|
1523378784
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5556
| 150
|
s = str(input())
s = list(s)
x = [0]*len(s)
for i in range(len(s)):
x[len(s)-i-1] = s[i]
for i in range(len(x)):
print(x[i],end='')
print('')
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,231
|
s512212099
|
p00006
|
u619400176
|
1523379022
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5560
| 118
|
string = input()
size = len(string)
st = []
for i in range(size):
st.append(string[size-i-1])
print(''.join(st))
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,232
|
s862204580
|
p00006
|
u352394527
|
1523611296
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5540
| 21
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,233
|
s639269057
|
p00006
|
u027874809
|
1523930503
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 22
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,234
|
s531002430
|
p00006
|
u499522466
|
1524389987
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5540
| 29
|
s = input()
print(s[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,235
|
s671627601
|
p00006
|
u306037418
|
1524734548
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5540
| 27
|
s = input()
print(s[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,236
|
s816239477
|
p00006
|
u306037418
|
1524739016
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 27
|
s = input()
print(s[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,237
|
s432904746
|
p00006
|
u533681846
|
1525026167
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5536
| 50
|
a=list(input())
a.reverse()
a=''.join(a)
print(a)
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,238
|
s985285817
|
p00006
|
u223900719
|
1525533719
|
Python
|
Python
|
py
|
Accepted
| 10
|
4616
| 28
|
s=raw_input()
print s[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,239
|
s496391836
|
p00006
|
u724548524
|
1525731565
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 36
|
print("".join(list(input())[::-1]))
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,240
|
s040904351
|
p00006
|
u724548524
|
1525731633
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 21
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,241
|
s038858285
|
p00006
|
u945249026
|
1525773004
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5540
| 27
|
s = input()
print(s[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,242
|
s866439715
|
p00006
|
u940977872
|
1526415607
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 32
|
str = input()
print(str[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,243
|
s326930094
|
p00006
|
u136916346
|
1527350116
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5548
| 22
|
print(input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,244
|
s294080269
|
p00006
|
u458530128
|
1528364760
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5548
| 36
|
s = input()
rs = s[::-1]
print(rs)
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,245
|
s288933385
|
p00006
|
u328733599
|
1528445308
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5552
| 87
|
txt = input("")
for i in range(0,len(txt)):
print(txt[(len(txt)-i-1)],end="")
print()
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,246
|
s574580381
|
p00006
|
u847467233
|
1528447631
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5540
| 81
|
# AOJ 0006 Reverse Sequence
# Python3 2018.6.7 bal4u
s = input()
print(s[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,247
|
s041705218
|
p00006
|
u932203900
|
1529885846
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5544
| 23
|
print( input()[::-1] )
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,248
|
s148652791
|
p00006
|
u995990363
|
1530684337
|
Python
|
Python3
|
py
|
Accepted
| 20
|
5556
| 105
|
def run():
s = input()
print(''.join(list(reversed(s))))
if __name__ == '__main__':
run()
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,249
|
s797949520
|
p00006
|
u108432367
|
1344321433
|
Python
|
Python
|
py
|
Accepted
| 20
|
4192
| 29
|
s = raw_input()
print s[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,250
|
s063564578
|
p00006
|
u517745281
|
1344321514
|
Python
|
Python
|
py
|
Accepted
| 20
|
4184
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,251
|
s438843356
|
p00006
|
u517745281
|
1344573708
|
Python
|
Python
|
py
|
Accepted
| 10
|
4188
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,252
|
s897634547
|
p00006
|
u894941280
|
1344838861
|
Python
|
Python
|
py
|
Accepted
| 10
|
4196
| 49
|
str1 = raw_input()
print "".join(reversed(str1))
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,253
|
s774406442
|
p00006
|
u891318575
|
1346476758
|
Python
|
Python
|
py
|
Accepted
| 10
|
4196
| 53
|
# -*- coding: utf-8 -*-
print(str(raw_input())[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,254
|
s650160345
|
p00006
|
u724947062
|
1346482235
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 82
|
import sys
for i in sys.stdin.readlines():
print "".join(reversed(i.strip()))
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,255
|
s249204621
|
p00006
|
u881567576
|
1349857077
|
Python
|
Python
|
py
|
Accepted
| 10
|
4196
| 29
|
x = raw_input()
print x[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,256
|
s590971954
|
p00006
|
u126791750
|
1350218980
|
Python
|
Python
|
py
|
Accepted
| 10
|
4196
| 42
|
#coding:UTF-8
s=raw_input()
print s[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,257
|
s255221143
|
p00006
|
u647766105
|
1350911038
|
Python
|
Python
|
py
|
Accepted
| 10
|
5948
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,258
|
s454095801
|
p00006
|
u719737030
|
1350913495
|
Python
|
Python
|
py
|
Accepted
| 10
|
5948
| 48
|
l=list(raw_input())
l.reverse()
print "".join(l)
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,259
|
s746973076
|
p00006
|
u779627195
|
1352374497
|
Python
|
Python
|
py
|
Accepted
| 10
|
4200
| 117
|
#coding: utf-8
while 1:
try:
s = raw_input()
print s[::-1]
except EOFError:
break
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,260
|
s227944638
|
p00006
|
u504990413
|
1353140022
|
Python
|
Python
|
py
|
Accepted
| 10
|
4200
| 110
|
array = map(str, raw_input())
sum = ''
for i in range(len(array)):
sum = sum + array[-(1+i)]
print sum
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,261
|
s184452160
|
p00006
|
u263247628
|
1354516472
|
Python
|
Python
|
py
|
Accepted
| 10
|
5088
| 35
|
str = (raw_input())
print str[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,262
|
s955931016
|
p00006
|
u419407022
|
1355296917
|
Python
|
Python
|
py
|
Accepted
| 10
|
4996
| 42
|
print ''.join(list(reversed(raw_input())))
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,263
|
s981497324
|
p00006
|
u665962315
|
1357422315
|
Python
|
Python
|
py
|
Accepted
| 20
|
4192
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,264
|
s293056750
|
p00006
|
u310759044
|
1358644778
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,265
|
s950659276
|
p00006
|
u109084363
|
1359102769
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,266
|
s410770714
|
p00006
|
u378761086
|
1360425654
|
Python
|
Python
|
py
|
Accepted
| 10
|
4188
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,267
|
s280037647
|
p00006
|
u782850731
|
1361803012
|
Python
|
Python
|
py
|
Accepted
| 20
|
4224
| 119
|
from __future__ import absolute_import, print_function, unicode_literals
print(''.join(reversed(raw_input().strip())))
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,268
|
s049260222
|
p00006
|
u575065019
|
1361803828
|
Python
|
Python
|
py
|
Accepted
| 10
|
4200
| 42
|
print ''.join(reversed(list(raw_input())))
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,269
|
s201597977
|
p00006
|
u575065019
|
1361803885
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,270
|
s661419201
|
p00006
|
u743065194
|
1363004904
|
Python
|
Python
|
py
|
Accepted
| 20
|
4192
| 56
|
import sys
s=sys.stdin.readline().rstrip()
print s[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,271
|
s669177428
|
p00006
|
u282635979
|
1363407195
|
Python
|
Python
|
py
|
Accepted
| 10
|
4200
| 137
|
str = raw_input()
strlist = []
for x in str:
strlist.append(x)
strlist.reverse()
revstr = ''
for x in strlist:
revstr += x
print revstr
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,272
|
s765418708
|
p00006
|
u585414111
|
1365345599
|
Python
|
Python
|
py
|
Accepted
| 20
|
4196
| 55
|
print "".join([x for x in reversed(list(raw_input()))])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,273
|
s229469607
|
p00006
|
u455516672
|
1365669973
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 25
|
print raw_input()[-1::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,274
|
s558613661
|
p00006
|
u318424563
|
1366620254
|
Python
|
Python
|
py
|
Accepted
| 10
|
4208
| 119
|
text = raw_input()
n = len(text)
rev = []
for i in range(n):
rev.append(text[(n-1)-i])
ans = ''.join(rev)
print ans
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,275
|
s436350495
|
p00006
|
u915761101
|
1367402082
|
Python
|
Python
|
py
|
Accepted
| 10
|
4196
| 27
|
s=raw_input()
print s[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,276
|
s675841697
|
p00006
|
u350508326
|
1367944382
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 35
|
a = raw_input()
a = a[::-1]
print a
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,277
|
s715557717
|
p00006
|
u542421762
|
1368111782
|
Python
|
Python
|
py
|
Accepted
| 10
|
4200
| 177
|
import sys
def str_reverse(str):
r = []
for c in str:
r.insert(0, c)
return "".join(r)
str = sys.stdin.readline().rstrip("\r\n")
print str_reverse(str)
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,278
|
s232638869
|
p00006
|
u093607836
|
1369119541
|
Python
|
Python
|
py
|
Accepted
| 10
|
4204
| 87
|
s = raw_input()
l = list()
for i in xrange(len(s)):
l.insert(0, s[i])
print "".join(l)
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,279
|
s270935313
|
p00006
|
u093607836
|
1369120036
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 32
|
print "".join(raw_input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,280
|
s652983847
|
p00006
|
u126791750
|
1369132257
|
Python
|
Python
|
py
|
Accepted
| 10
|
4196
| 24
|
print(raw_input()[::-1])
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,281
|
s908840660
|
p00006
|
u843960735
|
1374702577
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,282
|
s846675880
|
p00006
|
u536245846
|
1374762591
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,283
|
s414984876
|
p00006
|
u085789778
|
1374905458
|
Python
|
Python
|
py
|
Accepted
| 10
|
4204
| 172
|
import sys
rawinput = raw_input();
strlist = []
for temp in rawinput:
strlist.append(temp)
strlist.reverse()
for temp in strlist:
sys.stdout.write(temp)
print
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,284
|
s579948705
|
p00006
|
u912573907
|
1375169095
|
Python
|
Python
|
py
|
Accepted
| 10
|
4296
| 75
|
line = raw_input().strip()
print reduce(lambda a, b: a + b, reversed(line))
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,285
|
s800492283
|
p00006
|
u455025374
|
1376080559
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 25
|
print raw_input()[-1::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,286
|
s883005152
|
p00006
|
u912237403
|
1376733318
|
Python
|
Python
|
py
|
Accepted
| 10
|
4192
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,287
|
s596720278
|
p00006
|
u866760195
|
1378209864
|
Python
|
Python
|
py
|
Accepted
| 20
|
4192
| 40
|
a = str(raw_input())
a = a[::-1]
print a
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,288
|
s098203836
|
p00006
|
u813384600
|
1379307990
|
Python
|
Python
|
py
|
Accepted
| 20
|
4192
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,289
|
s422288815
|
p00006
|
u389390219
|
1380935023
|
Python
|
Python
|
py
|
Accepted
| 20
|
4192
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,290
|
s582370199
|
p00006
|
u492005863
|
1381235573
|
Python
|
Python
|
py
|
Accepted
| 20
|
4192
| 110
|
# Reverse Sequence
import sys
string = ""
for line in sys.stdin:
string = line
print string.strip()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,291
|
s313487158
|
p00006
|
u351182591
|
1381728893
|
Python
|
Python
|
py
|
Accepted
| 10
|
4180
| 29
|
a = raw_input()
print a[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,292
|
s688854460
|
p00006
|
u511257811
|
1381943882
|
Python
|
Python
|
py
|
Accepted
| 10
|
4184
| 112
|
import sys
for line in sys.stdin:
l = [ c for c in line.rstrip('\n') ]
l.reverse()
print ''.join(l)
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,293
|
s100002807
|
p00006
|
u245286435
|
1384406525
|
Python
|
Python
|
py
|
Accepted
| 10
|
4180
| 90
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
import sys
line = raw_input()
print line[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,294
|
s375655625
|
p00006
|
u146816547
|
1386688269
|
Python
|
Python
|
py
|
Accepted
| 10
|
4184
| 33
|
str = raw_input()
print str[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,295
|
s762507887
|
p00006
|
u747479790
|
1386764706
|
Python
|
Python
|
py
|
Accepted
| 20
|
4176
| 25
|
print raw_input()[: : -1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,296
|
s605994943
|
p00006
|
u256688954
|
1391698641
|
Python
|
Python
|
py
|
Accepted
| 20
|
4188
| 90
|
str=raw_input()
str2=""
for i in range(len(str)-1,-1,-1):
str2+=str[i]
print str2
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,297
|
s922539988
|
p00006
|
u230836528
|
1392097020
|
Python
|
Python
|
py
|
Accepted
| 10
|
4180
| 162
|
# -*- coding: utf-8 -*-
import sys
for line in sys.stdin.readlines():
#List = map(int, line.strip().split())
seq = line.strip()
print seq[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,298
|
s348225414
|
p00006
|
u124909914
|
1392270148
|
Python
|
Python
|
py
|
Accepted
| 10
|
4180
| 33
|
str = raw_input()
print str[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,299
|
s654563753
|
p00006
|
u633068244
|
1393351271
|
Python
|
Python
|
py
|
Accepted
| 10
|
4184
| 29
|
s = raw_input()
print s[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,300
|
s259903687
|
p00006
|
u633068244
|
1393351293
|
Python
|
Python
|
py
|
Accepted
| 10
|
4176
| 23
|
print raw_input()[::-1]
|
p00006
|
<H1>Reverse Sequence</H1>
<p>
Write a program which reverses a given string <var>str</var>.
</p>
<H2>Input</H2>
<p>
<var>str</var> (the size of <var>str</var> ≤ 20) is given in a line.
</p>
<H2>Output</H2>
<p>
Print the reversed <var>str</var> in a line.
</p>
<H2>Sample Input</H2>
<pre>
w32nimda
</pre>
<H2>Output for the Sample Input</H2>
<pre>
admin23w
</pre>
|
w32nimda
|
admin23w
| 4,301
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.