1. 程式人生 > >Codeforces 977A Wrong Subtraction

Codeforces 977A Wrong Subtraction

cf更新了,現在每道題都有難度係數了。

這道題是目前難度係數最低的一道題2333333

模擬。

#define  _CRT_SECURE_NO_WARNINGS
#include <cstdio>
#include <algorithm>
#include <deque>
#include <iostream>
#include <string>
#include <math.h>

using namespace std;

int n, k;

int getLast(int x) {
	return x % 10;
}

int main() {
	scanf("%d %d", &n, &k);
	while (k--) {
		if (getLast(n)) {
			n -= 1;
		}
		else {
			n /= 10;
		}
	}
	printf("%d\n", n);
	//system("pause");
	return 0;
}