結果

問題 No.1746 Sqrt Integer Segments
ユーザー ぷらぷら
提出日時 2021-11-18 00:48:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 1,497 bytes
コンパイル時間 2,585 ms
コンパイル使用メモリ 216,528 KB
実行使用メモリ 29,844 KB
最終ジャッジ日時 2024-09-13 09:24:08
合計ジャッジ時間 7,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
14,936 KB
testcase_01 AC 21 ms
15,120 KB
testcase_02 AC 173 ms
25,512 KB
testcase_03 AC 100 ms
20,960 KB
testcase_04 AC 131 ms
22,748 KB
testcase_05 AC 233 ms
29,720 KB
testcase_06 AC 85 ms
19,740 KB
testcase_07 AC 42 ms
16,572 KB
testcase_08 AC 169 ms
25,512 KB
testcase_09 AC 238 ms
29,748 KB
testcase_10 AC 80 ms
19,280 KB
testcase_11 AC 212 ms
28,432 KB
testcase_12 AC 232 ms
29,844 KB
testcase_13 AC 239 ms
29,840 KB
testcase_14 AC 232 ms
29,808 KB
testcase_15 AC 239 ms
29,844 KB
testcase_16 AC 241 ms
29,720 KB
testcase_17 AC 152 ms
24,028 KB
testcase_18 AC 57 ms
17,384 KB
testcase_19 AC 56 ms
17,276 KB
testcase_20 AC 57 ms
17,436 KB
testcase_21 AC 63 ms
16,040 KB
testcase_22 AC 63 ms
16,036 KB
testcase_23 AC 42 ms
15,520 KB
testcase_24 AC 105 ms
17,316 KB
testcase_25 AC 104 ms
17,280 KB
testcase_26 AC 105 ms
17,336 KB
testcase_27 AC 120 ms
17,412 KB
testcase_28 AC 120 ms
17,372 KB
testcase_29 AC 117 ms
17,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

mt19937_64 rng;

struct primenumber {
    vector<int> spf;
    vector<long long>pura;
    primenumber(int N) {
        init(N);
    }
    void init(int N) {
        spf.assign(N+1,0);
        pura.assign(N+1,0);
        for(int i = 0; i <= N; i++) {
            spf[i] = i;
            pura[i] = rng()%1001001001001001001;
        }
        for(int i = 2; i*i <= N; i++) {
            if(spf[i] == i) {
                for(int j = i*i; j <= N; j += i) {
                    if(spf[j] == j) {
                        spf[j] = i;
                    }
                }
            }
        }
    }
    bool is_prime(long long n) {
        bool flag = true;
        if(n == 1) {
            flag = false;
        }
        for(long long i = 2; i*i <= n; i++) {
            if(n%i == 0) {
                flag = false;
            }
        }
        return flag;
    }
    long long get(int n) {
        long long m = 0;
        while(n != 1) {
            m ^= pura[spf[n]];
            n /= spf[n];
        }
        return m;
    }
};

int main() {
    int n;
    cin >> n;
    vector<int>a(n);
    vector<long long>b(n+1);
    primenumber zz(1000001);
    for(int i = 0; i < n; i++) {
        cin >> a[i];
        b[i+1] = b[i]^zz.get(a[i]);
    }
    sort(b.begin(),b.end());
    long long ans = 0;
    map<long long,int>tmp;
    for(int i = 0; i < b.size(); i++) {
        ans += tmp[b[i]];
        tmp[b[i]]++;
    }
    cout << ans << endl;
}
0