首页 > 学院 > 开发设计 > 正文

A Taymyr is calling you--Codeforces Round #395 (Div. 2)

2019-11-14 11:55:37
字体:
来源:转载
供稿:网友

简单数学题

#include<iostream>using namespace std;int gcd(int a,int b){ if(a%b==0) return b; return gcd(b,a%b);}int main(){ int n,m,z; cin>>n>>m>>z; int r=gcd(n,m); r=n*m/r; int i=0; while(1){ if(r*i>z){ break; } i++; } cout<<i<<endl;}
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表