답안 #1100375

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1100375 2024-10-13T16:23:22 Z codexistent Kas (COCI17_kas) C++14
0 / 100
1 ms 504 KB
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define MAXN 505
#define MAXS 200005
#define FOR(i, a, b) for(ll i = a; i <= b; i++)

ll n, dp[MAXN][MAXS], s = 0;

int main(){
    cin >> n;
    /*FOR(i, 0, n) FOR(j, 0, 200000) dp[i][j] = MAXS;*/

    /*dp[0][100000] = 0;
    FOR(i, 1, n){
        int x; cin >> x;
        s += x;
        FOR(j, x, 200000 - x){
            dp[i][j - x] = min(dp[i][j - x], dp[i - 1][j]);
            dp[i][j + x] = min(dp[i][j + x], dp[i - 1][j]);
            dp[i][j] = min(dp[i][j], dp[i - 1][j] + x);
        }
    } */

    // cout << ((s - dp[n][100000]) / 2 + dp[n][100000]) << endl;
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 504 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 336 KB Output isn't correct
2 Halted 0 ms 0 KB -