3592021-10-29 23:47:53lalalaÉpítkezéscpp11Wrong answer 0/1002ms2268 KiB
#include <iostream>
#include <sstream>
#include <string>
#include <vector>

using namespace std;

vector <string> readStrings() {
    string line, tmp;
    getline(cin, line);
    stringstream ss(line);
    vector <string> result;
    while (ss >> tmp) {
        result.push_back(tmp);
    }
    return result;
}

int main() {
    vector <string> tokens = readStrings();
    for (string token: tokens) {
        cout << token << " ";
    }
    cout << "\n";
}
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Wrong answer2ms1800 KiB
2Wrong answer1ms1844 KiB
subtask20/20
3Wrong answer1ms1920 KiB
4Wrong answer1ms1920 KiB
5Wrong answer1ms1928 KiB
subtask30/15
6Wrong answer1ms1932 KiB
7Wrong answer1ms1944 KiB
8Wrong answer1ms1960 KiB
subtask40/25
9Wrong answer1ms1980 KiB
10Wrong answer1ms1996 KiB
11Wrong answer1ms2016 KiB
12Wrong answer1ms2028 KiB
13Wrong answer1ms2040 KiB
subtask50/15
14Wrong answer1ms2056 KiB
15Wrong answer1ms2072 KiB
16Wrong answer1ms2092 KiB
17Wrong answer2ms2112 KiB
18Wrong answer2ms2124 KiB
subtask60/25
19Wrong answer2ms2140 KiB
20Wrong answer1ms2156 KiB
21Wrong answer1ms2176 KiB
22Wrong answer2ms2188 KiB
23Wrong answer1ms2208 KiB
24Wrong answer1ms2220 KiB
25Wrong answer1ms2236 KiB
26Wrong answer2ms2252 KiB
27Wrong answer1ms2268 KiB