-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsnippet_clean_template.py
More file actions
36 lines (25 loc) · 1.02 KB
/
snippet_clean_template.py
File metadata and controls
36 lines (25 loc) · 1.02 KB
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
############################################ Libraries #####################################################
import bisect
import sys
import math
import os
import time
from queue import PriorityQueue
from io import BytesIO, IOBase
from collections import defaultdict, Counter
from bisect import bisect_right
########################################### Definitions ###################################################
INF = sys.maxsize
BUFSIZE = 4096
############################################# Inputs ######################################################
# def inp(): return sys.stdin.readline().rstrip("\r\n") # read line as string
# def inp_int(): return int(inp()) # read input as integer. '1' -> 1
# def inp_int_list(): return list(map(int, inp().split()))
# def inp_str_list(): return list(inp())
############################################# Solution ######################################################
def solve():
n = list(map(int, input().split()))
res = 0
print(res)
for _ in range(int(input())):
solve()