QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#282929 | #6566. Power of Divisors | warner1129# | AC ✓ | 48ms | 11068kb | C++20 | 2.0kb | 2023-12-13 14:57:41 | 2023-12-13 14:57:42 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
template <class... T> void dbg(T... x) { char e{}; ((cerr << e << x, e = ' '), ...); }
template <class T> void org(T l, T r) { while (l != r) cerr << ' ' << *l++; cerr << '\n'; }
#define debug(x...) dbg(#x, '=', x, '\n')
#define olist(x...) dbg(#x, '='), org(x)
#else
#define debug(...) ((void)0)
#define olist(...) ((void)0)
#endif
#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()
#define ff first
#define ss second
using u32 = unsigned int;
using i64 = long long;
using u64 = unsigned long long;
using i128 = __int128;
using u128 = unsigned __int128;
using Pt = pair<int, int>;
template <class T> inline constexpr T inf = numeric_limits<T>::max() / 2;
constexpr int mod = 998244353;
template<class T> bool chmin(T &a, T b) { return (b < a and (a = b, true)); }
template<class T> bool chmax(T &a, T b) { return (a < b and (a = b, true)); }
template<class... T> int add(T... x) { int t{}; return (((t += x) %= mod), ...), t; }
template<class... T> int mul(T... x) { i64 t{1}; return (((t *= x) %= mod), ...), t; }
void solve() {
i64 x;
cin >> x;
i64 p = *ranges::partition_point(views::iota(0ll, (i64)1e9 + 5), [&](i64 a) {
return a * a < x;
});
if (p * p != x) {
cout << -1 << '\n';
return;
}
debug(p);
bool f = true;
const int kN = 1e6;
vector<i64> val(kN + 1, 1);
for (i64 i = 2; i <= kN; i++) {
for (i64 j = i; j <= kN; j += i) {
if (val[j] < 0) continue;
if (val[j] * (i128)i > (i128)2e18) {
val[j] = -1;
} else {
val[j] *= i;
}
}
if (p % i == 0) f = false;
if (val[i] == p) {
cout << i << '\n';
return;
}
}
if (f) cout << p << '\n';
else cout << -1 << '\n';
}
signed main() {
cin.tie(0)->sync_with_stdio(false);
cin.exceptions(cin.failbit);
int T = 1;
// cin >> T;
while (T--) {
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 6ms
memory: 11004kb
input:
15625
output:
25
result:
ok single line: '25'
Test #2:
score: 0
Accepted
time: 4ms
memory: 10816kb
input:
64000000
output:
20
result:
ok single line: '20'
Test #3:
score: 0
Accepted
time: 42ms
memory: 11012kb
input:
65536
output:
-1
result:
ok single line: '-1'
Test #4:
score: 0
Accepted
time: 42ms
memory: 11064kb
input:
1
output:
1
result:
ok single line: '1'
Test #5:
score: 0
Accepted
time: 1ms
memory: 3532kb
input:
10
output:
-1
result:
ok single line: '-1'
Test #6:
score: 0
Accepted
time: 45ms
memory: 10992kb
input:
100
output:
-1
result:
ok single line: '-1'
Test #7:
score: 0
Accepted
time: 3ms
memory: 10996kb
input:
10000
output:
10
result:
ok single line: '10'
Test #8:
score: 0
Accepted
time: 17ms
memory: 11060kb
input:
1000000000000000000
output:
100
result:
ok single line: '100'
Test #9:
score: 0
Accepted
time: 35ms
memory: 11000kb
input:
10372926089038969
output:
218089
result:
ok single line: '218089'
Test #10:
score: 0
Accepted
time: 35ms
memory: 10796kb
input:
10642944803293201
output:
10157
result:
ok single line: '10157'
Test #11:
score: 0
Accepted
time: 45ms
memory: 11016kb
input:
10646534823110209
output:
103182047
result:
ok single line: '103182047'
Test #12:
score: 0
Accepted
time: 7ms
memory: 10980kb
input:
1073741824
output:
32
result:
ok single line: '32'
Test #13:
score: 0
Accepted
time: 7ms
memory: 10808kb
input:
121
output:
11
result:
ok single line: '11'
Test #14:
score: 0
Accepted
time: 5ms
memory: 11012kb
input:
1296
output:
6
result:
ok single line: '6'
Test #15:
score: 0
Accepted
time: 44ms
memory: 11060kb
input:
16
output:
-1
result:
ok single line: '-1'
Test #16:
score: 0
Accepted
time: 38ms
memory: 10784kb
input:
16277421889
output:
127583
result:
ok single line: '127583'
Test #17:
score: 0
Accepted
time: 3ms
memory: 11068kb
input:
169
output:
13
result:
ok single line: '13'
Test #18:
score: 0
Accepted
time: 0ms
memory: 3472kb
input:
1985984
output:
-1
result:
ok single line: '-1'
Test #19:
score: 0
Accepted
time: 0ms
memory: 3476kb
input:
2
output:
-1
result:
ok single line: '-1'
Test #20:
score: 0
Accepted
time: 21ms
memory: 11044kb
input:
205891132094649
output:
243
result:
ok single line: '243'
Test #21:
score: 0
Accepted
time: 5ms
memory: 10948kb
input:
25
output:
5
result:
ok single line: '5'
Test #22:
score: 0
Accepted
time: 24ms
memory: 10980kb
input:
2626114239841
output:
1273
result:
ok single line: '1273'
Test #23:
score: 0
Accepted
time: 31ms
memory: 10992kb
input:
26269395104446321
output:
12731
result:
ok single line: '12731'
Test #24:
score: 0
Accepted
time: 0ms
memory: 3464kb
input:
3
output:
-1
result:
ok single line: '-1'
Test #25:
score: 0
Accepted
time: 17ms
memory: 10964kb
input:
3596345248055296
output:
88
result:
ok single line: '88'
Test #26:
score: 0
Accepted
time: 43ms
memory: 10988kb
input:
36
output:
-1
result:
ok single line: '-1'
Test #27:
score: 0
Accepted
time: 0ms
memory: 11024kb
input:
4
output:
2
result:
ok single line: '2'
Test #28:
score: 0
Accepted
time: 5ms
memory: 11064kb
input:
4096
output:
8
result:
ok single line: '8'
Test #29:
score: 0
Accepted
time: 0ms
memory: 10984kb
input:
49
output:
7
result:
ok single line: '7'
Test #30:
score: 0
Accepted
time: 1ms
memory: 3376kb
input:
5
output:
-1
result:
ok single line: '-1'
Test #31:
score: 0
Accepted
time: 0ms
memory: 3484kb
input:
576460752303423488
output:
-1
result:
ok single line: '-1'
Test #32:
score: 0
Accepted
time: 44ms
memory: 11068kb
input:
581431415926321
output:
24112889
result:
ok single line: '24112889'
Test #33:
score: 0
Accepted
time: 0ms
memory: 3428kb
input:
6
output:
-1
result:
ok single line: '-1'
Test #34:
score: 0
Accepted
time: 4ms
memory: 11064kb
input:
64
output:
4
result:
ok single line: '4'
Test #35:
score: 0
Accepted
time: 7ms
memory: 11012kb
input:
656100000000
output:
30
result:
ok single line: '30'
Test #36:
score: 0
Accepted
time: 0ms
memory: 3500kb
input:
7
output:
-1
result:
ok single line: '-1'
Test #37:
score: 0
Accepted
time: 6ms
memory: 10792kb
input:
729
output:
9
result:
ok single line: '9'
Test #38:
score: 0
Accepted
time: 1ms
memory: 3472kb
input:
8
output:
-1
result:
ok single line: '-1'
Test #39:
score: 0
Accepted
time: 44ms
memory: 10992kb
input:
81
output:
-1
result:
ok single line: '-1'
Test #40:
score: 0
Accepted
time: 23ms
memory: 11020kb
input:
8527674378686464
output:
452
result:
ok single line: '452'
Test #41:
score: 0
Accepted
time: 3ms
memory: 11008kb
input:
9
output:
3
result:
ok single line: '3'
Test #42:
score: 0
Accepted
time: 38ms
memory: 10988kb
input:
982134461213542729
output:
994009
result:
ok single line: '994009'
Test #43:
score: 0
Accepted
time: 31ms
memory: 11064kb
input:
9992002399680016
output:
9998
result:
ok single line: '9998'
Test #44:
score: 0
Accepted
time: 47ms
memory: 11036kb
input:
999269311525198921
output:
-1
result:
ok single line: '-1'
Test #45:
score: 0
Accepted
time: 0ms
memory: 3428kb
input:
999949000866995087
output:
-1
result:
ok single line: '-1'
Test #46:
score: 0
Accepted
time: 48ms
memory: 11024kb
input:
999995482005103081
output:
-1
result:
ok single line: '-1'
Test #47:
score: 0
Accepted
time: 0ms
memory: 3428kb
input:
999999969999997921
output:
-1
result:
ok single line: '-1'
Test #48:
score: 0
Accepted
time: 0ms
memory: 3464kb
input:
999999999999999989
output:
-1
result:
ok single line: '-1'
Test #49:
score: 0
Accepted
time: 0ms
memory: 3424kb
input:
999999999999999999
output:
-1
result:
ok single line: '-1'