-
Notifications
You must be signed in to change notification settings - Fork 5
/
get_input.py
29 lines (27 loc) · 1.05 KB
/
get_input.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
# -*- coding: utf-8 -*-
#
# Copyright (c) 2023 Ruize Tang <[email protected]>, Runze Wu
# <[email protected]>, Anpu Lu <[email protected]>.
#
# This file is a part of Disalg-ICS-NJU/algocentric.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
def get_input() -> tuple[int, list]:
'''从标准输入获取输入, 共两行内容, 第一行为k值, 第二行为由空格分隔的整数序列
Returns:
返回n值和整数序列
'''
k = int(input())
array = list(map(int, input().split()))
return k, array