結果

問題 No.1746 Sqrt Integer Segments
ユーザー roarisroaris
提出日時 2022-10-07 23:01:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 978 ms / 2,000 ms
コード長 875 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 272,980 KB
最終ジャッジ日時 2024-06-12 20:44:05
合計ジャッジ時間 24,888 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 559 ms
231,644 KB
testcase_01 AC 558 ms
231,500 KB
testcase_02 AC 821 ms
259,836 KB
testcase_03 AC 702 ms
249,700 KB
testcase_04 AC 765 ms
254,160 KB
testcase_05 AC 953 ms
271,412 KB
testcase_06 AC 661 ms
246,948 KB
testcase_07 AC 625 ms
232,884 KB
testcase_08 AC 792 ms
258,472 KB
testcase_09 AC 902 ms
271,680 KB
testcase_10 AC 648 ms
248,172 KB
testcase_11 AC 900 ms
267,100 KB
testcase_12 AC 900 ms
272,980 KB
testcase_13 AC 922 ms
272,168 KB
testcase_14 AC 907 ms
271,824 KB
testcase_15 AC 978 ms
271,708 KB
testcase_16 AC 960 ms
271,792 KB
testcase_17 AC 803 ms
256,524 KB
testcase_18 AC 632 ms
240,184 KB
testcase_19 AC 612 ms
240,048 KB
testcase_20 AC 614 ms
240,644 KB
testcase_21 AC 670 ms
241,116 KB
testcase_22 AC 657 ms
240,928 KB
testcase_23 AC 605 ms
239,844 KB
testcase_24 AC 771 ms
240,264 KB
testcase_25 AC 771 ms
239,932 KB
testcase_26 AC 760 ms
240,928 KB
testcase_27 AC 792 ms
240,032 KB
testcase_28 AC 834 ms
239,908 KB
testcase_29 AC 800 ms
240,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *
import random

class Fast_factorize:
    def __init__(self, n):
        self.p = [-1]*(n+1)
        
        for i in range(2, n+1):
            if self.p[i]==-1:
                for j in range(i, n+1, i):
                    if self.p[j]==-1:
                        self.p[j] = i
    
    def factorize(self, n):
        res = []
        
        while n>1:
            res.append(self.p[n])
            n //= self.p[n]
        
        return res

N = int(input())
A = list(map(int, input().split()))
ff = Fast_factorize(10**6+10)

x = random.sample(range(10**10, 10**18), 10**6+10)
cnt = defaultdict(int)
cnt[0] = 1
now = 0
ans = 0

for Ai in A:
    ps = Counter(ff.factorize(Ai))
    
    for k, v in ps.items():
        if v%2==1:
            now ^= x[k]

    ans += cnt[now]
    cnt[now] += 1

print(ans)
0