codeforces 764A Taymyr is calling you

本文探讨了一个有趣的数学问题:如何通过计算最小公倍数来确定在特定时间内杀死多少艺术家以确保每次电话来时房间内没有艺术家。文章提供了一段C++代码实现,通过输入电话间隔、艺术家到来间隔及一天的总分钟数来解决该问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

点击打开链接

A. Taymyr is calling you
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Comrade Dujikov is busy choosing artists for Timofey's birthday and is recieving calls from Taymyr from Ilia-alpinist.

Ilia-alpinist calls every n minutes, i.e. in minutes n2n3n and so on. Artists come to the comrade every m minutes, i.e. in minutes m2m3m and so on. The day is z minutes long, i.e. the day consists of minutes 1, 2, ..., z. How many artists should be killed so that there are no artists in the room when Ilia calls? Consider that a call and a talk with an artist take exactly one minute.

Input

The only string contains three integers — nm and z (1 ≤ n, m, z ≤ 104).

Output

Print single integer — the minimum number of artists that should be killed so that there are no artists in the room when Ilia calls.

Examples
input
1 1 10
output
10
input
1 2 5
output
2
input
2 3 9
output
1
Note

Taymyr is a place in the north of Russia.

In the first test the artists come each minute, as well as the calls, so we need to kill all of them.

In the second test we need to kill artists which come on the second and the fourth minutes.

In the third test — only the artist which comes on the sixth minute.


转化为最小公倍数,求最小公倍数

#include<iostream>
using namespace std;
int fun(int x,int y)
{
    int a=x,b=y,c;
    while(b!=0)
    {
        c=a%b;
        a=b;
        b=c;
    }
    return x*y/a;
}
int main()
{
    int n,m,z;
    cin>>n>>m>>z;
    int s=0;
    int t=fun(n,m),k=t;
    if(k<=z)
        s++;
    while(k+t<=z)
    {
        s++;
        k+=t;
    }
    cout<<s<<endl;
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值