結果

問題 No.894 二種類のバス
ユーザー neko
提出日時 2019-11-05 22:02:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 225 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-15 00:13:16
合計ジャッジ時間 1,536 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N,a,b=map(int, input().split())

min_ab=a*b//math.gcd(a,b)
a_times=N//a
b_times=N//b
ab_times=(N//min_ab) 
ans=a_times+b_times-ab_times+1

if N%min_ab==0 or N%a==0 or N%b==0:
    print(ans-1)
else:
    print(ans)
0