結果

問題 No.1746 Sqrt Integer Segments
ユーザー chineristACchineristAC
提出日時 2021-11-28 02:49:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 1,018 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 131,312 KB
最終ジャッジ日時 2024-09-13 09:29:14
合計ジャッジ時間 16,721 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 372 ms
92,660 KB
testcase_01 AC 375 ms
92,792 KB
testcase_02 AC 520 ms
118,484 KB
testcase_03 AC 468 ms
106,208 KB
testcase_04 AC 491 ms
111,640 KB
testcase_05 AC 577 ms
128,976 KB
testcase_06 AC 448 ms
103,568 KB
testcase_07 AC 415 ms
95,848 KB
testcase_08 AC 530 ms
118,348 KB
testcase_09 AC 577 ms
131,312 KB
testcase_10 AC 460 ms
104,132 KB
testcase_11 AC 556 ms
124,476 KB
testcase_12 AC 579 ms
128,200 KB
testcase_13 AC 580 ms
131,096 KB
testcase_14 AC 587 ms
131,200 KB
testcase_15 AC 581 ms
131,200 KB
testcase_16 AC 589 ms
131,080 KB
testcase_17 AC 517 ms
113,968 KB
testcase_18 AC 423 ms
124,072 KB
testcase_19 AC 421 ms
124,188 KB
testcase_20 AC 422 ms
123,848 KB
testcase_21 AC 439 ms
108,148 KB
testcase_22 AC 446 ms
107,972 KB
testcase_23 AC 412 ms
99,584 KB
testcase_24 AC 496 ms
125,772 KB
testcase_25 AC 492 ms
125,916 KB
testcase_26 AC 492 ms
125,624 KB
testcase_27 AC 549 ms
125,836 KB
testcase_28 AC 539 ms
126,056 KB
testcase_29 AC 546 ms
125,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import log,gcd

input = lambda :sys.stdin.readline()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

M = 10**6
spf = [i for i in range(M+1)]
for i in range(2,M+1):
    if spf[i]==i:
        for j in range(i,M+1,i):
            spf[j] = i


def factorize(n):
    res = []
    while n!=1:
        p = spf[n]
        cnt = 0
        while n%p==0:
            cnt += 1
            n //= p
        if cnt&1:
            res.append(p)
    return res

rand_val = [random.randint(0,(1<<60)-1) for i in range(M+1)]
    
N = int(input())
A = [1] + li()

hash = [0 for i in range(N+1)]
for i in range(N+1):
    tmp_p = factorize(A[i])
    for p in tmp_p:
        hash[i] ^= rand_val[p]
for i in range(1,N+1):
    hash[i] ^= hash[i-1]

dic = {val:0 for val in hash}
for val in hash:
    dic[val] += 1

res = sum(k*(k-1)//2 for val,k in dic.items())
print(res)
0