結果

問題 No.894 二種類のバス
ユーザー 👑 KazunKazun
提出日時 2020-06-12 14:42:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 106 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,680 KB
最終ジャッジ日時 2024-06-24 03:55:15
合計ジャッジ時間 1,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,288 KB
testcase_01 AC 40 ms
52,196 KB
testcase_02 AC 38 ms
52,192 KB
testcase_03 AC 38 ms
53,264 KB
testcase_04 AC 39 ms
53,468 KB
testcase_05 AC 38 ms
52,124 KB
testcase_06 AC 43 ms
52,068 KB
testcase_07 AC 39 ms
53,328 KB
testcase_08 AC 39 ms
52,440 KB
testcase_09 AC 38 ms
53,052 KB
testcase_10 AC 39 ms
52,992 KB
testcase_11 AC 39 ms
52,252 KB
testcase_12 AC 38 ms
53,520 KB
testcase_13 AC 38 ms
53,680 KB
testcase_14 AC 39 ms
52,652 KB
testcase_15 AC 37 ms
52,988 KB
testcase_16 AC 39 ms
52,432 KB
testcase_17 AC 38 ms
52,732 KB
testcase_18 AC 38 ms
53,340 KB
testcase_19 AC 39 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
T,A,B=map(int,input().split())
L=(A//gcd(A,B))*B

print((T-1)//A+(T-1)//B-(T-1)//L+1)
0