QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#624424 | #6110. Squirrel Game | DreamAwaking | WA | 0ms | 3712kb | C++14 | 535b | 2024-10-09 15:49:02 | 2024-10-09 15:49:02 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn=2e5+10;
int x[maxn];
void solve(){
int n,m,k;
cin>>m>>n>>k;
for(int i=1;i<=n;i++) cin>>x[i];
int sg=0;
for(int i=n;i>0;i--){
int tmp=x[i]-x[i-1]-1;
if((i/k)%2==0) sg=sg^tmp;
}
if(sg) cout<<"Twinkle";
else cout<<"Nova";
}
int main(){
std::ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
int t;
t=1;
while(t--){
solve();
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3712kb
input:
7 3 2 1 4 7
output:
Nova
result:
ok single line: 'Nova'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3640kb
input:
7 3 1 1 4 7
output:
Twinkle
result:
ok single line: 'Twinkle'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3640kb
input:
1 1 1 1
output:
Nova
result:
ok single line: 'Nova'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3640kb
input:
1 1 10 1
output:
Nova
result:
ok single line: 'Nova'
Test #5:
score: -100
Wrong Answer
time: 0ms
memory: 3700kb
input:
100000 1 1 19593
output:
Nova
result:
wrong answer 1st lines differ - expected: 'Twinkle', found: 'Nova'