前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Codeforces Round #434 (Div. 2, based on Technocup 2018 Elimination Round 1)&&Codeforces 861A k-roun

Codeforces Round #434 (Div. 2, based on Technocup 2018 Elimination Round 1)&&Codeforces 861A k-roun

作者头像
Angel_Kitty
发布2018-04-09 15:54:07
5160
发布2018-04-09 15:54:07
举报

A. k-rounding

time limit per test:1 second

memory limit per test:256 megabytes

input:standard input

output:standard output

For a given positive integer n denote its k-rounding as the minimum positive integer x, such that x ends with k or more zeros in base 10 and is divisible by n.

For example, 4-rounding of 375 is 375·80 = 30000. 30000 is the minimum integer such that it ends with 4 or more zeros and is divisible by 375.

Write a program that will perform the k-rounding of n.

Input

The only line contains two integers n and k (1 ≤ n ≤ 109, 0 ≤ k ≤ 8).

Output

Print the k-rounding of n.

Examples

Input

代码语言:javascript
复制
375 4

Output

代码语言:javascript
复制
30000

Input

代码语言:javascript
复制
10000 1

Output

代码语言:javascript
复制
10000

Input

代码语言:javascript
复制
38101 0

Output

代码语言:javascript
复制
38101

Input

代码语言:javascript
复制
123456789 8

Output

代码语言:javascript
复制
12345678900000000

题目链接:http://codeforces.com/contest/861/problem/A

题意: x的末尾有k个以上的0; 且x是n的倍数,x/(10^k) 是 n的倍数,x是10^k的倍数

下面给出AC代码:

代码语言:javascript
复制
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 typedef long long ll;
 4 ll gcd(ll a,ll b)
 5 {
 6     return b==0?a:gcd(b,a%b);
 7 }
 8 int main(void)
 9 {
10     ll n,k;
11     cin>>n>>k;
12     ll temp=1;
13     for(ll i=1;i<=k;i++)
14         temp*=10;
15     cout<<n*temp/gcd(temp,n);
16 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-09-18 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • A. k-rounding
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档