74792024-01-09 10:09:44adamAranycipők (45)cpp17Wrong answer 1/453ms3052 KiB
#include <bits/stdc++.h>
using namespace std;

int main() {
    
    int player_count = 0;

    cin >> player_count;
    vector<int> players(player_count, 0);
    for (int i = 0; i < player_count; i++)
    {
        cin >> players[i];
    }
    sort(players.begin(), players.end());
    for (int i = 0; i < player_count; i++)
    {
        cout << players[i];
    }
    return 0;
}
SubtaskSumTestVerdictTimeMemory
base1/45
1Wrong answer0/03ms1852 KiB
2Wrong answer0/03ms2008 KiB
3Partially correct1/33ms2216 KiB
4Wrong answer0/33ms2428 KiB
5Wrong answer0/32ms2512 KiB
6Wrong answer0/32ms2512 KiB
7Wrong answer0/32ms2520 KiB
8Wrong answer0/33ms2644 KiB
9Wrong answer0/33ms2760 KiB
10Wrong answer0/33ms2956 KiB
11Wrong answer0/33ms3044 KiB
12Wrong answer0/33ms3044 KiB
13Wrong answer0/33ms3044 KiB
14Wrong answer0/33ms3044 KiB
15Wrong answer0/33ms3048 KiB
16Wrong answer0/33ms3044 KiB
17Wrong answer0/33ms3052 KiB