結果

問題 No.546 オンリー・ワン
ユーザー rlangevinrlangevin
提出日時 2023-07-10 12:39:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 63,812 KB
最終ジャッジ日時 2024-09-12 23:39:37
合計ジャッジ時間 1,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,952 KB
testcase_01 AC 36 ms
52,872 KB
testcase_02 AC 37 ms
52,892 KB
testcase_03 AC 36 ms
53,724 KB
testcase_04 AC 37 ms
52,312 KB
testcase_05 AC 37 ms
53,268 KB
testcase_06 AC 38 ms
53,076 KB
testcase_07 AC 38 ms
53,204 KB
testcase_08 AC 47 ms
62,440 KB
testcase_09 AC 52 ms
63,812 KB
testcase_10 AC 46 ms
62,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import lcm

def popcount(n):
    cnt = 0
    while n:
        cnt += n & 1
        n >>= 1
    return cnt

N, L, H = map(int, input().split())
C = list(map(int, input().split()))
ans = 0
N2 = 1 << N
for s in range(1, N2):
    cnt = 0
    val = 1
    for i in range(N):
        if (s >> i) & 1:
            cnt += 1
            val = lcm(val, C[i])
            if val > H:
                break
    ans += (H//val - (L - 1)//val) * (-1) ** (cnt + 1) * cnt
print(ans)
0