We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08d558c commit f23d611Copy full SHA for f23d611
io/py/cpt.py
@@ -1,6 +1,6 @@
1
import sys
2
3
-input = lambda:sys.stdin.readline().rstrip("\r\n")
+input = lambda: sys.stdin.readline().rstrip("\r\n")
4
5
def I(): return input()
6
def II(): return int(input())
@@ -10,7 +10,8 @@ def LII(): return list(map(int, input().split()))
10
def GMI(): return map(lambda x: int(x) - 1, input().split())
11
def LGMI(): return list(map(lambda x: int(x) - 1, input().split()))
12
13
-inf = float("inf")
14
-mod = 10**9 + 7
15
-# from sortedcontainers import SortedList
+def solve():
+
16
# for _ in range(II()):
17
+print(solve())
0 commit comments