結果
問題 | No.546 オンリー・ワン |
ユーザー | ckawatak |
提出日時 | 2017-10-18 20:39:29 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 491 bytes |
コンパイル時間 | 297 ms |
コンパイル使用メモリ | 82,188 KB |
実行使用メモリ | 88,596 KB |
最終ジャッジ日時 | 2024-11-18 15:00:49 |
合計ジャッジ時間 | 2,566 ms |
ジャッジサーバーID (参考情報) |
judge4 / 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 | - |
ソースコード
N,L,H = list(map(int, input().split(' '))) CS = list(map(int, input().split(' '))) from functools import reduce from fractions import gcd from itertools import combinations def lcm(*numbers): def lcm(a, b): return (a * b) // gcd(a, b) return reduce(lcm, numbers, 1) def pie(n, cs): total = 0 for i in range(1, len(cs)+1): for c in combinations(cs, i): total += pow(-1, i-1) * i * (n//lcm(*c)) return total print(pie(H, CS) - pie(L-1, CS))