QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#20287#3098. Ancient Machine2018ty22#0 56ms9432kbC++20560b2022-02-15 12:02:152023-01-17 10:43:29

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-01-17 10:43:29]
  • 评测
  • 测评结果:0
  • 用时:56ms
  • 内存:9432kb
  • [2022-02-15 12:02:15]
  • 提交

Anna

#include<cstdio>
#include<vector>
using namespace std;
void Send(int a);
void Anna(int N,vector<char> S)
{
	for(int i=0;i<N;++i)
	{
		if(S[i]=='X'&&S[i+1]!='X')
		{
			Send(1);
			++i;
		}
		else Send(0);
	}
}

Bruno

#include<cstdio>
#include<vector>
using namespace std;
void Remove(int d);
void Bruno(int N,int L,vector<int> A)
{
	static bool us[100001];
	for(int i=0,j=0;i<L;++i,++j)
		if(A[i])
			us[j]=true,++j;
	int lst=N;
	for(int i=N-1;~i;--i)
		if(us[i])
		{
			for(int j=i+1;j<lst;++j)Remove(j);
			Remove(i);
			lst=i;
		}
}

詳細信息

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3180kb

input:

18
Y X Y Z X Z X X Z Z Y Y Z Y Y Z X X

output:

15
010101000000001

input:

15
010101000000001

output:

5

result:

wrong answer Wrong Answer [5]

Subtask #2:

score: 0
Wrong Answer

Test #12:

score: 0
Wrong Answer
time: 56ms
memory: 9432kb

input:

100000
X Z X Z Z X Y Z Y X Y X Z Z Z Y X Z Y X Y Y X Y Y Y Z Y Z Z Y X X Y X X Y Y X X X Z Y Y Y Z Z Z Z Y X Y Y Z Z Z X Y Z X X X X Y X Y X X Z X Z Z Z X Y X X X Z X Z X X X Y Y Y Y Z X X Y Z Y Y X Z X Z Z Z Z Z Y Z Y X Y Y Y Y X Z Z Y Z Z Y Z Z Z X Z Z X X Z Z Z Z X X Z Y Y Z Y Y Z Z Y Y Z Y Z Y Z...

output:

77706
110100110001010100000000101000100000000100001000011011001001100100000100011000000010001000000001001000010000000000000001010011000010100000100100100100001000000010000000000100010000000001001000010001010101010001000000000100000000001001000100000010101010000001001000000000100110000010100001000101...

input:

77706
110100110001010100000000101000100000000100001000011011001001100100000100011000000010001000000001001000010000000000000001010011000010100000100100100100001000000010000000000100010000000001001000010001010101010001000000000100000000001001000100000010101010000001001000000000100110000010100001000101...

output:

0 77706 11034

result:

wrong answer your query is valid but your solution is not optimal: read 11034 but expected 22133