Source stringclasses 1
value | Date int64 2.01k 2.02k | Text stringlengths 22 783k | Token_count int64 20 394k |
|---|---|---|---|
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)) | 21 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,019 | a = [int(x) for x in input().split()]
#%%
#a = [5,3,4]
#%%
a.sort()
print(int(a[0] * a[1] / 2))
#%%
#%%
| 48 |
Project_CodeNet | 2,020 | A = list(map(int,input().split()))
print(A[0]*A[1]//2) | 21 |
Project_CodeNet | 2,019 | L = sorted(list(map(int, input().split())))
print(L[0]*L[1]//2)
| 23 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2)
| 21 |
Project_CodeNet | 2,020 | from collections import defaultdict, deque, Counter
from heapq import heappush, heappop, heapify
from itertools import permutations, accumulate, combinations, combinations_with_replacement
from math import sqrt, ceil, floor, factorial
from bisect import bisect_left, bisect_right, insort_left, insort_right
from copy imp... | 301 |
Project_CodeNet | 2,020 | x, y, z = map(int, input().split())
print(x * y // 2) | 21 |
Project_CodeNet | 2,020 | a=list(map(int,input().split()))
a=sorted(a)
print(a[0]*a[1]//2) | 25 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
s = (a+b+c)//2
print(int((s*(s-a)*(s-b)*(s-c))**0.5)) | 41 |
Project_CodeNet | 2,019 | AB,BC,CA = map(int,input().split())
print(int(AB*BC*1/2)) | 23 |
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(int(AB*BC/2)) | 22 |
Project_CodeNet | 2,020 | n = list(map(int, input().split()))
n.remove(max(n))
print(int(n[0] * n[1] /2))
| 29 |
Project_CodeNet | 2,019 | AB, BC, CA = list(map(int, input().split()))
print(AB * BC // 2)
| 23 |
Project_CodeNet | 2,020 | AB, BC, CA = map(int, input().split())
print(int(AB * BC / 2))
| 23 |
Project_CodeNet | 2,019 |
aD = sorted(int(_) for _ in input().split())
print(aD[0]*aD[1]//2)
| 28 |
Project_CodeNet | 2,020 | ab,bc,ca = map(int,input().split())
print(int(ab*bc/2)) | 20 |
Project_CodeNet | 2,019 | import math
import sys
import itertools
import queue
from fractions import gcd
def lcm(a, b):
return a * b // gcd(a, b)
mod = 1000000007
"""
# 0埋め, 小数点出力桁指定時のときの出力
a = 100
b = 0.987654321
print("{0:06d}-{1:6f}".format(a,b))
000100-0.987654
# 文字列をリストに格納
char_list = list("abcd") # ["a","b","c","d"]
# 標準入力取得
## 文... | 286 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
"""
Created on Sun Jan 20 20:49:15 2019
@author: Yamazaki Kenichi
"""
a,b,c = map(int,input().split())
ans= a*b//2
print(ans) | 54 |
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)) | 21 |
Project_CodeNet | 2,019 | import math
a, b, c = map(int, input().split())
s = (a+b+c)/2
print(int(math.sqrt((s*(s-a)*(s-b)*(s-c))))) | 42 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(int(ab*bc/2)) | 21 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(AB * BC // 2)
| 22 |
Project_CodeNet | 2,020 | def resolve():
a, b, c = map(int, input().split())
print((a * b) // 2)
return
if __name__ == "__main__":
resolve()
| 42 |
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())
print(a * b //2) | 20 |
Project_CodeNet | 2,019 | c,a,b = list(map(int,input().split()))
print(int(c * a / 2)) | 20 |
Project_CodeNet | 2,020 | l = sorted(list(map(int, input().split())))
print(int((l[0] * l[1] / 2)))
| 27 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(AB * BC // 2)
| 22 |
Project_CodeNet | 2,019 | h, w, _ = map(int, input().split())
print(w * h // 2) | 21 |
Project_CodeNet | 2,020 | length1, length2, length3 = map(int, input().split())
area = length1 * length2 / 2
print(int(area)) | 31 |
Project_CodeNet | 2,019 | a = sorted(list(map(int,input().split())))
print((a[1]*a[0])//2) | 23 |
Project_CodeNet | 2,020 | a, b, c = sorted(map(int, input().split()))
print(int(a*b*1/2)) | 23 |
Project_CodeNet | 2,019 | a, b, c = list(map(int, input().split()))
print(int(a*b/2))
| 21 |
Project_CodeNet | 2,019 | INT = lambda: int(input())
INTM = lambda: map(int,input().split())
STRM = lambda: map(str,input().split())
STR = lambda: str(input())
LIST = lambda: list(map(int,input().split()))
LISTS = lambda: list(map(str,input().split()))
def do():
a=LIST()
a.sort()
print(a[0]*a[1]//2)
if __name__ == '__main__':
do... | 95 |
Project_CodeNet | 2,019 | line = input().split(" ")
ab = int(line[0])
bc = int(line[1])
print(int((ab*bc)/2))
| 30 |
Project_CodeNet | 2,019 | v, h, s = map(int, input().split())
print(int(v * h / 2))
| 22 |
Project_CodeNet | 2,019 | l = list(map(int, input().split()))
l.sort()
print(l[0] * l[1] //2 )
| 27 |
Project_CodeNet | 2,019 | c, a, b = map(int, input().split())
print(c * a // 2)
| 21 |
Project_CodeNet | 2,019 | def main() -> None:
ab, bc, ca = map(int, input().split())
print(ab * bc // 2)
if __name__ == "__main__":
main()
| 40 |
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)) | 23 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(int(AB * BC / 2)) | 23 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int,input().split())
print(ab*bc // 2) | 20 |
Project_CodeNet | 2,020 | l = list(map(int,input().split()))
l.sort()
print(l[0]*l[1]//2) | 24 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(int(a*b/2)) | 20 |
Project_CodeNet | 2,019 | A = list(map(int,input().split()))
A.remove(max(A))
print((A[0]*A[1])//2)
| 27 |
Project_CodeNet | 2,019 | a,b,c=map(int,input().split())
x=[a,b,c]
x.sort()
print(int(x[0]*x[1]/2)) | 34 |
Project_CodeNet | 2,019 | a,b,c=map(int,input().split())
print(a*b*c//2//max(a,b,c)) | 22 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(int((a * b) / 2)) | 24 |
Project_CodeNet | 2,019 | abc = list(map(int, input().split()))
abc.sort()
print(int(abc[0]*abc[1]/2)) | 26 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a*b // 2) | 20 |
Project_CodeNet | 2,019 | ab, bc, ca = [int(i) for i in input().split()]
print((ab*bc)//2) | 25 |
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(int(ab*bc/2)) | 21 |
Project_CodeNet | 2,020 | abc = input()
ab, bc = int(abc.split()[0]), int(abc.split()[1])
print(int(ab * bc / 2)) | 31 |
Project_CodeNet | 2,020 | a,b,c=map(int,input().split())
a=0.5 * a* b
print("%d"%a)
| 26 |
Project_CodeNet | 2,019 | a, b, c = [int(item) for item in input().split()]
print((a * b) // 2) | 27 |
Project_CodeNet | 2,019 | 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,020 | a, b, _ = map(int, input().split())
print(a * b // 2) | 21 |
Project_CodeNet | 2,020 | a, b, c = list(map(int, input().split()))
print(a * b // 2)
| 22 |
Project_CodeNet | 2,020 | X, Y, Z = map(int, input().split())
print((X*Y)//2) | 21 |
Project_CodeNet | 2,020 | L = list(map(int, input().split()))
L.sort()
ans = L[0]*L[1]//2
print(ans)
| 29 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
answer = ab * bc / 2
answer = int(answer)
print(answer) | 30 |
Project_CodeNet | 2,019 | A = [int(x) for x in input().split()]
A.sort()
print(A[0]*A[1]//2) | 28 |
Project_CodeNet | 2,019 | L=sorted(list(map(int,input().split())))
print(L[0]*L[1]//2)
| 22 |
Project_CodeNet | 2,019 | x, y, z = map(int, input().split())
ans = x*y//2
print(ans) | 23 |
Project_CodeNet | 2,019 | def main():
AB,BC,CA = map(int, input().split())
ans = (BC * AB) / 2
print(int(ans))
if __name__ == '__main__' :
main()
| 48 |
Project_CodeNet | 2,019 | def calc_area(w, h):
return w * h // 2
w, h, _ = [int(v) for v in input().split()]
print(calc_area(w, h)) | 40 |
Project_CodeNet | 2,019 | AB,BC,CA=map(int,input().split())
print(AB*BC//2) | 20 |
Project_CodeNet | 2,019 | x,y,r = map(int,input().split())
AREA = x*y
AREA2 =(AREA//2)
print(AREA2)
| 28 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print( int(a * b / 2) ) | 24 |
Project_CodeNet | 2,019 | a, b, c= map(int, input().split())
print(a * b //2) | 20 |
Project_CodeNet | 2,019 | value = input()
ab = int(value.split(" ")[0])
bc = int(value.split(" ")[1])
print(int(ab * bc / 2)) | 31 |
Project_CodeNet | 2,020 | three = list(map(int, input().split()))
three.sort()
print(int(three[0] * three[1] / 2))
| 29 |
Project_CodeNet | 2,019 | ab,bc,ca = list(map(int, input().split()))
print(ab*bc//2) | 21 |
Project_CodeNet | 2,019 |
a, b, c = map(int, input().split(" "))
print(a * b // 2) | 24 |
Project_CodeNet | 2,019 | lines = list(map(int,input().split()))
lines.sort()
a = lines[0] * lines[1] / 2
print(round(a)) | 31 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a*b/2)) | 20 |
Project_CodeNet | 2,019 | S = list(map(int,input().split()))
L = S[0]*S[1]/2
print(int(L)) | 25 |
Project_CodeNet | 2,019 | l = raw_input().split()
l = map(lambda x: int(x), l)
l.sort()
print l[0] * l[1] / 2
| 35 |
Project_CodeNet | 2,020 | import sys
c, a, b = map(int, sys.stdin.readline().split())
def main():
s = c * a // 2
print(s)
if __name__ == '__main__':
main() | 47 |
Project_CodeNet | 2,019 | a,b,c = map(int, input().strip().split(' '))
print(int(a*b/2))
| 21 |
Project_CodeNet | 2,019 | inp = list(sorted([int(x) for x in input().split()]))
print((inp[0]*inp[1])//2)
| 29 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a * b // 2)
| 21 |
Project_CodeNet | 2,019 | AB, BC, CA = [int(elem) for elem in input().split()]
print(AB * BC // 2)
| 26 |
Project_CodeNet | 2,019 | #n = int(input())
a, b, c = [int(i) for i in input().split()]
print(int(a*b/2)) | 30 |
Project_CodeNet | 2,019 | def main():
array = list(map(int,input().split()))
array.sort()
array = array[:-1]
print(int(array[0]*array[1]/2))
if __name__ == '__main__':
main()
| 48 |
Project_CodeNet | 2,019 | AB, BC, CA = map(int, input().split())
print(AB * BC // 2)
| 22 |
Project_CodeNet | 2,020 | #!/usr/bin/env python3
def main():
a, b, c = map(int, input().split())
print(a * b // 2)
if __name__ == "__main__":
main()
| 44 |
Project_CodeNet | 2,019 | def main():
l = [int(x) for x in input().split()]
print(int(l[0] * l[1] * .5))
if __name__ == '__main__':
main() | 41 |
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())
print(int(a * b / 2)) | 22 |
Project_CodeNet | 2,020 | def solve():
AB, BC, _ = map(int, input().split())
print(BC * AB // 2)
if __name__ == '__main__':
solve() | 39 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(int(ab * bc / 2)) | 22 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
area = ab * bc // 2
print(area) | 25 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.