-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
43 lines (32 loc) · 894 Bytes
/
main.py
File metadata and controls
43 lines (32 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import sys
import threading
import bisect
import heapq
import math
from collections import defaultdict, deque, Counter
from itertools import combinations, permutations, accumulate
from functools import lru_cache, reduce
# Macros
def input(): return sys.stdin.readline().rstrip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
# Aliases and Constants
INF = float('inf')
MOD = 10**9 + 7
PI = math.pi
def solve():
t: int = 1
# t = INT() # Uncomment the following line if there are multiple test cases
for _ in range(t):
# Example input processing:
# n = INT()
# arr = LIST()
# s = STR()
# Your code here
pass
def main():
threading.Thread(target=solve).start()
if __name__ == "__main__":
sys.setrecursionlimit(1 << 25)
main()