mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-24 06:48:52 +00:00
P5682 [CSP-J2019 江西] 次大值
R44430393
This commit is contained in:
parent
e1bb425d87
commit
b3c5de0cea
25
problem/P5682/P5682.cpp
Normal file
25
problem/P5682/P5682.cpp
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int n, t, a[200005];
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
set<int> s;
|
||||||
|
cin >> n;
|
||||||
|
for (int i = 0; i < n; i++) {
|
||||||
|
cin >> t;
|
||||||
|
s.insert(t);
|
||||||
|
}
|
||||||
|
if (s.size() <= 1) {
|
||||||
|
cout << -1 << endl;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
t = 0;
|
||||||
|
for (int i : s) {
|
||||||
|
a[++t] = i;
|
||||||
|
}
|
||||||
|
cout << max(a[t - 2], a[t] % a[t - 1]) << endl;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user