博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codevs 3295 落单的数
阅读量:5227 次
发布时间:2019-06-14

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

题目描述 Description

有n个数(n是奇数),其中n-1个数两两成对,有1个数落单,找出这个数。要求O(n)的时间复杂度,O(1)的空间复杂度

输入描述 
Input Description

第一行输入一个n, n是大于等于1的奇数

第二行包含n个整数

输出描述 
Output Description

输出那个落单的数

样例输入 
Sample Input

3

1 7 1

样例输出 
Sample Output

7

数据范围及提示 
Data Size & Hint

1<=n<=4000001  n是一个奇数

 

#include 
int n, x, ans;int main() { scanf("%d", &n); while (n--) { scanf("%d", &x); ans = ans ^ x; } printf("%d", ans); return 0;}

  

转载于:https://www.cnblogs.com/lyqlyq/p/7158554.html

你可能感兴趣的文章
新的开始
查看>>
java Facade模式
查看>>
NYOJ 120校园网络(有向图的强连通分量)(Kosaraju算法)
查看>>
SpringAop与AspectJ
查看>>
Leetcode 226: Invert Binary Tree
查看>>
http站点转https站点教程
查看>>
解决miner.start() 返回null
查看>>
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>