国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

Codeforces 764 A Taymyr is calling you

2019-11-11 04:36:33
字體:
供稿:網(wǎng)友

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 n, 2n, 3n and so on. Artists come to the comrade every m minutes, i.e. in minutes m, 2m, 3m 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.

ExampleInput
1 1 10Output
10Input
1 2 5Output
2Input
2 3 9Output
1Note

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.

題目大意:設(shè)一天有z分鐘,每隔n分鐘需要接一次電話,每隔m分鐘有一個(gè)藝術(shù)家拜訪,每次電話一分鐘,問需要除掉幾個(gè)藝術(shù)家,才能接電話不受打擾。

題目分析:因?yàn)閿?shù)據(jù)較小,直接開個(gè)數(shù)組記錄在某一分鐘是否接電話,然后遍歷數(shù)組,是否剛好在藝術(shù)家接電話的時(shí)候。ans累增。

#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>#include <cmath>using namespace std;int const maxn = 10005;int a[maxn];int main(){	int n,m,z;	while((scanf("%d%d%d",&n,&m,&z))!=EOF){		memset(a,0,sizeof(a));		int ans=0;		for(int i=n;i<=z;i=i+n)			a[i]=1;		for(int i=m;i<=z;i=i+m){			if(a[i]==1)			 ans++;		}		printf("%d/n",ans);	}	return 0;} 


發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 明溪县| 崇左市| 南乐县| 吉木萨尔县| 东乡族自治县| 吉水县| 盈江县| 宝应县| 从化市| 开阳县| 平顺县| 华容县| 石河子市| 克山县| 山东| 凭祥市| 孝感市| 含山县| 攀枝花市| 新安县| 彭州市| 文昌市| 鸡西市| 张家界市| 浮梁县| 保亭| 改则县| 嘉禾县| 迭部县| 科技| 齐齐哈尔市| 栾城县| 郯城县| 北海市| 海盐县| 南木林县| 长春市| 兴化市| 北碚区| 宁南县| 阳城县|