結果
問題 | No.1746 Sqrt Integer Segments |
ユーザー | shotoyoo |
提出日時 | 2021-11-18 20:29:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,824 bytes |
コンパイル時間 | 398 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 147,896 KB |
最終ジャッジ日時 | 2024-06-08 09:50:49 |
合計ジャッジ時間 | 15,950 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 182 ms
102,080 KB |
testcase_01 | AC | 180 ms
102,204 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 236 ms
123,916 KB |
testcase_19 | AC | 245 ms
124,428 KB |
testcase_20 | AC | 241 ms
124,052 KB |
testcase_21 | AC | 276 ms
116,288 KB |
testcase_22 | AC | 293 ms
116,548 KB |
testcase_23 | AC | 249 ms
109,124 KB |
testcase_24 | AC | 381 ms
129,012 KB |
testcase_25 | AC | 376 ms
129,136 KB |
testcase_26 | AC | 391 ms
129,268 KB |
testcase_27 | AC | 472 ms
129,304 KB |
testcase_28 | AC | 479 ms
129,308 KB |
testcase_29 | AC | 471 ms
129,308 KB |
ソースコード
import sys input = lambda : sys.stdin.readline().rstrip() write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x)) debug = lambda x: sys.stderr.write(x+"\n") YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO) LI = lambda : list(map(int, input().split())) # sys.setrecursionlimit(3*10**5+10) def hurui(n): """線形篩 pl: 素数のリスト mpf: iを割り切る最小の素因数 """ pl = [] mpf = [None]*(n+1) for d in range(2,n+1): if mpf[d] is None: mpf[d] = d pl.append(d) for p in pl: if p*d>n or p>mpf[d]: break mpf[p*d] = p return pl, mpf from collections import defaultdict def factor(num): d = defaultdict(int) if num==1: d.update({1:1}) return d while num>1: d[mpf[num]] += 1 num //= mpf[num] return d def fs(num): f = factor(num) ans = [1] for k,v in f.items(): tmp = [] for i in range(len(ans)): val = 1 for _ in range(v): val *= k ans.append(ans[i]*val) return ans pl, mpf = hurui(10**6+10) n = int(input()) a = list(map(int, input().split())) M = 10**9+7 vs = {} d = {} d[0] = 1 val = 0 s = set() ans = 0 import random def sub(k): if k in vs: return vs[k] vs[k] = random.randint(1,M-1)*k%M return vs[k] for i in range(n): f = factor(a[i]) for k,v in f.items(): if k==1: continue if v%2==1: tmp = sub(k) if k in s: s.remove(k) val -= tmp else: s.add(k) val += tmp val %= M ans += d.get(val, 0) d.setdefault(val, 0) d[val] += 1 print(ans)