Skip to content

Commit 19621e3

Browse files
author
IsHYuhi
committed
add browns
1 parent 80faa0c commit 19621e3

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

ABC/ABC189/D.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
n = int(input())
2+
oprs = [input() for _ in range(n)]
3+
ans = 1
4+
5+
for i, s in enumerate(oprs[::-1], 1):
6+
if s == 'OR':
7+
ans += 2**(n-i+1)
8+
elif s == 'AND':
9+
ans *= 1
10+
11+
print(ans)

ABC/ABC190/D.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
N = int(input())
2+
while N % 2 == 0:
3+
N //= 2
4+
sq = int(N ** 0.5)
5+
ans = sum(N % i == 0 for i in range(1, sq + 1)) * 2 - (sq * sq == N)
6+
print(ans * 2)

0 commit comments

Comments
 (0)