QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#364888 | #8103. Product | ckiseki# | WA | 1815ms | 6880kb | C++20 | 2.4kb | 2024-03-24 17:07:59 | 2024-03-24 17:07:59 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define all(x) begin(x), end(x)
#ifdef CKISEKI
#define safe cerr << __PRETTY_FUNCTION__ << " line " << __LINE__ << " safe\n"
#define debug(a...) debug_(#a, a)
#define orange(a...) orange_(#a, a)
void debug_(auto s, auto ...a) {
cerr << "\e[1;32m(" << s << ") = (";
int f = 0;
(..., (cerr << (f++ ? ", " : "") << a));
cerr << ")\e[0m\n";
}
#include <experimental/iterator>
void orange_(auto s, auto L, auto R) {
cerr << "\e[1;33m[ " << s << " ] = [ ";
using namespace experimental;
copy(L, R, make_ostream_joiner(cerr, ", "));
cerr << " ]\e[0m\n";
}
#else
#define safe ((void)0)
#define debug(...) safe
#define orange(...) safe
#endif
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
const int maxn = 100;
vector<int> sieve(maxn), prs;
for (int i = 2; i < maxn; i++)
if (!sieve[i])
for (int j = i * 2; j < maxn; j += i)
sieve[j] = true;
for (int i = 2; i < maxn; i++)
if (!sieve[i])
prs.push_back(i);
int k;
int64_t N;
vector<int> has(maxn);
// for (int p : prs)
// has[p] = true;
cin >> k;
cin >> N;
for (int i = 0; i < k; i++) {
int p;
cin >> p;
has[p] = true;
}
orange(all(prs));
const int C = 1e8;
vector<int> ns;
ns.reserve(930000);
auto dfs = [&](auto self, size_t i, size_t r, int64_t prod) {
if (i >= r) {
ns.push_back(prod);
return;
}
self(self, i + 1, r, prod);
if (has[prs[i]])
while ((__int128)prod * prs[i] <= C) {
prod *= prs[i];
self(self, i + 1, r, prod);
}
};
dfs(dfs, 0, prs.size(), 1);
debug(ns.size());
std::make_heap(all(ns));
for (size_t i = ns.size(); i > 0; i--)
std::pop_heap(ns.begin(), ns.begin() + i);
// sort(all(ns));
const int64_t C2 = 3e10;
int cnt = 0;
int64_t ans = 1;
auto dfs2 = [&](auto self, size_t i, size_t r, int64_t prod) {
auto it = upper_bound(all(ns), N / prod);
if (it != ns.begin()) {
ans = max(ans, *prev(it) * prod);
}
if (i >= r) {
return;
}
// ++cnt;
// if (cnt % 10000 == 0) cerr << cnt << endl;
for (size_t j = i; j < r; j++) {
if (has[prs[j]]) {
auto p = prod;
while ((__int128)p * prs[j] <= C2) {
p *= prs[j];
self(self, j + 1, r, p);
}
}
}
};
dfs2(dfs2, 0, prs.size(), 1);
cout << ans << '\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3704kb
input:
3 30 2 3 7
output:
28
result:
ok 1 number(s): "28"
Test #2:
score: 0
Accepted
time: 2ms
memory: 3588kb
input:
7 939341491978215167 2 3 19 43 47 53 61
output:
939207819748596228
result:
ok 1 number(s): "939207819748596228"
Test #3:
score: 0
Accepted
time: 71ms
memory: 3844kb
input:
16 997257405471326207 2 3 5 11 19 23 37 41 47 53 59 61 73 79 89 97
output:
997257095125632000
result:
ok 1 number(s): "997257095125632000"
Test #4:
score: 0
Accepted
time: 156ms
memory: 5672kb
input:
21 999404092522162547 2 3 13 17 19 23 29 31 37 41 43 47 59 61 67 71 73 79 83 89 97
output:
999404022916180674
result:
ok 1 number(s): "999404022916180674"
Test #5:
score: 0
Accepted
time: 6ms
memory: 3660kb
input:
6 969452367537798143 2 3 5 7 11 13
output:
969402569554298880
result:
ok 1 number(s): "969402569554298880"
Test #6:
score: 0
Accepted
time: 1157ms
memory: 6724kb
input:
25 999949383078942015 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
999949379900286375
result:
ok 1 number(s): "999949379900286375"
Test #7:
score: 0
Accepted
time: 0ms
memory: 3848kb
input:
16 889438016964538336 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
889426845003977563
result:
ok 1 number(s): "889426845003977563"
Test #8:
score: 0
Accepted
time: 56ms
memory: 3644kb
input:
17 299993 2 3 7 11 17 19 23 31 41 43 47 53 71 73 79 83 97
output:
299943
result:
ok 1 number(s): "299943"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3884kb
input:
2 780879715975993128 23 47
output:
592020020271363743
result:
ok 1 number(s): "592020020271363743"
Test #10:
score: 0
Accepted
time: 1139ms
memory: 6672kb
input:
25 1000000000000000000 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
1000000000000000000
result:
ok 1 number(s): "1000000000000000000"
Test #11:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
1 1000000000000000000 7
output:
558545864083284007
result:
ok 1 number(s): "558545864083284007"
Test #12:
score: 0
Accepted
time: 1ms
memory: 3848kb
input:
7 999993 3 5 19 23 31 79 83
output:
994635
result:
ok 1 number(s): "994635"
Test #13:
score: 0
Accepted
time: 23ms
memory: 3552kb
input:
15 999993 3 5 7 11 13 17 19 23 29 53 59 67 73 79 89
output:
999845
result:
ok 1 number(s): "999845"
Test #14:
score: 0
Accepted
time: 40ms
memory: 3880kb
input:
20 999993 3 5 7 11 17 23 29 37 41 47 53 59 61 67 71 73 79 83 89 97
output:
999949
result:
ok 1 number(s): "999949"
Test #15:
score: 0
Accepted
time: 8ms
memory: 3608kb
input:
20 10 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
1
result:
ok 1 number(s): "1"
Test #16:
score: 0
Accepted
time: 0ms
memory: 3660kb
input:
1 1 11
output:
1
result:
ok 1 number(s): "1"
Test #17:
score: 0
Accepted
time: 0ms
memory: 3604kb
input:
2 1 3 7
output:
1
result:
ok 1 number(s): "1"
Test #18:
score: 0
Accepted
time: 0ms
memory: 3904kb
input:
1 25 5
output:
25
result:
ok 1 number(s): "25"
Test #19:
score: 0
Accepted
time: 0ms
memory: 3604kb
input:
1 80 3
output:
27
result:
ok 1 number(s): "27"
Test #20:
score: 0
Accepted
time: 14ms
memory: 3584kb
input:
14 9999999999993 3 5 11 17 29 37 41 43 47 53 59 67 71 89
output:
9999988946425
result:
ok 1 number(s): "9999988946425"
Test #21:
score: 0
Accepted
time: 94ms
memory: 3668kb
input:
11 9999999999993 2 3 5 7 11 13 17 19 23 29 31
output:
9999995866575
result:
ok 1 number(s): "9999995866575"
Test #22:
score: 0
Accepted
time: 0ms
memory: 3704kb
input:
7 9999999999993 67 71 73 79 83 89 97
output:
9973374165409
result:
ok 1 number(s): "9973374165409"
Test #23:
score: 0
Accepted
time: 4ms
memory: 3608kb
input:
17 9999999999993 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
9999983345279
result:
ok 1 number(s): "9999983345279"
Test #24:
score: 0
Accepted
time: 27ms
memory: 3592kb
input:
8 10000000000007 2 3 5 7 11 13 17 19
output:
10000000000000
result:
ok 1 number(s): "10000000000000"
Test #25:
score: 0
Accepted
time: 316ms
memory: 4172kb
input:
19 9999999999993 2 3 5 11 13 17 19 23 37 41 43 47 53 59 61 71 73 79 97
output:
9999997667946
result:
ok 1 number(s): "9999997667946"
Test #26:
score: 0
Accepted
time: 515ms
memory: 6880kb
input:
18 9999999999993 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61
output:
9999998400000
result:
ok 1 number(s): "9999998400000"
Test #27:
score: 0
Accepted
time: 4ms
memory: 3560kb
input:
13 9999999999993 5 19 23 29 31 43 59 61 71 73 79 83 89
output:
9999720278125
result:
ok 1 number(s): "9999720278125"
Test #28:
score: 0
Accepted
time: 7ms
memory: 3640kb
input:
18 9999999999993 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
9999983345279
result:
ok 1 number(s): "9999983345279"
Test #29:
score: 0
Accepted
time: 513ms
memory: 5100kb
input:
18 10000000000007 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61
output:
10000000000000
result:
ok 1 number(s): "10000000000000"
Test #30:
score: 0
Accepted
time: 465ms
memory: 6276kb
input:
19 99979004294399 2 3 5 7 11 13 19 23 29 37 41 43 47 61 71 73 79 83 97
output:
99978964734375
result:
ok 1 number(s): "99978964734375"
Test #31:
score: 0
Accepted
time: 472ms
memory: 4748kb
input:
17 100012983161519 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59
output:
100012947714225
result:
ok 1 number(s): "100012947714225"
Test #32:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
7 80798284478112 67 71 73 79 83 89 97
output:
74134508438681
result:
ok 1 number(s): "74134508438681"
Test #33:
score: 0
Accepted
time: 9ms
memory: 3592kb
input:
19 99168391445350 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
99167116466567
result:
ok 1 number(s): "99167116466567"
Test #34:
score: 0
Accepted
time: 37ms
memory: 3592kb
input:
19 999125202087220 7 11 13 17 19 23 29 37 41 43 47 53 59 61 67 71 73 89 97
output:
999122542031933
result:
ok 1 number(s): "999122542031933"
Test #35:
score: 0
Accepted
time: 513ms
memory: 4828kb
input:
17 999903263508863 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59
output:
999903016450000
result:
ok 1 number(s): "999903016450000"
Test #36:
score: 0
Accepted
time: 0ms
memory: 3884kb
input:
7 812983475175210 67 71 73 79 83 89 97
output:
809465694096799
result:
ok 1 number(s): "809465694096799"
Test #37:
score: 0
Accepted
time: 13ms
memory: 3544kb
input:
19 993541792230718 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
993535939479217
result:
ok 1 number(s): "993535939479217"
Test #38:
score: 0
Accepted
time: 279ms
memory: 4156kb
input:
19 9996300831103487 2 3 7 11 17 19 23 29 31 37 41 47 53 61 67 79 83 89 97
output:
9996299037850818
result:
ok 1 number(s): "9996299037850818"
Test #39:
score: 0
Accepted
time: 1815ms
memory: 6880kb
input:
25 9999702826132809 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
9999702714170048
result:
ok 1 number(s): "9999702714170048"
Test #40:
score: 0
Accepted
time: 1ms
memory: 3640kb
input:
7 9835185676953190 17 19 37 43 53 73 83
output:
9803452077884603
result:
ok 1 number(s): "9803452077884603"
Test #41:
score: 0
Accepted
time: 25ms
memory: 5436kb
input:
17 499993 3 5 7 17 19 23 29 31 37 41 43 47 61 71 73 83 97
output:
499905
result:
ok 1 number(s): "499905"
Test #42:
score: 0
Accepted
time: 1775ms
memory: 6732kb
input:
25 10000000000000000 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
10000000000000000
result:
ok 1 number(s): "10000000000000000"
Test #43:
score: 0
Accepted
time: 139ms
memory: 3836kb
input:
19 99936024569882500 3 5 7 11 13 19 23 29 37 41 43 47 53 59 67 71 73 79 89
output:
99936003073188975
result:
ok 1 number(s): "99936003073188975"
Test #44:
score: 0
Accepted
time: 494ms
memory: 4752kb
input:
17 99968556160199999 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59
output:
99968548850411472
result:
ok 1 number(s): "99968548850411472"
Test #45:
score: 0
Accepted
time: 0ms
memory: 3588kb
input:
7 76628348600474422 67 71 73 79 83 89 97
output:
76425966229529167
result:
ok 1 number(s): "76425966229529167"
Test #46:
score: 0
Accepted
time: 12ms
memory: 3668kb
input:
19 99743038863879892 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97
output:
99742786671616757
result:
ok 1 number(s): "99742786671616757"
Test #47:
score: 0
Accepted
time: 31ms
memory: 3600kb
input:
17 799993 2 5 11 17 19 23 31 37 41 43 47 53 61 67 71 73 97
output:
799940
result:
ok 1 number(s): "799940"
Test #48:
score: 0
Accepted
time: 483ms
memory: 5972kb
input:
17 100000000000000001 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59
output:
100000000000000000
result:
ok 1 number(s): "100000000000000000"
Test #49:
score: 0
Accepted
time: 826ms
memory: 6192kb
input:
23 899966922221289471 2 3 5 7 11 13 17 19 23 29 31 37 41 47 53 59 61 67 73 79 83 89 97
output:
899966916734624375
result:
ok 1 number(s): "899966916734624375"
Test #50:
score: 0
Accepted
time: 797ms
memory: 6088kb
input:
22 899957726806359374 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79
output:
899957721023521875
result:
ok 1 number(s): "899957721023521875"
Test #51:
score: -100
Wrong Answer
time: 0ms
memory: 3556kb
input:
9 697531589899549528 59 61 67 71 73 79 83 89 97
output:
650506988333287763
result:
wrong answer 1st numbers differ - expected: '689954619477214319', found: '650506988333287763'