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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s100336667 | p02388 | u888595898 | 1419859332 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | x = int(raw_input())
print(x ** 3) |
s375200495 | p02388 | u567380442 | 1419908025 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | print(int(input()) ** 3) |
s872421826 | p02388 | u427046303 | 1420440230 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | import sys
param = sys.argv
print( int(param[1]) ** 3 ) |
s710799431 | p02388 | u427046303 | 1420440476 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | import sys
param = sys.argv
print( int(param[1]) ** 3 ) |
s878315958 | p02388 | u427046303 | 1420440521 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | import sys
param = sys.argv
print( int(param[1]) ** 3 ) |
s031690448 | p02388 | u427046303 | 1420440543 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 |
param = sys.argv
print( int(param[1]) ** 3 ) |
s030231355 | p02388 | u427046303 | 1420441304 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | param = sys.argv
if( len(param) > 1 ):
print( int(param[1]) ** 3 )
else:
print("") |
s045824409 | p02388 | u965894812 | 1421076963 | Python | Python | py | Runtime Error | 0 | 0 | 31 | x = raw_input()
print x * x * x |
s482221319 | p02388 | u965894812 | 1421077194 | Python | Python | py | Runtime Error | 0 | 0 | 31 | x = raw_input()
print x * x * x |
s232771521 | p02388 | u965894812 | 1421077242 | Python | Python | py | Runtime Error | 0 | 0 | 37 | x = raw_input()
print x * x * x, '\n' |
s737773825 | p02388 | u965894812 | 1421077360 | Python | Python | py | Runtime Error | 0 | 0 | 40 | x = raw_input()
print x * x * x
print '' |
s964101590 | p02388 | u965894812 | 1421077587 | Python | Python | py | Runtime Error | 0 | 0 | 27 | x = raw_input()
print x**3, |
s952639723 | p02388 | u527848444 | 1422234949 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x = (input())
print(x*x*x) |
s773420152 | p02388 | u442346200 | 1422234957 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | x = int(input()
print(x * x * x) |
s932879910 | p02388 | u879226672 | 1422975284 | Python | Python | py | Runtime Error | 0 | 0 | 65 | import sys
num = sys.stdin.readline()
ans = num*num*num
print ans |
s797702884 | p02388 | u442472098 | 1422977885 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) |
s846671814 | p02388 | u823877876 | 1423215999 | Python | Python | py | Runtime Error | 0 | 0 | 63 | import sys
argvs = sys.argv
x = int(argvs[1])
print str(x**3) |
s887254708 | p02388 | u604774382 | 1423480428 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | x=raw_input()
print( x**3 ) |
s035073979 | p02388 | u604774382 | 1423480671 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x=input()
print( x**3 ) |
s760213149 | p02388 | u604774382 | 1423480891 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 | x=input()
print x**3 |
s488952476 | p02388 | u604774382 | 1423481612 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | #coding:utf-8
x=input()
print( x**3 ) |
s645483609 | p02388 | u604774382 | 1423481867 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | #coding:utf-8
x=input()
print( x**3 ) |
s357260668 | p02388 | u604774382 | 1423481884 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | #coding:utf-8
x=input()
print x**3 |
s140785824 | p02388 | u604774382 | 1423481970 | Python | Python | py | Runtime Error | 0 | 0 | 41 | #coding:utf-8
x=raw_input()
print( x**3 ) |
s351025073 | p02388 | u604774382 | 1423482116 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | #coding:utf-8
x=input()
print( x**3 ) |
s753486761 | p02388 | u604774382 | 1423482142 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | #coding:utf-8
x=input()
x=x**3
print(x) |
s646893211 | p02388 | u527848444 | 1424393202 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | x = int(input())
print(x * x * x) |
s085111103 | p02388 | u527848444 | 1424393228 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | x = int(input())
print(x*x*x) |
s957795963 | p02388 | u564075939 | 1424427329 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x=int(input())print(x*x*x) |
s810257670 | p02388 | u742797815 | 1424697239 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x ** 3) |
s878806780 | p02388 | u088816384 | 1424946924 | Python | Python3 | py | Runtime Error | 0 | 0 | 37 | value = raw_input()
print("value**3") |
s500698169 | p02388 | u088816384 | 1424947540 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | value = input()
answer = value**3
print("answer") |
s937934048 | p02388 | u088816384 | 1424952951 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | value = input()
answer = value * value * value
print("answer") |
s032491963 | p02388 | u088816384 | 1424953145 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | value = input()
print(value ** 3) |
s418026941 | p02388 | u446252583 | 1429069902 | Python | Python | py | Runtime Error | 0 | 0 | 42 | White True:
x = input()
print x**3 |
s840452179 | p02388 | u446252583 | 1429069959 | Python | Python | py | Runtime Error | 0 | 0 | 42 | white True:
x = input()
print x**3 |
s238490525 | p02388 | u140201022 | 1430642748 | Python | Python | py | Runtime Error | 0 | 0 | 25 | print int(raw_input())**3 |
s772277765 | p02388 | u304186356 | 1431855811 | Python | Python | py | Runtime Error | 0 | 0 | 32 | i=gets
i=i.to_i
print i*i*i,"\n" |
s855560496 | p02388 | u506372503 | 1431931856 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | x = input()
print(x*x*x) |
s478912320 | p02388 | u436720733 | 1432106880 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | a = input()
int (a)
print("{}".a**3) |
s597770848 | p02388 | u784443002 | 1433305442 | Python | Python | py | Runtime Error | 0 | 0 | 166 | process.stdin.resume();
process.stdin.setEncoding('utf8');
process.stdin.on('data',function(chunk){
var a = parseInt(chunk.trim(),10);
console.log(Math.pow(a,3));
}); |
s157173050 | p02388 | u447423362 | 1433804274 | Python | Python | py | Runtime Error | 0 | 0 | 51 | x = int(raw_input("Enter number:"))
print )int(x**3 |
s525360752 | p02388 | u447423362 | 1433804319 | Python | Python | py | Runtime Error | 0 | 0 | 51 | x = int(raw_input("Enter number:"))
print )int(x**3 |
s867738191 | p02388 | u447423362 | 1433804421 | Python | Python3 | py | Runtime Error | 0 | 0 | 51 | x = int(raw_input("Enter number:"))
print int(x**3) |
s945707749 | p02388 | u464218592 | 1434181720 | Python | Python | py | Runtime Error | 0 | 0 | 26 | x = raw_input()
print x**3 |
s518403513 | p02388 | u172616925 | 1434623369 | Python | Python | py | Runtime Error | 0 | 0 | 51 | x = raw.input('What\'s the number??')
print "x*x*x" |
s031788549 | p02388 | u827214117 | 1435753222 | Python | Python | py | Runtime Error | 0 | 0 | 33 | i = input_raw()
print int(i) ** 3 |
s672424794 | p02388 | u827214117 | 1435753306 | Python | Python | py | Runtime Error | 0 | 0 | 48 | whit True:
i = raw_input()
print int(i) ** 3 |
s423177327 | p02388 | u827214117 | 1435753432 | Python | Python | py | Runtime Error | 0 | 0 | 33 | i = input_raw()
print int(i) ** 3 |
s344258282 | p02388 | u827214117 | 1435753958 | Python | Python | py | Runtime Error | 0 | 0 | 33 | i = input_raw()
print int(i) ** 3 |
s921887699 | p02388 | u614711522 | 1436144296 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print( x**3) |
s940741638 | p02388 | u614711522 | 1436144442 | Python | Python3 | py | Runtime Error | 0 | 0 | 14 | print( x ** 3) |
s965299286 | p02388 | u686134343 | 1436144546 | Python | Python | py | Runtime Error | 0 | 0 | 12 | print(x*x*x) |
s616604690 | p02388 | u686134343 | 1436144637 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | var x = x print(x*x*x) |
s051848459 | p02388 | u527848444 | 1436144676 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | print(int(input())***3) |
s076667232 | p02388 | u686134343 | 1436144733 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s342508298 | p02388 | u978086225 | 1436144774 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | x = x***
print(x) |
s988040938 | p02388 | u686134343 | 1436144778 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | orint(x ** 3) |
s871780450 | p02388 | u686134343 | 1436144836 | Python | Python3 | py | Runtime Error | 0 | 0 | 14 | print( x ** 3) |
s413430224 | p02388 | u614711522 | 1436144879 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | input()
print( x ** 3) |
s842106379 | p02388 | u614711522 | 1436144949 | Python | Python3 | py | Runtime Error | 0 | 0 | 26 | x = input()
print( x ** 3) |
s130224565 | p02388 | u306530296 | 1436145138 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x =input(input())
print(x**3) |
s833924769 | p02388 | u306530296 | 1436145195 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | x =input(input())
print(x*x*x) |
s402213399 | p02388 | u306530296 | 1436145774 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | nums = input().split()
a = int(nums[0])
b = int(nums[1])
print(a * b,(a + b) * 2) |
s568835082 | p02388 | u306530296 | 1436145817 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | nums = input().split()
a = int(nums[0])
b = int(nums[1])
print(a * b,(a + b) * 2) |
s989073941 | p02388 | u403273083 | 1436147456 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | nums = input()split()
a = int(nums[0])
b = int(nums[1])
print(a*b,(a+b)*2) |
s116397175 | p02388 | u605525736 | 1436149997 | Python | Python3 | py | Runtime Error | 0 | 0 | 6 | x ** 3 |
s210318496 | p02388 | u605525736 | 1436151025 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | x = 3 x ** 3 |
s296976039 | p02388 | u605525736 | 1436151296 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | nums = input().split()
x = int(nums[3])
x ** 3 |
s556537768 | p02388 | u484576700 | 1436286413 | Python | Python | py | Runtime Error | 0 | 0 | 30 | x = raw_input()
print(x ** 3) |
s756795703 | p02388 | u484576700 | 1436286703 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x = raw_input()
print x ** 3 |
s598337674 | p02388 | u802705119 | 1436526504 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x ** 3) |
s820115592 | p02388 | u802705119 | 1436526570 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = input()
x = x ** 3
print(x) |
s672357794 | p02388 | u802705119 | 1436526768 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | x = input()
x = x * x * x
print(x) |
s447111665 | p02388 | u444407884 | 1437550421 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | import sys
x = input()
x = x * x * x
print (x) |
s834881270 | p02388 | u528991554 | 1438441548 | Python | Python | py | Runtime Error | 0 | 0 | 27 | x = raw_input()
print(x**3) |
s500410260 | p02388 | u180914582 | 1438569456 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | x = int(input())
print(x * x * x *) |
s477831755 | p02388 | u676498528 | 1439168727 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s248779841 | p02388 | u938745275 | 1439310098 | Python | Python | py | Runtime Error | 0 | 0 | 40 | import sys
print (int(sys.argv[1]) ** 3) |
s551641195 | p02388 | u938745275 | 1439310192 | Python | Python | py | Runtime Error | 0 | 0 | 39 | import sys
print(int(sys.argv[1]) ** 3) |
s465265296 | p02388 | u938745275 | 1439310365 | Python | Python | py | Runtime Error | 0 | 0 | 29 | import sys
print(sys.argv[1]) |
s950739327 | p02388 | u938745275 | 1439310406 | Python | Python | py | Runtime Error | 0 | 0 | 26 | import sys
t = sys.argv[1] |
s251168960 | p02388 | u722558010 | 1440575230 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x=input()
x=x**3
print(x) |
s979733514 | p02388 | u722558010 | 1440575867 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x=int(input(x))
x=x**3
print(x) |
s058231719 | p02388 | u463783070 | 1440649800 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | return x * 3 |
s283013998 | p02388 | u463783070 | 1440650218 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | a = input()
return a ** 3 |
s530426556 | p02388 | u463783070 | 1440650303 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | a = int(input())
return a ** 3 |
s807788710 | p02388 | u463783070 | 1440650345 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | a = int(input())
return (a ** 3) |
s109926532 | p02388 | u823513038 | 1441706558 | Python | Python | py | Runtime Error | 0 | 0 | 25 | input a;
print a * a * a; |
s589514956 | p02388 | u823513038 | 1441706590 | Python | Python | py | Runtime Error | 0 | 0 | 23 | input a
print a * a * a |
s841153682 | p02388 | u823513038 | 1441706783 | Python | Python | py | Runtime Error | 0 | 0 | 31 | input a
print "%d", (a * a * a) |
s956586034 | p02388 | u823513038 | 1441706827 | Python | Python | py | Runtime Error | 0 | 0 | 32 | input a
print "%d" % (a * a * a) |
s936322226 | p02388 | u823513038 | 1441706917 | Python | Python | py | Runtime Error | 0 | 0 | 39 | a = raw_input()
print "%d"% (a * a * a) |
s274994447 | p02388 | u823513038 | 1441706949 | Python | Python | py | Runtime Error | 0 | 0 | 33 | a = raw_input()
print (a * a * a) |
s651401910 | p02388 | u389610071 | 1442036920 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | int(input(x))
print(x ** 3) |
s575516666 | p02388 | u389610071 | 1442036946 | Python | Python3 | py | Runtime Error | 0 | 0 | 15 | input(x)
x ** 3 |
s562100207 | p02388 | u408701661 | 1442198141 | Python | Python | py | Runtime Error | 0 | 0 | 47 | input = raw_input()
print input * input * input |
s432002632 | p02388 | u729824721 | 1442198513 | Python | Python | py | Runtime Error | 0 | 0 | 50 | import sys
x = sys.argv[1]
x3 = x ** 3
print x3 |
s144555451 | p02388 | u894381890 | 1442198516 | Python | Python | py | Runtime Error | 0 | 0 | 53 | import sys
x = sys.argy[1]
x3 = x * x * x
print x3 |
s874780806 | p02388 | u386372280 | 1442198627 | Python | Python | py | Runtime Error | 0 | 0 | 24 | x = sys.stdin
print x**3 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.