NC205085. 牛牛爱位运算
描述
牛牛正在学习位运算
输入描述
第一行,输入一个数T,表示数据组数。第2~(T+1)行,每行读入一个数n,接下来读入n个数,第i个数表示。
输出描述
对于每一组数据,你需要输出&的最大值。
示例1
输入:
2 1 5 2 5 5
输出:
5 5
说明:
pypy3(pypy3.6.1) 解法, 执行用时: 641ms, 内存消耗: 43244K, 提交时间: 2020-08-24 20:54:24
t=int(input()) for _ in range(t): a=list(map(int,input().split()))[1:] print(max(a))
Python3(3.5.2) 解法, 执行用时: 755ms, 内存消耗: 14800K, 提交时间: 2020-08-19 19:45:14
for _ in range(int(input())): print(max([int(n) for n in input().split()][1:]))