3582021-10-29 23:47:40lalalaÉpítkezéscpp11Wrong answer 0/1002ms2280 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 answer2ms1848 KiB
2Wrong answer1ms1844 KiB
subtask20/20
3Wrong answer1ms1920 KiB
4Wrong answer1ms1924 KiB
5Wrong answer1ms1928 KiB
subtask30/15
6Wrong answer1ms1936 KiB
7Wrong answer1ms1960 KiB
8Wrong answer1ms1968 KiB
subtask40/25
9Wrong answer1ms1988 KiB
10Wrong answer1ms2008 KiB
11Wrong answer1ms2016 KiB
12Wrong answer1ms2048 KiB
13Wrong answer2ms2056 KiB
subtask50/15
14Wrong answer1ms2068 KiB
15Wrong answer1ms2084 KiB
16Wrong answer1ms2100 KiB
17Wrong answer1ms2112 KiB
18Wrong answer1ms2132 KiB
subtask60/25
19Wrong answer1ms2152 KiB
20Wrong answer1ms2160 KiB
21Wrong answer1ms2184 KiB
22Wrong answer1ms2212 KiB
23Wrong answer1ms2220 KiB
24Wrong answer1ms2236 KiB
25Wrong answer1ms2256 KiB
26Wrong answer1ms2268 KiB
27Wrong answer1ms2280 KiB