Submission #165897

# Submission time Handle Problem Language Result Execution time Memory
165897 2019-11-29T13:12:16 Z itiam Marko (COCI15_marko) C++11
0 / 50
3 ms 508 KB
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <sstream>
 
using namespace std;
 
char La[26]={'2','2','2','3','3','3','4','4','4','5','5','5','6','6','6','7','7','7','7','8','8','8','9','9','9','9'};
int Lb[10003];
 
int main(){
    int N,b2,br,x;
    string s,s2="";
    cin >> N;
    for (int i=0;i<N;i++){
        cin >> s;
        s2="";
        b2=0;
        x=s.length();
        for (int j=0;j<x;j++){
            s2+=La[(int)s[j]-97];
        }
        stringstream pmc(s2);   //pmc - pomocna varijabla
        pmc >> b2;
        Lb[b2]+=1;
    }
    cin >> br;
    cout << Lb[br];
    return 0;
}
# Verdict Execution time Memory Grader output
1 Runtime error 3 ms 376 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Runtime error 2 ms 376 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Runtime error 2 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
4 Runtime error 3 ms 508 KB Execution killed with signal 11 (could be triggered by violating memory limits)
5 Runtime error 3 ms 376 KB Execution killed with signal 11 (could be triggered by violating memory limits)
6 Runtime error 3 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
7 Runtime error 3 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
8 Runtime error 3 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
9 Runtime error 3 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)
10 Runtime error 3 ms 504 KB Execution killed with signal 11 (could be triggered by violating memory limits)