답안 #685697

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
685697 2023-01-24T21:06:13 Z Jovan26 메기 농장 (IOI22_fish) C++17
3 / 100
103 ms 13908 KB
#pragma once

#include <bits/stdc++.h>

using namespace std;

#define ll long long

long long max_weights(int N, int M, std::vector<int> X, std::vector<int> Y, std::vector<int> W){
        bool st1 = true;
        for(int i=0;i<M;i++){
            if(X[i]%2==1) st1 = false;
        }
        if(st1){
        long long o = 0;
        for(int i=0;i<M;i++) o+=W[i];
        return o;
        }
            ll o1 = 0;
            ll o2 = 0;
            for(int i=0;i<M;i++){
                if(X[i]==0) o1+=W[i];
                else o2+=W[i];
            }
            ll o =  max(o1,o2);
            return o;
}

Compilation message

fish.cpp:1:9: warning: #pragma once in main file
    1 | #pragma once
      |         ^~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 22 ms 3536 KB Output is correct
2 Correct 27 ms 4280 KB Output is correct
3 Correct 1 ms 212 KB Output is correct
4 Correct 1 ms 212 KB Output is correct
5 Correct 103 ms 13652 KB Output is correct
6 Correct 95 ms 13908 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB 1st lines differ - on the 1st token, expected: '2', found: '1'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 1 ms 300 KB Output is correct
3 Incorrect 14 ms 2380 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '26722445760742'
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 1st lines differ - on the 1st token, expected: '3', found: '2'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 1st lines differ - on the 1st token, expected: '3', found: '2'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB 1st lines differ - on the 1st token, expected: '3', found: '2'
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 1 ms 300 KB Output is correct
3 Incorrect 14 ms 2380 KB 1st lines differ - on the 1st token, expected: '21261825233649', found: '26722445760742'
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 22 ms 3536 KB Output is correct
2 Correct 27 ms 4280 KB Output is correct
3 Correct 1 ms 212 KB Output is correct
4 Correct 1 ms 212 KB Output is correct
5 Correct 103 ms 13652 KB Output is correct
6 Correct 95 ms 13908 KB Output is correct
7 Incorrect 0 ms 212 KB 1st lines differ - on the 1st token, expected: '2', found: '1'
8 Halted 0 ms 0 KB -