Source stringclasses 1
value | Date int64 2.01k 2.02k | Text stringlengths 22 783k | Token_count int64 20 394k |
|---|---|---|---|
Project_CodeNet | 2,019 | AB,BC,CA = [int(x) for x in input().split()]
print(AB*BC//2)
| 25 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b * c // max(a, b, c) // 2) | 31 |
Project_CodeNet | 2,019 | length = sorted(map(int, raw_input().split()))
print length[0]*length[1]/2
| 22 |
Project_CodeNet | 2,020 | k = input().split()
a = k[0]
b = k[1]
c = k[2]
for i in range(len(k)):
k[i] = int(k[i])
h = max(k)
Buf = 1
del k[k.index(h)]
for i in k:
Buf = Buf * int(i)
r = Buf/2
print(int(r)) | 79 |
Project_CodeNet | 2,020 | l = list(map(int,input().split()))
l.remove(max(l))
print(int(l[0]*l[1]/2)) | 26 |
Project_CodeNet | 2,020 | a = list(map(int, input().split()))
a.sort()
print(int(a[0]*a[1]/2)) | 25 |
Project_CodeNet | 2,020 | a = [int(x) for x in input().split()]
a.sort()
print(a[0]*a[1]//2) | 28 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
a,b,c = map(int, input().split())
print(a*b//2)
| 25 |
Project_CodeNet | 2,019 | a,b,c = map(int,input().split())
ans = (a*b)/2
print (int(ans)) | 23 |
Project_CodeNet | 2,020 | edge = list(map(int,input().split()))
edge.sort()
print(edge[0]*edge[1]//2)
| 24 |
Project_CodeNet | 2,020 | import sys
def input(): return sys.stdin.readline().rstrip()
def main():
AB, BC, CA = map(int, input().split())
print(AB * BC // 2)
if __name__ == '__main__':
main()
| 52 |
Project_CodeNet | 2,019 | AB, BC, _ = map(int, input().split())
ans = AB * BC / 2
print(int(ans))
| 26 |
Project_CodeNet | 2,019 | lst = input().split()
print((int(lst[0])*int(lst[1]))//2 ) | 21 |
Project_CodeNet | 2,019 | data = input().split()
ans = (int(data[0]) * int(data[1]))* (1/2)
print(int(ans))
| 30 |
Project_CodeNet | 2,019 | AB,BC,CA = map(int, input().split())
print(int(AB*BC/2)) | 22 |
Project_CodeNet | 2,019 | l=[]
l=input().split(" ")
a = int(l[0])
b = int(l[1])
print((a*b)//2) | 29 |
Project_CodeNet | 2,019 | a,b,c = map(int,input().split())
res = a * b / 2
print(int(res)) | 23 |
Project_CodeNet | 2,019 | nums = sorted(map(int, input().split()))
print(round(nums[0]*nums[1]/2)) | 22 |
Project_CodeNet | 2,020 | A,B,C = map(int,input().split())
array = [A,B,C]
array.sort()
print(int(array[0]*array[1]/2)) | 32 |
Project_CodeNet | 2,019 | l = [int(i) for i in input().split()]
print(int(l[0]*l[1]/2))
| 26 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a * b / 2)) | 22 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
list = sorted([a,b,c])
print(list[0] * list[1] // 2) | 35 |
Project_CodeNet | 2,019 | x, y, z = list(map(int, input().split()))
print(x * y // 2) | 22 |
Project_CodeNet | 2,020 | A = list(map(int, input().split()))
A.sort()
print(A[0]*A[1]*1//2) | 26 |
Project_CodeNet | 2,019 | ab, bc, ca = list(map(int, input().split()))
re = int(ab*bc / 2)
print(re) | 27 |
Project_CodeNet | 2,019 | ABC = list(map(int, input().split()))
ABC.sort()
print("{:.0f}".format(ABC[0] * ABC[1] / 2))
| 34 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
ans = AB * BC // 2
print(ans) | 25 |
Project_CodeNet | 2,019 | nl = lambda: list(map(int, input().split()))
sl = lambda: input().split()
n = lambda: int(input())
s = lambda: input()
AB, BC, CA = nl()
print(AB*BC // 2)
| 50 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,019 | def main():
ab, bc, _ = map(int, input().split())
print(ab * bc // 2)
main()
| 28 |
Project_CodeNet | 2,019 | c, a, b = map(int, input().split())
print(c * a // 2) | 21 |
Project_CodeNet | 2,019 | LL = list(map(int, input().split()))
LL.sort()
R = LL[0] * LL[1] // 2
print(R)
| 31 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(int(a * (b/2))) | 22 |
Project_CodeNet | 2,019 | ab, bc, ca = list(map(int, input().split()))
area_of_triangle = int(round(ab*bc/2))
print(area_of_triangle)
| 31 |
Project_CodeNet | 2,019 | l=list(map(int, input().split()))
result=int(l[0]*l[1]*0.5)
print(result) | 26 |
Project_CodeNet | 2,019 | a,b,c=(int(i) for i in input().split())
t=sorted([a,b,c])
print(int(t[0]*t[1]/2)) | 34 |
Project_CodeNet | 2,019 | A=list(map(int,input().split()))
A.sort()
print(round(A[0]*A[1]/2))
| 23 |
Project_CodeNet | 2,019 | sides = sorted(map(int, input().split()))
print(sides[0] * sides[1] // 2) | 26 |
Project_CodeNet | 2,019 | c,a,b = map(int,input().split())
area = c*a//2
print(area) | 20 |
Project_CodeNet | 2,019 | import sys
input = sys.stdin.readline
def main():
a, b, c = map(int, input().split())
print(a * b // 2)
if __name__ == "__main__":
main()
| 46 |
Project_CodeNet | 2,019 | ab,bc,ca=map(int, input().split())
print(ab*bc//2)
| 20 |
Project_CodeNet | 2,019 | # A
import math
a, b, c = map(int, input().split())
s = (a + b + c)/2
print(int(math.sqrt(s*(s-a)*(s-b)*(s-c)))) | 45 |
Project_CodeNet | 2,019 | a = list(map(int,input().split()))
print(int(a[0]*a[1]/2)) | 21 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
triangle = a * b // 2
print(triangle) | 26 |
Project_CodeNet | 2,019 | a, b, c = map(int,input().split())
print(int(a*b/2)) | 20 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(int(a*b/2)) | 20 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,020 | l = sorted([int(i) for i in input().split()])
print((l[0] * l[1]) // 2) | 29 |
Project_CodeNet | 2,020 | ab,bc,ca = map(int, input().split())
s = ab*bc*0.5
print(int(s)) | 27 |
Project_CodeNet | 2,019 | a,b,c=[int(i) for i in input().split()]
print (int(a*b/2)) | 22 |
Project_CodeNet | 2,019 | l = list(map(int, input().split()))
l = sorted(l)
print(l[0]*l[1]//2) | 27 |
Project_CodeNet | 2,019 | import numpy as np
if __name__ == '__main__':
a,b,c = map(int, input().split())
print(int(a*b/2))
| 33 |
Project_CodeNet | 2,019 | A, B, C = map(int, input().split())
print(int(A*B/2)) | 20 |
Project_CodeNet | 2,020 | def main():
A, B, C = map(int, input().split())
tri = sorted([A, B, C])
print(tri[0]*tri[1]//2)
if __name__ == "__main__":
main() | 53 |
Project_CodeNet | 2,020 | A, B, C = map(int, input().split())
print(int((A*B)/2))
| 21 |
Project_CodeNet | 2,019 | a = list(map(int, input().split()))
a.sort()
print(a[0] * a[1] // 2)
| 27 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(int(AB*BC/2)) | 22 |
Project_CodeNet | 2,019 | AB,BC,CA=map(int,input().split())
s=int(AB*BC/2)
print(s) | 24 |
Project_CodeNet | 2,019 | a, b, c = map(int,input().split())
if a**2 + b**2 == c**2:
print(a*b//2)
elif c**2 + b**2 == a**2:
print(b*c//2)
else:
print(a*c//2) | 61 |
Project_CodeNet | 2,019 | list=list(map(int,input().split()))
print(int(list[0]*list[1]/2)) | 20 |
Project_CodeNet | 2,020 | 直角三角形の三辺 = list(map(int, input().split()))
直角三角形の三辺.sort()
print(直角三角形の三辺[0] * 直角三角形の三辺[1] // 2) | 61 |
Project_CodeNet | 2,019 | L = raw_input()
L = L.split()
for i, val in enumerate(L):
L[i] = int(val)
L.sort()
S = int(L[0] * L[1] / 2)
print(S) | 48 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(int(ab * bc / 2)) | 22 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int,input().split())
print((AB*BC)//2) | 20 |
Project_CodeNet | 2,020 | # input
AB, BC, CA = map(int, input().split())
# check
print(AB * BC // 2) | 28 |
Project_CodeNet | 2,019 | a,b,c = map(int,input().split())
x = max(a,b,c)
ans = (a*b*c)//(x*2)
print(ans) | 32 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
ans = a * b / 2
print(int(ans)) | 26 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a*b*0.5)) | 22 |
Project_CodeNet | 2,019 | import numpy as np
ab, bc, ca = list(map(int, input().split()))
ab = np.clip(ab, 1, 100)
bc = np.clip(bc, 1, 100)
ca = np.clip(ca, 1, 100)
area = ab * bc * 0.5
print(int(area)) | 70 |
Project_CodeNet | 2,019 | a, b, c = list(map(int, input().split()))
print(a*b // 2) | 21 |
Project_CodeNet | 2,019 | import sys
sys.setrecursionlimit(2147483647)
INF=float("inf")
MOD=10**9+7
input=lambda :sys.stdin.readline().rstrip()
def resolve():
A=list(map(int,input().split()))
A.sort()
print(A[0]*A[1]//2)
resolve() | 67 |
Project_CodeNet | 2,019 | h,b,c = map(int,input().split())
sum = h * b /2
print(round(sum),end="") | 26 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int,input().split())
print((ab*bc)//2) | 20 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(a * b // 2)
| 21 |
Project_CodeNet | 2,019 | a, b, c = list(map(int, input().split()))
print(a*b//2) | 20 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b //2) | 20 |
Project_CodeNet | 2,019 | import math
a, b, c = map(int, input().split())
s = (a + b + c)/2
S = math.sqrt(s*(s-a)*(s-b)*(s-c))
print(int(S)) | 46 |
Project_CodeNet | 2,019 | import sys
def input():
return sys.stdin.readline()[:-1]
# N = int(input())
# A = [int(x) for x in input().split()]
# a, b, c = map(int, input().split())
# name1 = str(input())
# alph = {"A": 1, "B": 2, "C": 3, "D": 4, "E": 5}
a,b,c=map(int,input().split())
print(int(a*b/2)) | 106 |
Project_CodeNet | 2,020 | a,b,c = map(int,input().split())
print(min(a,b,c)*(sum([a,b,c])-min(a,b,c)-max(a,b,c))//2)
| 35 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a * b / 2))
| 22 |
Project_CodeNet | 2,019 | arr = list(map(int, input().split()))
arr.sort()
print(arr[0] * arr[1] // 2) | 27 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(ab*bc//2)
| 20 |
Project_CodeNet | 2,020 | l = list(map(int, input().split()))
L = sorted(l)
print(int(L[0]*L[1]/2)) | 27 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(int(ab * bc / 2))
| 22 |
Project_CodeNet | 2,019 | a = sorted(list(map(int, input().split())))
print(int(a[0]*a[1]/2)) | 24 |
Project_CodeNet | 2,019 | ab, bc , ca = map(int,input().split())
print(int(ab*bc/2))
| 20 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2)
| 21 |
Project_CodeNet | 2,019 | abc = input().split()
x = int(abc[0])
y = int(abc[1])
z = int(abc[2])
print((x * y) // 2)
| 40 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print((ab * bc) // 2) | 23 |
Project_CodeNet | 2,019 | AB,BC,CA=map(int,input().split())
print(int(AB*BC*0.5)) | 23 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(int(a * b / 2)) | 22 |
Project_CodeNet | 2,019 | a, b, c = list(map(int, input().split()))
print(int(a*b/2))
| 21 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(ab * bc // 2) | 21 |
Project_CodeNet | 2,020 | a = list(map(int, input().split()))
a = sorted(a)
print((int(a[0]*a[1]/2))) | 28 |
Project_CodeNet | 2,020 | # 116a
def atc_116a(input_value: str) -> int:
tri_length = [int(ai) for ai in input_value.split(" ")]
tri_length.sort()
return int((tri_length[0] * tri_length[1] / 2))
input_value = input()
print(atc_116a(input_value))
| 74 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
# Luis Yoichi Morales January 2019
ab, bc, ca = map(int, raw_input().split())
print ab*bc/2
| 39 |
Project_CodeNet | 2,019 | s=sorted(map(int,input().split()))
print((s[0]*s[1])//2)
| 22 |
Project_CodeNet | 2,019 | x, y, z = sorted(map(int, input().split()))
print((x * y) // 2) | 24 |
Project_CodeNet | 2,019 | import math
a,b,c=map(float,input().split())
t=(a+b+c)/2
S=math.sqrt(t*(t-a)*(t-b)*(t-c))
print(int(S))
| 40 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.