結果

問題 No.917 Make One With GCD
ユーザー tanon710tanon710
提出日時 2020-05-04 21:30:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 73,184 KB
最終ジャッジ日時 2024-06-24 11:15:49
合計ジャッジ時間 2,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
61,996 KB
testcase_01 AC 39 ms
53,692 KB
testcase_02 AC 38 ms
54,324 KB
testcase_03 AC 37 ms
53,320 KB
testcase_04 AC 37 ms
52,956 KB
testcase_05 AC 38 ms
53,292 KB
testcase_06 AC 75 ms
73,184 KB
testcase_07 AC 71 ms
70,196 KB
testcase_08 AC 46 ms
60,748 KB
testcase_09 AC 56 ms
64,932 KB
testcase_10 AC 58 ms
65,444 KB
testcase_11 AC 53 ms
65,728 KB
testcase_12 AC 60 ms
66,952 KB
testcase_13 AC 55 ms
63,392 KB
testcase_14 AC 55 ms
64,860 KB
testcase_15 AC 55 ms
63,844 KB
testcase_16 AC 59 ms
65,516 KB
testcase_17 AC 40 ms
57,912 KB
testcase_18 AC 43 ms
60,128 KB
testcase_19 AC 42 ms
58,420 KB
testcase_20 AC 41 ms
58,340 KB
testcase_21 AC 45 ms
60,520 KB
testcase_22 AC 43 ms
60,396 KB
testcase_23 AC 49 ms
62,408 KB
testcase_24 AC 44 ms
59,224 KB
testcase_25 AC 51 ms
62,588 KB
testcase_26 AC 41 ms
58,844 KB
testcase_27 AC 36 ms
52,684 KB
testcase_28 AC 37 ms
52,576 KB
testcase_29 AC 38 ms
52,460 KB
testcase_30 AC 40 ms
57,940 KB
testcase_31 AC 37 ms
52,700 KB
testcase_32 AC 40 ms
57,916 KB
testcase_33 AC 41 ms
58,168 KB
testcase_34 AC 37 ms
52,820 KB
testcase_35 AC 39 ms
58,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes(n):
    ret=[]
    for i in range(2,int(n**0.5)+1):
        if n%i==0:
            ret.append(i)
        while n%i==0:
            n//=i
    if n!=1:
        ret.append(n)
    return ret

n=int(input())
arr=list(map(int,input().split()))
ans=2**n-1
for i in range(n):
    cand=primes(arr[i])
    for f in range(1,2**len(cand)):
        flag=format(f,'b')
        flag='0'*(len(cand)-len(flag))+flag
        tmp=1
        for k in range(len(cand)):
            if flag[k]=='1':
                tmp*=cand[k]
        cnt=0
        for j in range(i+1,n):
            if arr[j]%tmp==0:
                cnt+=1
        if flag.count('1')%2==0:
            ans+=2**cnt
        else:
            ans-=2**cnt
print(ans)    
0