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(int((1/2)*a*b)) | 23 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a*b*c/max(a,b,c)/2)) | 25 |
Project_CodeNet | 2,019 | #17:40
a,b,c = map(int,input().split())
print(a*b//2) | 21 |
Project_CodeNet | 2,020 | 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) | 20 |
Project_CodeNet | 2,020 | AB,BC,CA=map(int,input().split())
print((BC*AB)//2) | 20 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,019 | h, w, n = map(int, input().split())
print(int(h*w/2)) | 20 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
short = min(a,b,c)
lon = max(a,b,c)
mid = a + b + c - lon - short
print((short*mid)//2) | 47 |
Project_CodeNet | 2,019 | ab, bc, ca = [int(i) for i in input().split(' ')]
print(int(ab*bc/2)) | 27 |
Project_CodeNet | 2,019 | a,b,c=map(int,input().split())
print(int(min(a*b,b*c,c*a)/2)) | 22 |
Project_CodeNet | 2,020 | x, y, z = map(int,input().split())
print(int((x*y/2)))
| 20 |
Project_CodeNet | 2,019 | c, a, b = map(int, input().split())
print(a * c // 2)
| 21 |
Project_CodeNet | 2,020 | ab, bc, ca = [int(x) for x in input().split()]
print(ab * bc // 2) | 25 |
Project_CodeNet | 2,019 | a, b, c = (int(i) for i in input().split(" "))
print(int(a * b / 2))
| 27 |
Project_CodeNet | 2,019 | def IL(): return list(map(int,input().split()))
def SL(): return input().split()
def I(): return int(input())
def S(): return input()
a=IL()
a.sort()
print(int(a[0]*a[1]*0.5)) | 53 |
Project_CodeNet | 2,020 | a = sorted(list(map(int, input().split())))
print(a[0]*a[1]//2)
| 23 |
Project_CodeNet | 2,019 | edge = [int(i) for i in input().split()]
edge.sort()
print(int(edge[0]*edge[1]/2)) | 28 |
Project_CodeNet | 2,020 | def main():
from sys import stdin
r = stdin.readline()[:-1]
#r = stdin.readlines()
a, b, c = map(int, r.split())
print(a*b//2)
if __name__ == '__main__':
main()
| 57 |
Project_CodeNet | 2,020 | ab , bc ,ca =map(int,input().split())
s=int(ab*bc/2)
print(s) | 23 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(BC * AB // 2)
| 22 |
Project_CodeNet | 2,019 | AB, BC, CA = list(map(int,input().split()))
print(int(AB*BC/2)) | 22 |
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())
T = (A + B + C) / 2
S = (T * (T - A) * (T - B) * (T - C)) ** (1/2)
print(int(S)) | 58 |
Project_CodeNet | 2,019 |
#import numpy as np
#N=int(input())
A,B,C=list(map(int,input().split()))
s=(A+B+C)/2
ans=(s*(s-A)*(s-B)*(s-C))**(1/2)
print(int(ans))
| 51 |
Project_CodeNet | 2,019 | x, y, z = map(int,input().split())
print(x * y // 2)
| 20 |
Project_CodeNet | 2,019 | ab,bc,ca=map(int,input().split())
print(int(ab*bc*(1/2))) | 22 |
Project_CodeNet | 2,019 | u,n,k = [int(i) for i in input().split()]
print(int(u * n * 0.5)) | 27 |
Project_CodeNet | 2,019 | L = list(map(int, input().split()))
L.sort()
Area = int(L[0]*L[1]/2)
print(Area) | 30 |
Project_CodeNet | 2,019 | l = list(map(int, input().split()))
l.sort()
print(int((l[0]*l[1])/2)) | 26 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int, input().split())
ret = ab*bc//2
print(ret) | 24 |
Project_CodeNet | 2,019 | inp = input().split(" ")
a = int(inp[0])
b = int(inp[1])
print(int(a*b/2)) | 28 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(a * b * c // max(a,b,c) // 2) | 29 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
if __name__ == '__main__':
a, b, c = map(int, input().split(' '))
print(a * b // 2)
| 41 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
ans = a * b / 2
print(int(ans))
| 26 |
Project_CodeNet | 2,019 | line = list( map(int, input().split()))
line.sort()
print( "{:d}".format( int(line[0] * line[1] / 2)) ) | 37 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(ab * bc // 2)
| 21 |
Project_CodeNet | 2,019 | import math
a,b,c = map(int,input().split())
print(math.floor(a*b/2)) | 21 |
Project_CodeNet | 2,019 | a=list(map(int,input().split()))
a.sort()
print(a[0]*a[1]//2)
| 23 |
Project_CodeNet | 2,019 | a=list(map(int,input().split()))
a.sort()
print(a[0]*a[1]//2) | 23 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int, input().split())
print(int(ab * bc / 2)) | 22 |
Project_CodeNet | 2,019 | x, y, z = map(int, input().split())
print(int(x * y / 2))
| 22 |
Project_CodeNet | 2,020 | a = list(map(int, input().split()))
print(int(a[0]*a[1]/2)) | 23 |
Project_CodeNet | 2,019 | list1 = [int(a) for a in input().split()]
list1_0 = list1[0] #AB
list1_1 = list1[1] #BC
print(int(list1_0 * list1_1 / 2))
| 55 |
Project_CodeNet | 2,019 | L = list(map(int, input().split()))
L.sort()
print(int(L[0] * L[1] / 2)) | 28 |
Project_CodeNet | 2,019 | if __name__ == "__main__":
AB, BC, CA = tuple(map(int, input().split(" ")))
if AB ** 2 + BC ** 2 == CA ** 2:
print(AB * BC // 2)
elif AB ** 2 + CA ** 2 == AB ** 2:
print(AB * CA // 2)
else:
print(BC * CA // 2)
| 92 |
Project_CodeNet | 2,019 | a=list(map(int,input().split()))
a.sort()
print(a[0]*a[1]//2) | 23 |
Project_CodeNet | 2,019 | import math
a = list(map(int, input().split()))
s = sum(a) / 2
print(int(math.sqrt(s*(s-a[0])*(s-a[1])*(s-a[2]))))
| 46 |
Project_CodeNet | 2,020 | AB, BC, CA = map(int, input().split())
print(int((BC*AB)/2))
| 22 |
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())
s = ( (a+b+c)*(b+c-a)*(a+b-c)*(a+c-b) ) ** (1/2) // 4
print(int(s)) | 48 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,019 | l = list(map(int,input().split()))
l.sort()
print(l[0]*l[1]//2) | 24 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int,input().split())
ans = int((ab*bc)/2)
print(ans) | 25 |
Project_CodeNet | 2,019 | L = [int(x) for x in input().split()]
L.sort
S = (L[0]*L[1])//2
print(S) | 33 |
Project_CodeNet | 2,020 | a,b,c = map(int, input().split())
print(int(a*b*0.5)) | 20 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(ab*bc//2)
| 20 |
Project_CodeNet | 2,019 | x,y,z = map(int,input().split())
ans = int((x*y)/2)
print(ans) | 22 |
Project_CodeNet | 2,019 | A, B, C = map(int, input().split())
print(min(A * B, B * C, C * A) // 2)
| 31 |
Project_CodeNet | 2,019 | #116a
a,b,c=map(int,input().split())
print((a*b)//2) | 21 |
Project_CodeNet | 2,020 | def main():
#n = int(input())
#s = input()
#s = input().split()
a,b,c = list(map(int,input().split()))
#a = [input() for i in range(n)]
#a = [int(input()) for i in range(n)]
#a = [input().split() for i in range(n)]
#a = [list(map(int,input().split())) for i in range(n)]
ans = 0
count = 0
lis = []
... | 131 |
Project_CodeNet | 2,019 | import math
x = list(map(int,input().split()))
print(math.ceil(x[0]*x[1]/2)) | 25 |
Project_CodeNet | 2,019 | line = input().split()
w = int(line[0]) * int(line[1]) // 2
print(w)
| 26 |
Project_CodeNet | 2,020 | a,b,c = [int(i) for i in input().split()]
print(a*b//2) | 21 |
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())
print(int(a * b / 2)) | 22 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2)
| 21 |
Project_CodeNet | 2,020 | # 初期入力
import sys
input = sys.stdin.readline
a = list(map(int, input().split()))
a.sort()
ans =a[0] *a[1] //2
print(ans) | 46 |
Project_CodeNet | 2,019 | from sys import stdin
abc = [int(i) for i in stdin.readline().rstrip().split(" ")]
s = sum(abc) / 2
print(int((s*(s-abc[0])*(s-abc[1])*(s-abc[2]))**(1/2))) | 63 |
Project_CodeNet | 2,019 | x = list(map(int,input().split()))
print(int(sorted(x)[0]*sorted(x)[1]/2)) | 23 |
Project_CodeNet | 2,019 | a, b, c= input().split()
a, b, c = int(a), int(b), int(c)
if a>b and a>c:
print(int((1/2 * b * c)))
if b>a and b>c:
print(int((1/2 * a * c)))
else:
print(int((1/2 * a *b))) | 79 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
t = max(a,max(b,c))
print((a*b*c)//(2*t)) | 31 |
Project_CodeNet | 2,020 | a, b, c = map(int,input().split())
print (int((a * b) / 2))
| 24 |
Project_CodeNet | 2,019 | def main():
a, b, c = map(int, input().split())
print(a * b //2)
return
main() | 30 |
Project_CodeNet | 2,020 | #!/usr/bin/env python3
a, b, c = map(int, input().split())
print(a*b//2)
| 26 |
Project_CodeNet | 2,020 | X,Y,Z=map(int,input().split())
print(min(((X*Y)//2),(X*Z//2),(Y*Z//2))) | 31 |
Project_CodeNet | 2,019 | [c,b,a] = [int(i) for i in input().split()]
print(int(c*b/2)) | 23 |
Project_CodeNet | 2,020 | #ABC-117-A
lengths = sorted(list(map(int, input().split())))
print(lengths[0] * lengths[1] // 2) | 33 |
Project_CodeNet | 2,019 | line = input()
info = results = [int(i) for i in line.split()]
s = info[0]*info[1]/2
print(int(s)) | 34 |
Project_CodeNet | 2,019 | a, b, c = input().split()
print((int(a) * int(b)) // 2) | 23 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().replace('|', '').split())
print((ab * bc) // 2)
| 27 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print((a * b) // 2) | 23 |
Project_CodeNet | 2,019 | A=list(map(int,input().split()))
A.sort()
print(int(A[0]*A[1]/2))
| 23 |
Project_CodeNet | 2,019 | import math
a,b,c = map(int,input().split())
result = (a*b)/2
print(math.floor(result))
| 26 |
Project_CodeNet | 2,020 | l = sorted(list(map(int, input().split())))
print((l[0] * l[1]) // 2) | 27 |
Project_CodeNet | 2,019 | def main():
a, b, c = map(int, input().split())
print(int(a * b / 2))
if __name__ == '__main__':
main()
| 38 |
Project_CodeNet | 2,020 | a = sorted([int(x) for x in input().split()])
print(a[0] * a[1] // 2) | 28 |
Project_CodeNet | 2,020 | ab,bc,ca=map(int,input().split())
print((ab*bc)//2) | 20 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
area = 0.5 * a * b
print(int(area))
| 28 |
Project_CodeNet | 2,019 | a, b, c = list(map(int, input().split()))
print(int(a*b/2))
| 21 |
Project_CodeNet | 2,020 | from math import sqrt
ab, bc, ca = map(int, input().split())
l = [ab, bc, ca]
s = sum(l) // 2
print(int(sqrt(s * (s - ab) * (s - bc) * (s - ca)))) | 58 |
Project_CodeNet | 2,019 | l=list(map(int,input().split()))
l.sort()
print(int(0.5*l[0]*l[1])) | 25 |
Project_CodeNet | 2,019 | import math
AB, BC, CA = map(int, input().split())
s = (AB + BC + CA) / 2
print(int(math.sqrt(s* (s - AB) * (s - BC) * (s - CA)))) | 52 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(AB * BC //2) | 21 |
Project_CodeNet | 2,020 | from collections import deque
from collections import Counter
from itertools import product, permutations,combinations
from operator import itemgetter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right, bisect
#pypyではscipy, numpyは使えない
#from scipy.sparse.csgraph import shortest_path, floyd_... | 224 |
Project_CodeNet | 2,020 | # coding: utf-8
import sys
sr = lambda: sys.stdin.readline().rstrip()
ir = lambda: int(sr())
lr = lambda: list(map(int, sr().split()))
a, b, c = lr()
answer = a * b // 2
print(answer)
| 59 |
Project_CodeNet | 2,020 | l = sorted(list(map(int,input().split())))
print(l[0]*l[1]//2)
| 22 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(ab * bc // 2)
| 21 |
Project_CodeNet | 2,019 | AB, BC, CA = [int(abc) for abc in input().split()]
print(int(AB*BC/2)) | 27 |
Project_CodeNet | 2,019 | a, b, _ = map(int, input().split())
print(int(a * b / 2)) | 22 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.