首页 > 代码库 > hdu 1019 最小公倍数
hdu 1019 最小公倍数
简单题 注意__int64 的使用
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | Problem : 1019 ( Least Common Multiple ) Judge Status : Accepted RunId : 10599776 Language : C++ Author : xiaoniuwin Code Render Status : Rendered By HDOJ C++ Code Render Version 0.01 Beta #include<iostream> using namespace std; __int64 f( __int64 a, __int64 b) { __int64 t; __int64 sum=a*b; if (a<b) { t=a; a=b; b=t; } while (b) { t=a%b; a=b; b=t; } return sum/a; } int main() { int t,n; __int64 x; __int64 lcm; scanf ( "%d" ,&t); while (t--) { scanf ( "%d" ,&n); scanf ( "%I64d" ,&lcm); n--; while (n--) { scanf ( "%I64d" ,&x); lcm=f(lcm,x); } printf ( "%I64d\n" ,lcm); } return 0; } |
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。