博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【HackerRank】Maximizing XOR
阅读量:5304 次
发布时间:2019-06-14

本文共 993 字,大约阅读时间需要 3 分钟。

给定两个整数:LR

∀ L ≤ A ≤ B ≤ R, 找出 A B 的最大值。

输入格式

第一行包含 L 第一行包含 R

数据范围

1 ≤ L ≤ R ≤ 103

输出格式

输出最大的异或和


题解:

1 import java.io.*; 2 import java.util.*; 3 import java.text.*; 4 import java.math.*; 5 import java.util.regex.*; 6  7 public class Solution { 8 /* 9  * Complete the function below.10  */11 12     static int maxXor(int l, int r) {13         int maxx = 0;14         for(int i = l;i <= r;i++){15             for(int j = l;j <= r;j++){16                 if(i != j)17                     maxx = Math.max(maxx,i^j);18             }19         }20         return maxx;21 22     }23 24     public static void main(String[] args) {25         Scanner in = new Scanner(System.in);26         int res;27         int _l;28         _l = Integer.parseInt(in.nextLine());29         30         int _r;31         _r = Integer.parseInt(in.nextLine());32         33         res = maxXor(_l, _r);34         System.out.println(res);35         36     }37 }

 

转载于:https://www.cnblogs.com/sunshineatnoon/p/3875818.html

你可能感兴趣的文章
LUA 在C函数中保存状态:registry、reference
查看>>
华清远见Linux设备驱动(每章小结)
查看>>
【Objective_C学习笔记】Block的使用
查看>>
Mac连接Linux服务器
查看>>
跟我一起学extjs5(17--Grid金额字段单位MVVM方式的选择)
查看>>
PowerShell 导出SharePoint管理中心解决方式
查看>>
DropdownList绑定的两种方法
查看>>
hadoop 2.2.0集群安装
查看>>
RapeLay(电车之狼R)的结局介绍 (隐藏结局攻略)
查看>>
【DataStructure】Some useful methods for arrays
查看>>
JNDI 是什么
查看>>
关于sources.list和apt-get [转载]
查看>>
高速排序算法
查看>>
转自知乎大神---什么是 JS 原型链?
查看>>
UVA 1590 IP Networks
查看>>
BW:处理链报错解决步骤
查看>>
1.Overview and Descriptive Statistics
查看>>
图片按比例缩放JS代码
查看>>
springmvc Controller 接收前端ajax的 get post请求返回各种参数
查看>>
WCF返回JSON的详细配置
查看>>