OJ在线编程常见输入输出。
刷了算法题,结果发现笔试的时候,许多的输入输出是要自已定义的,故搜集与总结一些 OJ在线编程常见输入输出
的输入函数,并给出了在线编程的模板。
语言:python
OJ在线编程环境:牛客
地址
https://ac.nowcoder.com/acm/contest/320#question
文章目录
获取输入
常用输入获取
t = list(map(int, input().strip().split()))
print(t)
map:使用方式,具体见
>>>def square(x) : # 计算平方数
... return x ** 2
...
>>> map(square, [1,2,3,4,5]) # 计算列表各个元素的平方
[1, 4, 9, 16, 25]
strip()
: 删除输入的两端的空格
使用方式,具体见
3 4 5 6
t: [3, 4, 5, 6]
split()
: 为空的时候,默认去除空格,可以是多个空格。
使用方式,具体见
如1
2 3 4 5
t: [2, 3, 4, 5]
split(" ")
:只能去除一个空格
如2
2 3 # 多个空格时候会报错
Traceback (most recent call last):
t = list(map(int, input().strip().split(" ")))
ValueError: invalid literal for int() with base 10: ''
模板,获取输入函数 -—— 数字输入
def getInput(sep=None):
'''
:param sep: split str.
:return: a inpput list
'''
if sep :
return list(map(int, input().strip().split(sep)))
else:
return list(map(int, input().strip().split()))
模板,获取输入函数 -—— 字符/串输入
def getInput(sep=None):
'''
:param sep: split str.
:return: a inpput list
'''
if sep:
return list((input().strip().split(sep)))
else:
return list((input().strip().split()))
模板,获取输入函数
def getInput(choice='intType',sep=None):
'''
:param choice: ['intType', 'strType']
intType, to get int data
strType, to get str data
:param sep: split str.
:return: a inpput list
'''
if choice =='intType':
if sep:
return list(map(int, input().strip().split(sep)))
else:
return list(map(int, input().strip().split()))
elif choice =='strType':
if sep:
return list((input().strip().split(sep)))
else:
return list((input().strip().split()))
模板,在线编程
def getInput(choice='intType',sep=None):
'''
:param choice: ['intType', 'strType']
intType, to get int data
strType, to get str data
:param sep: split str.
:return: a inpput list
'''
if choice =='intType':
if sep:
return list(map(int, input().strip().split(sep)))
else:
return list(map(int, input().strip().split()))
elif choice =='strType':
if sep:
return list((input().strip().split(sep)))
else:
return list((input().strip().split()))
try:
while True:
### get in put
alist = getInput(choice ='strType', sep=',')
### operation about alist
### output your result
except:
pass
在线编程
牛客 ——- 数字
测试题1:计算a+b
链接:https://ac.nowcoder.com/acm/contest/320/A
来源:牛客网
题目描述
计算a+b
输入描述:
输入包括两个正整数a,b(1 <= a, b <= 10^9),输入数据包括多组。
输出描述:
输出a+b的结果
示例1
输入
1 5
10 20
输出
6
30
- 代码
try:
while 1:
a, b = list(map(int, input().split(" ")))
print(a + b)
except:
print("exit")
pass
如果输入的测试数据多个
空格,那么报错,退出
如:
正常输入
1 5
异常输入
1 5
测试题2:计算a+b
链接:https://ac.nowcoder.com/acm/contest/320/B
来源:牛客网
题目描述
计算a+b
输入描述:
输入第一行包括一个数据组数t(1 <= t <= 100)
接下来每行包括两个正整数a,b(1 <= a, b <= 10^9)
输出描述:
输出a+b的结果
示例1
输入
2
1 5
10 20
输出
复制
6
30
代码
测试题2:计算a+b
链接:https://ac.nowcoder.com/acm/contest/320/B
来源:牛客网
题目描述
计算a+b
输入描述:
输入第一行包括一个数据组数t(1 <= t <= 100)
接下来每行包括两个正整数a,b(1 <= a, b <= 10^9)
输出描述:
输出a+b的结果
示例1
输入
2
1 5
10 20
输出
6
30
代码
try:
t = list(map(int, input().strip().split()))
for i in range(t[0]):
# a, b = list(map(int, input().split(" ")))
a, b = list(map(int, input().split()))
print(a + b)
except:
print("exit")
pass
测试题3:计算a+b
链接:https://ac.nowcoder.com/acm/contest/320/C
来源:牛客网
题目描述
计算a+b
输入描述:
输入包括两个正整数a,b(1 <= a, b <= 10^9),输入数据有多组, 如果输入为0 0则结束输入
输出描述:
输出a+b的结果
示例1
输入
1 5
10 20
0 0
输出
6
30
while 1:
a, b = list(map(int, input().strip().split()))
if a+b == 0:
break
print(a+b)
测试题4:计算a+b
链接:https://ac.nowcoder.com/acm/contest/320/D
来源:牛客网
题目描述
计算一系列数的和
输入描述:
输入数据包括多组。
每组数据一行,每行的第一个整数为整数的个数n(1 <= n <= 100), n为0的时候结束输入。
接下来n个正整数,即需要求和的每个正整数。
输出描述:
每组数据输出求和的结果
示例1
输入
4 1 2 3 4
5 1 2 3 4 5
0
输出
10
15
while 1:
a = list( map(int,input().strip().split()) )
if a[0] == 0:
break
print(sum(a[1:]))
测试题5:计算a+b
链接:https://ac.nowcoder.com/acm/contest/320/E
来源:牛客网
题目描述
计算一系列数的和
输入描述:
输入的第一行包括一个正整数t(1 <= t <= 100), 表示数据组数。
接下来t行, 每行一组数据。
每行的第一个整数为整数的个数n(1 <= n <= 100)。
接下来n个正整数, 即需要求和的每个正整数。
输出描述:
每组数据输出求和的结果
示例1
输入
2
4 1 2 3 4
5 1 2 3 4 5
输出
10
15
测试题6:计算a+b
链接:https://ac.nowcoder.com/acm/contest/320/F
来源:牛客网
题目描述
计算一系列数的和
输入描述:
输入数据有多组, 每行表示一组输入数据。
每行的第一个整数为整数的个数n(1 <= n <= 100)。
接下来n个正整数, 即需要求和的每个正整数。
输出描述:
每组数据输出求和的结果
示例1
输入
4 1 2 3 4
5 1 2 3 4 5
输出
10
15
try:
while 1:
a = list(map(int, input().strip().split()))
print(sum(a[1:]))
except:
pass
测试题7:计算a+b
链接:https://ac.nowcoder.com/acm/contest/320/G
来源:牛客网
题目描述
计算一系列数的和
输入描述:
输入数据有多组, 每行表示一组输入数据。
每行不定有n个整数,空格隔开。(1 <= n <= 100)。
输出描述:
每组数据输出求和的结果
示例1
输入
1 2 3
4 5
0 0 0 0 0
输出
6
9
0
try:
while True:
a = list( map(int, input().strip().split()))
print(sum(a))
except:
pass
测试题7:计算a+b,使用模板
def getInput(choice='intType',sep=None):
'''
:param choice: ['intType', 'strType']
intType, to get int data
strType, to get str data
:param sep: split str.
:return: a inpput list
'''
if choice =='intType':
if sep:
return list(map(int, input().strip().split(sep)))
else:
return list(map(int, input().strip().split()))
elif choice =='strType':
if sep:
return list((input().strip().split(sep)))
else:
return list((input().strip().split()))
try:
while True:
# a = list( map(int, input().strip().split()))
a = getInput()
print(sum(a))
except:
pass
牛客 ——- 字符串
字符串排序1
链接:https://ac.nowcoder.com/acm/contest/320/H
来源:牛客网
题目描述
对输入的字符串进行排序后输出
输入描述:
输入有两行,第一行n
第二行是n个空格隔开的字符串
输出描述:
输出一行排序后的字符串,空格隔开,无结尾空格
示例1
输入
5
c d a bb e
输出
a bb c d e
try:
while True:
n = list(map(int, input().strip().split()))
s = list((input().strip().split()))
s.sort()
print(' '.join(s))
except:
pass
字符串排序2
链接:https://ac.nowcoder.com/acm/contest/320/I
来源:牛客网
题目描述
对输入的字符串进行排序后输出
输入描述:
多个测试用例,每个测试用例一行。
每行通过空格隔开,有n个字符,n<100
输出描述:
对于每组测试用例,输出一行排序过的字符串,每个字符串通过空格隔开
示例1
输入
a c bb
f dddd
nowcoder
输出
a bb c
dddd f
nowcoder
try:
while True:
# n = getInput()
s = list((input().strip().split()))
s.sort()
print(' '.join(i for i in s)) # 方式一
# print(' '.join(s)) # 方式二
except:
pass
字符串排序3
链接:https://ac.nowcoder.com/acm/contest/320/J
来源:牛客网
题目描述
对输入的字符串进行排序后输出
输入描述:
多个测试用例,每个测试用例一行。
每行通过,隔开,有n个字符,n<100
输出描述:
对于每组用例输出一行排序后的字符串,用','隔开,无结尾空格
示例1
输入
a,c,bb
f,dddd
nowcoder
输出
a,bb,c
dddd,f
nowcoder
try:
while True:
s = input().strip().split(',')
s.sort()
print(','.join(s))
except:
pass
字符串排序3,使用模板
def getInput(choice='intType',sep=None):
'''
:param choice: ['intType', 'strType']
intType, to get int data
strType, to get str data
:param sep: split str.
:return: a inpput list
'''
if choice =='intType':
if sep:
return list(map(int, input().strip().split(sep)))
else:
return list(map(int, input().strip().split()))
elif choice =='strType':
if sep:
return list((input().strip().split(sep)))
else:
return list((input().strip().split()))
try:
while True:
# s = input().strip().split(',')
s = getInput(choice ='strType', sep=',')
s.sort()
print(','.join(s))
except:
pass
OJ在线编程常见输入输出练习场
https://ac.nowcoder.com/acm/contest/320#question