C/C++教程

Duplicate Number(NOIOPJENGLISH19)

本文主要是介绍Duplicate Number(NOIOPJENGLISH19),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Duplicate Number

https://acs.jxnu.edu.cn/problem/NOIOPJENGLISH19

1000ms 65536K

描述:

Given a sequence of N numbers, find a number A that the count of A in the sequence is at least two.

给出一列有n个数,找到数字a,a的数量在序列里倒数第二

输入:

First line: one positive integer N (N <= 1000).
Second line: N positive integers (<= 1000000).

第一行:一个正整数表示n

第二行:n个正整数

输出:

One integer A.

一个数表示a

样例输入:

8
2 4 2 1 5 3 9 6

样例输出:

2
这篇关于Duplicate Number(NOIOPJENGLISH19)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!