-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTemplate.py
84 lines (28 loc) · 1.3 KB
/
Template.py
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import sys
sys.stdin = open('input.txt', 'r')
sys.stdout = open('output.txt', 'w')
# cook your dish here
import sys
import math
import bisect
from sys import stdin, stdout
from functools import cmp_to_key
from math import gcd, floor, sqrt, log2, ceil
from collections import defaultdict as dd
from bisect import bisect_left as bl, bisect_right as br
from bisect import insort
from collections import Counter
from collections import deque
from heapq import heappush,heappop,heapify
from itertools import permutations,combinations
from itertools import accumulate as ac
from random import randint as ri
mod = int(1e9)+7
ni = lambda : int(stdin.readline()) # nextInt
na = lambda: map(int,stdin.readline().split()) # nextArray
nline = lambda: stdin.readline().rstrip()
out = lambda x : stdout.write(str(x)+"\n")
#ans = 'Case #{}: {}'.format(_+1,ans)
t = ip()
for _ in range(t):
pass