Skip to content

Commit f23d611

Browse files
committed
upd:更新Python IO模板
1 parent 08d558c commit f23d611

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

io/py/cpt.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
input = lambda:sys.stdin.readline().rstrip("\r\n")
3+
input = lambda: sys.stdin.readline().rstrip("\r\n")
44

55
def I(): return input()
66
def II(): return int(input())
@@ -10,7 +10,8 @@ def LII(): return list(map(int, input().split()))
1010
def GMI(): return map(lambda x: int(x) - 1, input().split())
1111
def LGMI(): return list(map(lambda x: int(x) - 1, input().split()))
1212

13-
inf = float("inf")
14-
mod = 10**9 + 7
15-
# from sortedcontainers import SortedList
13+
def solve():
14+
15+
1616
# for _ in range(II()):
17+
print(solve())

0 commit comments

Comments
 (0)