답안 #959331

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
959331 2024-04-08T03:23:00 Z vjudge1 A Plus B (IOI23_aplusb) C++17
0 / 100
1 ms 348 KB
#include <bits/stdc++.h>
using namespace std; 

vector<int> smallest_sums(int N, vector<int> A, vector<int> B) {
    multiset<int> res;
    for(int i=0 ;i<N ;i++) {
        for(int j=0 ;j<N ;j++) {  
            res.insert(A[i]+B[j]); 
        }
    }
    vector<int> x;
    multiset<int>::iterator itr= res.begin();
    int i =0;
    while (N--) {
        x[i] = *itr;
        i++ ;
        ++itr;
    }
    return x;
}


 
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 348 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -