time limit per test1 second

memory limit per test256 megabytes

inputstandard input

outputstandard 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 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 — n, m 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.

【题目链接】:http://codeforces.com/contest/764/problem/A

【题解】



定义一个bool型的数组;

在n,2n,3n…设置true

然后在m,2m,3m处看看有没有为true的bool,有的话就递增答案;

(杀人真的很暴力。)



【完整代码】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define rei(x) scanf("%d",&x)
#define rel(x) scanf("%I64d",&x) typedef pair<int,int> pii;
typedef pair<LL,LL> pll; const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0);
const int MAXN = 1e4+100; int n,m,z,cnt=0;
bool bo[MAXN]; int main()
{
//freopen("F:\\rush.txt","r",stdin);
rei(n);rei(m);rei(z);
int i;
for (i = n;i<=z;i+=n)
bo[i] = true;
for (i = m;i<=z;i+=m)
if (bo[i])
cnt++;
printf("%d\n",cnt);
return 0;
}

最新文章

  1. java复习集合类之List接口
  2. MySQL 表分区 报错:Table has no partition for value XXX
  3. javascript_core_04之数组API
  4. 教你用Ossim平台检测网络的Shellcode攻击
  5. How to get blob data using javascript XmlHttpRequest by sync
  6. 【实用技巧】取消Win7开机账户的手动选择
  7. zepto和jquery的区别,zepto的不同使用8条小结 会JS就会zepto
  8. Debian 入门安装与配置2
  9. UVA 133 The Dole Queue
  10. java基础知识回顾之javaIO类--内存操作流ByteArrayInputStream和ByteArrayOutputSteam(操作字节数组)
  11. PSAM SAM
  12. makefile编写差异
  13. python+appium使用记录
  14. Hugo + Github Pages 搭建个人博客
  15. 爬虫基础——HTTP基本原理
  16. Docker容器Tomcat部署war包
  17. flask之flask-script组件
  18. [SHOI2009] 会场预约
  19. windows cmd相关操作
  20. pgm5

热门文章

  1. 【怪物】KMP畸形变种——扩展KMP
  2. H5视频播放自动全屏,暂停退出全屏等功能
  3. 【New Feature】阿里云快照服务技术解析
  4. 01-常见Dos命令、Java历史、Java跨平台、配置Path环境变量、第一个HelloWorld例子
  5. 【批量添加】-拼接sql字符串 标签: 批量添加 2015-12-13 17:49 2070人阅读 评论(33)
  6. P2P需集齐四大证照
  7. 使用DECLARE定义条件和处理程序
  8. 11-2 css盒模型和浮动以及矢量图用法
  9. Oracle dbms_random包的用法
  10. oracle函数 LTRIM(c1,[,c2])