QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#687928 | #6110. Squirrel Game | Nephren_Sakura | WA | 1ms | 5716kb | C++14 | 458b | 2024-10-29 21:57:54 | 2024-10-29 21:57:55 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define int long long
int n,m,k,a[1000005],b[1000005],d[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],d[i]=a[i]-a[i-1];
int s=0;
for(int i=n; i>max(n-k,0ll); i--){
int ans=0;
bool f=true;
for(int j=i; j>=1; j-=k){
if(f) ans^=d[j];
f=!f;
}
s^=ans;
}
cout<<(s?"Twinkle":"Nova");
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 5708kb
input:
7 3 2 1 4 7
output:
Nova
result:
ok single line: 'Nova'
Test #2:
score: 0
Accepted
time: 1ms
memory: 5700kb
input:
7 3 1 1 4 7
output:
Twinkle
result:
ok single line: 'Twinkle'
Test #3:
score: -100
Wrong Answer
time: 1ms
memory: 5716kb
input:
1 1 1 1
output:
Twinkle
result:
wrong answer 1st lines differ - expected: 'Nova', found: 'Twinkle'