結果

問題 No.1746 Sqrt Integer Segments
ユーザー hir355hir355
提出日時 2021-11-18 00:45:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 639 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,840 KB
実行使用メモリ 124,268 KB
最終ジャッジ日時 2024-09-13 09:23:39
合計ジャッジ時間 14,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 204 ms
84,344 KB
testcase_01 AC 204 ms
84,484 KB
testcase_02 AC 503 ms
116,432 KB
testcase_03 AC 383 ms
102,796 KB
testcase_04 AC 432 ms
108,992 KB
testcase_05 AC 612 ms
123,376 KB
testcase_06 AC 350 ms
98,696 KB
testcase_07 AC 268 ms
88,708 KB
testcase_08 AC 496 ms
115,960 KB
testcase_09 AC 610 ms
123,696 KB
testcase_10 AC 351 ms
97,992 KB
testcase_11 AC 588 ms
119,736 KB
testcase_12 AC 617 ms
123,448 KB
testcase_13 AC 622 ms
124,064 KB
testcase_14 AC 639 ms
124,268 KB
testcase_15 AC 609 ms
124,084 KB
testcase_16 AC 630 ms
123,972 KB
testcase_17 AC 464 ms
112,400 KB
testcase_18 AC 248 ms
114,072 KB
testcase_19 AC 247 ms
114,284 KB
testcase_20 AC 249 ms
113,424 KB
testcase_21 AC 373 ms
102,028 KB
testcase_22 AC 373 ms
101,776 KB
testcase_23 AC 293 ms
91,572 KB
testcase_24 AC 518 ms
117,712 KB
testcase_25 AC 521 ms
117,556 KB
testcase_26 AC 516 ms
117,496 KB
testcase_27 AC 339 ms
117,928 KB
testcase_28 AC 336 ms
117,664 KB
testcase_29 AC 337 ms
117,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        while n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a

from random import randint
from collections import Counter

r = [randint(1, 1000000000000000000) for _ in range(1000000)]
n = int(input())
a = list(map(int, input().split()))
b = [0] * (n + 1)
for i in range(n):
    t = 0
    for pr in prime_factorize(a[i]):
        t ^= r[pr]
    b[i + 1] = b[i] ^ t
ans = 0
for v in Counter(b).values():
    ans += v * (v - 1) // 2
print(ans)
0