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()) if (a >= b) and (a >= c): print(int(b*c/2)) if (b >= a) and (b >= c): print(int(a*c/2)) if (c >= a) and (c >= b): print(int(a*b/2))
71
Project_CodeNet
2,019
AB, BC, CA = map(int, input().split()) print(AB * BC // 2)
22
Project_CodeNet
2,020
import sys import math from collections import Counter import itertools import fractions from decimal import Decimal #from functools import reduce # 入力を整数に変換して受け取る def II(): return int(sys.stdin.readline()) def MI(): return map(int, sys.stdin.readline().split()) # 入力全てを整数に変換したものの配列を受け取る def LI(): return list(map(int, ...
266
Project_CodeNet
2,019
if __name__ == '__main__': AB, BC, CA = map(int, input().split()) print(AB*BC//2)
31
Project_CodeNet
2,020
v = sorted([int(i) for i in input().split()]) print(v[0]*v[1]//2)
26
Project_CodeNet
2,020
AB, BC, CA = map(int, input().split()) S = AB*BC//2 print(S)
24
Project_CodeNet
2,020
ab, bc, ca = map(int, input().split()) ans = int(ab * bc /2) print(ans)
25
Project_CodeNet
2,020
AB, BC, CA = map(int, input().split()) print(int(AB*BC/2))
22
Project_CodeNet
2,019
import sys input = sys.stdin.readline c, a, b = map(int, input().split()) print(int(0.5*c*a))
31
Project_CodeNet
2,020
AB,BC,CA = sorted(map(int,input().split())) print(AB*BC//2)
21
Project_CodeNet
2,020
triangulo = input() lados = triangulo.split() AB = lados[0] BC = lados[1] area = (int(AB) * int(BC))/2 print("%.0f" % area)
49
Project_CodeNet
2,019
a,b,c = map(int,input().split()) s = a * b // 2 print(s)
22
Project_CodeNet
2,020
AB, BC, CA = map(int,input().split()) print(AB * BC //2)
20
Project_CodeNet
2,020
A = list(map(int,input().split())) print(A[0]*A[1]//2)
21
Project_CodeNet
2,019
INPUT = list(map(int,input().split())) AB=INPUT[0] BC=INPUT[1] CA=INPUT[2] print('{:.0f}'.format(AB*BC/2))
41
Project_CodeNet
2,020
import sys input = lambda: sys.stdin.readline().rstrip() def main(): a, b, c = map(int, input().split()) print(a*b//2) if __name__ == '__main__': main()
49
Project_CodeNet
2,019
A, B, C = map(int, input().split()) print(int((A*B)/2))
21
Project_CodeNet
2,020
a, b, c = map(int, input().split()) print(int(a * b / 2))
22
Project_CodeNet
2,019
#!/usr/bin/env python3 AB, BC, CA = map(int, input().split()) print(int(AB*BC/2))
29
Project_CodeNet
2,020
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((ab*bc)//2)
20
Project_CodeNet
2,019
import os, sys, re, math (AB, BC, CA) = [int(n) for n in input().split()] print (BC * AB // 2)
37
Project_CodeNet
2,020
X = list(map(int, input().split())) print(int(X[0]*X[1]/2))
22
Project_CodeNet
2,020
length=[int(i) for i in input().split()] length.sort() print(length[0]*length[1]//2)
27
Project_CodeNet
2,019
ab, bc, ca = input().split() result = int((int(ab) * int(bc)) / 2) print(result)
28
Project_CodeNet
2,019
def A(): ab, bc, ca = map(int, input().split()) print(int(bc * ab / 2)) A()
29
Project_CodeNet
2,020
a, b, c = map(int, input().split()) print( a * b // 2)
22
Project_CodeNet
2,019
import math a,b,c = list(map(int,input().split())) s = (a+b+c)/2 print(int(math.sqrt(s*(s-a)*(s-b)*(s-c))))
38
Project_CodeNet
2,019
c, a, b = map(int, input().split()) print(c * a // 2)
21
Project_CodeNet
2,019
l = list(map(int, input().split())) print(int(l[0]*l[1]/2))
22
Project_CodeNet
2,020
A=list(map(int,input().split())) B=sorted(A) print(B[0]*B[1]//2)
25
Project_CodeNet
2,019
ab,bc,ca = map(int,input().split()) print(int(ab*bc/2))
20
Project_CodeNet
2,020
a = list(map(int,input().split())) a.sort() print(a[0]*a[1]//2)
24
Project_CodeNet
2,019
a, b, c = map(int, input().split()) print(a * b // 2)
21
Project_CodeNet
2,019
if __name__ == '__main__': s = input() a, b, c = map(int, s.split()) maxvalue = max([a, b, c]) r = 1 for i in [a, b, c]: if i != maxvalue: r *= i print(r // 2)
74
Project_CodeNet
2,019
x, y, z = list(map(int, input().split())) print(int(x * y / 2))
23
Project_CodeNet
2,019
a, b, c = map(int, input().split()) a, b, c = sorted([a, b, c]) print(int(0.5 * a * b))
38
Project_CodeNet
2,019
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(c*a/2)) elif max(a, b, c) == c: print(int(a*b/2))
71
Project_CodeNet
2,019
x, y, z = map(int, input().split()) print(int(x*y/2))
20
Project_CodeNet
2,019
ab,bc,ca = map(int,input().split()) ans = ab*bc//2 print(ans)
23
Project_CodeNet
2,019
h,b,_ = map(int,input().split()) ans = int(h*b/2) print(ans)
21
Project_CodeNet
2,020
l=list(map(int,input().split())) print(l[0]*l[1]//2)
20
Project_CodeNet
2,019
from sys import stdin import numpy as np H = [int(x) for x in stdin.readline().rstrip().split()] print(int(H[0]*H[1]/2))
39
Project_CodeNet
2,020
import sys sys.setrecursionlimit(10**8) def ii(): 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 li2(N): return [list(map(int, sys.stdin.readline().split())) for _ in range(N)] def dp2(ini, i, j): return [[ini]*i...
165
Project_CodeNet
2,020
a,b,c = map(int,input().split()) print(int(a * b * 0.5))
21
Project_CodeNet
2,019
a=list(map(int,input().split())) b=min(a) a.remove(b) c=min(a) print(int(b*c/2))
27
Project_CodeNet
2,020
a, b, c = map(int, input().split()) print(int(a * b * c / max(a, b, c) / 2))
33
Project_CodeNet
2,020
edges = list(map(int, input().split())) edges.sort() print(edges[0] * edges[1] // 2)
27
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()) print(int(a*b*c/2/max(a,b,c)))
24
Project_CodeNet
2,019
length = list(map(int, input().split())) print(int(length[0]*length[1]/2))
22
Project_CodeNet
2,020
import sys sys.setrecursionlimit(10**7) input = sys.stdin.readline a,b,c = map(int, input().split()) print(a*b//2)
36
Project_CodeNet
2,020
#from statistics import median #import collections #aa = collections.Counter(a) # list to list || .most_common(2)で最大の2個とりだせるお a[0][0] from math import gcd from itertools import combinations,permutations,accumulate, product # (string,3) 3回 #from collections import deque from collections import deque,defaultdict,Counter ...
338
Project_CodeNet
2,020
a,b,c=map(int,input().strip().split(" ")) print((a*b)//2)
20
Project_CodeNet
2,019
AB, BC, CA = map( int, input().split() ) print( ( AB * BC ) // 2 )
26
Project_CodeNet
2,020
import bisect,collections,copy,heapq,itertools,math,string import sys def S(): return sys.stdin.readline().rstrip() def M(): return map(int,sys.stdin.readline().rstrip().split()) def I(): return int(sys.stdin.readline().rstrip()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LS(): return lis...
102
Project_CodeNet
2,019
ab, bc, ca = map(int, input().split()) print(int(ab*bc*0.5))
23
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
l = list(map(int, input().split())) print(int(l[0] * l[1] / 2))
25
Project_CodeNet
2,020
a, b, c = map(int, input().split()) print(a * b//2)
20
Project_CodeNet
2,020
x, y, z = map(int, raw_input().split()) print x*y/2
20
Project_CodeNet
2,020
a=sorted(list(map(int,input().split()))) print(a[0]*a[1]//2)
22
Project_CodeNet
2,019
#abc116a a,b,c=map(int,raw_input().split()) print a*b/2
23
Project_CodeNet
2,020
AB,BC,CA = map(int,input().split()) S = 0.5 * AB * BC print(int(S))
28
Project_CodeNet
2,019
ab, bc, ca = map(int,input().split()) print(int(ab * bc * ca / max(ab, bc, ca) /2))
30
Project_CodeNet
2,019
A, B, C = map(int, input().split()) print(int(A * B * C / max(A, B, C) / 2))
32
Project_CodeNet
2,019
import numpy as np a,b,c = map(int,input().split(' ')) s = (a + b + c)/2 S2 = s*(s-a)*(s-b)*(s-c) ans = int(np.sqrt(S2)+0.5) print(ans)
57
Project_CodeNet
2,019
a = list(map(int, input().split())) print(a[0] * a[1] // 2)
24
Project_CodeNet
2,019
""" # 標準入力取得 ## 文字列 = sys.stdin.readline().rstrip() = list(sys.stdin.readline().rstrip()) ## 数値 = int(sys.stdin.readline()) = map(int, sys.stdin.readline().split()) = list(map(int, sys.stdin.readline().split())) = [list(map(int,list(sys.stdin.readline().split()))) for i in range(h)] # 二次元配列入力 二次元マップみたいな入力のとき #...
274
Project_CodeNet
2,019
import sys input = sys.stdin.readline AB, BC, CA = map(int, input().split()) print(int(0.5 * AB * BC))
33
Project_CodeNet
2,019
p, q, r = map(int, input().split()) print(p * q // 2)
21
Project_CodeNet
2,019
l = sorted([int(i) for i in input().split()]) print((l[0]*l[1])//2)
27
Project_CodeNet
2,019
input = list(map(int,input().split())) ab = int(input[0]) bc = int(input[1]) cd = int(input[2]) result = int(ab * bc * 0.5) print(result)
45
Project_CodeNet
2,019
a,b,c=map(int,input().split()) print(min(a,b)*min(max(a,b),c)//2)
24
Project_CodeNet
2,020
a, b, c = map(int, input().split()) print(a * b // 2)
21
Project_CodeNet
2,020
l = list(map(int, input().split())) print(l[0]*l[1]//2)
22
Project_CodeNet
2,019
p = input().split() k = [] for i in p: k.append(int(i)) k.sort() print(int(k[0]*k[1]/2))
35
Project_CodeNet
2,019
inputList = [int(i) for i in input().split()] ab = inputList[0] bc = inputList[1] a = int (ab * bc / 2) print(a)
42
Project_CodeNet
2,020
a, b, c = sorted(map(int, input().split())) print(int(a*b/2))
21
Project_CodeNet
2,019
ab, bc, ca = map(int, input().split()) if 1 <= ab <= 100 and 1 <= bc <= 100 and 1 <= ca <= 100: print(int(ab * bc / 2)) else: print('hoge!')
58
Project_CodeNet
2,019
A, B, C = map(int, input().split()) print(int(A*B/2))
20
Project_CodeNet
2,019
a, b, c = list(map(int, input().split())) print(int(a * b / 2))
23
Project_CodeNet
2,020
def solve(): l = list(map(int, input().split())) l.sort() print(l[0] * l[1] // 2) if __name__ == '__main__': solve()
45
Project_CodeNet
2,019
a, b, _ = map(int, input().split()) print(a * b // 2)
21
Project_CodeNet
2,019
num = list(map(int,input().split())) num.sort() a = num[0] b = num[1] print(str(int(a * b / 2)))
34
Project_CodeNet
2,020
A = sorted(list(map(int, input().split()))) print(A[0]*A[1]//2)
23
Project_CodeNet
2,019
a = sorted(list(map(int,input().split()))) print(int(a[0]*a[1]/2))
22
Project_CodeNet
2,020
#116a a,b,c=map(int,input().split()) print(a*b//2)
20
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(int(AB*BC/2))
21
Project_CodeNet
2,019
A,B,C=map(int,input().split()) S=0 if A>B and A>C: S=B*C/2 elif B>A and B>C: S=A*C/2 else: S=A*B/2 print(int(S))
55
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()) print(a * b // 2)
20
Project_CodeNet
2,020
a,b,c = map(int, input().split()) d = max(a,b,c) res = 1 if a !=d: res *=a if b !=d: res *=b if c !=d: res *=c print(res//2)
58
Project_CodeNet
2,020
c, a, b = map(int, input().split()) print(c * a // 2)
21
Project_CodeNet
2,019
a,b,c = [int(x) for x in input().split()] s = int(a * b / 2) print(s)
28
Project_CodeNet
2,019
a, b, c = map(int, input().split()) print(int(a * b * 0.5))
24
Project_CodeNet
2,020
ab, bc, ca = [int(x) for x in input().split()] print(int(ab*bc/2))
25
Project_CodeNet
2,019
A, B, C = map(int, input().split()) if max(A, max(B, C))==A: print(int(B*C*0.5)) elif max(A, max(B, C))==B: print(int(A*C*0.5)) else: print(int(A*B*0.5))
67