problem_id stringlengths 6 6 | user_id stringlengths 10 10 | time_limit float64 1k 8k | memory_limit float64 262k 1.05M | problem_description stringlengths 48 1.55k | codes stringlengths 35 98.9k | status stringlengths 28 1.7k | submission_ids stringlengths 28 1.41k | memories stringlengths 13 808 | cpu_times stringlengths 11 610 | code_sizes stringlengths 7 505 |
|---|---|---|---|---|---|---|---|---|---|---|
p03145 | u210827208 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int,input().split())\n\nx=[a,b,c]\n\nx.sort()\n\nprint(x[0]*x[1]/2)\n', 'a,b,c=map(int,input().split())\n\nx=[a,b,c]\n\nx.sort()\n\nprint(x[0]*x[1]/2]', 'a,b,c=map(int,input().split())\n \nx=[a,b,c]\n \nx.sort()\n \nprint(int(x[0]*x[1]/2))'] | ['Wrong Answer', 'Runtime Error', 'Accepted'] | ['s190440957', 's353880215', 's974316344'] | [2940.0, 2940.0, 2940.0] | [18.0, 18.0, 18.0] | [72, 71, 79] |
p03145 | u214434454 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB, BC, CD = map(int,input().split())\nprint(AB*BC)', 'AB, BC, CA = map(int,input().split())\nprint(AB*BC//2)'] | ['Wrong Answer', 'Accepted'] | ['s763137072', 's337317359'] | [2940.0, 2940.0] | [17.0, 17.0] | [50, 53] |
p03145 | u216631280 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['li = list(map(int, input().split()))\n\nprint(li[0] * li[1] / 2)\n', 'li = list(map(int, input().split()))\n\nprint(int(li[0] * li[1] / 2))\n'] | ['Wrong Answer', 'Accepted'] | ['s694505706', 's912376310'] | [2940.0, 2940.0] | [17.0, 17.0] | [63, 68] |
p03145 | u216888678 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB,BC,CA=map(int,input().split())\nprint(AB*BC/2)', 'AB,BC,CA=map(int,input().split())\nprint(AB*BC//2)'] | ['Wrong Answer', 'Accepted'] | ['s235424016', 's529564514'] | [2940.0, 2940.0] | [17.0, 17.0] | [48, 49] |
p03145 | u217303170 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['ab,c=map(int,input().split())\nprint(a*b//2)', 'a,b,c=map(int,input().split())\nprint(a*b//2)'] | ['Runtime Error', 'Accepted'] | ['s879926326', 's242508316'] | [2940.0, 2940.0] | [17.0, 17.0] | [43, 44] |
p03145 | u220870679 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['x,y,z=map(int,input().split())\nprint(x*y/2)', 'x,y,z=map(int,input().split())\nprint(int(x*y/2))'] | ['Wrong Answer', 'Accepted'] | ['s528109667', 's532872486'] | [2940.0, 2940.0] | [17.0, 17.0] | [43, 48] |
p03145 | u221345507 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['i = list(map(int, input().split()))\ni.sort()\nans = (i[0]*i[1])/2\nprint(ans)', 'i = list(map(int, input().split()))\ni.sort()\nans = (i[0]*i[1])/2\nprint(int(ans))'] | ['Wrong Answer', 'Accepted'] | ['s486876332', 's656775409'] | [2940.0, 2940.0] | [17.0, 17.0] | [75, 80] |
p03145 | u221940831 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB, BC, CA, = map(int, input().split())\n\ntriangle_area = BC * AB / 2\n\nprint(triangle_area)\n', 'AB, BC, CA, = map(int, input().split())\n\ntriangle_area = BC * AB / 2\n\nprint(int(triangle_area))\n'] | ['Wrong Answer', 'Accepted'] | ['s112434229', 's774457613'] | [9120.0, 9112.0] | [30.0, 28.0] | [91, 96] |
p03145 | u223058900 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['x, y, z = map(int,input().split())\nprint(x * y / 2)', 'x, y, z = map(int,input().split())\nprint(x * y // 2)\n'] | ['Wrong Answer', 'Accepted'] | ['s154035018', 's676198007'] | [2940.0, 2940.0] | [17.0, 17.0] | [51, 53] |
p03145 | u223133214 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['x = input().split()\na = int(x[0])\nb = int(x[1])\nc = int(x[2])\n\nprint(a*b/2)', 'x = input().split()\na = int(x[0])\nb = int(x[1])\nc = int(x[2])\ns = int(a*b/2)\nprint(s)\n'] | ['Wrong Answer', 'Accepted'] | ['s545186842', 's749048245'] | [3060.0, 2940.0] | [44.0, 17.0] | [75, 86] |
p03145 | u223646582 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB, BC, CA = map(int, input().split())\nprint(AB*BC/2)', 'AB, BC, CA = map(int, input().split())\nprint(int(AB*BC/2))'] | ['Wrong Answer', 'Accepted'] | ['s863141426', 's314413797'] | [2940.0, 2940.0] | [17.0, 17.0] | [53, 58] |
p03145 | u223904637 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int,input().split())\ns=sum(a,b,c)\nt=min(a,b,c)\nl=s-t-max(a,b,c)\nprint(t*l//2)', 'li=list(map(int,input().split()))\ns=sum(li)\nt=min(li)\nl=s-t-max(li)\nprint(t*l//2)\n'] | ['Runtime Error', 'Accepted'] | ['s292778063', 's788122670'] | [2940.0, 2940.0] | [17.0, 18.0] | [87, 82] |
p03145 | u224554402 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c= input().split()\nx,y,z=(int(a),int(b),int(c))\nprint(int(x*y))', 'a,b,c= input().split()\nx,y,z=(int(a),int(b),int(c))\nprint(int(x*y/2))'] | ['Wrong Answer', 'Accepted'] | ['s045843939', 's701546805'] | [2940.0, 2940.0] | [17.0, 17.0] | [67, 69] |
p03145 | u226912938 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB, BC, CA = map(int, input().split())\nprint(AB*BC/2)', 'AB, BC, CA = map(int, input().split())\nprint(int(AB*BC/2))'] | ['Wrong Answer', 'Accepted'] | ['s336919958', 's499719238'] | [2940.0, 3316.0] | [17.0, 20.0] | [53, 58] |
p03145 | u227476288 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB,BC,CA = map(int,input().split())\nprint(AB*BC*(1/2))', 'AB,BC,CA = map(int,input().split())\nprint(int(AB*BC*(1/2)))'] | ['Wrong Answer', 'Accepted'] | ['s550909109', 's446384571'] | [2940.0, 2940.0] | [18.0, 17.0] | [54, 59] |
p03145 | u228223940 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int,input().split())\nprint(a*b/2)', 'a,b,c = map(int,input().split())\nprint(a*b//2)'] | ['Wrong Answer', 'Accepted'] | ['s564075439', 's174341800'] | [2940.0, 3064.0] | [17.0, 20.0] | [45, 46] |
p03145 | u230549821 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['li=int(input().split())\nprint(li[0]*li[1]*1/2)', 'a,b,c = map(int,input().split())\nprint(b * a // 2)'] | ['Runtime Error', 'Accepted'] | ['s848958847', 's077164750'] | [2940.0, 2940.0] | [17.0, 18.0] | [46, 50] |
p03145 | u234631479 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\nprint((a+b)//2)', 'a, b, c = map(int, input().split())\nprint((a*b)//2)'] | ['Wrong Answer', 'Accepted'] | ['s161035828', 's212394778'] | [2940.0, 2940.0] | [17.0, 17.0] | [51, 51] |
p03145 | u235066013 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=[int(i) for i in input().split()]\nprnit(a*b/2)', 'a,b,c=[int(i) for i in input().split()]\nprint((a*b)/2)', 'a,b,c=[int(i) for i in input().split()]\nprint(a*b/2)', 'a,b,c=[int(i) for i in input().split()]\nprint((a*b)//2)'] | ['Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s151143654', 's385114062', 's594401401', 's085248367'] | [2940.0, 2940.0, 2940.0, 2940.0] | [18.0, 18.0, 17.0, 17.0] | [52, 54, 52, 55] |
p03145 | u235280114 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int,imput().split())\nprint(a*b//2)', 'a,b,c = map(int,imput().split())\nprint(a*b/2)', 'a,b,c = map(int,input().split())\nprint(a*b/2)', 'a,b,c = map(int,input().split())\nprint(a*b//2)'] | ['Runtime Error', 'Runtime Error', 'Wrong Answer', 'Accepted'] | ['s120428468', 's252105227', 's334877107', 's656534573'] | [2940.0, 2940.0, 2940.0, 2940.0] | [17.0, 17.0, 17.0, 18.0] | [46, 45, 45, 46] |
p03145 | u238084414 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB, BC, CA = map(int, input().split())\n\nprint(AB * BC / 2)', 'AB, BC, CA = map(int, input().split())\n\nprint(int(AB * BC / 2))'] | ['Wrong Answer', 'Accepted'] | ['s741183037', 's515684439'] | [2940.0, 2940.0] | [17.0, 17.0] | [58, 63] |
p03145 | u239301277 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int,input().split())\nprint(a*b/2)', 'a,b,c=map(int,input().split())\nprint(a*b/2)', 'a,b,c=map(int,input().split())\nprint(int(a*b/2))'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s076793987', 's572942960', 's905942290'] | [2940.0, 2940.0, 2940.0] | [17.0, 18.0, 17.0] | [43, 43, 48] |
p03145 | u239316561 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['ソースコード \n\nCopy\nCopy\nside = [int(x) for x in input().split()]\nside.sort()\n \nprint(int(side[0]*side[1]/2))', 'side = [int(x) for x in input().split()]\nside.sort()\n\nprint(side[0]*side[1]/2)', 'side = [int(x) for x in input().split()]\nside.sort()\n \nprint(int(side[0]*side[1]/2))\n'] | ['Runtime Error', 'Wrong Answer', 'Accepted'] | ['s501742723', 's909602690', 's988044359'] | [3060.0, 3060.0, 2940.0] | [17.0, 19.0, 18.0] | [115, 78, 85] |
p03145 | u239725287 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ["import sys\n\ndef I(): return int(sys.stdin.readline())\ndef MI(): return map(int, sys.stdin.readline().split())\ndef LI(): return list(map(int, sys.stdin.readline().split()))\ndef main():\n a, b, c = MI()\n ans = a*b*0.5\n print(ans)\n\nif __name__ == '__main__':\n main()", "import sys\n\ndef I(): return int(sys.stdin.readline())\ndef MI(): return map(int, sys.stdin.readline().split())\ndef LI(): return list(map(int, sys.stdin.readline().split()))\ndef main():\n a, b, c = MI()\n ans = int(a*b*0.5)\n print(ans)\n\nif __name__ == '__main__':\n main()"] | ['Wrong Answer', 'Accepted'] | ['s769996679', 's167907979'] | [9108.0, 9120.0] | [28.0, 30.0] | [274, 279] |
p03145 | u239981649 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['c, a, b = map(int, input(),split())\nprint(int(c * a / 2))\n', 'c, a, b = map(int, input().split())\nprint(int(c * a / 2))\n'] | ['Runtime Error', 'Accepted'] | ['s028928447', 's041917270'] | [3060.0, 2940.0] | [19.0, 20.0] | [58, 58] |
p03145 | u241159583 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\n\nprint(a*b/2)', 'x = list(map(int, input().split()))\nprint(x[0]*x[1]//2)'] | ['Wrong Answer', 'Accepted'] | ['s878687871', 's313220064'] | [2940.0, 8904.0] | [17.0, 28.0] | [49, 55] |
p03145 | u243159381 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int,input().split())\nprint(a*b/2)', 'a,b,c=map(int,input().split())\nprint(int(a*b/2))'] | ['Wrong Answer', 'Accepted'] | ['s897941144', 's886465738'] | [9100.0, 9156.0] | [25.0, 30.0] | [43, 48] |
p03145 | u243453868 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['\n\nimport numpy\nimport scipy\n\nfrom collections import defaultdict\nfrom pprint import pprint\n\na,b,c = [int(x) for x in input().split(" ")]\n\nprint (a*b/2)\n', '\n\nimport numpy\nimport scipy\n\nfrom collections import defaultdict\nfrom pprint import pprint\n\na,b,c = [int(x) for x in input().split(" ")]\n\nprint (int(a*b/2))\n'] | ['Wrong Answer', 'Accepted'] | ['s022625429', 's260050308'] | [22024.0, 22396.0] | [1961.0, 359.0] | [203, 208] |
p03145 | u243572357 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\nprint(a * b / 2)', 'a, b, c = map(int, input().split())\nprint((a*b) / 2)', 'a, b, c = map(int, input().split())\nprint(a*b / 2)\n', 'a, b, c = map(int, input().split())\nprint((a*b)//2)'] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s347417523', 's410839997', 's975678245', 's290473556'] | [2940.0, 2940.0, 2940.0, 2940.0] | [18.0, 17.0, 17.0, 17.0] | [52, 52, 51, 51] |
p03145 | u243699903 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\nprint(a*b/2)', 'a, b, c = map(int, input().split())\nprint(a*b//2)'] | ['Wrong Answer', 'Accepted'] | ['s268652619', 's896398559'] | [2940.0, 2940.0] | [17.0, 17.0] | [48, 49] |
p03145 | u244836567 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=input().split()\nls=[a,b,c]\nls.sort()\nprint(ls[0]*ls[1])', 'a,b,c=input().split()\na=int(a)\nb=int(b)\nc=int(c)\nls=[a,b,c]\nls.sort()\nprint(ls[0]*ls[1])', 'a,b,c=input().split()\na=int(a)\nb=int(b)\nc=int(c)\nls=[a,b,c]\nls.sort()\nprint(ls[0]*ls[1]/2)', 'a,b,c=input().split()\na=int(a)\nb=int(b)\nc=int(c)\nls=[a,b,c]\nls.sort()\nprint(int(ls[0]*ls[1]/2))'] | ['Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s061033596', 's329681375', 's501560686', 's381813827'] | [9084.0, 9116.0, 9156.0, 9164.0] | [26.0, 31.0, 32.0, 26.0] | [61, 88, 90, 95] |
p03145 | u245788181 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['A,B,C = map(int,(input().split(" ")))\n\nprint(int(A*B)/2)', 'A,B,C = map(int,(input().split(" ")))\n\nprint(int((A*B)/2))'] | ['Wrong Answer', 'Accepted'] | ['s733249514', 's586071311'] | [2940.0, 2940.0] | [17.0, 17.0] | [56, 58] |
p03145 | u246019596 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['line = input()\ninfo = results = [int(i) for i in line.split()]\n\ns = info[0]*info[1]/2\nprint(s)', 'line = input()\ninfo = results = [int(i) for i in line.split()]\n\ns = info[0]*info[1]/2\nprint(int(s))'] | ['Wrong Answer', 'Accepted'] | ['s866203164', 's254292453'] | [2940.0, 2940.0] | [18.0, 17.0] | [94, 99] |
p03145 | u250944591 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a=sorted(list(map(int,input().split())))\nprint(a[1]*a[2])\n', 'a=list(map(int,input().split()))\nb=a.sorted()\nprint(b[1]*b[2])\n', 'a=sorted(list(map(int,input().split())))\nprint(a[0]*a[1])', 'a=sorted(list(map(int,input().split())))\nprint(a[0]*a[1]//2)'] | ['Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Accepted'] | ['s178928624', 's278148919', 's917532694', 's172245716'] | [9148.0, 9076.0, 8780.0, 9136.0] | [31.0, 22.0, 25.0, 26.0] | [58, 63, 57, 60] |
p03145 | u251123951 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int,input().split())\nprint(a*b/2)', 'a,b,c=map(int,inpu().split())\nprint(a*b/2)', 'a,b,c=map(int,input().split())\nprint(int(a*b/2))'] | ['Wrong Answer', 'Runtime Error', 'Accepted'] | ['s169217276', 's630991017', 's792767456'] | [2940.0, 2940.0, 2940.0] | [18.0, 18.0, 18.0] | [43, 42, 48] |
p03145 | u252964975 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ["a,b,c=map(int, input().split())\nprint('{:.0f}'.format(a*b/2))", 'a,b,c=map(int, input().split())\nprint(a*b/2)', "a,b,c=map(int, input().split())\nprint('{:.0f}'.format(a*b/2))"] | ['Runtime Error', 'Wrong Answer', 'Accepted'] | ['s293420484', 's893561413', 's490325755'] | [3064.0, 2940.0, 2940.0] | [18.0, 17.0, 17.0] | [65, 44, 61] |
p03145 | u253952966 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\nprint((a * b) / 2)', 'a, b, c = map(int, input().split())\nprint(a * b / 2)', 'a, b, c = map(int, input().split())\nprint((a * b) // 2)'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s275858913', 's302030341', 's528747658'] | [2940.0, 2940.0, 2940.0] | [17.0, 17.0, 18.0] | [54, 52, 55] |
p03145 | u258436671 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB , BC, CA = map(int,input().split())\nprint(1/2 * AB * BC)', 'AB , BC, CA = map(int,input().split())\nprint (int(1/2 * AB * BC))'] | ['Wrong Answer', 'Accepted'] | ['s281120049', 's035729977'] | [2940.0, 2940.0] | [18.0, 18.0] | [60, 66] |
p03145 | u259418313 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\nprint(a*b/2)', 'a, b, c = map(int, input().split())\nprint(min([a*b, b*c, c*a]) // 2)'] | ['Wrong Answer', 'Accepted'] | ['s941465193', 's049885992'] | [3316.0, 2940.0] | [19.0, 17.0] | [48, 68] |
p03145 | u262084284 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['# coding: utf-8\n\na, b, c = map(int, input().split())\n\nprint(a*b*c/max(a,b,c))', 'l = sorted(list(map(int, input().split())))\n\nprint(l[0]*l[1]/2)\n\n', '# coding: utf-8\n\na, b, c = map(int, input().split())\n\nprint(a*b*c/(max(a,b,c)*2))\n\n', '# coding: utf-8\n\na, b, c = map(int, input().split())\nM = max(a,b,c)\nx = a*b*c/(M*2)\nprint(x)\n\n', '# coding: utf-8\n\na, b, c = map(int, input().split())\n\nprint(a*b*c/(max(a,b,c)*2))', 'a = sorted(list(int, input().split()))\n\nprint(a[0]*b[1])\n\n', 'l = sorted(list(map(int, input().split())))\n\nprint(l[0]*l[1])\n\n', 'l = list(map(int, input().split()))\n\nprint(l[0]*l[1])\n\n', 'l = sorted(list(map(int, input().split())))\n\nprint((l[0]*l[1])/2)', '# coding: utf-8\n\na, b, c = map(int, input().split())\nM = max(a,b,c)\nx = a*b*c//(M*2)\nprint(x)\n\n'] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s003316190', 's146407068', 's194914144', 's306384909', 's638112832', 's670865195', 's680901327', 's761674371', 's992487062', 's692852236'] | [2940.0, 2940.0, 2940.0, 2940.0, 2940.0, 2940.0, 3064.0, 2940.0, 2940.0, 2940.0] | [17.0, 17.0, 17.0, 17.0, 17.0, 17.0, 17.0, 18.0, 17.0, 17.0] | [77, 65, 83, 94, 81, 58, 63, 55, 65, 95] |
p03145 | u262869085 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = [int(i)for i in input().split()]\nA =max(a,b,c)\nans =1\nfor i in [a,b,c]:\n if i != A:\n ans *= i\nprint(ans/2)\n', 'l =[int(i) for i in input().split()]\nprint(l[0]*l[1]//2)'] | ['Wrong Answer', 'Accepted'] | ['s575968075', 's159070628'] | [2940.0, 2940.0] | [17.0, 18.0] | [125, 56] |
p03145 | u265065462 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int, input().split())\nprint (a * b / 2)', 'a,b,c = map(int, input().split())\nprint (a * b // 2)'] | ['Wrong Answer', 'Accepted'] | ['s364623519', 's815573831'] | [2940.0, 2940.0] | [17.0, 17.0] | [51, 52] |
p03145 | u265118937 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\nprint(a*b*(0.5)', 'a,b,c=map(int,input().split())\nprint(a*c//2)', 'a,b,c=map(int,input().split())\nS=a*c//2', 'a, b, c = map(int, input().split())\nprint(a*b*0.5)', 'a,b,c=map(int,input().split())\nS=a*c//2\nprint(S)', 'a,b,c=map(int,input().split())\nS=1/2*a*c\nprint(S)', 'a, b, c = map(int, input().split())\nprint(int(a*b*0.5))'] | ['Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s077399480', 's495090456', 's537125148', 's850850129', 's906127333', 's909790322', 's901195831'] | [2940.0, 2940.0, 2940.0, 2940.0, 2940.0, 2940.0, 2940.0] | [17.0, 17.0, 17.0, 17.0, 17.0, 18.0, 17.0] | [51, 44, 39, 50, 48, 49, 55] |
p03145 | u266171694 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['ab, bc, ca = map(int, input().split())\nprint(ab * bc / 2)\n', 'ab, bc, ca = map(int, input().split())\nprint(int(ab * bc / 2))\n'] | ['Wrong Answer', 'Accepted'] | ['s939372886', 's188328496'] | [2940.0, 2940.0] | [17.0, 17.0] | [58, 63] |
p03145 | u266569040 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['s = input().split()\ns = [int(i) for i in s]\nprint(s[0]*s[1]/2)', 's = input().split()\ns = [int(i) for i in s]\nprint(int(s[0]*s[1]/2))'] | ['Wrong Answer', 'Accepted'] | ['s138884926', 's456533592'] | [2940.0, 2940.0] | [18.0, 18.0] | [62, 67] |
p03145 | u266874640 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int, input().split())\nprint(1 / 2 * a * b)\n', 'a,b,c = map(int, input().split())\nprint(int(1 / 2 * a * b))\n'] | ['Wrong Answer', 'Accepted'] | ['s608095620', 's830288137'] | [3060.0, 2940.0] | [18.0, 17.0] | [55, 60] |
p03145 | u268427730 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['in1 = list(map(int ,input().split(" ")))\nin1.sort()\nprint(in1)\nprint((in1[0] * in1[1])/2)\n', 'in1 = list(map(int ,input().split(" ")))\nin1.sort()\nprint(int((in1[0] * in1[1])/2))\n'] | ['Wrong Answer', 'Accepted'] | ['s441059770', 's193307879'] | [2940.0, 2940.0] | [18.0, 19.0] | [90, 84] |
p03145 | u273242084 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int,input().split())\nprint(min(a*b,b*c,c*a))', 'a,b,c = map(int,input().split())\nprint(min(a*b,b*c,c*a)/2)', 'a,b,c = map(int,input().split())\nprint(int(min(a*b,b*c,c*a)/2))'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s207993968', 's685092210', 's757171840'] | [2940.0, 2940.0, 2940.0] | [17.0, 17.0, 18.0] | [56, 58, 63] |
p03145 | u276250981 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['n=list(map(int,input().split(" ")))\nn.sort()\nprint(n[0]*n[1]/2)', 'n=list(map(int,input().split(" ")))\nn.sort()\nprint(int(n[0]*n[1]/2))'] | ['Wrong Answer', 'Accepted'] | ['s895501630', 's600143987'] | [2940.0, 2940.0] | [17.0, 18.0] | [63, 68] |
p03145 | u276317406 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['(a, b, c)=list(int, input().split())\ns=a*b/2\nprint(s)\n', 'a,b,c = [int(x) for x in input().split()]\ns = int(a * b / 2)\nprint(s)\n'] | ['Runtime Error', 'Accepted'] | ['s004165966', 's741846794'] | [2940.0, 2940.0] | [18.0, 17.0] | [54, 70] |
p03145 | u277641173 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['p,q,r=map(int,input().split())\nprint(p*q/2)', 'p,q,r=map(int,input().split())\nprint(p*q//2)'] | ['Wrong Answer', 'Accepted'] | ['s796620467', 's935286195'] | [2940.0, 2940.0] | [18.0, 17.0] | [43, 44] |
p03145 | u278143034 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['\nbottom,height,hypotenuse = map(int,input().split())\n\n\narea = bottom * height / 2\nprint(area)', '\nbottom,height,hypotenuse = map(int,input().split())\n\n\narea = int(bottom * height / 2)\nprint(area)'] | ['Wrong Answer', 'Accepted'] | ['s457569422', 's796775966'] | [9140.0, 9140.0] | [25.0, 28.0] | [127, 132] |
p03145 | u279493135 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['よこ,たて,_ = map(int,input().split())\nこたえ=よこ*たて//2\nprint(こたえ)', 'えーびー,びーしー,_ = map(int,input().split())\nめんせき =えーびー*びーしー//2\nprint(めんせき)'] | ['Runtime Error', 'Accepted'] | ['s106423112', 's915600041'] | [2940.0, 3064.0] | [17.0, 19.0] | [90, 117] |
p03145 | u280552586 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\nprint(a*b/2)', 'a, b, c = map(int, input().split())\nprint(a*b//2)'] | ['Wrong Answer', 'Accepted'] | ['s132067699', 's319267102'] | [2940.0, 2940.0] | [17.0, 17.0] | [48, 49] |
p03145 | u280978334 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['n=[int(x) for x in input().split()]\nprint(0.5*n[0]*n[1])', 'n=[int(x) for x in input().split()]\nprint(int(0.5*n[0]*n[1]))'] | ['Wrong Answer', 'Accepted'] | ['s985424235', 's577831528'] | [2940.0, 2940.0] | [17.0, 17.0] | [56, 61] |
p03145 | u281610856 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\nprint(a*b/2)', 'a, b, c = map(int, input().split())\nprint(a*b//2)'] | ['Wrong Answer', 'Accepted'] | ['s631238666', 's409546286'] | [2940.0, 2940.0] | [17.0, 17.0] | [48, 49] |
p03145 | u283751459 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int,input().split())\n\nlis = [a,b,c]\nlis = lis.remove(max(lis))\n\nprint(int(lis[0]*lis[1]/2))', 'a,b,c = map(int,input().split())\n\nlis = [a,b,c]\n\nlis.remove(max(lis))\n\nprint(int(lis[0]*lis[1]/2))\n'] | ['Runtime Error', 'Accepted'] | ['s769239780', 's120644928'] | [8944.0, 9084.0] | [28.0, 29.0] | [104, 99] |
p03145 | u284854859 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['x,y,z = map(int,input().split())\nprint(x*y/2)', 'x,y,z = map(int,input().split())\nprint(x*y//2)'] | ['Wrong Answer', 'Accepted'] | ['s469838908', 's600851548'] | [2940.0, 2940.0] | [17.0, 17.0] | [45, 46] |
p03145 | u285891772 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a = list(map(int, input().split()))\n\nprint(a[0]*a[1]/2)', 'a = list(map(int, input().split()))\n \nprint(int(a[0]*a[1]/2))'] | ['Wrong Answer', 'Accepted'] | ['s557856091', 's740697480'] | [2940.0, 2940.0] | [17.0, 17.0] | [55, 61] |
p03145 | u286955577 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['import reduce from functools\nimport mul from operator\n\ndef solve():\n\tL = [int(i) for i in input().split()]\n\treturn reduce(mul, L) // (2 * max(L))\n\nprint(solve())\n', 'from functools import reduce\nfrom operator import mul\n\ndef solve():\n\tL = [int(i) for i in input().split()]\n\treturn reduce(mul, L) // (2 * max(L))\n\nprint(solve())\n'] | ['Runtime Error', 'Accepted'] | ['s136489745', 's447228643'] | [2940.0, 3572.0] | [17.0, 22.0] | [162, 162] |
p03145 | u287431190 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int, input().split())\nprint(a*b/2)', 'a,b,c = map(int, input().split())\nprint(a*b//2)'] | ['Wrong Answer', 'Accepted'] | ['s048977680', 's940831978'] | [2940.0, 2940.0] | [17.0, 17.0] | [46, 47] |
p03145 | u287880059 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int,input())\nprint(a+b//2)', 'a,b,c = map(int,input().split())\nprint(a*b/2)', 'a,b,c = map(int,input().split())\nprint(a*b//2)'] | ['Runtime Error', 'Wrong Answer', 'Accepted'] | ['s480157032', 's480930436', 's054122511'] | [2940.0, 3188.0, 2940.0] | [17.0, 18.0, 17.0] | [38, 45, 46] |
p03145 | u288980918 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int, input.split())\nprint(a*b//2)', 'a,b,c = map(int, input().split())\nprint(a*b//2)'] | ['Runtime Error', 'Accepted'] | ['s777109189', 's919073445'] | [9068.0, 9096.0] | [21.0, 24.0] | [45, 47] |
p03145 | u290187182 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ["import sys\nimport copy\nimport math\nimport bisect\nimport pprint\nimport bisect\nfrom functools import reduce\nfrom copy import deepcopy\nfrom collections import deque\n\nif __name__ == '__main__':\n a = [int(i) for i in input().split()]\n print(a[0]*a[1]/2)", "import sys\nimport copy\nimport math\nimport bisect\nimport pprint\nimport bisect\nfrom functools import reduce\nfrom copy import deepcopy\nfrom collections import deque\n\nif __name__ == '__main__':\n a = [int(i) for i in input().split()]\n print(a[0]*a[1]//2)"] | ['Wrong Answer', 'Accepted'] | ['s138587242', 's984118472'] | [4084.0, 3828.0] | [28.0, 26.0] | [254, 255] |
p03145 | u291303494 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['lines = map(int, input().split())\nlines.sort()\n\nprint(lines[0] * lines[1])', 'lines = list(map(int, input().split())\nlines.sort()\n \nprint(lines[0] * lines[1])', 'lines = list(map(int, input().split()))\nlines.sort()\n \nprint(lines[0] * lines[1])', 'lines = list(map(int, input().split()))\nlines.sort()\n \nprint((lines[0] * lines[1]) // 2)'] | ['Runtime Error', 'Runtime Error', 'Wrong Answer', 'Accepted'] | ['s035875358', 's505660847', 's779294934', 's984830889'] | [2940.0, 2940.0, 2940.0, 2940.0] | [18.0, 18.0, 17.0, 18.0] | [74, 92, 81, 88] |
p03145 | u291543340 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\nprint(a*b/2)\n', 'a, b, c = map(int, input().split())\nprint(int(a*b/2))\n'] | ['Wrong Answer', 'Accepted'] | ['s366768015', 's262299932'] | [2940.0, 2940.0] | [17.0, 17.0] | [49, 54] |
p03145 | u297046168 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['A = list(map(int,input().split()))\nA.sort()\nprint(A[0]*A[1]/2)', 'A = list(map(int,input().split()))\nprint(A[0]*A[1]/2)', 'A = list(map(int,input().split()))\nprint(A[0]*A[1]//2)'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s871551450', 's923858150', 's953259640'] | [2940.0, 2940.0, 2940.0] | [17.0, 17.0, 17.0] | [62, 53, 54] |
p03145 | u297757054 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['def main():\n C, A, B = map(int, input().split())\n print(C*A/2)\nmain()', 'def main():\n C, A, B = map(int, input().split())\n print(int(C*A/2))\nmain()\n'] | ['Wrong Answer', 'Accepted'] | ['s023577811', 's682837594'] | [2940.0, 2940.0] | [17.0, 18.0] | [75, 81] |
p03145 | u300828133 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB,BC,CA=map(int,input().split())\nprint(AB*BC/2)', 'AB, BC, CA = map(int, input().split())\nprint(AB*BC/2)', 'B,BC,CA=map(int,input().split())\nprint(AB*BC//2)', 'AB, BC, CA = map(int, input().split())\nprint(AB * BC // 2)'] | ['Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Accepted'] | ['s052430913', 's079721017', 's726031073', 's692831601'] | [2940.0, 2940.0, 2940.0, 2940.0] | [17.0, 17.0, 17.0, 18.0] | [48, 53, 48, 58] |
p03145 | u300968187 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['c,a,b = map(int, input().split())\nprint(c*a/2)', 'c,a,b = [2,5,6]\nprint(int(c*a/2))', 'c,a,b = map(int,input().split())\nprint(int(c*a/2))'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s069747662', 's271037846', 's571603393'] | [2940.0, 2940.0, 2940.0] | [18.0, 18.0, 17.0] | [46, 33, 50] |
p03145 | u305366205 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['ab, bc, ca = map(int, input().split())\nprint(ab * bc / 2)', 'a, b, c = map(int, input().split())\nprint(a * b // 2)\n'] | ['Wrong Answer', 'Accepted'] | ['s285611746', 's756536184'] | [2940.0, 2940.0] | [17.0, 17.0] | [57, 54] |
p03145 | u310381103 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['N=list(map(int,input().split()))\nd=sorted(N)\nprint(N[0]*N[1]/2)', 'N=list(map(int,input().split()))\nd=sorted(N)\nprint(int(N[0]*N[1]/2))'] | ['Wrong Answer', 'Accepted'] | ['s254838276', 's218081151'] | [2940.0, 2940.0] | [17.0, 17.0] | [63, 68] |
p03145 | u310549140 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['s = list(map(int,input().split()))\ns.sort()\nprint(s[0]*s[1]/2)\n', 'N = int(input())\nh = list(map(int,input().split()))\nans = h[0]\nfor i in range(1,N):\n if h[i]-h[i-1]>0:\n ans += h[i]-h[i-1]\nprint(ans)\n', 's = list(map(int,input().split()))\nprint(s[0]*s[1]/2)\n', 's = list(map(int,input().split()))\ns.sort()\nprint(int(s[0]*s[1]/2))'] | ['Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Accepted'] | ['s039941225', 's375999336', 's822636482', 's413384701'] | [2940.0, 2940.0, 2940.0, 2940.0] | [17.0, 17.0, 18.0, 17.0] | [63, 144, 54, 67] |
p03145 | u314050667 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input(),split())\n\nprint((a*b)//2)', 'a, b, c = map(int, input(),split())\n\nprint(int((a*b)/2))', 'a, b, c = map(int, input().split())\n\nprint((a*b)//2)'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s725105544', 's956038760', 's671567551'] | [2940.0, 2940.0, 2940.0] | [17.0, 17.0, 17.0] | [52, 56, 52] |
p03145 | u314089899 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['A,B,C = map(int, input().split())\nprint(A*B/2)', 'A,B,C = map(int, input().split())\nprint(int(A*B/2))'] | ['Wrong Answer', 'Accepted'] | ['s270028808', 's774699180'] | [2940.0, 2940.0] | [17.0, 17.0] | [46, 51] |
p03145 | u315485238 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['X = list(map(int, input().split()))\nX.sort()\nprint(0.5*(X[0]*X[1])', 'X = list(map(int, input().split()))\nX.sort()\nprint(0.5*X[0]*X[1])', 'X = list(map(int, input().split()))\nX.sort()\nprint(int(0.5*X[0]*X[1]))'] | ['Runtime Error', 'Wrong Answer', 'Accepted'] | ['s113815148', 's726299557', 's427468696'] | [2940.0, 2940.0, 2940.0] | [25.0, 17.0, 17.0] | [66, 65, 70] |
p03145 | u317779196 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['ab, bc, ca = map(int, input().split())\nprint(int(ab*bc/2)', 'ab, bc, ca = map(int, input().split())\nprint((ab*bc/2))', 'ab, bc, ca = map(int, input().split())\nprint(int(ab*bc/2))'] | ['Runtime Error', 'Wrong Answer', 'Accepted'] | ['s353903668', 's453080441', 's572169942'] | [2940.0, 2940.0, 2940.0] | [17.0, 17.0, 18.0] | [57, 55, 58] |
p03145 | u320567105 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['ri = lambda: int(input())\nrl = lambda: list(map(int,input().split()))\n\nx,y,z = rl()\n\nprint(x*y/2)', 'ri = lambda: int(input())\nrl = lambda: list(map(int,input().split()))\n\nx,y,z =rl()\nprint(x*y//2)'] | ['Wrong Answer', 'Accepted'] | ['s826577945', 's948630344'] | [2940.0, 2940.0] | [18.0, 17.0] | [97, 96] |
p03145 | u320763652 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int, input().split())\n\nprint(int(a*B/2))', 'a,b,c = map(int, input().split())\n\nprint(int(a*b/2))'] | ['Runtime Error', 'Accepted'] | ['s832341366', 's895361744'] | [2940.0, 2940.0] | [18.0, 17.0] | [52, 52] |
p03145 | u322185540 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c = map(int,input().split())\nd = max(a,b,c)\nif a == d:\n print (b*c/2)\nelif b == d:\n print (a*c/2)\nelse:\n print (a*b/2)', 'a,b,c = map(int,input().split())\nd = max(a,b,c)\nif a == d:\n print (b*c//2)\nelif b == d:\n print (a*c//2)\nelse:\n print (a*b//2)'] | ['Wrong Answer', 'Accepted'] | ['s977014496', 's219941889'] | [2940.0, 3060.0] | [17.0, 17.0] | [131, 134] |
p03145 | u323045245 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int, input().split())\nprint(a*b/2)', 'a,b,c=map(int, input().split())\nprint(a*b)', 'a,b,c=map(int, input().split())\nprint(a*b//2)'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s200979426', 's953138756', 's776528840'] | [2940.0, 2940.0, 2940.0] | [18.0, 17.0, 17.0] | [44, 42, 45] |
p03145 | u323445215 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int,input().split())\nS=a*b/2\nprint(S)\n \n', 'a,b,c=map(int,input().split())\nS=a*b*1/2\nprint(S)\n ', 'a,b,c=map(int,input().split())\nS=a*b//2\nprint(S)\n '] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s513306500', 's622174933', 's148571222'] | [9100.0, 9092.0, 9040.0] | [28.0, 26.0, 30.0] | [53, 54, 53] |
p03145 | u323680411 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['def main() -> None:\n ab, bc, ca = map(int, input())\n print(ab * bc // 2)\n\n\nif __name__ == "__main__":\n main()\n', 'def main() -> None:\n ab, bc, ca = map(int, input().split())\n print(ab * bc // 2)\n\n\nif __name__ == "__main__":\n main()\n'] | ['Runtime Error', 'Accepted'] | ['s388138041', 's904963849'] | [2940.0, 2940.0] | [17.0, 17.0] | [119, 127] |
p03145 | u324203310 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['[a,b,c]=map(int, input().split())\nif a > b and a > c:\n print(b * c)\nelif b > a and b > c:\n print(a * c)\nelse:\n print(a * b)', '[a,b,c]=map(int, input().split())\nif a > b and a > c:\n print(b * c / 2)\nelif b > a and b > c:\n print(a * c / 2)\nelse:\n print(a * b / 2)', '[a,b,c]=map(int, input().split())\nif a > b and a > c:\n print(b * c // 2)\nelif b > a and b > c:\n print(a * c // 2)\nelse:\n print(a * b // 2)'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s285005500', 's393541169', 's463594262'] | [2940.0, 3060.0, 2940.0] | [17.0, 17.0, 17.0] | [126, 138, 141] |
p03145 | u325282913 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['A, B, C = map(int, input().split())\nprint((A+B)/2)', 'A, B, C = map(int, input().split())\nprint((A*B)/2)', 'A, B, C = map(int, input().split())\nprint(int((A*B)/2))'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s171967191', 's428956879', 's048590730'] | [2940.0, 2940.0, 2940.0] | [18.0, 17.0, 17.0] | [50, 50, 55] |
p03145 | u325704929 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a, b, c = map(int, input().split())\n\nprint(b * a / 2)', 'a, b, c = map(int, input().split())\n\nprint(int(b * a / 2))'] | ['Wrong Answer', 'Accepted'] | ['s665062334', 's550163620'] | [2940.0, 2940.0] | [17.0, 17.0] | [53, 58] |
p03145 | u328067859 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int,input().split())\nprint(d/2)\n', 'a=int(input())\nb=int(input())\nc=int(input())\n\nprint(a*b/2)', 'a,b=map(int,input().split())\nprint(a*b/2)', 'a=int(input())\nb=int(input())\n\nprint(a*b/2)', 'a,b,c=map(int,input().split())\nprint(a*b/2)', 'a,b,c=map(int,input().split())\nprint((a*b)/2)', 'a,b,c=map(int,input().split())\nd=a*b\nprint(d*0.5)\n', 'a,b,c=map(int,input().split())\nd=a*B\nprint(d*0.5)', 'a,b,c=map(int,input().split())\nprint(int((a*b)/2))\n'] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Accepted'] | ['s332938650', 's437248445', 's446542801', 's516766796', 's558837948', 's635825096', 's736403053', 's919686426', 's243870364'] | [2940.0, 2940.0, 2940.0, 2940.0, 3064.0, 2940.0, 2940.0, 3064.0, 2940.0] | [18.0, 17.0, 17.0, 17.0, 18.0, 17.0, 18.0, 17.0, 17.0] | [42, 58, 41, 43, 43, 45, 50, 49, 51] |
p03145 | u329058683 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int,input().split())\nprint(a*b/2)', 'a,b,c=map(int,input().split())\nprint(a*b//2)'] | ['Wrong Answer', 'Accepted'] | ['s522275631', 's671169811'] | [2940.0, 2940.0] | [17.0, 17.0] | [43, 44] |
p03145 | u330314953 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['x =list( map(int,input().split()))\nx.sort()\nprint(x)\nprint(int(0.5*x[0]*x[1]))\n', 'x =list( map(int,input().split()))\nx.sort()\nprint(int(0.5*x[0]*x[1]))\n'] | ['Wrong Answer', 'Accepted'] | ['s163077613', 's782602370'] | [3064.0, 2940.0] | [17.0, 17.0] | [79, 70] |
p03145 | u331464808 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int,input().split())\nprint(a*b/2)', 'a,b,c=map(int,input().split())\nprint(a*b//2)'] | ['Wrong Answer', 'Accepted'] | ['s745041924', 's997147102'] | [2940.0, 2940.0] | [17.0, 18.0] | [43, 44] |
p03145 | u332331919 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB, BC, CA = map(int, input().split())\nif (1 <= AB & AB <= 100) & (1 <= BC & BC <= 100) & (1 <= CA & CA <= 100)\n S = int(AB * BC / 2)\n print(S)\n', 'AB, BC, CA = map(int, input().split())\nif (1 <= AB & AB <= 100) & (1 <= BC & BC <= 100) & (1 <= CA & CA <= 100):\n S = int(AB * BC / 2)\n print(S)\n'] | ['Runtime Error', 'Accepted'] | ['s464559589', 's367687622'] | [9012.0, 9056.0] | [27.0, 27.0] | [150, 151] |
p03145 | u333139319 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['[a,b,c] = [int(i) for i in input().split()]\nprint(int(a*b*c/max(a,b,c))/2)', '[c,b,a] = [int(i) for i in input().split()]\nprint(int(c*b/2))'] | ['Wrong Answer', 'Accepted'] | ['s545487517', 's422404095'] | [2940.0, 2940.0] | [18.0, 18.0] | [74, 61] |
p03145 | u333731247 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB,BC,CA=map(int,input().split())\n\nprint(AB*BC*0.5)', 'AB,BC,CA=map(int,input().split())\n\nprint(int(AB*BC*0.5))'] | ['Wrong Answer', 'Accepted'] | ['s528408203', 's545951269'] | [2940.0, 2940.0] | [17.0, 18.0] | [51, 56] |
p03145 | u335278042 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['x,y,z=map(int,input().split())\nprint(min(x*y,y*z,z*x)*0.5)', 'lis=list(map(int,input().split()))\nlis.sort()\nprint(int(lis[0]*lis[1]*.5))'] | ['Wrong Answer', 'Accepted'] | ['s977975493', 's962385928'] | [2940.0, 2940.0] | [17.0, 17.0] | [58, 74] |
p03145 | u338225045 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['AB, BC, CA = map( int, input().split() )\n\nprint( AB*BC/2 )', 'AB, BC, CA = map( int, input().split() )\n\nprint( int(AB*BC/2) )'] | ['Wrong Answer', 'Accepted'] | ['s223835185', 's560969069'] | [2940.0, 2940.0] | [17.0, 18.0] | [58, 63] |
p03145 | u339550873 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['#! /usr/bin/env python3\n# -*- coding: utf-8 -*-\n\nls = [int(x) for x in input().split()]\nls.sort()\nprint((ls[0]*ls[1])/2)\n', '#! /usr/bin/env python3\n# -*- coding: utf-8 -*-\n\nls = [int(x) for x in input().split()]\nls.sort()\nprint(int((ls[0]*ls[1])/2)\n', '#! /usr/bin/env python3\n# -*- coding: utf-8 -*-\n\nls = [int(x) for x in input().split()]\nls.sort()\nprint(ls[0]*ls[1]/2)\n', '#! /usr/bin/env python3\n# -*- coding: utf-8 -*-\n\nls = [int(x) for x in input().split()]\nls.sort()\nprint(int((ls[0]*ls[1])/2))\n'] | ['Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Accepted'] | ['s437398516', 's552351050', 's857013626', 's177823645'] | [2940.0, 2940.0, 2940.0, 2940.0] | [17.0, 17.0, 20.0, 18.0] | [121, 125, 119, 126] |
p03145 | u339922532 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['ab, bc, ca = map(int, input().split())\n\nprint(ab * bc / 2)', 'ab, bc, ca = map(int, input().split())\n\nprint(int(ab * bc / 2))'] | ['Wrong Answer', 'Accepted'] | ['s496988803', 's732869995'] | [2940.0, 2940.0] | [17.0, 17.0] | [58, 63] |
p03145 | u340010271 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['a,b,c=map(int,input().split())\nprint(int(a*b/2)', 'a,b,c=map(int,input().split())\nprint(int(a*b/2))'] | ['Runtime Error', 'Accepted'] | ['s935409005', 's120433768'] | [2940.0, 2940.0] | [17.0, 18.0] | [47, 48] |
p03145 | u342051078 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['c,b,a = map(int, input().split())\nprint(a*c)', 'c,a,b = map(int, input().split())\nprint(a*c/2)', 'c,a,b = map(int, input().split())\nprint(a*c)', 'c,a,b = map(int, input().split())\nprint(int(a*c/2))'] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s299776126', 's759292648', 's940463869', 's179729951'] | [2940.0, 2940.0, 2940.0, 2940.0] | [18.0, 17.0, 18.0, 17.0] | [44, 46, 44, 51] |
p03145 | u343671593 | 2,000 | 1,048,576 | There is a right triangle ABC with ∠ABC=90°. Given the lengths of the three sides, |AB|,|BC| and |CA|, find the area of the right triangle ABC. It is guaranteed that the area of the triangle ABC is an integer. | ['A = map(int,input().split())\nA.remove(max(A))\nprint(0.5*(A[0])*(A[1]))', 'A = map(int,input().split())\nprint(0.5*A[0]*A[1])', 'A = list(map(int,input().split()))\nprint(0.5*A[0]*A[1])', 'A = map(int,input().split())\nsort(A)\nprint(0.5*A[0]*A[1])', 'A = list(map(int,input().split()))\nprint(A[0]*A[1]//2)'] | ['Runtime Error', 'Runtime Error', 'Wrong Answer', 'Runtime Error', 'Accepted'] | ['s084987447', 's310536970', 's650602752', 's826695058', 's427563834'] | [2940.0, 2940.0, 2940.0, 2940.0, 2940.0] | [17.0, 17.0, 17.0, 17.0, 17.0] | [70, 49, 55, 57, 54] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.