NC248247. 惊鸿
描述
输入描述
本题有多组数据。第一行一个正整数 表示数据组数。
每组数据会输入四个非负整数 ,并换行。
对于 的数据,。
输出描述
对于每组数据,输出一行一个非负整数表示 的最大值。
示例1
输入:
2 1 1 4 5 1 2 3 4
输出:
20 28
C++(clang++ 11.0.1) 解法, 执行用时: 45ms, 内存消耗: 908K, 提交时间: 2023-03-20 20:12:23
#include<iostream> using namespace std; int main(){ int t;cin>>t; while(t--){ int a,b,c,d; cin>>a>>b>>c>>d; cout<<(a|b|c|d)*4<<endl; } return 0; }
Python3 解法, 执行用时: 161ms, 内存消耗: 6356K, 提交时间: 2023-02-17 10:18:57
T=int(input()) for i in range(T) : a1,a2,a3,a4=map(int,input().split()) k=a1|a2|a3|a4 print(k*4)
pypy3 解法, 执行用时: 237ms, 内存消耗: 26088K, 提交时间: 2023-02-17 10:02:53
for i in range(int(input())): a,b,c,d=map(int,input().split()) print((a|b|c|d)<<2)