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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s916003727 | p02388 | u729824721 | 1442198650 | Python | Python | py | Runtime Error | 0 | 0 | 55 | import sys
x = sys.argv[1]
x3 = int(x) ** 3
print x3 |
s481364831 | p02388 | u894381890 | 1442198655 | Python | Python | py | Runtime Error | 0 | 0 | 68 | import sys
x = sys.argv[1]
x3 = int(x) * int(x) * int(x)
print x3 |
s951517297 | p02388 | u729824721 | 1442198679 | Python | Python | py | Runtime Error | 0 | 0 | 55 | import sys
x = sys.argv[1]
x3 = int(x) ** 3
print x3 |
s342075232 | p02388 | u386372280 | 1442198721 | Python | Python | py | Runtime Error | 0 | 0 | 36 | import sys
x = sys.stdin
print x**3 |
s219941655 | p02388 | u969115822 | 1442225481 | Python | Python | py | Runtime Error | 0 | 0 | 64 |
def cub():
x = raw_input("Input number >")
return x ** 3 |
s911364971 | p02388 | u313994256 | 1442237865 | Python | Python | py | Runtime Error | 0 | 0 | 42 | import sys
x = sys.stdin.read()
print x**3 |
s432104237 | p02388 | u463783070 | 1442392580 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 |
s276162451 | p02388 | u463783070 | 1442392649 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s140354810 | p02388 | u463783070 | 1442392716 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x**3)\n |
s249557878 | p02388 | u463783070 | 1442392814 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = (int())
print(x**3)\n |
s969008606 | p02388 | u572760146 | 1442632899 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print (x**3) |
s553609367 | p02388 | u572760146 | 1442632971 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print (x**3) |
s027627992 | p02388 | u760641096 | 1442769122 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x*x*x) |
s435899144 | p02388 | u760641096 | 1442769242 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) |
s770893411 | p02388 | u760641096 | 1442769649 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = input()
print(int(x**3)) |
s723263433 | p02388 | u528773839 | 1444814308 | Python | Python | py | Runtime Error | 0 | 0 | 31 | import sys
print sys.argv[1]*3 |
s128211985 | p02388 | u528773839 | 1444814481 | Python | Python | py | Runtime Error | 0 | 0 | 92 | #!/usr/bin/python
import sys
fp = open(sys.argv[1],'rb')
for i in fp.readline:
print i*3 |
s379982327 | p02388 | u089524441 | 1444921748 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x = input
print x*x*x |
s591937759 | p02388 | u139034459 | 1445705130 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = raw_input()
var = var^3
print var |
s350555476 | p02388 | u139034459 | 1445705175 | Python | Python | py | Runtime Error | 0 | 0 | 93 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = raw_input()
var = var*var*var
print var |
s434230977 | p02388 | u139034459 | 1445705323 | Python | Python | py | Runtime Error | 0 | 0 | 93 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = raw_input()
sum = var*var*var
print sum |
s818173316 | p02388 | u619433397 | 1446137979 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) |
s201988297 | p02388 | u823513038 | 1446369491 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | a = int(raw_input())
print(a * a * a) |
s330352146 | p02388 | u135307562 | 1446837274 | Python | Python | py | Runtime Error | 0 | 0 | 32 | x = raw_input()
x = x**3
print x |
s314271399 | p02388 | u529272062 | 1446958049 | Python | Python | py | Runtime Error | 0 | 0 | 25 | x=raw_input()
print x*x*x |
s787060587 | p02388 | u529272062 | 1446958376 | Python | Python | py | Runtime Error | 0 | 0 | 27 | x=raw_input()
print (x*x*x) |
s825570374 | p02388 | u261533743 | 1447647110 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | import math
print math.pow(input(),3) |
s519236151 | p02388 | u261533743 | 1447647390 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | import math
print(math.pow(input(),3)) |
s127892703 | p02388 | u261533743 | 1447647473 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | import math
x = parseInt(input())
print(math.pow(x,3)) |
s475111100 | p02388 | u982632052 | 1448974571 | Python | Python | py | Runtime Error | 0 | 0 | 36 | x = raw_int(input('> '))
print(x**3) |
s544165962 | p02388 | u840640840 | 1449114817 | Python | Python3 | py | Runtime Error | 0 | 0 | 38 | number = input()
print("%d",number**3) |
s781852413 | p02388 | u980683323 | 1449532550 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x=input()
print(x**3) |
s467636596 | p02388 | u980683323 | 1449532621 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | x=input()
print("{}" % (x**3)) |
s971079141 | p02388 | u297949443 | 1449916982 | Python | Python | py | Runtime Error | 0 | 0 | 48 | import sys
x = sys.stdin.readline()
print(x**3) |
s685099938 | p02388 | u076937067 | 1450153475 | Python | Python | py | Runtime Error | 0 | 0 | 27 | x=raw_input()
print x ** 3 |
s662646848 | p02388 | u076937067 | 1450153551 | Python | Python | py | Runtime Error | 0 | 0 | 24 | x=raw_input()
print x**3 |
s298161725 | p02388 | u261533743 | 1450498801 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) |
s381567291 | p02388 | u995990363 | 1450620095 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | # -*- coding: utf-8 -*-
import sys
def calculate(x):
X = int(x)
return X * X * X
if __name__ == '__main__':
param = sys.argv
print(calculate(param[1])) |
s029408466 | p02388 | u493956406 | 1450714761 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | x = input(argv[1])
y = argv[1]*argv[1]*argv[1]
print(y) |
s796133301 | p02388 | u493956406 | 1450714785 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | x = input(argv[1])
y = x*x*x
print(y) |
s259185456 | p02388 | u682357930 | 1452046573 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | return x*x*x; |
s385581462 | p02388 | u682357930 | 1452046588 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | return (x*x*x); |
s987357146 | p02388 | u682357930 | 1452046669 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | def x_cubic(x):
print x*x*x; |
s125524202 | p02388 | u682357930 | 1452046704 | Python | Python3 | py | Runtime Error | 0 | 0 | 44 | def x_cubic(x):
return x*x*x;
x_cubic(x); |
s519561571 | p02388 | u682357930 | 1452046736 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | n = 0;
n = x*x*x;
printf(n); |
s750875870 | p02388 | u682357930 | 1452046849 | Python | Python | py | Runtime Error | 0 | 0 | 27 | n = input();
return n*n*n; |
s140617577 | p02388 | u393769849 | 1452046916 | Python | Python | py | Runtime Error | 0 | 0 | 33 | def sanjou(x):
reeturn x * x * x |
s364947733 | p02388 | u970436839 | 1452046946 | Python | Python | py | Runtime Error | 0 | 0 | 25 | x = raw_input()
print x^3 |
s412062234 | p02388 | u663227983 | 1452047020 | Python | Python | py | Runtime Error | 0 | 0 | 24 | a = input()
return a*a*a |
s821257527 | p02388 | u078762447 | 1452047045 | Python | Python | py | Runtime Error | 0 | 0 | 25 | n = import()
print n*n*n |
s906929006 | p02388 | u613805578 | 1452047067 | Python | Python | py | Runtime Error | 0 | 0 | 22 | x = input()
return x^3 |
s945995762 | p02388 | u663227983 | 1452047068 | Python | Python | py | Runtime Error | 0 | 0 | 24 | a = input()
return a*a*a |
s128804574 | p02388 | u038005340 | 1452047106 | Python | Python | py | Runtime Error | 0 | 0 | 40 | x = input()
x^3 = x * x * x;
print x^3 |
s076338157 | p02388 | u078762447 | 1452047117 | Python | Python | py | Runtime Error | 0 | 0 | 34 | n = import()
a = n * n * n
print a |
s629926914 | p02388 | u663227983 | 1452047185 | Python | Python | py | Runtime Error | 0 | 0 | 24 | x = input()
return x*x*x |
s555365432 | p02388 | u078762447 | 1452047213 | Python | Python | py | Runtime Error | 0 | 0 | 26 | import n
a = n*n*n
print a |
s953708627 | p02388 | u663227983 | 1452047256 | Python | Python | py | Runtime Error | 0 | 0 | 27 | x = input()
return x*x*x
|
s444101541 | p02388 | u078762447 | 1452047379 | Python | Python | py | Runtime Error | 0 | 0 | 28 | import (n)
a = n*n*n
print a |
s109404832 | p02388 | u078762447 | 1452047472 | Python | Python | py | Runtime Error | 0 | 0 | 39 | x = row_imput()
x = int(x)
print x ** 3 |
s364334006 | p02388 | u824204304 | 1452047487 | Python | Python | py | Runtime Error | 0 | 0 | 42 | x = row_input()
x = int(x)
print x * x * x |
s294479363 | p02388 | u920118302 | 1452047498 | Python | Python | py | Runtime Error | 0 | 0 | 34 | x = int(row_input())
print(x ** 3) |
s009129497 | p02388 | u038243492 | 1452047502 | Python | Python | py | Runtime Error | 0 | 0 | 40 | x = raw_input()
x = int(x)
print x = x^3 |
s269186368 | p02388 | u078762447 | 1452047514 | Python | Python | py | Runtime Error | 0 | 0 | 39 | x = row_imput()
x = int(x)
print x ** 3 |
s655409243 | p02388 | u630265299 | 1452047531 | Python | Python | py | Runtime Error | 0 | 0 | 28 | a = input()
return a * a * a |
s653641247 | p02388 | u038243492 | 1452047538 | Python | Python | py | Runtime Error | 0 | 0 | 46 | x = raw_input()
x = int(x)
print x = x * x * x |
s951164565 | p02388 | u619765879 | 1452047587 | Python | Python | py | Runtime Error | 0 | 0 | 9 | print x^3 |
s078243797 | p02388 | u920118302 | 1452047591 | Python | Python | py | Runtime Error | 0 | 0 | 46 | x = row_input()
x = int(x)
x = x ** 3
print(x) |
s479447538 | p02388 | u078762447 | 1452047605 | Python | Python | py | Runtime Error | 0 | 0 | 39 | x = raw_imput()
x = int(x)
print x ** 3 |
s097028100 | p02388 | u630265299 | 1452047681 | Python | Python | py | Runtime Error | 0 | 0 | 32 | a = raw_input()
return a * a * a |
s458884651 | p02388 | u619765879 | 1452047731 | Python | Python | py | Runtime Error | 0 | 0 | 16 | print '%d' % x^3 |
s569603043 | p02388 | u630265299 | 1452047761 | Python | Python | py | Runtime Error | 0 | 0 | 23 | a = input()
return a**3 |
s216986558 | p02388 | u619765879 | 1452047766 | Python | Python | py | Runtime Error | 0 | 0 | 15 |
print '%d' % x |
s015793468 | p02388 | u885467869 | 1452047784 | Python | Python | py | Runtime Error | 0 | 0 | 24 | print "%d" % (x * x * x) |
s283465225 | p02388 | u630265299 | 1452047877 | Python | Python | py | Runtime Error | 0 | 0 | 31 | a = raw_input()
print a * a * a |
s002827062 | p02388 | u619765879 | 1452047896 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = input()
print '%d' % x^3 |
s374198777 | p02388 | u803327846 | 1452048038 | Python | Python | py | Runtime Error | 0 | 0 | 11 | print x ^ 3 |
s948694511 | p02388 | u619765879 | 1452048040 | Python | Python | py | Runtime Error | 0 | 0 | 22 | x = 2
print '%d' % x^3 |
s099145330 | p02388 | u619765879 | 1452048105 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = input()
print '%d' % x^3 |
s757244544 | p02388 | u619765879 | 1452048135 | Python | Python | py | Runtime Error | 0 | 0 | 25 | input(x)
print '%d' % x^3 |
s821342180 | p02388 | u619765879 | 1452048153 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = input()
print '%d' % x^3 |
s599445994 | p02388 | u885467869 | 1452048162 | Python | Python | py | Runtime Error | 0 | 0 | 34 | input (x)
print '%d' % (x * x * x) |
s147506277 | p02388 | u177295149 | 1452048186 | Python | Python | py | Runtime Error | 0 | 0 | 18 | a = 3
return a*a*a |
s687675261 | p02388 | u967035362 | 1452048197 | Python | Python | py | Runtime Error | 0 | 0 | 38 | x = raw_input()
X = int(x)
print x*x*x |
s063754251 | p02388 | u233232390 | 1452048415 | Python | Python | py | Runtime Error | 0 | 0 | 12 | return x*x*x |
s929050905 | p02388 | u803327846 | 1452048489 | Python | Python | py | Runtime Error | 0 | 0 | 16 | return x * x * x |
s023322032 | p02388 | u233232390 | 1452048539 | Python | Python | py | Runtime Error | 0 | 0 | 20 | a = x*x*x
return a |
s683107056 | p02388 | u803327846 | 1452048571 | Python | Python | py | Runtime Error | 0 | 0 | 17 | print (x * x * x) |
s289416999 | p02388 | u233232390 | 1452048583 | Python | Python | py | Runtime Error | 0 | 0 | 19 | a = x*x*x
return a |
s350793319 | p02388 | u803327846 | 1452048590 | Python | Python | py | Runtime Error | 0 | 0 | 20 | print int(x * x * x) |
s096083116 | p02388 | u803327846 | 1452048624 | Python | Python | py | Runtime Error | 0 | 0 | 36 | volume = x * x * x
print int(volume) |
s099467362 | p02388 | u803327846 | 1452048652 | Python | Python | py | Runtime Error | 0 | 0 | 31 | volume = x * x * x
print volume |
s528268897 | p02388 | u233232390 | 1452048694 | Python | Python | py | Runtime Error | 0 | 0 | 19 | a = x*x*x
print a |
s462431884 | p02388 | u803327846 | 1452048823 | Python | Python | py | Runtime Error | 0 | 0 | 43 | x = raw_input()
cube = x * x * x
print cube |
s000795908 | p02388 | u803327846 | 1452048854 | Python | Python | py | Runtime Error | 0 | 0 | 36 | input(x)
cube = x * x * x
print cube |
s965756660 | p02388 | u834416077 | 1452048901 | Python | Python | py | Runtime Error | 0 | 0 | 12 | print x*x*x: |
s321062412 | p02388 | u532962080 | 1452048930 | Python | Python | py | Runtime Error | 0 | 0 | 24 | def test(x):
print x*x*x |
s132853738 | p02388 | u233232390 | 1452049024 | Python | Python | py | Runtime Error | 0 | 0 | 21 | print "%d" & "x*x*x" |
s109702483 | p02388 | u233232390 | 1452049063 | Python | Python | py | Runtime Error | 0 | 0 | 28 | a = x*x*x
print "%d" & "a" |
s365889804 | p02388 | u532962080 | 1452049068 | Python | Python | py | Runtime Error | 0 | 0 | 11 | return x**3 |
s483627838 | p02388 | u834416077 | 1452049082 | Python | Python | py | Runtime Error | 0 | 0 | 18 | X = 3:
print x**3: |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.