QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#624027 | #6110. Squirrel Game | DreamAwaking | WA | 1ms | 3848kb | C++14 | 632b | 2024-10-09 14:44:56 | 2024-10-09 14:44:57 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
void solve(){
ll n,m,k;
cin>>n>>m>>k;
ll sum=0;
vector<int> v;
v.push_back(1);
for(int i=0;i<n;i++){
int num;
cin>>num;
v.push_back(num);
}
for(int i=1;i<=n;i++){
sum+=v[i]-v[i-1];
}
ll cnt=min(sum,k);
if(cnt%2==0){
cout<<"Nova"<<'\n';
}
else{
cout<<"Twinkle"<<'\n';
}
}
int main(){
std::ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
int t;
t=1;
while(t--){
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3624kb
input:
7 3 2 1 4 7
output:
Nova
result:
ok single line: 'Nova'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3848kb
input:
7 3 1 1 4 7
output:
Twinkle
result:
ok single line: 'Twinkle'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
1 1 1 1
output:
Nova
result:
ok single line: 'Nova'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3840kb
input:
1 1 10 1
output:
Nova
result:
ok single line: 'Nova'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3788kb
input:
100000 1 1 19593
output:
Twinkle
result:
ok single line: 'Twinkle'
Test #6:
score: -100
Wrong Answer
time: 1ms
memory: 3744kb
input:
100000 1 10 62516
output:
Nova
result:
wrong answer 1st lines differ - expected: 'Twinkle', found: 'Nova'