Source stringclasses 1
value | Date int64 2.01k 2.02k | Text stringlengths 22 783k | Token_count int64 20 394k |
|---|---|---|---|
Project_CodeNet | 2,019 | import math
a,b,c = map(int,input().split())
print(math.floor(a*b/2)) | 21 |
Project_CodeNet | 2,019 | #!/mnt/c/Users/moiki/bash/env/bin/python
a,b,c = list(map(int, input().split()))
print(a*b//2)
| 30 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print((a*b)//2) | 20 |
Project_CodeNet | 2,019 | c, a, _ = map(int, input().split())
print(int(c * a / 2))
| 22 |
Project_CodeNet | 2,019 | a, b, c = list(map(int, input().split()))
print(int(a*b/2)) | 22 |
Project_CodeNet | 2,020 | L = list(sorted(map(int, input().split())))
print(L[0] * L[1] // 2)
| 25 |
Project_CodeNet | 2,020 | AB, BC, CA = map(int, input().split())
print((AB * BC) // 2) | 23 |
Project_CodeNet | 2,020 | AB, BC, CA = map(int, input().split())
print(AB * BC // 2)
| 22 |
Project_CodeNet | 2,019 | a,b, c = map(int, input().split())
S=a*b/2
print(int(S)) | 22 |
Project_CodeNet | 2,020 | T = list(map(int, input().split()))
T.sort()
x, y = T[:2]
print(x * y // 2) | 29 |
Project_CodeNet | 2,019 | a, b, _ = sorted(map(int, input().split()))
print(a * b // 2) | 22 |
Project_CodeNet | 2,019 | a,b,c = map(int, input().split())
print(int(a*b*0.5)) | 20 |
Project_CodeNet | 2,019 | inline = list(map(int,input().split()))
sortinline = sorted(inline)
ans = sortinline[0] * sortinline[1] * 0.5
print(int(ans)) | 39 |
Project_CodeNet | 2,020 | x, y, z = map(int, input().split())
print(x * y // 2)
| 21 |
Project_CodeNet | 2,019 | abc = list(map(int,input().split()))
abc.sort()
abc.pop()
print(int(abc[0] * abc[1] / 2)) | 31 |
Project_CodeNet | 2,019 | AB,BC,AC = list(map(int,input().split()))
print(int(AB * BC / 2)) | 23 |
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())
arr=[a,b,c]
arr=sorted(arr)
print(int(arr[0]*arr[1]/2)) | 33 |
Project_CodeNet | 2,019 | a, b, c = map(int,input().split())
print(int(a * b / 2)) | 21 |
Project_CodeNet | 2,020 | X = list(map(int, input().split()))
X.sort()
print(X[0]*X[1]//2) | 25 |
Project_CodeNet | 2,020 | import sys
input = lambda: sys.stdin.readline().rstrip()
A, B, C = map(int, input().split())
print(A*B//2) | 32 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int,input().split())
print(ab * bc // 2) | 20 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a * b / 2))
| 22 |
Project_CodeNet | 2,020 | def main():
ab, bc, ca = map(int, input().split())
ans = ab * bc // 2
print(ans)
if __name__ == "__main__":
main()
| 42 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
area = int(1/2*a*b)
print(area) | 26 |
Project_CodeNet | 2,020 | # 数値の取得
bottom,height,hypotenuse = map(int,input().split())
# 面積を出力
area = int(bottom * height / 2)
print(area) | 44 |
Project_CodeNet | 2,020 | AB,BC,CA = map(int, input().split())
print(AB*BC//2) | 21 |
Project_CodeNet | 2,019 | abc = list(map(int, input().split()))
print(abc[0] * abc[1] // 2) | 25 |
Project_CodeNet | 2,019 | AB,BC,AC = map(int,input().split())
print(abs(AB*BC)//2) | 21 |
Project_CodeNet | 2,019 | ab, bc, ac = [int(x) for x in input().split()]
print(int((ab*bc)/2)) | 26 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(int(ab * bc / 2))
| 22 |
Project_CodeNet | 2,019 | import math
def func():
str = input()
x, y, z = str.split()
x = int(x)
y = int(y)
z = int(z)
print(int((x*y)/2))
if __name__ == "__main__":
func()
| 59 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(int(ab * bc / 2)) | 22 |
Project_CodeNet | 2,019 | # Right Triangle
ab, bc, ca = map(int, input().strip().split())
print(int(ab*bc/2)) | 27 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
S = int(ab * bc / 2)
print(S) | 26 |
Project_CodeNet | 2,019 | print((lambda l:l[0]*l[1]//2)(list(map(int,input().split()))))
| 23 |
Project_CodeNet | 2,019 | lst = list(map(int,input().split()))
h = lst[0]
b = lst[1]
print((h*b)//2) | 28 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int,input().split())
print(int(ab*bc/2)) | 20 |
Project_CodeNet | 2,019 | AB, BC, CA = input().split()
print(int(int(AB) * int(BC) / 2)) | 25 |
Project_CodeNet | 2,020 | a,b,c=map(int,input().split())
res = int(a*b/2)
print(res) | 21 |
Project_CodeNet | 2,019 | import collections
import math
import re
import numpy
def ai():return input()#s
def a():return int(input())#a,n or k
def ma():return map(int, input().split())#a,b,c,d or n,k
def ms():return map(str, input().split())#,a,b,c,d
def lma():return list(map(int, input().split()))#x or y
def lms():return list(map(str, input().... | 179 |
Project_CodeNet | 2,020 | [A,B,C] = list(map(int,input().split()))
print(int(0.5*A*B))
| 21 |
Project_CodeNet | 2,020 | a, b, c = [int(x) for x in input().split()]
print(a * b // 2) | 25 |
Project_CodeNet | 2,020 | abc = sorted([int(i) for i in input().split()])
print(int(abc[0] * abc[1] / 2))
| 31 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a*b/2)) | 20 |
Project_CodeNet | 2,020 | arr = list(map(int,input().split()))
print(int(arr[0]*arr[1]*0.5))
| 23 |
Project_CodeNet | 2,019 | sides = list(map(int,input().split()))
s1,s2 = sorted(sides)[:2]
print(int(s1*s2/2)) | 30 |
Project_CodeNet | 2,019 | def main():
A = list(map(int,input().split()))
A.remove(max(A))
print(int(A[0]*A[1]/2))
main() | 34 |
Project_CodeNet | 2,019 | (ab, bc, cd) = map(int, input().split())
print(int((ab * bc) / 2)) | 25 |
Project_CodeNet | 2,020 | [A,B,C] = list(map(int,input().split()))
print(int(A*B*0.5))
| 21 |
Project_CodeNet | 2,019 | lst = list(map(int, input().split()))
lst.sort()
print(int(lst[0]*lst[1]*1/2)) | 27 |
Project_CodeNet | 2,019 | (a, b, c) = map(int, input().split(' '))
if a*a + b*b == c*c:
print(a*b//2)
elif b*b + c*c == a*a:
print(b*c//2)
elif c*c + a*a == b*b:
print(c*a//2)
| 67 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(int((AB * BC) / 2)) | 24 |
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())
print(min(a*b//2,b*c//2,a*c//2)) | 25 |
Project_CodeNet | 2,019 | e = sorted(list(map(int, input().split())))
print(e[0]*e[1]//2)
| 24 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(int(a*b*0.5)) | 22 |
Project_CodeNet | 2,020 | l=list(map(int,input().split()))
l.sort()
s=(l[0]*l[1])//2
print(s) | 27 |
Project_CodeNet | 2,019 | a,b,c=map(int,input().split())
S=a*b/2
print(int(S)) | 20 |
Project_CodeNet | 2,020 | abc=sorted(list(map(int,input().split())))
print(abc[0]*abc[1]//2) | 23 |
Project_CodeNet | 2,020 | tmp = input().split(" ")
print(int(int(tmp[0])*int(tmp[1])/2)) | 21 |
Project_CodeNet | 2,019 | A, B, C = (int(i) for i in input().split())
print(A*B//2) | 23 |
Project_CodeNet | 2,019 | a, b, c = [int(_) for _ in input().split()]
print(int(a * b / 2))
| 25 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(BC*AB//2) | 21 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
"""
A - Right Triangle
https://atcoder.jp/contests/abc116/tasks/abc116_a
"""
import sys
def solve(a, b, c):
s = (a + b + c) / 2
return int((s*(s-a)*(s-b)*(s-c))**0.5)
def main(args):
a, b, c = map(int, input().split())
ans = solve(a, b, c)
print(ans)
if __name__ == '__m... | 124 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
menseki = a * b // 2
print(menseki)
| 29 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,019 | a = list(map(int, input().split()))
print(int(a[0]*a[1]/2)) | 22 |
Project_CodeNet | 2,019 | a,b,c = [int(_) for _ in input().split()]
print(a*b//2)
| 20 |
Project_CodeNet | 2,019 | ab,bc,ca=map(int,input().split())
print(int(ab*bc/2)) | 20 |
Project_CodeNet | 2,020 | a,b,c = map(int,input().split())
print(int(0.5*a*b*c//max(a,b,c))) | 25 |
Project_CodeNet | 2,019 | AB,BC,CA=list(map(int,input().split()))
answer=AB*BC//2
print(answer) | 23 |
Project_CodeNet | 2,019 | sides = sorted(map(int, input().split()))
a, b, _ = sides
print(a * b // 2)
| 27 |
Project_CodeNet | 2,019 | abc = sorted(list(map(int, input().strip().split())))
print(abc[0] * abc[1] // 2) | 28 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
import math
#入力
#S = str(input())
#N, i = map(int, input().split())
#K = int(input())
A, B, C = map(int, input().split())
print (int((A*B)/2)) | 61 |
Project_CodeNet | 2,019 | s=list(map(int,input().split()));s.sort();print(s[0]*s[1]//2) | 23 |
Project_CodeNet | 2,019 | a = list(map(int, input().split()))
a = sorted(a)
ans = (a[0] * a[1])/2
print(int(ans)) | 33 |
Project_CodeNet | 2,019 | AB, BC, CD = map(int, input().split())
print (round(AB * BC / 2)) | 24 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a*b/2)) | 20 |
Project_CodeNet | 2,019 |
# coding: utf-8
# In[6]:
l = [int(x) for x in input().split()]
# In[7]:
print(int(l[0]*l[1]/2))
| 44 |
Project_CodeNet | 2,019 | AB, BC, CA = [int(data) for data in input().split()]
print(int(AB*BC / 2)) | 27 |
Project_CodeNet | 2,019 | list1 = [i for i in input().split()]
n1 = int(list1[0])
n2 = int(list1[1])
n3 = int(list1[2])
ans = int((1/2)*n1*n2)
print (ans)
| 56 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(int(AB*BC/2))
| 22 |
Project_CodeNet | 2,020 | l = list(map(int, input().split()))
l.sort()
print(l[0] * l[1] // 2)
| 27 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2)
| 21 |
Project_CodeNet | 2,019 | c, a, b = map(int, input().split())
r = a*c//2
print(r)
| 23 |
Project_CodeNet | 2,019 | AB,BC,CA= map(int,input().split())
print(AB*BC//2) | 20 |
Project_CodeNet | 2,019 | a = [ int(i) for i in input().split() ]
print(a[0] * a[1] // 2 )
| 28 |
Project_CodeNet | 2,019 | # coding: utf-8
# our code here!
x,y,z = list(map(int,input().split(" ")))
print(int(y*x*0.5)) | 34 |
Project_CodeNet | 2,019 | a, b, c = list(map(int, input().split()))
print(a*b//2) | 20 |
Project_CodeNet | 2,019 | a, b, c = sorted(map(int, input().split()))
print(a*b//2)
| 20 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,020 | ab,bc,ca = map(int,input().split())
import math
print(math.floor(ab * bc / 2)) | 25 |
Project_CodeNet | 2,019 | n1, n2, n3 = list(map(int, input().split()))
print(int(n1*n2/2)) | 27 |
Project_CodeNet | 2,020 | a,b,c = map(int, input().split())
print(min(a*b//2, b*c//2, c*a//2)) | 28 |
Project_CodeNet | 2,019 | p, q, r = map(int, input().split())
print(int(p*q/2)) | 20 |
Project_CodeNet | 2,019 | #coding:utf-8
AB, BC, CA = map(int, input().split())
print (int((AB*BC) / 2)) | 31 |
Project_CodeNet | 2,019 | hs = list(map(int, input().split()))
hs.sort()
print(hs[0] * hs[1] // 2)
| 28 |
Project_CodeNet | 2,020 | a,b,c=map(int,input().split())
d=min(a*b/2,a*c/2,b*c/2)
print(int(d)) | 29 |
Project_CodeNet | 2,020 | a,b,_=[int(i) for i in input().split()]
print(a*b//2) | 20 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.