QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#588508 | #9375. Tourist | mwh | WA | 24ms | 3692kb | C++20 | 277b | 2024-09-25 12:29:17 | 2024-09-25 12:29:19 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int main(){
long long n,m,ans=1500;
cin>>n;
bool flag=false;
for(int i=0;i<n;i++){
long long a;
cin>>a;
ans+=a;
if(ans>=4000)flag=true,m=i+1;
}
if(flag)cout<<m<<endl;
else cout<<"-1"<<endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3636kb
input:
5 1000 1000 1000 -5000 1000
output:
3
result:
ok single line: '3'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3636kb
input:
5 20 -100 10 -150 5
output:
-1
result:
ok single line: '-1'
Test #3:
score: -100
Wrong Answer
time: 24ms
memory: 3692kb
input:
100000 -622469318 539497462 -644931120 58116512 -531587090 908494982 839175844 702577848 -359659596 -940595076 -625597008 475756588 -944333680 -836413428 15282479 465161640 368734488 -915470952 168906352 507919069 -120921946 69204544 -142419900 -256757690 -773656014 194185932 398352052 550384408 -45...
output:
100000
result:
wrong answer 1st lines differ - expected: '7', found: '100000'