QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#681523#6300. Best Carry Player 2karito#WA 1ms3744kbC++201.1kb2024-10-27 09:49:532024-10-27 09:49:54

Judging History

你现在查看的是最新测评结果

  • [2024-10-27 09:49:54]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3744kb
  • [2024-10-27 09:49:53]
  • 提交

answer

#include <iostream>
#include <string>
using namespace std;

void work();

int main()
{
	ios::sync_with_stdio(false);
	int t;
	cin >> t;
	while (t--)
		work();
	return 0;
}

void work()
{
	string s, t;
	int k;
	cin >> s >> k;
	for (int i = s.size(); i <= 20; i++)
		t.push_back('0');
	t += s;
	bool bef = 0;
	int cnt = 0;
	string ans;
	for (int i = 0; i < t.size(); i++)
		ans.push_back('0');
	for (int i = t.size() - 1; i >= 0; i--)
	{
		int x = t[i] - '0';
		if (bef)
			x++;
		if (cnt < k)
		{
			int tmp = 10 - x;
			if (tmp >= 10)
				tmp = 0;
			x += tmp;
			ans[i] = '0' + tmp;
		}
		if (x >= 10)
		{
			cnt++;
			bef = true;
		}
		else
			bef = false;
	}
	for (int i = t.size() - 2; i >= 0; i--)
	{
		if (cnt == k)
			break;
		if (ans[i] < '9' && ans[i + 1]>'0')
		{
			ans[i + 1] = '0';
			ans[i]++;
			cnt--;
		}
	}
	bool flag = false;
	for (char i : ans)
	{
		if (flag || i != '0')
		{
			flag = true;
			cout << i;
		}
	}
	if (!flag)
	{
		cout << '1';
		for (int i = t.size() - 1; i >= 0; i--)
			if (t[i] == '9')
				cout << '0';
	}
	cout << '\n';
	return;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3744kb

input:

4
12345678 0
12345678 5
12345678 18
990099 5

output:

1
54322
999999999987654322
9910

result:

ok 4 lines

Test #2:

score: -100
Wrong Answer
time: 1ms
memory: 3504kb

input:

21
999990000099999 0
999990000099999 1
999990000099999 2
999990000099999 3
999990000099999 4
999990000099999 5
999990000099999 6
999990000099999 7
999990000099999 8
999990000099999 9
999990000099999 10
999990000099999 11
999990000099999 12
999990000099999 13
999990000099999 14
999990000099999 15
999...

output:

10000000000
10000
1000
100
10
1
900001
9900001
99900001
999900001
10999910000
9999910000
9999901000
9999900100
9999900010
9999900001
9000009999900001
99000009999900001
999000009999900001
999900000000000000000
1000000000000000000

result:

wrong answer 1st lines differ - expected: '100000', found: '10000000000'