QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#660901#6749. Targetucup-team1769#WA 0ms3780kbC++201.0kb2024-10-20 13:53:272024-10-20 13:53:28

Judging History

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

  • [2024-10-20 13:53:28]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3780kb
  • [2024-10-20 13:53:27]
  • 提交

answer

#include <bits/stdc++.h>

using i64 = long long;

int main() {
	std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);

	double a, b;
	std::cin >> a >> b;

	std::vector<int> A, B;
	double base = 1;
	while (A.size() < 25) {
		if (a >= base) {
			A.emplace_back(1);
			a -= base;
		} else {
			A.emplace_back(0);
		}
		base /= 2;
	}
	base = 1;
	while (B.size() < 25) {
		if (b >= base) {
			B.emplace_back(1);
			b -= base;
		} else {
			B.emplace_back(0);
		}
		base /= 2;
	}

	// std::cerr << "Yes\n";

	for (int i = 0, j = 25; i < 25 && j > 0; i++, j--) {
		int l = i, r = 0;
		while (l < 25 && r < j && A[r] == B[l]) {
			l++, r++;
		}
		// std::cerr << "Yes\n";
		if (l == 25 && r == j) {
			// std::cerr << i << " " << j << "\n";
			for (int _ = i - 1; _ >= 0; _--) {
				if (B[_]) {
					std::cout << 2;
				} else {
					std::cout << 1;
				}
			}
			std::cout << "\n";
			return 0;
		}
	}

	for (int i = 0; i < 25; i++) {
		std::cout << 1;
	}
	std::cout << "\n";

	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

0.5 0.25

output:

1

result:

ok ok

Test #2:

score: -100
Wrong Answer
time: 0ms
memory: 3712kb

input:

1 0.75

output:

21

result:

wrong answer wa