結果

問題 No.546 オンリー・ワン
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-30 00:04:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 590 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-11-06 20:43:14
合計ジャッジ時間 1,588 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,224 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 43 ms
52,224 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 41 ms
52,992 KB
testcase_07 AC 52 ms
62,592 KB
testcase_08 AC 58 ms
64,384 KB
testcase_09 AC 56 ms
65,024 KB
testcase_10 AC 57 ms
64,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
N, L, H = map(int, input().split())
C = list(map(int, input().split()))
MOD = 10**9+7
A = [1]*(1 << N)
INF = 2*10**9
ans = 0
for i in range(1 << N):
    f = 0
    for j in range(N):
        if (i >> j) & 1:
            f += 1
            continue
        ni = i ^ (1 << j)
        A[ni] = min(INF, A[i]*C[j]//gcd(A[i], C[j]))
    v = H//A[i]
    ans += v*f if f % 2 else -v*f

for i in range(1 << N):
    f = 0
    for j in range(N):
        if (i >> j) & 1:
            f += 1
            continue
    v = (L-1)//A[i]
    ans += v*f if not f % 2 else -v*f

print(ans)
0