結果
問題 | No.1746 Sqrt Integer Segments |
ユーザー | ygd. |
提出日時 | 2021-11-19 21:35:56 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,906 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 82,848 KB |
実行使用メモリ | 106,296 KB |
最終ジャッジ日時 | 2024-06-10 08:07:21 |
合計ジャッジ時間 | 4,387 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
55,536 KB |
testcase_01 | AC | 38 ms
56,480 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 81 ms
104,016 KB |
testcase_19 | AC | 81 ms
104,176 KB |
testcase_20 | AC | 80 ms
104,084 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
ソースコード
import sys #input = sys.stdin.readline input = sys.stdin.buffer.readline from collections import defaultdict import random def prime_list(n): is_prime = [0] * (n + 1) #素数かどうか。1なら素数。 is_prime[2] = 1 for i in range(3, n + 1, 2): is_prime[i] = 1 for i in range(2, int(n ** 0.5) + 1): if is_prime[i]: for j in range(i * i, n + 1, 2 * i): is_prime[j] = 0 #最後に全部並べる。 d = [] for j in range(n + 1): if is_prime[j] == 1: d.append(j) return d, is_prime def main(): n = int(input()) A = list(map(int,input().split())) MAX = 20 #pow(10,6) P,dummy = prime_list(MAX) soinsu = [defaultdict(int) for _ in range(MAX+1)] prime_idx = {} for i,p in enumerate(P): v = p prime_idx[p] = i while v <= MAX: cnt = 0 nv = v while nv%p == 0: nv //= p cnt += 1 soinsu[v][i] = cnt #i番目の素数の因数をいくつ持つか v += p #print(soinsu) Z = [] zobrist_hash = 0 for _ in range(len(P)): #long longの範囲でランダムにハッシュを取る temp = random.randrange((1<<62) + 1,1<<63) Z.append(temp) zobrist_hash ^= temp dic = defaultdict(int) #ret = [] #ret.append(zobrist_hash) dic[zobrist_hash] += 1 for i,a in enumerate(A): #print("A",a) for key,val in soinsu[a].items(): if val%2 == 0: continue #偶数なので不変 #print(key,val) zobrist_hash ^= Z[key] dic[zobrist_hash] += 1 #ret.append(zobrist_hash) #print(ret) ans = 0 #print(dic) for key,val in dic.items(): ans += val*(val-1)//2 print(ans) if __name__ == '__main__': main()