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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s797667202 | p02388 | u099155265 | 1460873829 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | # -*- coding:UTF-8 -*-
import sys
print(int(sys.argv[1]) ** 3 + "\n") |
s083628757 | p02388 | u099155265 | 1460873902 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | # -*- coding:UTF-8 -*-
import sys
print(int(sys.argv[1]) ** 3) |
s191828507 | p02388 | u099155265 | 1460873916 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | # -*- coding:UTF-8 -*-
import sys
print(int(sys.argv[1]) ** 3)
print("\n") |
s027679324 | p02388 | u512127035 | 1460986339 | Python | Python3 | py | Runtime Error | 0 | 0 | 20 | input(n)
print(n**3) |
s924804548 | p02388 | u512127035 | 1460986424 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | n = input()
print(n**3) |
s042320609 | p02388 | u754363241 | 1461115275 | Python | Python | py | Runtime Error | 0 | 0 | 28 | x=2
>>> X=x*x*x
>>> print(X) |
s834267724 | p02388 | u077284614 | 1461232172 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | print(x*x*x) |
s857364713 | p02388 | u470643963 | 1461478476 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | # -*- coding: utf-8 -*-
import sys
input = sys.argv
print( int( input[1] ) ** 3 ) |
s546654452 | p02388 | u470643963 | 1461478549 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | import sys
input = sys.argv
print( int( input[1] ) ** 3 ) |
s905129788 | p02388 | u470643963 | 1461478597 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | input = sys.argv
print( int( input[1] ) ** 3 ) |
s598913307 | p02388 | u470643963 | 1461478877 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | import sys
input = sys.argv
result = int( input[1] ) ** 3
print( result ) |
s850773219 | p02388 | u447154297 | 1461661268 | Python | Python3 | py | Runtime Error | 0 | 0 | 10 | print x**3 |
s793516540 | p02388 | u447154297 | 1461661408 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s957393869 | p02388 | u447154297 | 1461661459 | Python | Python3 | py | Runtime Error | 0 | 0 | 21 | x=input()
print(x**3) |
s565788590 | p02388 | u692329827 | 1461750175 | Python | Python | py | Runtime Error | 0 | 0 | 27 | X = raw_input()
print X*X*X |
s663633901 | p02388 | u617990214 | 1461753259 | Python | Python | py | Runtime Error | 0 | 0 | 10 | print x**3 |
s018128122 | p02388 | u617990214 | 1461753536 | Python | Python | py | Runtime Error | 0 | 0 | 10 | print x**3 |
s011838157 | p02388 | u617990214 | 1461754044 | Python | Python | py | Runtime Error | 0 | 0 | 11 | print x*x*x |
s889823361 | p02388 | u617990214 | 1461754768 | Python | Python | py | Runtime Error | 0 | 0 | 21 | x=import()
print x**3 |
s628522293 | p02388 | u105949207 | 1462155112 | Python | Python | py | Runtime Error | 0 | 0 | 120 | def keisan(num):
x = num
keisan = x ** 3
return keisan
if __name__ == '__main__':
print(keisan(2) + \n) |
s226778467 | p02388 | u105949207 | 1462155213 | Python | Python | py | Runtime Error | 0 | 0 | 34 | x = 2
sum = x ** 3
print(sum + \n) |
s535818511 | p02388 | u105949207 | 1462155274 | Python | Python | py | Runtime Error | 0 | 0 | 40 | arry = [x = 2, x ** 3]
print(arry + \n) |
s062352723 | p02388 | u999470575 | 1462173394 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | x ** 3 == i:
print(i) |
s945062100 | p02388 | u999470575 | 1462174394 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x**3 == i:
print(i) |
s650633141 | p02388 | u999470575 | 1462174473 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x**3 == i:
print(i) |
s468723648 | p02388 | u999470575 | 1462175158 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 |
s968705874 | p02388 | u999470575 | 1462175310 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | x = raw_input()
print(str(int(x) ** 3)) |
s171450016 | p02388 | u999470575 | 1462713371 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = raw_input()
print((x) * 3) |
s989559184 | p02388 | u999470575 | 1462713438 | Python | Python3 | py | Runtime Error | 0 | 0 | 27 | raw_input()
print((x) * 3) |
s143767558 | p02388 | u999470575 | 1462777421 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a = input()
b = input()
print((int(a) * int(b),(int(a) * 2) + (int(b) * 2))) |
s855802433 | p02388 | u412890344 | 1462841945 | Python | Python3 | py | Runtime Error | 0 | 0 | 34 | x = int(sys.argv[1])
print(x*x*x) |
s236728036 | p02388 | u412890344 | 1462842151 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x*x*x) |
s945025902 | p02388 | u907957429 | 1462900968 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | a = input()
print(a**3) |
s776264372 | p02388 | u104931506 | 1463150532 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s422472360 | p02388 | u930806831 | 1463233421 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | x = int(input())
def sanjo(x):
return x**3
print(sanjo(x))\n |
s830682316 | p02388 | u104931506 | 1463701230 | Python | Python3 | py | Runtime Error | 0 | 0 | 19 | x = int
print(x**3) |
s083973032 | p02388 | u070968430 | 1463712504 | Python | Python3 | py | Runtime Error | 0 | 0 | 7 | x = x^3 |
s462406687 | p02388 | u070968430 | 1463712567 | Python | Python3 | py | Runtime Error | 0 | 0 | 40 | def cubic(x):
x = x^3
print(x\n) |
s541724693 | p02388 | u070968430 | 1463712746 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | x = x**3
print(x) |
s433310957 | p02388 | u070968430 | 1463713010 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | answer = x **3
print(answer) |
s570490987 | p02388 | u076937067 | 1463804002 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 |
s223538222 | p02388 | u076937067 | 1463804057 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s160526874 | p02388 | u823513038 | 1463879674 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | print(input()**3) |
s531401153 | p02388 | u070968430 | 1463886321 | Python | Python3 | py | Runtime Error | 0 | 0 | 19 | y = x ** 3
print(y) |
s771250700 | p02388 | u886729239 | 1463932507 | Python | Python | py | Runtime Error | 0 | 0 | 24 | i= readInt()
print i*i*i |
s664284391 | p02388 | u305878853 | 1464004594 | Python | Python3 | py | Runtime Error | 0 | 0 | 19 | x = 2
print (x*x*x} |
s046921014 | p02388 | u305878853 | 1464005044 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | a = int(input())
b*b*b |
s430381236 | p02388 | u403901064 | 1464096004 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | num = int(input())
print(num ** 3)
return |
s927447052 | p02388 | u403901064 | 1464096393 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | num = int(input())
print(num ** 3)
return 0 |
s726920019 | p02388 | u403901064 | 1464096425 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | num = int(input())
print("\n",num ** 3)
return 0 |
s042035996 | p02388 | u403901064 | 1464096579 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | def main();
num = int(input())
print("\n",num ** 3)
return 0 |
s069373452 | p02388 | u403901064 | 1464096700 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | def main();
num = int(input())
print(num ** 3)
return0 |
s439605113 | p02388 | u403901064 | 1464096725 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | def main();
num = int(input())
print(num ** 3)
return |
s839847344 | p02388 | u177370127 | 1464756319 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x ** 3) |
s322895482 | p02388 | u177370127 | 1464759305 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x ** 3) |
s683366035 | p02388 | u734072322 | 1465463730 | Python | Python | py | Runtime Error | 0 | 0 | 12 | print n ** 3 |
s790300304 | p02388 | u734072322 | 1465463797 | Python | Python | py | Runtime Error | 0 | 0 | 29 | n = raw_input()
print n ** 3 |
s396673554 | p02388 | u269653912 | 1466016638 | Python | Python | py | Runtime Error | 0 | 0 | 26 | n = raw_input()
print n**3 |
s810703025 | p02388 | u269653912 | 1466016743 | Python | Python | py | Runtime Error | 0 | 0 | 26 | n = raw_input()
print n**3 |
s200904288 | p02388 | u269653912 | 1466016899 | Python | Python3 | py | Runtime Error | 0 | 0 | 22 | n = input()
print n**3 |
s716593279 | p02388 | u269653912 | 1466016921 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | n = input()
print(n**3) |
s432450470 | p02388 | u269653912 | 1466016943 | Python | Python3 | py | Runtime Error | 0 | 0 | 32 | n = int(raw_input())
print(n**3) |
s069070960 | p02388 | u123854743 | 1467391685 | Python | Python | py | Runtime Error | 0 | 0 | 31 | x = raw_input()
print x * x * x |
s471711958 | p02388 | u834819056 | 1467655111 | Python | Python | py | Runtime Error | 0 | 0 | 28 | n = raw_input()
print n*n*n |
s684603662 | p02388 | u834819056 | 1467655305 | Python | Python | py | Runtime Error | 0 | 0 | 30 | n = int(raw_input)
print n**3 |
s937172244 | p02388 | u162598098 | 1469101444 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s651010546 | p02388 | u162598098 | 1469101591 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 |
s085137320 | p02388 | u162598098 | 1469102741 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s812947803 | p02388 | u162598098 | 1469102854 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 |
s046775323 | p02388 | u162598098 | 1469103061 | Python | Python3 | py | Runtime Error | 0 | 0 | 5 | x*x*x |
s225773302 | p02388 | u162598098 | 1469103872 | Python | Python3 | py | Runtime Error | 0 | 0 | 36 | if __name__="__main__":
print(x**3) |
s878685268 | p02388 | u612243550 | 1469353972 | Python | Python3 | py | Runtime Error | 0 | 0 | 33 | X = int(input())
Print(x * x * x) |
s367122685 | p02388 | u612243550 | 1469354176 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | import sys
x = int(sys.argv[1])
print(x * x * x) |
s564416571 | p02388 | u612243550 | 1469354246 | Python | Python3 | py | Runtime Error | 0 | 0 | 50 | import sys
x = int(sys.argv[1])
print(x * x * x) |
s449260464 | p02388 | u757827098 | 1469509915 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s962348322 | p02388 | u757827098 | 1469509992 | Python | Python3 | py | Runtime Error | 0 | 0 | 17 | x ==2
print(x**3) |
s862434832 | p02388 | u204883389 | 1469510261 | Python | Python3 | py | Runtime Error | 0 | 0 | 12 | x ** 3
x = 2 |
s818911582 | p02388 | u628732336 | 1469510356 | Python | Python3 | py | Runtime Error | 0 | 0 | 10 | print(x*3) |
s056077455 | p02388 | u628732336 | 1469510404 | Python | Python3 | py | Runtime Error | 0 | 0 | 6 | x ** 3 |
s019413213 | p02388 | u204883389 | 1469510424 | Python | Python3 | py | Runtime Error | 0 | 0 | 6 | x ** 3 |
s515946132 | p02388 | u587193722 | 1469510607 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s171747799 | p02388 | u369313788 | 1469510621 | Python | Python3 | py | Runtime Error | 0 | 0 | 13 | print(x ** 3) |
s461090403 | p02388 | u671553883 | 1469510768 | Python | Python3 | py | Runtime Error | 0 | 0 | 31 | x = int(print())
print(x ** 3) |
s190334377 | p02388 | u671553883 | 1469510789 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = int(print())
print(x**3) |
s004010284 | p02388 | u671553883 | 1469510800 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = int(print())
print(x**3) |
s778969177 | p02388 | u671553883 | 1469510817 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = int(print())
print(x**3) |
s183292132 | p02388 | u671553883 | 1469510845 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | x = int(print())
print(x**3) |
s821116736 | p02388 | u671553883 | 1469510868 | Python | Python3 | py | Runtime Error | 0 | 0 | 28 | x = int(print())
print(x**3) |
s507355991 | p02388 | u216425054 | 1470495775 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | print(x**3) |
s209744591 | p02388 | u216425054 | 1470495886 | Python | Python3 | py | Runtime Error | 0 | 0 | 4 | x**3 |
s233319879 | p02388 | u652525711 | 1470845833 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | x = input()
print(x**3) |
s781259224 | p02388 | u652525711 | 1470914285 | Python | Python3 | py | Runtime Error | 0 | 0 | 25 | x = input()
print(x ** 3) |
s589801194 | p02388 | u186194231 | 1471763944 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | print(int(input()) ** int(input())) |
s759982899 | p02388 | u231136358 | 1471768107 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | N = input()
print(N*N*N) |
s323111295 | p02388 | u231136358 | 1471768130 | Python | Python3 | py | Runtime Error | 0 | 0 | 24 | N = input()
print(N*N*N) |
s034342370 | p02388 | u231136358 | 1471768157 | Python | Python3 | py | Runtime Error | 0 | 0 | 30 | N = input()
N = N*N*N
print(N) |
s657599203 | p02388 | u655138261 | 1471877004 | Python | Python | py | Runtime Error | 0 | 0 | 41 | #coding:utf-8
2 x = input()
3 print x*x*x |
s782344670 | p02388 | u655138261 | 1471877094 | Python | Python | py | Runtime Error | 0 | 0 | 40 | #coding:utf-8
2 x = input()
3 print x**3 |
s669049697 | p02388 | u047093194 | 1473167507 | Python | Python3 | py | Runtime Error | 0 | 0 | 42 | no = input()
answer = no**3
print(answer) |
s829141555 | p02388 | u362094064 | 1473314256 | Python | Python3 | py | Runtime Error | 0 | 0 | 35 | x = input()
y = x**3
print int(y) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.