結果

問題 No.1746 Sqrt Integer Segments
ユーザー ooaiuooaiu
提出日時 2024-11-30 22:51:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 709 ms / 2,000 ms
コード長 1,178 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 142,468 KB
最終ジャッジ日時 2024-11-30 22:51:54
合計ジャッジ時間 15,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 220 ms
84,736 KB
testcase_01 AC 214 ms
84,480 KB
testcase_02 AC 587 ms
124,056 KB
testcase_03 AC 404 ms
105,088 KB
testcase_04 AC 472 ms
112,760 KB
testcase_05 AC 688 ms
141,244 KB
testcase_06 AC 374 ms
101,184 KB
testcase_07 AC 318 ms
89,984 KB
testcase_08 AC 544 ms
122,072 KB
testcase_09 AC 682 ms
142,468 KB
testcase_10 AC 377 ms
100,076 KB
testcase_11 AC 615 ms
133,788 KB
testcase_12 AC 679 ms
141,824 KB
testcase_13 AC 679 ms
141,692 KB
testcase_14 AC 709 ms
141,580 KB
testcase_15 AC 696 ms
141,708 KB
testcase_16 AC 665 ms
141,924 KB
testcase_17 AC 512 ms
115,748 KB
testcase_18 AC 287 ms
104,704 KB
testcase_19 AC 263 ms
104,960 KB
testcase_20 AC 264 ms
104,960 KB
testcase_21 AC 260 ms
91,200 KB
testcase_22 AC 286 ms
91,132 KB
testcase_23 AC 240 ms
90,880 KB
testcase_24 AC 293 ms
106,752 KB
testcase_25 AC 283 ms
106,880 KB
testcase_26 AC 313 ms
107,008 KB
testcase_27 AC 272 ms
106,752 KB
testcase_28 AC 272 ms
107,008 KB
testcase_29 AC 283 ms
106,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
from collections import defaultdict

MOD = 1788747373638354509

def factor(x: int):
    res = []
    while x % 2 == 0:
        res.append([2, 0])
        while x % 2 == 0:
            res[-1][1] += 1
            x //= 2
    y = 3
    while y * y <= x:
        if x % y == 0:
            res.append([y, 0])
            while x % y == 0:
                res[-1][1] += 1
                x //= y
        y += 2
    if x != 1:
        res.append([x, 1])
    return res

def solve():
    N = int(input())
    A = list(map(int, input().split()))
    
    M = 10**6
    ha = [random.randint(0, MOD-1) for _ in range(M+1)]
    
    memo = {}
    hash_values = [0] * N
    
    for i in range(N):
        if A[i] not in memo:
            val = 0
            for p, e in factor(A[i]):
                val ^= ha[p] * (e & 1)
            memo[A[i]] = val
        hash_values[i] = memo[A[i]]
    
    pref = [0] * (N + 1)
    for i in range(N):
        pref[i + 1] = pref[i] ^ hash_values[i]
    
    ans = 0
    mp = defaultdict(int)
    
    for i in range(N + 1):
        ans += mp[pref[i]]
        mp[pref[i]] += 1
    
    print(ans)

if __name__ == "__main__":
    solve()
0