We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80faa0c commit 19621e3Copy full SHA for 19621e3
ABC/ABC189/D.py
@@ -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
@@ -0,0 +1,6 @@
+N = int(input())
+while N % 2 == 0:
+ N //= 2
+sq = int(N ** 0.5)
+ans = sum(N % i == 0 for i in range(1, sq + 1)) * 2 - (sq * sq == N)
+print(ans * 2)
0 commit comments