QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#20048 | #3098. Ancient Machine | qingyu_orz | 0 | 4ms | 3740kb | C++20 | 913b | 2022-02-14 16:51:24 | 2023-01-17 10:39:45 |
Judging History
Anna
#include<bits/stdc++.h>
#include "Anna.h"
using namespace std;
void Anna(int n,vector<char> g){
int flag=0,lst=-1;
string st;
for(auto cu:g){
int ff=1;
if(cu=='Y')ff=0;
else if(flag&&cu=='X')ff=0;
else if(!flag&&cu=='Z')ff=0;
else if(cu=='X')ff=2;
else ff=1;
if(ff==0)st+='0';
else{
if(cu!='Z'||lst!=1)st+='1';
else st+='0';
if(cu=='Z')lst=1;
if(ff==2)st+='0';
}
}
for(int i=0;i<st.size();++i)Send(st[i]);
}
Bruno
#include<bits/stdc++.h>
#include "Bruno.h"
using namespace std;
int pre[100005],nxt[100005];
void Bruno(int n,int gs,vector<int> g){
set<int>se;
for(int i=1;i<=n;++i)pre[i]=i-1,nxt[i]=i+1;
int X=-1,wz=0;
for(auto cu:g){
++wz;
if(cu==1&&X==-1){
X=wz;
--wz;
continue;
}
if(cu==0)continue;
int df=wz;
while(df>=X){
Remove(df);
nxt[pre[df]]=nxt[df];
pre[nxt[df]]=pre[df];
df=pre[df];
}
}
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 4ms
memory: 3708kb
input:
18 Y X Y Z X Z X X Z Z Y Y Z Y Y Z X X
output:
Wrong Answer [1]
input:
Wrong Answer [1]
output:
Unauthorized output
result:
wrong output format Expected integer, but "Unauthorized" found
Subtask #2:
score: 0
Wrong Answer
Test #12:
score: 0
Wrong Answer
time: 2ms
memory: 3740kb
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:
Wrong Answer [1]
input:
Wrong Answer [1]
output:
Unauthorized output
result:
wrong output format Expected integer, but "Unauthorized" found