CodeForces 260A Adding Digits 模拟

给出a和b,要求给a右端加一位数字n次且次次是b的倍数。

按照题目模拟就行了,遇到结果就结束程序。

发现throw+try catch退出dfs特别方便。

#include <cstdio>
int a, b, n;
int num[100001];
void dfs(int x, int d) {
	if (x > n) {
		printf("%d", a);
		for(int i=1;i<=n;i++) printf("%d", num[i]);
		throw 1;
	} else
		for(int i=0;i<10;i++)
			if((d*10+i)%b==0) num[x]=i,dfs(x+1,0);
}
int main() {
	scanf("%d%d%d", &a, &b, &n);
	try {
		dfs(1,a);
		printf("-1");
	} catch(int x) {
	}
	return 0;
}

A. Adding Digits
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasya has got two number: a and b. However, Vasya finds number a too short. So he decided to repeat the operation of lengthening number a n times.

One operation of lengthening a number means adding exactly one digit to the number (in the decimal notation) to the right provided that the resulting number is divisible by Vasya's number b. If it is impossible to obtain the number which is divisible by b, then the lengthening operation cannot be performed.

Your task is to help Vasya and print the number he can get after applying the lengthening operation to number a n times.

Input

The first line contains three integers: a, b, n (1 ≤ a, b, n ≤ 105).

Output

In a single line print the integer without leading zeros, which Vasya can get when he applies the lengthening operations to number a n times. If no such number exists, then print number -1. If there are multiple possible answers, print any of them.

Sample test(s)
input
5 4 5
output
524848
input
12 11 1
output
121
input
260 150 10
output
-1

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值