Source stringclasses 1
value | Date int64 2.01k 2.02k | Text stringlengths 22 783k | Token_count int64 20 394k |
|---|---|---|---|
Project_CodeNet | 2,019 | list = input().split(' ')
print(int(int(list[0])*int(list[1])/2)) | 21 |
Project_CodeNet | 2,019 | a = sorted(list(map(int,input().split())))
print(a[0]*a[1]//2)
| 22 |
Project_CodeNet | 2,019 | X, Y, Z = map(int, input().split())
print(int(X*Y/2)) | 21 |
Project_CodeNet | 2,020 | # solution
l,m,n = map(int,input().split())
print(int(l*m/2)) | 20 |
Project_CodeNet | 2,020 | hen = list(map(int, input().split()))
hen.sort()
print(hen[0]*hen[1]//2) | 26 |
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(a * b // 2) | 21 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print(int(ab * bc / 2)) | 22 |
Project_CodeNet | 2,019 | items = sorted(list(map(int,input().split())))
print(int(items[0]*items[1]/2)) | 22 |
Project_CodeNet | 2,019 | AB,BC,CA = map(int, input().split())
print(int(AB*BC/2)) | 22 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(int(a * b / 2))
| 22 |
Project_CodeNet | 2,020 | A,B,C = map(int,input().split())
maxL = max(A,B,C)
minL = min(A,B,C)
midium = A+B+C - maxL - minL
print(int(minL*midium/2)) | 49 |
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())
triangle_area = BC * AB / 2
print(int(triangle_area))
| 30 |
Project_CodeNet | 2,019 | a = list(map(int, input().split()))
a.sort(reverse=False)
print(int(a[0]*a[1]/2)) | 27 |
Project_CodeNet | 2,019 | s = [int(i) for i in input().split()]
s.sort()
print(int(s[0]*s[1]/2))
| 28 |
Project_CodeNet | 2,019 | l = map(int, raw_input().split())
l.sort()
print int(l[0]*l[1]/2) | 25 |
Project_CodeNet | 2,019 | a,b,c = (int(i) for i in input().split())
print(int(a*b/2)) | 22 |
Project_CodeNet | 2,019 | l=list(map(int,input().split()))
l.sort
l.pop()
print(l[0]*l[1]//2) | 26 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a * b / 2)) | 22 |
Project_CodeNet | 2,019 | A = list(map(int, input().split()))
A.reverse()
print(int(A[1] * A[2] * 1/2)) | 30 |
Project_CodeNet | 2,019 | sides = sorted([int(_) for _ in input().split()])
print("{}".format(sides[0] * sides[1] // 2)) | 33 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
ans = a * b // 2
print(ans)
| 25 |
Project_CodeNet | 2,020 | a,b,c=map(int,input().split())
if a>b and a>c:
print(int(b*c/2))
elif b>a and b>c:
print(int(a*c/2))
else:
print(int(a*b/2)) | 50 |
Project_CodeNet | 2,020 | a,b,_ = map(int, input().split()) # 3 4 5
print(a*b//2) | 25 |
Project_CodeNet | 2,019 | def main():
ab, bc, ca = map(int, input().split())
longest = max(ab, bc, ca)
if longest == ab:
print(bc * ca // 2)
if longest == bc:
print(ca * ab // 2)
if longest == ca:
print(ab * bc // 2)
if __name__ == "__main__":
main()
| 83 |
Project_CodeNet | 2,019 | a = list(map(int, input().split()))
a.sort()
print(a[0]*a[1]//2)
| 25 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(ab * bc // 2) | 21 |
Project_CodeNet | 2,019 | a,b,c = (int(i) for i in input().split())
print(( a * b ) // 2 ) | 25 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
s = a*b//2
print(s) | 23 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int, input().split())
print(int(ab*bc*0.5)) | 23 |
Project_CodeNet | 2,020 | AB, BC, AC = map(int,input().split())
area = AB * BC // 2
print(area) | 24 |
Project_CodeNet | 2,019 | AB,BC,CA=[int(s) for s in input().split()]
print(int(AB*BC/2)) | 25 |
Project_CodeNet | 2,020 | a, b, c = (int(i) for i in input().split())
print(a*b//2) | 23 |
Project_CodeNet | 2,020 | a = list(map(int, input().split()))
a.sort()
res = a[0] * a[1] // 2
print(res) | 31 |
Project_CodeNet | 2,019 | if __name__ == '__main__':
n, w, k = map(int, input().split())
print(int(n*w/2))
| 30 |
Project_CodeNet | 2,019 | l1, l2, l3 = map(int,input().split())
print(int(l1 * l2 / 2)) | 26 |
Project_CodeNet | 2,020 | ab, bc ,_ = map(int,input().split())
print(ab * bc // 2) | 20 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int(a * b / 2))
| 22 |
Project_CodeNet | 2,020 | ab, bc, ca = map(int, input().split())
print(bc * ab // 2)
| 21 |
Project_CodeNet | 2,019 | a = sorted([int(x) for x in input().split()])
print(a[0]*a[1]//2) | 26 |
Project_CodeNet | 2,019 | #!/usr/bin/env python3
# Generated by 1.1.6 https://github.com/kyuridenamida/atcoder-tools (tips: You use the default template now. You can remove this line by using your custom template)
def main():
x, y, z = map(int, input().split())
print(int(x*y*0.5))
if __name__ == '__main__':
main()
| 89 |
Project_CodeNet | 2,020 | e = sorted(map(int, input().split()))
print(e[0]*e[1]//2) | 22 |
Project_CodeNet | 2,019 | c, a, b = map(int, input().split())
print(int(c * a / 2)) | 22 |
Project_CodeNet | 2,019 | print (lambda x:(x[0]*x[1])/2)(map(int,raw_input().split(" "))) | 25 |
Project_CodeNet | 2,019 | a, b, c = map(int,input().split())
d = max(a, b, c)
print(a * b * c // d // 2) | 33 |
Project_CodeNet | 2,019 | def inpl(): return list(map(int, input().split()))
a, b, c = inpl()
print(a * b // 2) | 31 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
a,b,c = sorted(map(int, input().split(' ')), reverse=True)
h = a * b * c / (b**2 + c**2)
print(int(round(a * h / 2))) | 52 |
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())
lst=sorted([A,B,C])
print(lst[0]*lst[1]//2)
| 33 |
Project_CodeNet | 2,019 |
def main():
A,B,_=map(int,input().split())
print(int(A*B/2))
if __name__== "__main__":
main() | 36 |
Project_CodeNet | 2,019 | AB , BC, CA = map(int,input().split())
print (int(1/2 * AB * BC)) | 25 |
Project_CodeNet | 2,019 | def main():
AB, BC, CA = map(int, input().split())
ans = AB * BC // 2
print(ans)
if __name__ == '__main__':
main()
| 42 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int,input().split())
print(int(ab * bc / 2))
| 21 |
Project_CodeNet | 2,019 | from sys import stdin
n,k,c=[int(x) for x in stdin.readline().rstrip().split()]
print(int((n*k)/2)) | 30 |
Project_CodeNet | 2,019 | a = list(map(int, input().split()))
ab = a[0]
bc = a[1]
print(int(ab*bc/2)) | 30 |
Project_CodeNet | 2,019 | l = list(map(int, input().split()))
l.sort()
print(l[0]*l[1]//2) | 25 |
Project_CodeNet | 2,020 | a, b, c = map(int,input().split())
s = a*b//2
print(s)
| 22 |
Project_CodeNet | 2,019 | # -*- coding: utf-8 -*-
# 整数の入力
a = input().split(' ')
# 出力
print(int(int(a[0]) * int(a[1]) / 2)) | 45 |
Project_CodeNet | 2,020 | a,b,c = map(int,input().split())
menseki = (a * b) // 2
print(menseki)
| 28 |
Project_CodeNet | 2,019 | x = list(map(int, input().split()))
x.remove(max(x))
print(int(x[0]*x[1]/2)) | 27 |
Project_CodeNet | 2,019 | # encoding:utf-8
import copy
import numpy as np
import random
l = [int(i) for i in input().split()]
l.sort()
print(l[1]*l[0]//2)
| 45 |
Project_CodeNet | 2,020 | A=list(map(int,input().split()))
B=list.sort(A)
print(A[0]*A[1]//2)
| 25 |
Project_CodeNet | 2,019 | a = list(int(i) for i in input().split())
print(a[0]*a[1]//2)
| 25 |
Project_CodeNet | 2,019 | x,y,z=map(int,input().split())
ans=x*y/2
print(int(ans)) | 20 |
Project_CodeNet | 2,019 | a,b,c = map(int,input().split())
s = int(a*b/2)
print(s) | 21 |
Project_CodeNet | 2,019 | A, B, C = map(int, input().split())
three = [A, B, C]
a = three.pop(three.index(min(three)))
b = three.pop(three.index(min(three)))
print(int(a*b/2)) | 51 |
Project_CodeNet | 2,020 | # ABC 116: A – Right Triangle
ab, bc, ca = [int(s) for s in input().split()]
print(ab * bc // 2) | 35 |
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)) | 23 |
Project_CodeNet | 2,020 | abc = list(map(int, input().split()))
print()
abc.sort()
print(abc[0]*abc[1]//2) | 28 |
Project_CodeNet | 2,019 | ###A - Right Triangle
AB, BC, CA = map(int, input().split())
print(int(AB * BC / 2)) | 29 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(int((a*b)/2))
| 21 |
Project_CodeNet | 2,019 | AB,BC,_ = list(map(int,input().split()))
print((AB*BC)//2)
| 20 |
Project_CodeNet | 2,020 | ii = lambda:int(input())
mi = lambda:list(map(int,input().split()))
ix = lambda x:list(input() for _ in range(x))
mix = lambda x:list(mi() for _ in range(x))
iix = lambda x:list(int(input()) for _ in range(x))
##########
a,b,c = mi()
maxval = max(a,b,c)
x = min(a,b,c)
y = sum([a,b,c]) - (x + maxval)
print(int(x*y/2)) | 102 |
Project_CodeNet | 2,020 | import math
import queue
import bisect
import heapq
import time
import itertools
mod = int(1e9+7)
def swap(a,b):
return (b,a)
def my_round(a,dig=0):
p = 10 ** dig
return (a * p * 2 + 1) // 2 / p
def gcd(a,b): #最大公約数
if (a<b):
a,b = swap(a,b)
if (b==0):
return a
else:
... | 495 |
Project_CodeNet | 2,019 | ab,bc,ca = map(int,input().split())
print(int(ab*bc//2))
| 20 |
Project_CodeNet | 2,020 | a, b, c = map(int,input().split())
print(int(a * b / 2))
| 21 |
Project_CodeNet | 2,019 | A,B,C=input().split()
A=int(A)
B=int(B)
print(int(A*B/2)) | 22 |
Project_CodeNet | 2,020 | a, b, c = map(int, input().split())
print(a * b // 2)
| 21 |
Project_CodeNet | 2,019 | A, B, C = map(int, input().split())
print((A*B)//2) | 20 |
Project_CodeNet | 2,020 | S = list(map(int,input().split()))
S.sort()
print((S[0]*S[1])//2)
| 25 |
Project_CodeNet | 2,019 | ab, bc, ca = list(map(int, input().split()))
S = ab * bc / 2
print(int(S))
| 27 |
Project_CodeNet | 2,019 | #! /usr/bin/env python3
# -*- coding: utf-8 -*-
ls = [int(x) for x in input().split()]
ls.sort()
print(int((ls[0]*ls[1])/2))
| 45 |
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(int(ab*bc/2)) | 20 |
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)
| 23 |
Project_CodeNet | 2,019 | A,B,C=(int(i) for i in input().split())
print(int(A*B/2)) | 21 |
Project_CodeNet | 2,019 | a=list(map(int,input().split()))
a.sort()
print(int(a[0]*a[1]/2)) | 23 |
Project_CodeNet | 2,019 | [a,b,c] = [int(j) for j in input().split()]
x = [a,b,c]
d = min(x)
e = a+b+c-d-max(x)
print(int(d*e/2)) | 44 |
Project_CodeNet | 2,019 | def main():
data = list(map(int, input().split()))
print(int(data[0]*data[1]/2))
if __name__ == '__main__':
main() | 38 |
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(a*b*c//max(a,b,c)//2)
| 22 |
Project_CodeNet | 2,019 | ab, bc, ca = map(int, input().split())
print((ab * bc) // 2) | 23 |
Project_CodeNet | 2,019 | a,b,c = map(int,input().split())
d = max(a,b,c)
if a == d:
print (b*c//2)
elif b == d:
print (a*c//2)
else:
print (a*b//2) | 53 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
s = a * b / 2
print(int(s)) | 26 |
Project_CodeNet | 2,019 | a, b, c = map(int, input().split())
print(a*b*c//max(a, b, c)//2) | 27 |
Project_CodeNet | 2,020 | 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)) | 25 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.