結果

問題 No.894 二種類のバス
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-11 04:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 1,000 ms
コード長 341 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 56,608 KB
最終ジャッジ日時 2024-07-16 02:54:45
合計ジャッジ時間 1,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,608 KB
testcase_01 AC 48 ms
55,164 KB
testcase_02 AC 43 ms
55,916 KB
testcase_03 AC 42 ms
55,100 KB
testcase_04 AC 45 ms
56,232 KB
testcase_05 AC 43 ms
55,040 KB
testcase_06 AC 41 ms
55,520 KB
testcase_07 AC 41 ms
55,192 KB
testcase_08 AC 42 ms
55,796 KB
testcase_09 AC 41 ms
54,668 KB
testcase_10 AC 42 ms
55,268 KB
testcase_11 AC 42 ms
55,168 KB
testcase_12 AC 43 ms
56,020 KB
testcase_13 AC 43 ms
55,608 KB
testcase_14 AC 45 ms
55,224 KB
testcase_15 AC 45 ms
55,556 KB
testcase_16 AC 44 ms
55,716 KB
testcase_17 AC 42 ms
56,096 KB
testcase_18 AC 42 ms
54,960 KB
testcase_19 AC 42 ms
55,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t, a, b = map(int, input().split())

#import fractions
import math
from functools import reduce
def lcm_base(x, y):
  #return (x * y) // fractions.gcd(x, y)
  return (x * y) // math.gcd(x, y)

def lcm_list(numbers):
  return reduce(lcm_base, numbers, 1)

l = lcm_base(a, b)
q, r = divmod(t-1, l)
ans = q*(l//a+l//b-1)+r//a+r//b+1
print(ans)
0