QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#687895 | #6110. Squirrel Game | Nephren_Sakura | WA | 1ms | 5724kb | C++14 | 492b | 2024-10-29 21:45:37 | 2024-10-29 21:45:37 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
int n,m,k,a[1000005],b[1000005];
signed main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin>>n>>m>>k;
for(int i=1; i<=m; i++) cin>>a[i];
int s=0;
bool f=false;
for(int i=1; i<=min(m,k); i++) s^=a[i]-a[i-1]-1,b[i]=a[i]-a[i-1]-1;
f^=(s!=0);
for(int i=k+1; i<=m; i++){
s^=b[(i-1)%k+1],b[(i-1)%k+1]=a[i]-a[i-1]-1,s^=b[(i-1)%k+1],f^=(s!=0);
}
cout<<(f?"Nova\n":"Twinkle\n");
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 5724kb
input:
7 3 2 1 4 7
output:
Nova
result:
ok single line: 'Nova'
Test #2:
score: 0
Accepted
time: 1ms
memory: 5696kb
input:
7 3 1 1 4 7
output:
Twinkle
result:
ok single line: 'Twinkle'
Test #3:
score: -100
Wrong Answer
time: 0ms
memory: 5724kb
input:
1 1 1 1
output:
Twinkle
result:
wrong answer 1st lines differ - expected: 'Nova', found: 'Twinkle'