답안 #447310

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
447310 2021-07-26T03:48:20 Z dvtd ZigZag (COCI17_zigzag) C++14
16 / 80
83 ms 9564 KB
#include <bits/stdc++.h>
#define ll long long

using namespace std;

vector<string> dict[50];
int idx[50];
int n, m, k;

int main()
{
    

    cin >> n >> m;

    string s;
    for(int i = 1; i <= n; i++)
    {
        cin >> s;
        dict[s[0] - 'a'].push_back(s);
    }
    for(int i = 0; i < n; i++) sort(dict[i].begin(), dict[i].end());

    for(int i = 1;i <= m; i++)
    {
        cin >> s;
        k = s[0] - 'a';
        cout << dict[k][idx[k]] << endl;
        idx[k] = (idx[k] + 1) % dict[k].size();
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Runtime error 1 ms 460 KB Execution killed with signal 11
4 Runtime error 1 ms 460 KB Execution killed with signal 11
5 Runtime error 1 ms 460 KB Execution killed with signal 11
6 Runtime error 1 ms 460 KB Execution killed with signal 11
7 Runtime error 80 ms 9564 KB Execution killed with signal 11
8 Runtime error 83 ms 9484 KB Execution killed with signal 11
9 Runtime error 80 ms 9540 KB Execution killed with signal 11
10 Runtime error 79 ms 9456 KB Execution killed with signal 11