mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 14:58:48 +00:00
2257. [Jsoi2009]瓶子和燃料
https://hydro.ac/d/bzoj/record/6344c90fe6f241d3af10f44d
This commit is contained in:
parent
7c0dfb9906
commit
082a2db95f
38
BZOJ/2257/2257.cpp
Normal file
38
BZOJ/2257/2257.cpp
Normal file
@ -0,0 +1,38 @@
|
||||
#include <iostream>
|
||||
#include <map>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
int n, k;
|
||||
std::map<int, int> map;
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
cin.tie(nullptr);
|
||||
|
||||
cin >> n >> k;
|
||||
|
||||
for (int i = 1, x; i <= n; i++) {
|
||||
cin >> x;
|
||||
|
||||
for (int j = 1; j * j <= x; j++) {
|
||||
if (x % j == 0) {
|
||||
map[j]++;
|
||||
|
||||
if (j != x / j) map[x / j]++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (auto it = map.rbegin(); it != map.rend(); it++) {
|
||||
if (it->second >= k) {
|
||||
cout << it->first << endl;
|
||||
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
BIN
BZOJ/2257/data/1.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/1.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/1.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/1.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/10.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/10.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/10.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/10.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/2.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/2.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/2.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/2.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/3.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/3.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/3.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/3.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/4.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/4.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/4.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/4.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/5.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/5.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/5.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/5.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/6.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/6.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/6.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/6.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/7.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/7.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/7.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/7.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/8.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/8.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/8.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/8.out
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/9.in
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/9.in
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
BZOJ/2257/data/9.out
(Stored with Git LFS)
Normal file
BIN
BZOJ/2257/data/9.out
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user