結果
問題 | No.1746 Sqrt Integer Segments |
ユーザー | 629e^-b |
提出日時 | 2021-11-21 13:13:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,124 bytes |
コンパイル時間 | 4,852 ms |
コンパイル使用メモリ | 272,628 KB |
実行使用メモリ | 32,016 KB |
最終ジャッジ日時 | 2024-06-22 19:22:34 |
合計ジャッジ時間 | 9,304 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
31,584 KB |
testcase_01 | AC | 49 ms
26,076 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using ull = unsigned long long; using ld = long double; using pii = pair<int, int>; using pdd = pair<ld, ld>; using pll = pair<ll, ll>; using pli = pair<ll, int>; using pil = pair<int, ll>; template <typename T> using Graph = vector<vector<T>>; const int MOD1 = 998244353; const int MOD2 = 1000000007; const ld PI = acos(-1); int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector<int> a(n); for (int i = 0; i < n; ++i) { cin >> a[i]; } int ma = 1000000; vector<bool> isprime(ma + 1, true); vector<int> pr(ma + 1, 1); isprime[0] = isprime[1] = false; for (int i = 2; i * i <= ma; ++i) { if (!isprime[i]) continue; pr[i] = i; for (int j = 2 * i; j <= ma; j += i) { isprime[j] = false; if (pr[j] == 1) pr[j] = i; } } unordered_map<int, int> mp; { int cnt = 0; for (int i = 2; i <= ma; ++i) { if (isprime[i]) { mp[i] = cnt++; } } } vector<ll> inv1(ma + 1), inv2(ma + 1); inv1[1] = inv2[1] = 1; for (int i = 2; i <= ma; ++i) { inv1[i] = MOD1 - (MOD1 / i) * inv1[MOD1 % i] % MOD1; inv2[i] = MOD2 - (MOD2 / i) * inv2[MOD2 % i] % MOD2; } unordered_map<ll, int> mp2; vector<bool> cnt(mp.size()); ll m1 = 1, m2 = 1; mp2[(m1 << 30) | m2] = 1; ll ans = 0; for (int i = 0; i < n; ++i) { while (a[i] != 1) { int tmp = pr[a[i]]; int idx = mp[tmp]; if (cnt[idx]) { (m1 *= inv1[tmp]) %= MOD1; (m2 *= inv2[tmp]) %= MOD2; cnt[idx] = 0; } else { (m1 *= tmp) %= MOD1; (m2 *= tmp) %= MOD2; cnt[idx] = 1; } a[i] /= tmp; } ans += mp2[(m1 << 30) | m2]; mp2[(m1 << 30) | m2]++; } cout << ans << endl; return 0; }