結果

問題 No.894 二種類のバス
ユーザー flippergoflippergo
提出日時 2024-12-17 08:30:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 1,000 ms
コード長 179 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 53,632 KB
最終ジャッジ日時 2024-12-17 08:30:37
合計ジャッジ時間 2,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,268 KB
testcase_01 AC 39 ms
52,812 KB
testcase_02 AC 37 ms
52,448 KB
testcase_03 AC 38 ms
52,012 KB
testcase_04 AC 38 ms
52,088 KB
testcase_05 AC 38 ms
53,216 KB
testcase_06 AC 39 ms
52,620 KB
testcase_07 AC 37 ms
53,632 KB
testcase_08 AC 37 ms
52,588 KB
testcase_09 AC 37 ms
52,752 KB
testcase_10 AC 37 ms
51,880 KB
testcase_11 AC 37 ms
52,528 KB
testcase_12 AC 41 ms
52,200 KB
testcase_13 AC 39 ms
52,344 KB
testcase_14 AC 41 ms
52,192 KB
testcase_15 AC 37 ms
52,632 KB
testcase_16 AC 38 ms
52,340 KB
testcase_17 AC 37 ms
53,368 KB
testcase_18 AC 37 ms
52,344 KB
testcase_19 AC 36 ms
52,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T,A,B = map(int,input().split())
na = (T-1)//A
nb = (T-1)//B
def gcd(a,b):
    while b!=0:
        a,b = b,a%b
    return a
d = gcd(A,B)
C = A*B//d
nc = (T-1)//C
print(na+nb-nc+1)
0