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
s831249906
p02388
u219202227
1507274432
Python
Python3
py
Runtime Error
0
0
31
input = input() print(input**3)
s607975109
p02388
u219202227
1507274507
Python
Python3
py
Runtime Error
0
0
44
input = input() print(input * input * input)
s722479131
p02388
u219202227
1507274579
Python
Python3
py
Runtime Error
0
0
43
input= input() print(input * input * input)
s374740487
p02388
u219202227
1507274659
Python
Python3
py
Runtime Error
0
0
54
input = int(input()) output = input ** 3 return output
s388107191
p02388
u981238682
1507288003
Python
Python3
py
Runtime Error
0
0
26
a = input() print (a ** 3)
s415595924
p02388
u626266743
1507690318
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
s741085143
p02388
u424457654
1507690531
Python
Python3
py
Runtime Error
0
0
27
x = input() print x * x * x
s209761577
p02388
u808708892
1507691275
Python
Python3
py
Runtime Error
0
0
41
import sys a = sys.argv[1] print(a*a*a)
s314697471
p02388
u400765446
1507737650
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
s684053410
p02388
u400765446
1507819025
Python
Python3
py
Runtime Error
0
0
29
x = input() y = x**3 print(y)
s783304037
p02388
u102664642
1507820318
Python
Python
py
Runtime Error
0
0
28
x = raw_input() print x ** 3
s025352365
p02388
u197670577
1508056010
Python
Python
py
Runtime Error
0
0
26
x = raw_input() print x**3
s423819901
p02388
u755500650
1508166301
Python
Python3
py
Runtime Error
0
0
34
x=(int)input().strip() print(x**3)
s406092312
p02388
u635391238
1508224251
Python
Python3
py
Runtime Error
0
0
36
val = input() ans = val^3 print(ans)
s153296107
p02388
u635391238
1508224319
Python
Python3
py
Runtime Error
0
0
75
if __name__ == "__main__": val = input() ans = val^3 print(ans)
s606486802
p02388
u635391238
1508224570
Python
Python3
py
Runtime Error
0
0
103
import fileinput if __name__ == "__main__": val = fileinput.input() ans = val^3 print(ans)
s404086305
p02388
u635391238
1508224631
Python
Python3
py
Runtime Error
0
0
106
import fileinput if __name__ == "__main__": val = fileinput.input() ans = val ** 3 print(ans)
s893366256
p02388
u574330094
1508401855
Python
Python3
py
Runtime Error
0
0
28
x = input() print(x * x * x)
s421578889
p02388
u574330094
1508401905
Python
Python
py
Runtime Error
0
0
32
int x = input() print(x * x * x)
s732047424
p02388
u876635199
1508489779
Python
Python3
py
Runtime Error
0
0
26
x = int(input()) print x
s014228961
p02388
u876635199
1508489916
Python
Python3
py
Runtime Error
0
0
34
x = int(input()) y = x*** print y
s548263257
p02388
u996463517
1508560088
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
s501852786
p02388
u886119481
1508913190
Python
Python
py
Runtime Error
0
0
3677
# -*- coding: utf-8 -*- ''' Created on 2017/10/25 @author: naja yama ''' def find_r_child(tree, offset): offset += 1 count = 0 end = len(tree) while(offset < end): if tree[offset] == "(": count += 1 elif tree[offset] == ")": count -= 1 elif count == 1 and tree[offset] == ",": return offset offset += 1 return None def find_l_child(tree, offset): offset -= 1 count = 0 while(offset >= 1): if tree[offset] == "(": count -= 1 elif tree[offset] == ")": count += 1 elif count == 1 and tree[offset] == ",": return offset offset -= 1 return None def del_node(tree, offset): count = 0 i = offset - 1 while(1): if tree[i] == ")": count += 1 elif tree[i] == "(": if count == 0: offset2 = i break count -= 1 i -= 1 count = 0 i = offset + 1 while(1): if tree[i] == "(": count += 1 elif tree[i] == ")": if count == 0: offset3 = i break count -= 1 i += 1 tree = tree[:offset2] + tree[offset3 + 1:] return tree def calc_union(s_tree, offset_s, r_tree, offset_r): offset_cs = find_l_child(s_tree, offset_s) if offset_cs is None: pass else: offset_rs = find_l_child(r_tree, offset_r) if offset_rs is None: r_tree = r_tree[:offset_r] + "(,)" + r_tree[offset_r:] offset_rs = offset_r + 2 r_tree = calc_union(s_tree, offset_cs, r_tree, offset_rs) offset_cs = find_r_child(s_tree, offset_s) if offset_cs is None: return r_tree offset_rs = find_r_child(r_tree, offset_r) if offset_rs is None: r_tree = r_tree[:offset_r+1] + "(,)" + r_tree[offset_r+1:] offset_rs = offset_r + 2 r_tree = calc_union(s_tree, offset_cs, r_tree, offset_rs) return r_tree def calc_intersection(s_tree, offset_s, r_tree, offset_r): offset_rs = find_l_child(r_tree, offset_r) if offset_rs is None: pass else: offset_cs = find_l_child(s_tree, offset_s) if offset_cs is None: r_tree = del_node(r_tree, offset_rs) else: r_tree = calc_intersection(s_tree, offset_cs, r_tree, offset_rs) offset_rs = find_r_child(r_tree, offset_r) if offset_rs is None: pass else: offset_cs = find_r_child(s_tree, offset_s) if offset_cs is None: r_tree = del_node(r_tree, offset_rs) else: r_tree = calc_intersection(s_tree, offset_cs, r_tree, offset_rs) return r_tree #Get input input_line = raw_input() while input_line: #Get command, f_tree, s_tree command = input_line[0:2] input_line = input_line[2:] space = input_line.find(" ") f_tree = input_line[0:space] s_tree = input_line[space+1:] r_tree = f_tree if command[0] == "u": r_tree = calc_union(s_tree, find_r_child(s_tree, -1), r_tree, find_r_child(r_tree, -1)) else: r_tree = calc_intersection(s_tree, find_r_child(s_tree, -1), r_tree, find_r_child(r_tree, -1)) #Output answer string print r_tree #update input_line input_line = raw_input()
s836151721
p02388
u617472286
1509176107
Python
Python3
py
Runtime Error
0
0
25
s = input() print(s ** 3)
s537567275
p02388
u104114903
1509336421
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
s164162875
p02388
u104114903
1509336617
Python
Python3
py
Runtime Error
0
0
44
import sys x = sys.argv[1] x = x**3 print(x)
s081810069
p02388
u518939641
1509377392
Python
Python3
py
Runtime Error
0
0
33
if 1<=x and x<=100: print(x***3)
s762603974
p02388
u521963900
1509379506
Python
Python3
py
Runtime Error
0
0
32
x = input().rstrip() print(x**3)
s292204644
p02388
u480716860
1509504581
Python
Python
py
Runtime Error
0
0
67
x = int(input("x???????????\????????????????????????")) print(x**3)
s226595364
p02388
u104114903
1509509278
Python
Python3
py
Runtime Error
0
0
23
a = input() print(a**3)
s527167192
p02388
u183248852
1509509413
Python
Python
py
Runtime Error
0
0
9
print x^3
s233120687
p02388
u183248852
1509509757
Python
Python
py
Runtime Error
0
0
9
print x*3
s267748444
p02388
u183248852
1509509970
Python
Python
py
Runtime Error
0
0
10
print x**3
s805345677
p02388
u232783413
1509637856
Python
Python3
py
Runtime Error
0
0
30
X = str(input("")) print(X**3)
s485637859
p02388
u279985494
1510122019
Python
Python3
py
Runtime Error
0
0
10
print(x^3)
s143765075
p02388
u725391514
1510304265
Python
Python3
py
Runtime Error
0
0
17
int x print(x**3)
s840585814
p02388
u499289652
1510442981
Python
Python3
py
Runtime Error
0
0
19
x=input print(x**3)
s742155329
p02388
u499289652
1510448743
Python
Python3
py
Runtime Error
0
0
29
x=input() int(x) print(x*x*x)
s522649579
p02388
u899891332
1510451471
Python
Python3
py
Runtime Error
0
0
23
print(int(input())**3))
s505793695
p02388
u499289652
1510475381
Python
Python3
py
Runtime Error
0
0
21
x=input() print(x**3)
s172277093
p02388
u811314383
1510733170
Python
Python
py
Runtime Error
0
0
23
x = input print(x ** 3)
s255815315
p02388
u811314383
1510733188
Python
Python
py
Runtime Error
0
0
29
input_x = input print(x ** 3)
s009000487
p02388
u811314383
1510733385
Python
Python
py
Runtime Error
0
0
31
input_x = input() print(x ** 3)
s955768500
p02388
u488038316
1511157670
Python
Python3
py
Runtime Error
0
0
47
n = int(input()) print('{0}'.format(pow(n, 3))
s521523416
p02388
u335508235
1511239374
Python
Python3
py
Runtime Error
0
0
22
x=(input()) print(x^3)
s367050424
p02388
u335508235
1511239390
Python
Python3
py
Runtime Error
0
0
23
x=(input()) print(x**3)
s796686585
p02388
u294702312
1511273756
Python
Python3
py
Runtime Error
0
0
82
out = 0 for i in range(len(row_input())): out += int(row_intput()) print(out)
s552040874
p02388
u825264062
1511422235
Python
Python3
py
Runtime Error
0
0
23
a = input() print(a**3)
s880254006
p02388
u744506422
1511766448
Python
Python
py
Runtime Error
0
0
40
x = raw_input() print("{0}".format(x^3))
s161346017
p02388
u744506422
1511766570
Python
Python3
py
Runtime Error
0
0
40
x = raw_input() print("{0}".format(x^3))
s110994596
p02388
u744506422
1511766785
Python
Python3
py
Runtime Error
0
0
57
x = int(raw_input()) y = x * x * x print "{0}" .format(y)
s216192228
p02388
u744506422
1511766868
Python
Python3
py
Runtime Error
0
0
45
x = int(raw_input()) print("{0}".format(x^3))
s797221610
p02388
u987649781
1512055824
Python
Python3
py
Runtime Error
0
0
44
x = int(sys.stdin.readline()) print(x ** 3)
s119913286
p02388
u968165442
1512188871
Python
Python3
py
Runtime Error
0
0
55
inputa = input() inputa3 = inputa ** 3 print(inputa3)
s258487828
p02388
u202430481
1512264012
Python
Python3
py
Runtime Error
0
0
41
x = input() answer = x ** 3 print(answer)
s860739458
p02388
u755566642
1512377983
Python
Python3
py
Runtime Error
0
0
22
n = input() return n*3
s021120268
p02388
u755566642
1512378112
Python
Python3
py
Runtime Error
0
0
35
n = input() ans = n ** 3 print(ans)
s763866750
p02388
u755566642
1512378162
Python
Python3
py
Runtime Error
0
0
35
n = input() ans = n ** 3 return ans
s520139451
p02388
u755566642
1512378296
Python
Python3
py
Runtime Error
0
0
25
N = input() print(N ** 3)
s197803643
p02388
u755566642
1512378371
Python
Python3
py
Runtime Error
0
0
25
n = input() return n ** 3
s267587022
p02388
u706217959
1512551027
Python
Python
py
Runtime Error
0
0
225
def main(): # x?????????????¨?????????? n = int(input()) if n <= 1 or n >= 101: print("invalid answer.") return ans = n * 3 print("{0}".format(ans)) if __name__ == '__main__': main()
s064682873
p02388
u849863666
1512622085
Python
Python3
py
Runtime Error
0
0
46
# -*- coding: utf-8 -*- x = x * 3: print (x)
s129976993
p02388
u849863666
1512622198
Python
Python3
py
Runtime Error
0
0
54
# -*- coding: utf-8 -*- x = 1 x = x * 3: print x
s106966957
p02388
u849863666
1512622225
Python
Python3
py
Runtime Error
0
0
56
# -*- coding: utf-8 -*- x = 1 x = x * 3: print (x)
s762063389
p02388
u849863666
1512622321
Python
Python3
py
Runtime Error
0
0
52
# -*- coding: utf-8 -*- x = 2 x = x * 3: print (x)
s809090727
p02388
u849863666
1512624126
Python
Python3
py
Runtime Error
0
0
60
# -*- coding: utf-8 -*- x = input() y = x**3 print int(y)
s722628656
p02388
u849863666
1512624179
Python
Python3
py
Runtime Error
0
0
50
#coding:UTF-8 x = input() y = x**3 print int(y)
s945347310
p02388
u849863666
1512624210
Python
Python3
py
Runtime Error
0
0
60
# -*- coding: utf-8 -*- x = input() y = x**3 print int(y)
s858679629
p02388
u095097138
1512719991
Python
Python3
py
Runtime Error
0
0
39
parse.args('x') print('{}'.format(x*3))
s283088898
p02388
u095097138
1512720205
Python
Python3
py
Runtime Error
0
0
374
import argparse parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('n', \ action='store', \ nargs=None, \ const=None, \ default=None, \ type=int, \ choices=None, \ help='Directory path where your taken photo files are located.', \ metavar=None) print('{}'.format(n*3))
s547998216
p02388
u095097138
1512720323
Python
Python3
py
Runtime Error
0
0
377
import argparse parser = argparse.ArgumentParser(description='Process some integers.') parser.add_argument('n', \ action='store', \ nargs=None, \ const=None, \ default=None, \ type=int, \ choices=None, \ help='Directory path where your taken photo files are located.', \ metavar=None) print('{}'.format(n**3))
s902418943
p02388
u635066025
1512895221
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
s229534514
p02388
u635066025
1512895272
Python
Python3
py
Runtime Error
0
0
11
print(x**3)
s868887987
p02388
u635066025
1512895358
Python
Python3
py
Runtime Error
0
0
15
print(x = x**3)
s115530116
p02388
u635066025
1512895383
Python
Python3
py
Runtime Error
0
0
16
print(x = x*x*x)
s654680088
p02388
u635066025
1512895560
Python
Python3
py
Runtime Error
0
0
12
print(x*x*x)
s285724798
p02388
u150984829
1513040592
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
s268034475
p02388
u849863666
1513044943
Python
Python3
py
Runtime Error
0
0
23
int x x = ** 3 print(x)
s698060327
p02388
u813969619
1513406815
Python
Python3
py
Runtime Error
0
0
21
input x print(x^3)
s963187811
p02388
u058433718
1513417308
Python
Python3
py
Runtime Error
0
0
46
import sys x = int(sys.argv[1]) print(x ** 3)
s998327838
p02388
u830563109
1513437471
Python
Python3
py
Runtime Error
0
0
12
print(x * 3)
s190553917
p02388
u830563109
1513437984
Python
Python3
py
Runtime Error
0
0
36
x = input() y = x * 3 print int(y)
s717787314
p02388
u830563109
1513438003
Python
Python3
py
Runtime Error
0
0
35
x = input() y = x**3 print int(y)
s965825236
p02388
u830563109
1513438022
Python
Python3
py
Runtime Error
0
0
35
x = input() y = x**3 print int(y)
s087019844
p02388
u830563109
1513438078
Python
Python3
py
Runtime Error
0
0
36
x = input() y = x**3 print (int(y)
s391320869
p02388
u830563109
1513438082
Python
Python3
py
Runtime Error
0
0
37
x = input() y = x**3 print (int(y))
s609133496
p02388
u884342371
1513948804
Python
Python3
py
Runtime Error
0
0
26
x = input() print(x*x*x)
s321607184
p02388
u884342371
1513948849
Python
Python3
py
Runtime Error
0
0
25
x = input() print(x**3)
s889084499
p02388
u544943822
1514213636
Python
Python
py
Runtime Error
0
0
44
1 <= x <= 100 x = int(input()) print(x ** 3)
s100017710
p02388
u544943822
1514213674
Python
Python
py
Runtime Error
0
0
42
1 < x < 100 x = int(input()) print(x ** 3)
s757037823
p02388
u910851170
1514541891
Python
Python3
py
Runtime Error
0
0
23
x = input() print(x**3)
s053036782
p02388
u165141947
1514578567
Python
Python
py
Runtime Error
0
0
38
x = raw_input() y = pow(x,3) print 'y'
s910007432
p02388
u165141947
1514578645
Python
Python
py
Runtime Error
0
0
6
x ** 3
s513094325
p02388
u841567836
1514991135
Python
Python3
py
Runtime Error
0
0
26
n = input() print(n ** 3)
s348623112
p02388
u841567836
1514991285
Python
Python3
py
Runtime Error
0
0
26
n = input() print(n ** 3)
s016276293
p02388
u841567836
1515042284
Python
Python3
py
Runtime Error
0
0
41
s = raw_input() n = int(s) print(n ** 3)
s234463127
p02388
u841567836
1515042420
Python
Python3
py
Runtime Error
0
0
29
n = input() print(n * n * n)
s311705766
p02388
u987701388
1515060897
Python
Python3
py
Runtime Error
0
0
18
input x pow(n,3)
s681701130
p02388
u009288816
1515063039
Python
Python
py
Runtime Error
0
0
21
print raw_input()**3
s232422140
p02388
u987701388
1515065536
Python
Python3
py
Runtime Error
0
0
41
n=input('input: ') a=pow(n,3) print(a)