QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#688947#5434. Binary Substringsucup-team1329#WA 0ms3696kbC++17573b2024-10-30 14:28:272024-10-30 14:28:29

Judging History

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

  • [2024-10-30 14:28:29]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3696kb
  • [2024-10-30 14:28:27]
  • 提交

answer

#include <bits/stdc++.h>

using i64 = long long;
using A2 = std::array<i64, 2>;

#define Fast_IOS \
	std::ios::sync_with_stdio(false), \
	std::cin.tie(0), \
	std::cout.tie(0)

const i64 mod = 998244353;

class ICPC {
public:
	int N, T = 1;

	ICPC() {
		// Fast_IOS;
		// std::cin >> T;
	}

	void solve() {
		int n;
		std::cin >> n;
		for (int i = 0; i < n / 2; i++) std::cout << 1;
		for (int i = n / 2; i < n; i++) std::cout << 0;
		std::cout << '\n';
	}
};

int main() {
	ICPC icpc;
	while (icpc.T--) {
		icpc.solve();
	}
	return 0;
} 

详细

Test #1:

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

input:

2

output:

10

result:

ok meet maximum 3

Test #2:

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

input:

5

output:

11000

result:

wrong answer not meet maximum 11 < 12