QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#585069#9375. TouristwujhWA 0ms3708kbC++14799b2024-09-23 18:44:492024-09-23 18:44:49

Judging History

你现在查看的是最新测评结果

  • [2024-09-23 18:44:49]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3708kb
  • [2024-09-23 18:44:49]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define ll long long

#define quick ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)
#define mem(a,b) memset(a,b,sizeof a)
#define pb push_back
#define fi first
#define se second

const int INF=0x3f3f3f3f;
const ll L_INF=9223372036854775807;
const double eps = 1e-9;
const int mod = 1e9+7;
const int N=5e5+5;


int n,m;
int s=0;

void run(){
    cin>>n;
    s=1500;
    int f=1;
    for(int i=1;i<=n;i++){
        cin>>m;
        s+=m;
        if(s>=4000){
            cout<<i<<'\n';
            f=0;
            break;
        }
    }
    if(f==1){
        cout<<-1<<'\n';
    }
    
}

int main(){
    quick;
    int T=1;
    //cin>>T;
    while(T--){
         run();
    }
    return 0;
}

/*

*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3644kb

input:

5
1000 1000 1000 -5000 1000

output:

3

result:

ok single line: '3'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3684kb

input:

5
20 -100 10 -150 5

output:

-1

result:

ok single line: '-1'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3708kb

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:

7

result:

ok single line: '7'

Test #4:

score: -100
Wrong Answer
time: 0ms
memory: 3644kb

input:

100000
-22223976 -142152966 -699451000 -867380652 -806775044 -184464736 193157905 83719408 119052656 912359844 627391168 626102176 -307686144 -193929406 -758255267 408690212 -441709509 825087291 113886978 -348059815 -298920520 -298801588 -235809714 257817681 503204186 -846346276 -674436380 -84108390...

output:

5

result:

wrong answer 1st lines differ - expected: '54', found: '5'