結果

問題 No.546 オンリー・ワン
ユーザー convexineqconvexineq
提出日時 2021-02-15 01:28:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-07-22 13:18:28
合計ジャッジ時間 1,546 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 45 ms
52,224 KB
testcase_02 AC 44 ms
52,224 KB
testcase_03 AC 45 ms
51,968 KB
testcase_04 AC 45 ms
52,480 KB
testcase_05 AC 42 ms
52,608 KB
testcase_06 AC 47 ms
58,600 KB
testcase_07 AC 48 ms
58,624 KB
testcase_08 AC 49 ms
59,008 KB
testcase_09 AC 57 ms
62,208 KB
testcase_10 AC 50 ms
59,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
def lcm(x,y): return x//gcd(x,y)*y

def mobius_to_low(res,n):
    for i in range(n):
        i = 1<<i
        for j in range(1<<n):
            if j&i == 0: res[j] -= res[j^i]

n,L,R = map(int,input().split())
*a, = map(int,input().split())

def f(X,n):
    if X==0: return 0
    N = 1<<n
    yaku = [1]*N
    for i in range(n):
        for j in range(1<<i):
            yaku[j+(1<<i)] = lcm(yaku[j], a[i])

    r = [X//y for y in yaku]
    mobius_to_low(r,n)
    return sum(r[1<<i] for i in range(n))

print(f(R,n)-f(L-1,n))
0