QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#682478 | #5420. Inscryption | wangcq | WA | 195ms | 3940kb | C++23 | 730b | 2024-10-27 15:36:18 | 2024-10-27 15:36:19 |
Judging History
answer
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
typedef long long ll;
int a[2341222];
int gcd(int a,int b)
{
return b==0?a:gcd(b,a%b);
}
int main()
{
cin.tie(0);
cout.tie(0);
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
int x,y,z;
int i;
for(i=1;i<=n;i++)
scanf("%d",&a[i]);
x=y=1;
z=0;
for(i=1;i<=n;i++)
{
if(a[i]==-1)
{
if(y<=1&&z==0)
{
puts("-1");
goto A;
}
else if(y==1)
z--,x++;
else
y--;
}
else if(a[i]==1)
x++,y++;
else
z++;
}
if(z<y)
y-=z;
else
x=x+z-y,y=1;
printf("%d %d\n",x/gcd(x,y),y/gcd(x,y));
A:;
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3940kb
input:
6 7 1 1 1 -1 1 1 -1 4 1 0 -1 0 4 0 -1 -1 0 1 0 2 0 0 1 -1
output:
3 2 3 1 -1 1 1 2 1 -1
result:
ok 6 lines
Test #2:
score: 0
Accepted
time: 195ms
memory: 3888kb
input:
1000000 1 1 1 -1 1 1 1 1 1 1 1 1 1 -1 1 -1 1 0 1 0 1 1 1 0 1 -1 1 0 1 1 1 0 1 1 1 0 1 1 1 0 1 0 1 0 1 1 1 -1 1 1 1 1 1 -1 1 0 1 1 1 0 1 -1 1 0 1 -1 1 1 1 -1 1 0 1 1 1 1 1 -1 1 0 1 -1 1 -1 1 -1 1 -1 1 0 1 0 1 -1 1 0 1 -1 1 0 1 0 1 0 1 0 1 0 1 -1 1 1 1 0 1 0 1 1 1 0 1 -1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 ...
output:
1 1 -1 1 1 1 1 1 1 1 1 -1 -1 1 1 1 1 1 1 1 1 -1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -1 1 1 1 1 -1 1 1 1 1 1 1 -1 1 1 -1 1 1 -1 1 1 1 1 1 1 -1 1 1 -1 -1 -1 -1 1 1 1 1 -1 1 1 -1 1 1 1 1 1 1 1 1 1 1 -1 1 1 1 1 1 1 1 1 1 1 -1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -1 -1 1 1 1 1 -1 1 1 1 1 1 1 1 1 -1 1 1 1 1 1 ...
result:
ok 1000000 lines
Test #3:
score: -100
Wrong Answer
time: 81ms
memory: 3784kb
input:
181249 6 1 0 -1 0 1 0 4 1 -1 -1 -1 8 -1 0 0 0 1 -1 1 1 3 0 1 0 6 1 0 -1 1 -1 0 4 1 -1 -1 -1 9 0 1 0 -1 -1 0 -1 0 1 1 -1 3 0 -1 1 5 0 0 1 -1 1 3 1 -1 0 6 -1 0 0 -1 0 1 8 1 -1 -1 -1 0 1 -1 0 2 0 0 3 -1 1 0 3 0 -1 -1 10 0 1 0 -1 1 1 0 -1 1 0 3 1 0 0 9 1 -1 1 -1 0 -1 0 0 0 3 0 1 0 3 -1 0 0 7 -1 0 -1 -1 ...
output:
4 1 -1 -1 2 1 4 1 -1 5 1 -1 3 2 3 1 2 1 -1 -1 2 1 -1 -1 6 1 2 1 6 1 2 1 -1 -1 -1 -1 2 1 5 3 -1 2 1 2 1 -1 2 1 5 1 1 1 -1 2 1 -1 1 1 -1 2 1 1 1 -1 1 1 -1 1 1 2 1 -1 -1 -1 -1 2 1 4 1 1 1 -1 6 1 -1 -1 1 1 -1 7 1 3 2 -1 2 1 4 3 2 1 -1 5 3 5 1 6 1 -1 2 1 2 1 -1 1 1 -1 3 1 -1 -1 4 1 1 1 2 1 5 2 -1 3 1 4 3...
result:
wrong answer 4th lines differ - expected: '3 2', found: '2 1'