답안 #833135

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
833135 2023-08-22T02:06:30 Z veehj Feast (NOI19_feast) C++17
0 / 100
1000 ms 5032 KB
#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
typedef long double ld;
#define F first
#define S second
#define pb push_back
#define sz(a) (int)a.size()
#define all(x) (x).begin(), (x).end()
int n, k; vector<ll> a={0};

void f(){
    vector<ll> p=a;
    for(int i=1; i<n; i++) p[i]+=p[i-1];
    ll ans=0;
    for(int i=0; i<n; i++){
        for(int j=0; j<i; j++){
            ans=max(ans, p[i]-p[j]);
        }
    }
    cout << ans << endl;
    return;
}

int main(){
    cin >> n >> k;
    for(int i=0; i<n; i++){
        ll x; cin >> x;
        a.pb(x);
    }
    if(k==1) f();
    else{
        ll cnt=0;
        for(int i=0; i<n; i++) if(a[i]>0) cnt+=a[i];
        cout << cnt << endl;
    }
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 80 ms 4552 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1085 ms 4916 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1025 ms 5032 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Incorrect 0 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Incorrect 0 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Incorrect 0 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 80 ms 4552 KB Output isn't correct
2 Halted 0 ms 0 KB -