Skip to content

Commit 911c977

Browse files
author
IsHYuhi
committed
add ABC
1 parent d2171e5 commit 911c977

File tree

14 files changed

+160
-0
lines changed

14 files changed

+160
-0
lines changed

ABC/ABC026/A.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import math
2+
N = int(input())
3+
print((N//2)*math.ceil(N/2))

ABC/ABC026/B.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import math
2+
N = int(input())
3+
R = []
4+
for i in range(N):
5+
R.append(int(input()))
6+
R.sort(reverse=True)
7+
ans = 0
8+
for i, r in enumerate(R):
9+
if i%2==0:
10+
ans += r*r*math.pi
11+
else:
12+
ans -= r*r*math.pi
13+
print(ans)

ABC/ABC026/C.py

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
n = int(input())
2+
table = [[] for i in range(n+1)]
3+
4+
for i in range(2,n+1):
5+
j = int(input())
6+
table[j].append(i)
7+
8+
def dfs(chi):
9+
_max = 0
10+
_min = float('inf')
11+
if not chi:
12+
return 1
13+
14+
for j in chi:
15+
num = dfs(table[j])
16+
_max = max(_max, num)
17+
_min = min(_min, num)
18+
return _max+_min+1
19+
20+
print(dfs(table[1]))

ABC/ABC027/A.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
l1, l2, l3 = map(int, input().split())
2+
3+
if l1==l2:
4+
print(l3)
5+
elif l1==l3:
6+
print(l2)
7+
elif l2==l3:
8+
print(l1)
9+
else:
10+
print(l1)

ABC/ABC027/B.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
n = int(input())
2+
A = list(map(int, input().split()))
3+
if not sum(A)%n==0:
4+
print(-1)
5+
exit()
6+
7+
basic = sum(A)//n
8+
ans = 0
9+
for i in range(n-1):
10+
print(A[:i+1], A[i+1:],i+1, n-i-1, basic)
11+
if not (sum(A[:i+1]) == basic*(i+1) and sum(A[i+1:]) == basic*(n-i-1)):
12+
ans += 1
13+
print(ans)

ABC/ABC028/A.py

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
n = int(input())
2+
3+
if n <= 59:
4+
print('Bad')
5+
elif n<=89:
6+
print('Good')
7+
elif n<= 99:
8+
print('Great')
9+
elif n ==100:
10+
print('Perfect')

ABC/ABC028/B.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
from collections import Counter
2+
S = list(input())
3+
S = Counter(S)
4+
5+
abcdef = ['A', 'B', 'C', 'D', 'E', 'F']
6+
for a in abcdef:
7+
if S.get(a):
8+
print(S[a], end='')
9+
else:
10+
print(0, end='')
11+
if a!='F':
12+
print(' ', end='')
13+
print()

ABC/ABC028/C.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import itertools
2+
nums = list(map(int, input().split()))
3+
A = list(map(sum, itertools.combinations(nums, 3)))
4+
A.sort(reverse=True)
5+
print(A[2])

ABC/ABC028/D.py

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import itertools
2+
n, k = map(int, input().split())
3+
nums = [i for i in range(1, n+1)]
4+
5+
nums = [1]
6+
for i in range(n-1):
7+
nums.append(nums[-1]+3)
8+
#print(nums)
9+
ans = []
10+
alpha = 3
11+
for i, num in enumerate(nums[:-1]):
12+
ans.append(num+(n-i-1)*alpha)
13+
alpha += 6
14+
ans.append(nums[-1])
15+
#print(ans)
16+
print(ans[k-1]/sum(ans))
17+
18+
##--------模範解答-------------[https://www.slideshare.net/chokudai/abc028]
19+
#print(((n-k)*(k-1)*6+(n-1)*3+1)/n**3)
20+
21+
22+
23+
24+
25+
##法則チェック
26+
# print(nums)
27+
# nums = list(map(sorted,map(list,itertools.product(nums, repeat=3))))
28+
# c1, c2, c3, c4, c5, c6, c7 = 0, 0, 0, 0, 0, 0, 0
29+
# for i in nums:
30+
# if i[1]==1:
31+
# c1 += 1
32+
# elif i[1]==2:
33+
# c2 += 1
34+
# elif i[1]==3:
35+
# c3 += 1
36+
# elif i[1]==4:
37+
# c4 += 1
38+
# elif i[1]==5:
39+
# c5 += 1
40+
# elif i[1]==6:
41+
# c6 += 1
42+
# elif i[1]==7:
43+
# c7 +=1
44+
# print(c1, c2, c3, c4, c5, c6, c7)
45+
# print(nums)

ABC/ABC029/A.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
print(input()+'s')

ABC/ABC029/B.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
ans = 0
2+
for i in range(12):
3+
if 'r' in input():
4+
ans += 1
5+
print(ans)

ABC/ABC029/C.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import itertools
2+
n = int(input())
3+
abc = ['a', 'b', 'c']
4+
li = list(map(lambda x: ''.join(x),itertools.product(abc, repeat=n)))
5+
li.sort()
6+
for i in li:
7+
print(i)

ABC/ABC030/A.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
a, b, c, d = map(int, input().split())
2+
if b/a == d/c:
3+
print('DRAW')
4+
elif b/a > d/c:
5+
print('TAKAHASHI')
6+
else:
7+
print('AOKI')

ABC/ABC030/B.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import math
2+
n, m = map(int, input().split())
3+
if n>=12:
4+
n = n-12
5+
n = (60*n + m)/2
6+
m = 6*m
7+
ans = abs(m-n)
8+
print(min(ans, 360-ans))

0 commit comments

Comments
 (0)