QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#588500 | #9375. Tourist | mwh | WA | 0ms | 3644kb | C++20 | 298b | 2024-09-25 12:22:14 | 2024-09-25 12:22:14 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
bool flag;
int main(){
ios::sync_with_stdio(false);
cin.tie(0),cout.tie(0);
long long n,m,ans;
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;
else cout<<-1;
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3644kb
input:
5 1000 1000 1000 -5000 1000
output:
-1
result:
wrong answer 1st lines differ - expected: '3', found: '-1'