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
s807355062
p00006
u703446356
1410973072
Python
Python
py
Accepted
20
4180
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> &le; 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,002
s894111339
p00006
u855866586
1412155756
Python
Python
py
Accepted
10
4188
80
while True: try: print(raw_input()[::-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> &le; 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,003
s075089214
p00006
u858885710
1415181628
Python
Python
py
Accepted
20
4180
31
print raw_input().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> &le; 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,004
s775628595
p00006
u858885710
1415181793
Python
Python
py
Accepted
10
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> &le; 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,005
s746093447
p00006
u858885710
1415778926
Python
Python3
py
Accepted
30
6720
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> &le; 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,006
s336219411
p00006
u858885710
1415778957
Python
Python3
py
Accepted
30
6724
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> &le; 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,007
s865432105
p00006
u607831289
1416064140
Python
Python
py
Accepted
10
4184
54
line = raw_input() print ''.join(reversed(list(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> &le; 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,008
s299282632
p00006
u506132575
1416104248
Python
Python
py
Accepted
10
4184
76
#!/usr/bin/env python # -*- 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> &le; 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,009
s845350251
p00006
u379499530
1418662773
Python
Python
py
Accepted
20
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> &le; 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,010
s681921233
p00006
u672822075
1418974985
Python
Python3
py
Accepted
30
6724
54
a=list(map(str,input())) a.reverse() print("".join(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> &le; 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,011
s835008127
p00006
u846356981
1419490157
Python
Python3
py
Accepted
30
6724
37
string = input() print(string[::-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> &le; 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,012
s285768413
p00006
u342537066
1420701226
Python
Python3
py
Accepted
30
6720
35
string=input() print(string[::-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> &le; 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,013
s069994009
p00006
u336443042
1421713241
Python
Python
py
Accepted
10
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> &le; 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,014
s875144512
p00006
u567380442
1422532527
Python
Python3
py
Accepted
30
6720
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> &le; 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,015
s382340489
p00006
u422939201
1422533008
Python
Python
py
Accepted
20
4188
85
# -*- coding: utf-8 -*- import sys s = list(raw_input()) s.reverse() print ''.join(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> &le; 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,016
s773389954
p00006
u442472098
1423229465
Python
Python3
py
Accepted
30
6724
62
#!/usr/bin/env python3 print(''.join(list(reversed(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> &le; 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,017
s548291252
p00006
u879226672
1423269172
Python
Python
py
Accepted
10
4184
34
s = str(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> &le; 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,018
s921463045
p00006
u744114948
1423638061
Python
Python3
py
Accepted
30
6724
45
#! /usr/bin/python3 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> &le; 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,019
s017801790
p00006
u349293999
1423846544
Python
Python
py
Accepted
10
4188
39
string = raw_input() print string[::-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> &le; 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,020
s107102225
p00006
u392445270
1424441045
Python
Python
py
Accepted
20
4188
37
input = raw_input() 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> &le; 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,021
s458869032
p00006
u839573768
1425086256
Python
Python
py
Accepted
10
4188
66
n = raw_input() #print n x = list(n) x.reverse() print "".join(x)
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> &le; 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,022
s568595877
p00006
u858885710
1425285610
Python
Python3
py
Accepted
30
6720
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> &le; 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,023
s629643884
p00006
u540744789
1425629138
Python
Python
py
Accepted
20
4192
81
s=raw_input() rev = "" for x in xrange(len(s),0,-1): rev=rev+s[x-1] print rev
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> &le; 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,024
s226186162
p00006
u040533857
1425977212
Python
Python3
py
Accepted
30
6724
87
spam = input() spam = [i for i in spam] spam.reverse() spam = ''.join(spam) print(spam)
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> &le; 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,025
s663352380
p00006
u040533857
1425977393
Python
Python3
py
Accepted
30
6720
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> &le; 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,026
s643844921
p00006
u396642573
1429398635
Python
Python
py
Accepted
10
4184
87
while True: try: print raw_input()[::-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> &le; 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,027
s608794762
p00006
u886766186
1430316221
Python
Python
py
Accepted
20
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> &le; 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,028
s823323099
p00006
u009961299
1431011706
Python
Python3
py
Accepted
30
6720
50
# -*- coding: utf-8 -*- 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> &le; 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,029
s778180633
p00006
u308369184
1431591339
Python
Python3
py
Accepted
30
6720
24
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> &le; 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,030
s493435186
p00006
u520870854
1431705862
Python
Python
py
Accepted
10
4184
36
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> &le; 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,031
s689830194
p00006
u067299340
1432698267
Python
Python
py
Accepted
10
4180
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> &le; 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,032
s317069311
p00006
u940190657
1433656191
Python
Python3
py
Accepted
30
6720
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> &le; 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,033
s062770033
p00006
u873482706
1434203305
Python
Python
py
Accepted
20
4184
79
str = raw_input() str_lis = list(str) str_lis.reverse() print(''.join(str_lis))
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> &le; 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,034
s122537717
p00006
u492083164
1434902799
Python
Python3
py
Accepted
30
6724
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> &le; 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,035
s939417911
p00006
u749493116
1436363162
Python
Python
py
Accepted
10
4176
75
#!/usr/bin/env python # -*- 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> &le; 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,036
s773489401
p00006
u472944603
1437571776
Python
Python
py
Accepted
10
4184
30
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> &le; 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,037
s731943354
p00006
u722431421
1439453720
Python
Python
py
Accepted
10
4176
114
# coding: utf-8 #Problem Name: Reverse Sequence #ID: tabris #Mail: t123037@kaiyodai.ac.jp 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> &le; 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,038
s914070854
p00006
u777299405
1443091298
Python
Python3
py
Accepted
20
7412
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> &le; 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,039
s883541612
p00006
u873482706
1443862852
Python
Python
py
Accepted
10
6400
154
line = raw_input() lis = ['' for i in range(len(line))] for i in range(len(line)-1, -1, -1): lis[len(line)-1-i] = line[i] else: print ''.join(lis)
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> &le; 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,040
s268451894
p00006
u948218832
1444558649
Python
Python
py
Accepted
10
6204
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> &le; 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,041
s813130997
p00006
u071010747
1445178509
Python
Python3
py
Accepted
20
7296
26
IN=input() print(IN[::-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> &le; 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,042
s333284015
p00006
u802625365
1446250891
Python
Python
py
Accepted
10
6352
146
import sys s = (str)(raw_input()) a = [] for i in range(0,len(s)): a.append(s[i]); a.reverse() for i in a: sys.stdout.write(i) 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> &le; 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,043
s147383259
p00006
u775586391
1447952631
Python
Python3
py
Accepted
30
7420
72
S = input() a = '' for i in range(len(S)): a += S[len(S)-i-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> &le; 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,044
s148717646
p00006
u079870052
1448201793
Python
Python3
py
Accepted
30
7340
56
ss=str(input()) t=list(ss) t.reverse() print("".join(t))
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> &le; 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,045
s226554200
p00006
u461370825
1449735031
Python
Python
py
Accepted
10
6272
77
while True: try: a = raw_input() print a[::-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> &le; 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,046
s126139349
p00006
u747479790
1449854595
Python
Python3
py
Accepted
30
7336
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> &le; 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,047
s860227062
p00006
u825618558
1450188079
Python
Python3
py
Accepted
20
7308
131
import sys line = sys.stdin.readline() inp = line[0:-1] str_list = list(inp) str_list.reverse() ret = "".join(str_list) print (ret)
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> &le; 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,048
s142608424
p00006
u609881501
1450272959
Python
Python3
py
Accepted
20
7348
59
import sys str = sys.stdin.readline()[:-1] 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> &le; 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,049
s109064912
p00006
u560214129
1450417277
Python
Python3
py
Accepted
20
7476
144
def rev(str): revstr='' for i in range(len(str)-1,-1,-1): revstr=revstr + str[i] return revstr str=input("") print(rev(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> &le; 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,050
s199868300
p00006
u512342660
1451575934
Python
Python
py
Accepted
10
6348
37
instr = raw_input() print instr[::-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> &le; 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,051
s441809543
p00006
u529386725
1452182339
Python
Python
py
Accepted
10
6212
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> &le; 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,052
s275054611
p00006
u580607517
1452733235
Python
Python
py
Accepted
10
6268
34
s = str(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> &le; 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,053
s548199316
p00006
u386731818
1455005474
Python
Python3
py
Accepted
30
7324
61
# coding: utf-8 # Here your code ! 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> &le; 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,054
s591020286
p00006
u650459696
1455020472
Python
Python3
py
Accepted
20
7400
32
instr=input() print(instr[::-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> &le; 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,055
s036830342
p00006
u975539923
1456565825
Python
Python
py
Accepted
10
6232
56
s = raw_input() d = list(s) d.reverse() print "".join(d)
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> &le; 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,056
s046911055
p00006
u376883550
1456705119
Python
Python3
py
Accepted
20
7328
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> &le; 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,057
s274452174
p00006
u000228958
1456831626
Python
Python
py
Accepted
10
6316
114
string = raw_input() tmp = "" for i in xrange(len(string)): tmp += string[len(string) - i - 1] print tmp
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> &le; 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,058
s168557828
p00006
u766477342
1457178038
Python
Python3
py
Accepted
20
7400
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> &le; 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,059
s209343751
p00006
u867824281
1457785558
Python
Python3
py
Accepted
30
7308
45
a = input() a_str = str(a) print(a_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> &le; 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,060
s284648439
p00006
u075836834
1457996263
Python
Python3
py
Accepted
40
7356
36
string = input() print(string[::-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> &le; 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,061
s660172522
p00006
u148101999
1458269359
Python
Python
py
Accepted
10
6424
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> &le; 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,062
s028324166
p00006
u915343634
1458319329
Python
Python3
py
Accepted
20
7340
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> &le; 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,063
s479328064
p00006
u994049982
1458670109
Python
Python
py
Accepted
10
6268
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> &le; 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,064
s239456692
p00006
u811773570
1459343153
Python
Python
py
Accepted
10
6224
49
#coding:utf-8 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> &le; 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,065
s935094007
p00006
u130979865
1459855793
Python
Python
py
Accepted
10
6264
59
# -*- coding: utf-8 -*- s = str(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> &le; 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,066
s473839972
p00006
u572790226
1460085210
Python
Python3
py
Accepted
20
7408
33
print("".join([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> &le; 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,067
s266991487
p00006
u454259029
1461139627
Python
Python3
py
Accepted
30
7476
26
x = 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> &le; 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,068
s468025504
p00006
u811773570
1461489228
Python
Python3
py
Accepted
20
7256
66
#Reverse Sequence 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> &le; 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,069
s481210342
p00006
u894114233
1461761576
Python
Python
py
Accepted
10
6592
99
from collections import deque s=deque() for i in raw_input(): s.appendleft(i) print(''.join(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> &le; 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,070
s646542313
p00006
u018967850
1462457152
Python
Python
py
Accepted
10
6260
60
List = list(raw_input()) List.reverse() print "".join(List)
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> &le; 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,071
s416273933
p00006
u412890344
1464270700
Python
Python3
py
Accepted
20
7364
167
string = list(input()) rev_str = [0 for i in range(len(string))] for i in range(len(string)): rev_str[i] = string[len(string) - i - 1] print("".join(rev_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> &le; 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,072
s628148686
p00006
u403901064
1464621140
Python
Python3
py
Accepted
20
7320
96
#!/usr/bin/env python3 # -*- coding: utf-8 -*- if __name__ == '__main__': 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> &le; 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,073
s558010299
p00006
u957021485
1465562921
Python
Python3
py
Accepted
30
7324
39
print("".join(list(reversed(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> &le; 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,074
s783651390
p00006
u765849500
1466178949
Python
Python
py
Accepted
10
6404
52
str = raw_input() if len(str) <= 20: 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> &le; 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,075
s938461517
p00006
u203261375
1466255572
Python
Python3
py
Accepted
30
7452
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> &le; 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,076
s378111561
p00006
u617990214
1467205543
Python
Python3
py
Accepted
30
7412
24
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> &le; 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,077
s569074022
p00006
u617990214
1467205554
Python
Python3
py
Accepted
30
7412
24
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> &le; 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,078
s859096420
p00006
u748033250
1468056138
Python
Python3
py
Accepted
20
7288
46
# coding: utf-8 inp = input() print(inp[::-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> &le; 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,079
s783362420
p00006
u811773570
1468452718
Python
Python3
py
Accepted
20
7388
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> &le; 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,080
s868101991
p00006
u896025703
1469451965
Python
Python3
py
Accepted
30
7392
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> &le; 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,081
s598730503
p00006
u436587708
1469452018
Python
Python
py
Accepted
10
6332
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> &le; 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,082
s195176538
p00006
u626838615
1469794314
Python
Python3
py
Accepted
20
7344
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> &le; 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,083
s422576013
p00006
u582608581
1470285715
Python
Python3
py
Accepted
20
7324
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> &le; 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,084
s806669434
p00006
u358919705
1471814784
Python
Python3
py
Accepted
30
7328
39
print(''.join(reversed(list(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> &le; 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,085
s603526048
p00006
u589886885
1471936045
Python
Python3
py
Accepted
20
7352
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> &le; 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,086
s223899236
p00006
u797673668
1472658035
Python
Python3
py
Accepted
20
7244
33
print(''.join(reversed(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> &le; 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,087
s953598578
p00006
u350804311
1473227400
Python
Python3
py
Accepted
20
7324
32
a = input() b = a[::-1] print(b)
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> &le; 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,088
s298346330
p00006
u058433718
1474111084
Python
Python3
py
Accepted
20
7404
123
import sys def main(): s = sys.stdin.readline().strip() print(s[::-1]) 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> &le; 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,089
s342818565
p00006
u058433718
1474111375
Python
Python3
py
Accepted
20
7568
283
import sys def get_revstr(s): s_len = len(s) if s_len == 1: return s else: return s[-1] + get_revstr(s[:-1]) def main(): s = sys.stdin.readline().strip() rev_s = get_revstr(s) print(rev_s) 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> &le; 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,090
s559236721
p00006
u393305246
1474208707
Python
Python
py
Accepted
10
6396
68
s=raw_input() a=list(s) a.reverse() b="" for i in a: b+=i print b
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> &le; 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,091
s992543089
p00006
u927516039
1474211501
Python
Python3
py
Accepted
40
7404
82
str=input() for i in range(len(str)): print(str[len(str)-1-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> &le; 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,092
s500295023
p00006
u505912349
1476437615
Python
Python3
py
Accepted
30
7328
80
import sys for line in sys.stdin: line = line.strip() 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> &le; 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,093
s536754723
p00006
u813534019
1477220217
Python
Python
py
Accepted
10
6412
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> &le; 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,094
s468242042
p00006
u776559258
1477535267
Python
Python3
py
Accepted
20
7344
28
res=input() print(res[::-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> &le; 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,095
s623792009
p00006
u659302741
1477734541
Python
Python3
py
Accepted
60
7340
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> &le; 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,096
s246258760
p00006
u500396695
1477876606
Python
Python3
py
Accepted
20
7324
32
line = 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> &le; 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,097
s200417195
p00006
u149199817
1477974570
Python
Python3
py
Accepted
20
7396
122
# -*- coding: utf-8 -*- import sys def main(): s = input() print(s[::-1]) 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> &le; 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,098
s601842273
p00006
u220324665
1478071653
Python
Python3
py
Accepted
20
7424
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> &le; 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,099
s423681484
p00006
u886845205
1478198247
Python
Python3
py
Accepted
10
7416
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> &le; 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,100
s611935919
p00006
u166871988
1478524165
Python
Python3
py
Accepted
20
7392
45
st=list(input()) print("".join(reversed(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> &le; 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,101