結果
問題 | No.546 オンリー・ワン |
ユーザー | rpy3cpp |
提出日時 | 2017-07-14 22:59:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 585 bytes |
コンパイル時間 | 466 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-10-07 23:24:46 |
合計ジャッジ時間 | 1,372 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
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 | - |
ソースコード
import fractions N, L, H = map(int, input().split()) Cs = list(map(int, input().split())) def solve(N, L, H, Cs): return solve_core(N, H, Cs) - solve_core(N, L - 1, Cs) def solve_core(N, H, Cs): if H == 0: return 0 ans = 0 for pat in range(1, 1 << N): lcm = calc_lcm(pat, Cs) n = bin(pat).count('1') ans += (-1) ** (n - 1) * (H // lcm) * n return ans def calc_lcm(pat, Cs): lcm = 1 for i, c in enumerate(Cs): if pat & (1 << i): lcm = lcm * c // fractions.gcd(lcm, c) return lcm print(solve(N, L, H, Cs))