Source stringclasses 1
value | Date int64 2.01k 2.02k | Text stringlengths 22 783k | Token_count int64 20 394k |
|---|---|---|---|
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((min(a)*(sum(a)-min(a)-max(a))//2)) | 25 |
Project_CodeNet | 2,019 | import math
x = input().split()
a,b,c = int(x[0]),int(x[1]),int(x[2])
s = (a+b+c)/2
ans = math.sqrt(s*(s-a)*(s-b)*(s-c))
print(int(ans)) | 56 |
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(a * b // 2)
| 21 |
Project_CodeNet | 2,019 | import math
# inputList=[]
# for i in range(6):
# inputNum = input()
# inputList.append(inputNum)
inputa = input().split()
# inputb = input().split()
a = int(inputa[0])
b = int(inputa[1])
c = int(inputa[2])
# x = int(inputb[0])
# y = int(inputb[1])
print(int(float(a)*float(b)/2)) | 97 |
Project_CodeNet | 2,019 | x = list(map(int, input().split()))
x.sort()
print(x[0] * x[1] // 2) | 27 |
Project_CodeNet | 2,020 | AB,BC,CA = map(int,input().split())
print((AB*BC)//2) | 20 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(int(ab * bc / 2))
| 22 |
Project_CodeNet | 2,020 | a = list(map(int, input().split()))
print(a[0]*a[1]//2) | 22 |
Project_CodeNet | 2,019 | x, y, z = map(int, input().split())
print(x * y // 2)
| 21 |
Project_CodeNet | 2,019 | a,b,c = map(int, input().split())
list=[]
list.append(a)
list.append(b)
list.append(c)
list.sort()
x = list[0]*list[1]/2
print(int(x)) | 44 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(int(ab*bc/2))
| 21 |
Project_CodeNet | 2,020 | import sys
import math
import bisect
def main():
a, b, c = map(int, input().split())
print(a * b // 2)
if __name__ == "__main__":
main()
| 47 |
Project_CodeNet | 2,020 | import heapq
def mium():
hen = list(map(int, input().split()))
hens = heapq.nsmallest(2, hen)
print(int(hens[0]*hens[1]/2))
if __name__ == "__main__":
mium() | 58 |
Project_CodeNet | 2,020 | ab, bc, ca = list(map(int,input().split()))
print(int(bc * ab /2)) | 21 |
Project_CodeNet | 2,019 | a = list(map(int, input().split()))
a.sort()
print(a[0]*a[1]//2)
| 25 |
Project_CodeNet | 2,020 | a,b,c = map(int,input().split())
print(a*b*c//max(a,b,c)//2) | 22 |
Project_CodeNet | 2,019 | #!/usr/bin/env python3
a,b,c=map(int,input().split())
print(a*b//2) | 23 |
Project_CodeNet | 2,019 | l = [int(i) for i in input().split(" ")]
print(int((l[0]*l[1])/2))
| 28 |
Project_CodeNet | 2,019 | A = list( map( int, input().split()))
print( A[0]*A[1]//2)
| 25 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
s = (a + b + c)/ 2
print(int((s*(s-a)*(s-b)*(s-c))**(1/2))) | 44 |
Project_CodeNet | 2,020 | import sys
import math
import itertools
import bisect
from copy import copy
from collections import deque,Counter
from decimal import Decimal
def s(): return input()
def i(): return int(input())
def S(): return input().split()
def I(): return map(int,input().split())
def L(): return list(input().split())
def l(): retur... | 135 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(AB * BC // 2)
| 22 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(int(ab*bc/2)) | 21 |
Project_CodeNet | 2,020 | #116_A
X,Y,Z=map(int,input().split())
print(X*Y//2) | 21 |
Project_CodeNet | 2,020 | ab,bc,ca = map(int, input().split())
print(ab*bc//2) | 20 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
from sys import stdin
# import numpy as np
s_in = lambda: stdin.readline()[:-1] # s = s_in()
d_in = lambda: int(stdin.readline()) # N = d_in()
ds_in = lambda: list(map(int, stdin.readline().split())) # List = ds_in()
a, b, c = ds_in()
print(a * b // 2)
| 91 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
ans = ab * bc // 2
print(ans) | 25 |
Project_CodeNet | 2,019 | AB,BC,CA = map(int,input().split())
print(int(AB*BC/2)) | 21 |
Project_CodeNet | 2,019 | a,b,c = map(int,input().split())
if max(a,b,c) == c:
print(a*b//2)
elif max(a,b,c) == a:
print(b*c//2)
else:
print(a*c//2) | 51 |
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(int(a*b/2))
| 20 |
Project_CodeNet | 2,019 | # coding: utf-8
AB, BC, CA = map(int, input().split())
print(int(AB * BC / 2))
| 30 |
Project_CodeNet | 2,020 | import sys
sys.setrecursionlimit(10**9)
def mi(): return map(int,input().split())
def ii(): return int(input())
def isp(): return input().split()
def deb(text): print("-------\n{}\n-------".format(text))
INF=10**20
def main():
x,y,z=mi()
print(x*y//2)
if __name__ == "__main__":
main() | 88 |
Project_CodeNet | 2,019 | a=list(map(int,input().split()))
print('{:.0f}'.format(a[0]*a[1]/2)) | 25 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
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(' '))
ret = a * b // 2
print(ret)
| 26 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a*b/2)) | 20 |
Project_CodeNet | 2,019 | a, b, c = [int(n) for n in input().split()]
print(a * b // 2) | 25 |
Project_CodeNet | 2,019 | x = list(map(int, input().split()))
x = sorted(x)
print(int(x[0]*x[1]/2))
| 27 |
Project_CodeNet | 2,020 | import sys
input = sys.stdin.readline
def main():
AB, BC, CA = map(int, input().split())
ans = AB * BC // 2
print(ans)
if __name__ == "__main__":
main()
| 51 |
Project_CodeNet | 2,019 | (a, b, c) = list(map(int, input().split()))
print(a*b//2)
| 22 |
Project_CodeNet | 2,019 | A, B, C = map(int, input().split())
maxside = max(A, B, C)
print(int(A * B * C / maxside / 2)) | 37 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
a = int(AB * BC / 2)
print(str(a)) | 28 |
Project_CodeNet | 2,020 | n = list(map(int,input().split()))
n.sort()
print(n[0]*n[1]//2) | 24 |
Project_CodeNet | 2,020 | A,B,C = map(int,input().split())
if max(A,B,C)==A:
print(int(B*C/2))
elif max(A,B,C)==B:
print(int(A*C/2))
elif max(A,B,C)==C:
print(int(A*B/2))
| 60 |
Project_CodeNet | 2,019 | s=list(input().split())
a=int(s[0])
b=int(s[1])
D=int(a*b/2)
print(D) | 28 |
Project_CodeNet | 2,019 | import sys
A,B,C = [int(n) for n in input().split()]
# N = int(input())
# A = [0]*N
# for i in range(N):
# A[i] = int(input())
# S = str(input())
# T = str(input())
print(int(A*B/2))
| 67 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int, input().split())
print(int((ab*bc)/2)) | 22 |
Project_CodeNet | 2,019 | A = list(map(int, input().split()))
A.sort()
print(int(A[0]*A[1]*0.5)) | 27 |
Project_CodeNet | 2,019 | AB, BC, _ = map(int, input().split())
print((AB*BC)//2)
| 21 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(int(AB*BC//2)) | 22 |
Project_CodeNet | 2,020 | a = list(map(int,input().split()))
a.sort()
print((a[0]*a[1])//2) | 25 |
Project_CodeNet | 2,020 | # Python3 (3.4.3)
import sys
input = sys.stdin.readline
# -------------------------------------------------------------
# function
# -------------------------------------------------------------
# -------------------------------------------------------------
# main
# -------------------------------------------------... | 58 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(int(ab * bc * 0.5)) | 24 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(ab * bc // 2) | 21 |
Project_CodeNet | 2,019 | AB,BC,CA=map(int,input().split())
print(AB*BC//2) | 20 |
Project_CodeNet | 2,019 | a, b, c = list(map(int, input().split()))
print(round(a*b/2)) | 21 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int, input().split())
ans = int(( ab * bc ) / 2)
print(ans) | 28 |
Project_CodeNet | 2,019 | a = list(map(int,input().split()))
sorted(a)
print(int(a[0]*a[1]/2)) | 24 |
Project_CodeNet | 2,019 | a, b, _ = map(int, input().split())
print(int(a * b / 2)) | 22 |
Project_CodeNet | 2,019 | ab, bc, ac = map(int, input().split(' '))
print(int(ab * bc * 0.5))
| 25 |
Project_CodeNet | 2,020 | # coding: utf-8
(ab,bc,ca) = sorted(map(int, input().rstrip().split()))
print(int(ab*bc/2)) | 32 |
Project_CodeNet | 2,019 | def main():
C, A, B = map(int, input().split())
print(int(C*A/2))
main()
| 27 |
Project_CodeNet | 2,019 | # coding: utf-8
AB,BC,AC = map(int, input().split())
print(AB*BC//2) | 28 |
Project_CodeNet | 2,020 | import sys
sys.setrecursionlimit(10**9)
INF=10**18
MOD=10**9+7
def input():
return sys.stdin.readline().rstrip()
def main():
A=list(map(int,input().split()))
print(A[0]*A[1]//2)
if __name__ == '__main__':
main()
| 74 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(AB*BC//2) | 21 |
Project_CodeNet | 2,019 | a, b, c = map(int,input().split())
print(a * b // 2) | 20 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(ab * bc // 2)
| 21 |
Project_CodeNet | 2,019 | a,b,c = list(map(int, input().split(' ')))
print (a * b // 2) | 23 |
Project_CodeNet | 2,019 | A = list(map(int, input().split()))
print(int(A[0]*A[1]/2))
| 22 |
Project_CodeNet | 2,019 | d = sorted([i for i in map(int, input().split())])
print(int(d[0] * d[1] / 2)) | 31 |
Project_CodeNet | 2,019 | l = [int(i) for i in input().split()]
print(int(l[0]*l[1]/2))
| 25 |
Project_CodeNet | 2,019 | b, c, _ = map(int, input().split())
print(int(b * c / 2))
| 22 |
Project_CodeNet | 2,019 | L = list(map(int, input().split()))
print(L[0] * L[1] // 2)
| 24 |
Project_CodeNet | 2,020 | A, B, C = map(int, input().split())
print(A * B // 2) | 21 |
Project_CodeNet | 2,020 | import numpy as np
import sys
a, b, c = map(int, input().split())
print(a * b // 2)
| 29 |
Project_CodeNet | 2,019 | *abc, = sorted(map(int, input().split()))
print(abc[0]*abc[1]//2)
| 25 |
Project_CodeNet | 2,019 | T = input().rstrip().split(" ")
#print(T)
AB=int(T[0])
BC=int(T[1])
menseki = (AB * BC )/2
print(int(menseki)) | 42 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
dai = max(a,b,c)
shou = min(a,b,c)
mid = a + b + c - dai - shou
print(shou * mid // 2)
| 51 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
c, b, a = map(int, input().split())
print(int(c * b / 2)) | 30 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(AB*BC//2) | 21 |
Project_CodeNet | 2,019 | ab, bc, ca = [int(_) for _ in input().split()]
print(ab * bc // 2)
| 24 |
Project_CodeNet | 2,019 |
ab, bc, ca = map(int, input().split())
print(int(ab*bc/2)) | 23 |
Project_CodeNet | 2,019 | a,b,c = map(int,input().rstrip().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,019 | arr = [int(x) for x in input().split()]
arr = sorted(arr)
print(arr[0]*arr[1]//2) | 30 |
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,019 | a=sorted(map(int,input().split()))
print(a[0]*a[1]//2) | 21 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(int(AB*BC/2)) | 22 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b//2)
| 20 |
Project_CodeNet | 2,019 | A, B, C = [int(x) for x in input().split()]
A, B = sorted([A, B, C])[:2]
print((A*B)//2)
| 39 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(ab*bc//2)
| 20 |
Project_CodeNet | 2,020 | import math
x, y, z = map(int,input().split())
print(math.floor(y*x/2)) | 23 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a*b/2)) | 20 |
Project_CodeNet | 2,020 | ab,bc,ca=map(int,input().split())
print(int(ab*bc/2)) | 20 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.