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=[int(a) for a in input().split(" ")]
print(A*B//2) | 22 |
Project_CodeNet | 2,019 | a, b, c = [int(i) for i in input().split()]
print(a * b * c // max(a, b, c) // 2) | 35 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(int(ab * bc / 2))
| 22 |
Project_CodeNet | 2,019 | # -*-coding: utf-8 -*-
a, b, c = map(int, input().split())
print(a*b//2) | 27 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(int(ab*bc//2)) | 21 |
Project_CodeNet | 2,019 | a=sorted(list(map(int,input().split(" "))))
print(a[0]*a[1]//2) | 24 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
ans = ab * bc * 0.5
print(int(ans)) | 28 |
Project_CodeNet | 2,020 | AB, BC, CA = map(int, input().split())
if (1 <= AB & AB <= 100) & (1 <= BC & BC <= 100) & (1 <= CA & CA <= 100):
S = int(AB * BC / 2)
print(S)
| 62 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int,input().split())
print(int((ab*bc)/2)) | 21 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,020 | length = list(map(int, input().split()))
length.sort()
print(int(length[0] * length[1] / 2))
| 28 |
Project_CodeNet | 2,019 | a, b, _= map(int, input().split())
print((a*b)//2) | 20 |
Project_CodeNet | 2,019 | a_list = list(map(int, input().split()))
a_list.sort()
print(int(a_list[0] * a_list[1]/2)) | 30 |
Project_CodeNet | 2,020 | # coding: utf-8
A, B, C = map(int, input().split())
# print(A, B, C)
ans = B * A // 2
print(ans) | 40 |
Project_CodeNet | 2,019 | x,y,z = map(int,input().split())
print( int(x * y / 2) )
| 21 |
Project_CodeNet | 2,020 | ab , bc, ca = input().split()
print(int(int(ab) * int(bc) / 2)) | 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,020 | ab, bc, ca = map(int, input().split())
print(int(ab * bc / 2)) | 22 |
Project_CodeNet | 2,020 | def examA():
L = LI(); L.sort()
ans = L[0]*L[1]//2
print(ans)
return
def examB():
return
def examC():
return
def examD():
return
import sys,copy,bisect,itertools,heapq,math
from heapq import heappop,heappush,heapify
from collections import Counter,defaultdict,deque
def I(): return int(sy... | 251 |
Project_CodeNet | 2,019 | ab, bc, ca = [int(_) for _ in input().split(' ')]
print(ab * bc // 2)
| 26 |
Project_CodeNet | 2,019 | a,b,_ = map(int,input().split())
answer = a*b//2
print(answer) | 20 |
Project_CodeNet | 2,019 | import sys
def parse(inp):
ab,bc,ca=map(int,next(inp).split())
return ab,bc
def main(inp):
ab=inp[0]
bc=inp[1]
return int(ab*bc/2)
print(main(parse(sys.stdin))) | 61 |
Project_CodeNet | 2,019 | A,B, C = (int(_) for _ in input().split())
print(int(A * B / 2))
| 25 |
Project_CodeNet | 2,019 | n = list(map(int,input().split()))
n = sorted(n)
print(int(n[0]*n[1]/2)) | 26 |
Project_CodeNet | 2,019 | import sys
def input(): return sys.stdin.readline().strip()
def main():
ab,bc,_=map(int,input().split())
print(ab*bc//2)
main() | 38 |
Project_CodeNet | 2,019 | a,b,c=map(int,input().split())
print(min(a*b,b*c,c*a)//2) | 21 |
Project_CodeNet | 2,019 | l=list(map(int, input().split()))
l.sort()
print(int(l[0]*l[1]/2)) | 24 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(int(ab*bc/2)) | 21 |
Project_CodeNet | 2,019 | # https://atcoder.jp/contests/abc116/tasks/abc116_a
ab, bc, ca = [int(x) for x in input().split()]
print(ab * bc // 2)
| 43 |
Project_CodeNet | 2,019 | a, b, _ = input().split()
print(int(a) * int(b) // 2) | 22 |
Project_CodeNet | 2,019 | from functools import reduce
from operator import mul
T = [int(x) for x in input().split()]
print(reduce(mul, sorted(T)[0:2]) // 2) | 40 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int,input().split())
print(AB*BC//2) | 20 |
Project_CodeNet | 2,019 | a=list(map(int,input().split()))
a.sort()
print(int(a[0]*a[1]/2)) | 23 |
Project_CodeNet | 2,019 | ls = sorted(map(int, input().split()))
print(ls[0] * ls[1] // 2) | 24 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(int(a*b/2)) | 20 |
Project_CodeNet | 2,019 | x = list(map(int, input().split()))
print(int(x[0] * x[1] / 2))
| 25 |
Project_CodeNet | 2,019 | C, A, B = map(float, input().split())
print(int((1/2)*C*A)) | 23 |
Project_CodeNet | 2,019 | a,b,c = [int(i) for i in input().split()]
print(a * b // 2) | 23 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(AB * BC // 2) | 22 |
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()))
a.sort()
print((a[0] * a[1]) // 2)
| 28 |
Project_CodeNet | 2,020 | arr = []
A, B, C = list(map(int, input().split()))
arr.append(A)
arr.append(B)
arr.append(C)
arr = sorted(arr)
print(int(arr[0]*arr[1]*0.5)) | 48 |
Project_CodeNet | 2,019 | i = list(map(int, input().split()))
Triangle_Area = int((i[0] * i[1]) / 2)
print(Triangle_Area) | 35 |
Project_CodeNet | 2,020 | def p_a():
a, b, c = map(int, input().split())
print(a * b // 2)
p_a() | 31 |
Project_CodeNet | 2,020 | AB,BC,CA = map(int, input().split())
print(int(BC * AB / 2)) | 24 |
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())
print((ab*bc)//2) | 21 |
Project_CodeNet | 2,020 | L = list(map(int, input().split()))
sortL = sorted(L)
ans = L[0] * L[1] /2
print(int(ans)) | 34 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(ab*bc//2) | 20 |
Project_CodeNet | 2,020 | import sys
def I(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def main():
a, b, c = MI()
ans = int(a*b*0.5)
print(ans)
if __name__ == '__main__':
main() | 77 |
Project_CodeNet | 2,019 | # https://atcoder.jp/contests/abc116/tasks/abc116_a
A, B, C = map(int, input().split())
print(int(A*B/2))
| 38 |
Project_CodeNet | 2,020 | ab,bc,ca=map(int,input().split())
print(int(ab*bc/2)) | 20 |
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 = list(map(int,input().strip().split()))
ans = int(a * b / 2)
print(ans) | 26 |
Project_CodeNet | 2,019 | a=list(map(int,input().split()))
a.sort()
print(a[0]*a[1]//2)
| 23 |
Project_CodeNet | 2,020 | a,b,c = [int(x) for x in input().split()]
print((a * b) // 2) | 25 |
Project_CodeNet | 2,019 | a, b, c = sorted(map(int, input().split()))
print((a*b) // 2) | 23 |
Project_CodeNet | 2,019 | a,b,c=map(int,input().split())
arr=sorted([a,b,c])
print(int(arr[0]*arr[1]/2))
| 30 |
Project_CodeNet | 2,019 | a,b,c = map(int,input().split( ))
s = int((a * b)/2)
print(s)
| 24 |
Project_CodeNet | 2,020 | a, b, c =map(int,input().split())
if a**2+b**2 ==c**2:
print(a*b//2)
elif b**2 + c**2 ==a**2:
print(b*c//2)
else:
print(c*a//2)
| 60 |
Project_CodeNet | 2,019 | from sys import stdin
a, b, c = [int(x) for x in stdin.readline().rstrip().split()]
print(int((a*b)/2)) | 33 |
Project_CodeNet | 2,020 | a, b, c = map(int, raw_input().split())
if a > b and a > c:
print b * c / 2
elif b > a and b > c:
print a * c / 2
elif c > a and c > b:
print a * b / 2 | 67 |
Project_CodeNet | 2,019 | c, a, b = map(int, input().split())
S = a*c//2
print(S) | 23 |
Project_CodeNet | 2,019 | L = list(map(int, input().split()))
L = sorted(L)
print(L[0]*L[1]//2) | 28 |
Project_CodeNet | 2,019 | a,b,c= map(int,input().split())
if c > a and c > b:
print(int(a*b/2))
elif b > a and b > c:
print(int(a*c/2))
else:
print(int(b*c/2)) | 54 |
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())
area = int((a*b)/2)
print(area) | 22 |
Project_CodeNet | 2,019 | A,B,C = map(int, input().split())
print(int(A * B / 2)) | 20 |
Project_CodeNet | 2,019 | #116 Right Triangle
a, b, c = map(int, input().rstrip().split())
print(int((a*b)/2)) | 28 |
Project_CodeNet | 2,020 | a, b, c = map(int,input().split())
print(int(a * b / 2)) | 21 |
Project_CodeNet | 2,019 | c, a, b = map(int, input().split())
print(a *c //2) | 20 |
Project_CodeNet | 2,020 | L=sorted(map(int,input().split()))
print((L[0]*L[1])//2) | 22 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int((a*b)/2)) | 21 |
Project_CodeNet | 2,019 | ab, bc, _ = map(int, input().split())
print(ab * bc // 2) | 21 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
def main():
"""Function."""
a, b, c = map(int, input().split())
print(int(a*b*0.5))
if __name__ == "__main__":
main()
| 50 |
Project_CodeNet | 2,019 | ab, bc, ca = list(map(int, input().split()))
rec = ab * bc / 2
print (int(rec))
| 28 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print((a * b) // 2) | 23 |
Project_CodeNet | 2,019 | n=list(map(int,input().split(" ")))
n.sort()
print(int(n[0]*n[1]/2)) | 25 |
Project_CodeNet | 2,020 | a = input().split()
print(int(int(a[0])*int(a[1])/2)) | 20 |
Project_CodeNet | 2,019 | x = input().split()
a = int(x[0])
b = int(x[1])
c = int(x[2])
s = int(a*b/2)
print(s)
| 38 |
Project_CodeNet | 2,019 | import numpy as np
a = list(map(int, input().split()))
print(int(a[0] * a[1] / 2)) | 30 |
Project_CodeNet | 2,020 | import math
ab, bc, ca = map(int, input().split())
s = (ab+bc+ca)/2
S = math.sqrt(s*(s-ab)*(s-bc)*(s-ca))
print(int(S)) | 47 |
Project_CodeNet | 2,019 | line = input()
AB = line.split()[0]
BC = line.split()[1]
range = int(AB)*int(BC)/2
print (int(range)) | 35 |
Project_CodeNet | 2,019 | L = list(map(int,input().split()))
print(L[0]*L[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(int(a*b/2)) | 20 |
Project_CodeNet | 2,019 | A = [int(n) for n in input().split()]
print(int(A[0]*A[1]/2)) | 25 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a * b / 2)) | 22 |
Project_CodeNet | 2,020 | a,b,c = map(int, input().split())
print(int(a * b / 2)) | 20 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(AB * BC // 2) | 22 |
Project_CodeNet | 2,019 | # 標準入力をリスト形式で取得取得
a = list(map(int, input().split()))
#print(a)
# リストを昇順ソート
a.sort()
#print(a)
# 直角三角形の面積は、1番目に短い辺*2番目に短い辺/2で求められる
print(int(a[0] * a[1] / 2))
| 109 |
Project_CodeNet | 2,020 | def main():
a,b,c = map(int,input().split())
print(a * b // 2)
main() | 23 |
Project_CodeNet | 2,019 | a = list(map(int,input().split()))
a = sorted(a)
print(a[0]*a[1]//2)
| 26 |
Project_CodeNet | 2,019 | a,b,c = map(int,input().split())
S = 1 / 2 * a * b
S = int(S)
print(S) | 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(int(AB * BC / 2)) | 23 |
Project_CodeNet | 2,019 | l = list(map(int, input().split()))
l.sort()
print(l[0] * l[1] // 2)
| 27 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print((bc * ab) // 2)
| 23 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(int(ab * bc * 0.5)) | 24 |
Project_CodeNet | 2,019 | l=list(map(int,input().split()))
l.sort()
print(int((l[0]*l[1])/2))
| 24 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.