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 stringlengths 1 5 | memory stringlengths 1 7 | code_size stringlengths 1 6 | code stringlengths 1 539k |
|---|---|---|---|---|---|---|---|---|---|---|---|
s573811572 | p02388 | u043639882 | 1499672030 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s228829149 | p02388 | u043639882 | 1499672129 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 |
s874310245 | p02388 | u043639882 | 1499692260 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) |
s239141185 | p02388 | u043639882 | 1499692337 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x=input()
print(x**3) |
s210026726 | p02388 | u043639882 | 1499692552 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | x = input()
print x**3 |
s182152210 | p02388 | u043639882 | 1499692586 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print x*x*x |
s957420196 | p02388 | u043639882 | 1499692619 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print x*x*x |
s990568805 | p02388 | u043639882 | 1499692724 | Python | Python3 | py | Runtime Error | 0 | 0 | 16 | print input()**3 |
s210860070 | p02388 | u043639882 | 1499692746 | Python | Python3 | py | Runtime Error | 0 | 0 | 16 | print input()**3 |
s901364047 | p02388 | u043639882 | 1499692919 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print input()**3 |
s772822656 | p02388 | u043639882 | 1499692999 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x = int(input())
print x**3 |
s774234010 | p02388 | u311299757 | 1499693007 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print(x*x*x) |
s308747698 | p02388 | u311299757 | 1499693050 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | a = x*x*x
print(a) |
s800680541 | p02388 | u311299757 | 1499693096 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | a = x * x * x
print({}.format(a)) |
s749872606 | p02388 | u043639882 | 1499693145 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x=int(input())
print x**3 |
s994513610 | p02388 | u311299757 | 1499693193 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x*x*x) |
s195907129 | p02388 | u043639882 | 1499693226 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) |
s040549712 | p02388 | u311299757 | 1499693257 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | x = input
print(x*x*x) |
s366200884 | p02388 | u311299757 | 1499693307 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x*x*x) |
s934068491 | p02388 | u311299757 | 1499693698 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | a,b=input.split() |
s310717201 | p02388 | u311299757 | 1499693765 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | Arr=input.split()
print(Arr[0]*Arr[1])
print(2*Arr[0]+2*Arr[1]) |
s983891356 | p02388 | u311299757 | 1499694096 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | Arr=[]
Arr=input.split()
print(Arr[0]*Arr[1])
print(2*Arr[0]+2*Arr[1]) |
s489930139 | p02388 | u311299757 | 1499694545 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | [a,b]=input.split()
a = int(a)
b = int(b)
print("{} {}".format(a*b, 2*a+2*b)) |
s612456550 | p02388 | u043639882 | 1499742898 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x=input()
print(x**3) |
s594134172 | p02388 | u848091001 | 1499751227 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | y = x**3
print(y) |
s549898132 | p02388 | u848091001 | 1499751335 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s669804070 | p02388 | u848091001 | 1499751470 | Python | Python3 | py | Runtime Error | 0 | 0 | 19 | input x
print(x**3) |
s341954868 | p02388 | u498511622 | 1500081750 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | x = input()
y = x**3
print int(y) |
s322040224 | p02388 | u853619096 | 1500293996 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | y = input()
x = y**3
print(x) |
s669888805 | p02388 | u003647700 | 1500657520 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | n = input()
print (n**3) |
s978775690 | p02388 | u003647700 | 1500657615 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | n = raw_input()
print (int(n) ** 3) |
s171334226 | p02388 | u138422838 | 1500805911 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) |
s611392625 | p02388 | u138422838 | 1500805927 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) |
s532120378 | p02388 | u138422838 | 1500806000 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) |
s370521374 | p02388 | u138422838 | 1500806052 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = input()
y = x**3
print(y) |
s394808119 | p02388 | u791170614 | 1501141921 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | n = int(input())
s = int(input())
def fact(s):
if s == 0 : return 1
return n * fact(s - 1)
print(fact(s)) |
s199183568 | p02388 | u363496707 | 1501400362 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = raw_input()
print x ** 3 |
s636413842 | p02388 | u957028788 | 1501909180 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = raw_input()
print x ** 2 |
s450812187 | p02388 | u957028788 | 1501909243 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = raw_input()
print x ** 3 |
s876842573 | p02388 | u957028788 | 1501909296 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = raw_input()
print x ** 3 |
s227313982 | p02388 | u957028788 | 1501909481 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = raw_input()
print x ** 3 |
s954738250 | p02388 | u103382858 | 1502022861 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | h1=input()
print(h1*h1*h1) |
s529858432 | p02388 | u103382858 | 1502022879 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | h1=input()
h = h1*h1*h1
print(h) |
s738133660 | p02388 | u103382858 | 1502023049 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | h1=input()
print(h1*h1*h1) |
s083610072 | p02388 | u103382858 | 1502023187 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | h1=input()
h = h1**3
print(h) |
s037534255 | p02388 | u103382858 | 1502023202 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | x = input()
y = x**3
print int(y) |
s846233689 | p02388 | u103382858 | 1502023219 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | #coding:UTF-8
x = input()
y = x**3
print int(y) |
s806999500 | p02388 | u103382858 | 1502023305 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | x = int(input("x????????????"))
print(str(x)+"????????????"+str(x*x*x))
print(eval(input())**3) |
s744742310 | p02388 | u103382858 | 1502023314 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | x = int()
print(str(x)+"????????????"+str(x*x*x))
print(eval(input())**3) |
s938838796 | p02388 | u103382858 | 1502023365 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | x = int(input())
print(str(x)+"????????????"+str(x*x*x))
print(eval(input())**3) |
s191386121 | p02388 | u142321256 | 1502345956 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) |
s041239200 | p02388 | u744121389 | 1502349833 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | number = input(x=:)
x = int(number)
print(x***) |
s937871508 | p02388 | u369093003 | 1502359408 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x = int(input)
print(x**3) |
s386584300 | p02388 | u369093003 | 1502359500 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x = int(input)
print(x**3) |
s269122599 | p02388 | u369093003 | 1502359552 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x = int(input)
print(x**3) |
s740519023 | p02388 | u733159526 | 1502715965 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) |
s935526766 | p02388 | u316697096 | 1503129809 | Python | Python | py | Runtime Error | 0 | 0 | 33 | x=raw_input("> ")
x=x*x*x
print x |
s117363356 | p02388 | u316697096 | 1503129864 | Python | Python | py | Runtime Error | 0 | 0 | 29 | x=raw_input()
x=x*x*x
print x |
s840054931 | p02388 | u395334793 | 1503249466 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = map(input(),int)
print(x**3) |
s925200226 | p02388 | u070117804 | 1503375379 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x=int(input())
print(pow(x,3) |
s783253628 | p02388 | u506705885 | 1503412436 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | num=input()
print(num*num*num) |
s767991234 | p02388 | u617778316 | 1503467070 | Python | Python | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s030893989 | p02388 | u617778316 | 1503467132 | Python | Python | py | Runtime Error | 0 | 0 | 19 | input()
print(x**3) |
s931908255 | p02388 | u940395729 | 1503475934 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | X = input()
y = x*x*x
print(y) |
s849949199 | p02388 | u940395729 | 1503475956 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | X = input()
y = x*x*x
print(y) |
s676424411 | p02388 | u940395729 | 1503476020 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | x = input()
y = x*x*x
print(y) |
s837980724 | p02388 | u504355829 | 1503507898 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | x = input()
for x in 1<= x <= 100
print(x^3) |
s052926992 | p02388 | u105694406 | 1503722406 | Python | Python | py | Runtime Error | 0 | 0 | 37 | import sys
n = sys.argv
print n*n*n |
s214502244 | p02388 | u105694406 | 1503722708 | Python | Python3 | py | Runtime Error | 0 | 0 | 52 | import sys
n = int(sys.argv[1])
n = n*n*n
print (n) |
s972330474 | p02388 | u153665391 | 1503829793 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | import sys
args = sys.argv
num = int(args[1])
print( num * num * num ) |
s145303494 | p02388 | u153665391 | 1503829838 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | import sys
args = sys.argv
num = int(args[1])
print( num * num * num ) |
s783860313 | p02388 | u266640508 | 1503886621 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | input(x)
print(x ** 3) |
s253513461 | p02388 | u266640508 | 1503886637 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | input(x)
print(x ** 3) |
s889178294 | p02388 | u266640508 | 1503886654 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | input(x)
print(x ** 3) |
s516373888 | p02388 | u445380745 | 1504091326 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | for x in range(1,101)
print(x ** 3) |
s346776414 | p02388 | u445380745 | 1504091413 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | for x in range(1,101)
print(x ** 3) |
s307864271 | p02388 | u445380745 | 1504091608 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | print('Input x :')
cube = input('>> ')
print(cube ** 3) |
s192247046 | p02388 | u445380745 | 1504091762 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | cube = input('>> ')
print(cube **3 ) |
s505917612 | p02388 | u445380745 | 1504091928 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | for x in range(1,101)
print(x ** 3) |
s445999555 | p02388 | u445380745 | 1504092579 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | print('Input x')
x = int(input())
while x <1 | x > 100
print('Input x again:')
x = int(input())
print(x ** 3) |
s678213277 | p02388 | u192570203 | 1504262692 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | a = input()
print(a * a * a) |
s669431938 | p02388 | u666221014 | 1504273051 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 | print(int(input)**3) |
s101944379 | p02388 | u132415474 | 1504516132 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s282710696 | p02388 | u132415474 | 1504516145 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) |
s962456495 | p02388 | u294922877 | 1504709680 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) |
s077913952 | p02388 | u294922877 | 1504709710 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x=input()
print(x**3) |
s567778693 | p02388 | u362494298 | 1504851596 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print(X*X*X) |
s098284337 | p02388 | u058546845 | 1504949192 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | a=input()
b=a**3
print(b) |
s750116159 | p02388 | u088372268 | 1505360850 | Python | Python3 | py | Runtime Error | 0 | 0 | 18 | int(x)
print(x**3) |
s866968953 | p02388 | u579699497 | 1505461899 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s868558113 | p02388 | u230079906 | 1506825447 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | n = input()
print(n*n*n) |
s497111851 | p02388 | u266640508 | 1507166702 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x ** 3) |
s193095432 | p02388 | u266640508 | 1507166775 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) |
s581237880 | p02388 | u266640508 | 1507175352 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = input()
y = x ** 3
print(y) |
s371648289 | p02388 | u266640508 | 1507176082 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x = input()
pow(x, 3) |
s683635193 | p02388 | u266640508 | 1507176111 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | x = input()
y = pow(x, 3)
print(y) |
s591737553 | p02388 | u266640508 | 1507176188 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = input()
y = x ** 3
print(y) |
s373004737 | p02388 | u219202227 | 1507274197 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | input = input()
return input ** 2 |
s117329566 | p02388 | u219202227 | 1507274266 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | input = input()
print(input ** 2) |
s483689289 | p02388 | u219202227 | 1507274305 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | input = input()
return input ** 3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.