| Task: | Niitty | 
| Sender: | ma100 | 
| Submission time: | 2024-11-01 10:22:52 +0200 | 
| Language: | C++ (C++11) | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | RUNTIME ERROR | 0 | 
| #2 | RUNTIME ERROR | 0 | 
| #3 | RUNTIME ERROR | 0 | 
| #4 | RUNTIME ERROR | 0 | 
| #5 | RUNTIME ERROR | 0 | 
| #6 | RUNTIME ERROR | 0 | 
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.00 s | 1, 2, 3, 4, 5, 6 | details | 
| #2 | RUNTIME ERROR | 0.00 s | 1, 2, 3, 4, 5, 6 | details | 
| #3 | RUNTIME ERROR | 0.00 s | 1, 2, 3, 4, 5, 6 | details | 
| #4 | RUNTIME ERROR | 0.00 s | 1, 2, 3, 4, 5, 6 | details | 
| #5 | RUNTIME ERROR | 0.00 s | 1, 2, 3, 4, 5, 6 | details | 
| #6 | RUNTIME ERROR | 0.00 s | 2, 3, 4, 5, 6 | details | 
| #7 | RUNTIME ERROR | 0.00 s | 2, 3, 4, 5, 6 | details | 
| #8 | RUNTIME ERROR | 0.00 s | 2, 3, 4, 5, 6 | details | 
| #9 | RUNTIME ERROR | 0.00 s | 2, 3, 4, 5, 6 | details | 
| #10 | RUNTIME ERROR | 0.00 s | 3, 4, 5, 6 | details | 
| #11 | RUNTIME ERROR | 0.00 s | 3, 4, 5, 6 | details | 
| #12 | RUNTIME ERROR | 0.00 s | 3, 4, 5, 6 | details | 
| #13 | RUNTIME ERROR | 0.00 s | 3, 4, 5, 6 | details | 
| #14 | RUNTIME ERROR | 0.01 s | 4, 5, 6 | details | 
| #15 | RUNTIME ERROR | 0.01 s | 4, 5, 6 | details | 
| #16 | RUNTIME ERROR | 0.00 s | 4, 5, 6 | details | 
| #17 | RUNTIME ERROR | 0.00 s | 4, 5, 6 | details | 
| #18 | RUNTIME ERROR | 0.00 s | 5, 6 | details | 
| #19 | RUNTIME ERROR | 0.00 s | 5, 6 | details | 
| #20 | RUNTIME ERROR | 0.00 s | 5, 6 | details | 
| #21 | RUNTIME ERROR | 0.00 s | 5, 6 | details | 
| #22 | RUNTIME ERROR | 0.00 s | 6 | details | 
| #23 | RUNTIME ERROR | 0.00 s | 6 | details | 
| #24 | RUNTIME ERROR | 0.00 s | 6 | details | 
| #25 | RUNTIME ERROR | 0.00 s | 6 | details | 
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:32:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   32 |             if ((h * w) < u.size())
      |                 ~~~~~~~~^~~~~~~~~~
input/code.cpp:45:35: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |                     for(int i=0; i<u.size(); i++) {
      |                                  ~^~~~~~~~~
input/code.cpp:7:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
    7 |     freopen("input.log", "r", stdin);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main()
{
    freopen("input.log", "r", stdin);
    int n;
    cin >> n;
    vector<string> fi;
    fi.reserve(250000);
    for (int i = 0; i < n; i++)
    {
        string s;
        cin >> s;
        fi.push_back(s);
    }
    string u;
    for (int i = 0; i < n; i++)
    {
        u.append(fi[i]);
    }
    sort(u.begin(), u.end());
    u.resize(std::distance(u.begin(), unique(u.begin(), u.end())));
    ll v = 0;
    for (int w = 1; w <= n; w++)
    {
        for (int h = 1; h <= n; h++)
        {
            if ((h * w) < u.size())
                continue;
            for (int x = 0; x + w <= n; x++)
            {
                for (int y = 0; y + h <= n; y++)
                {
                    string s;
                    s.reserve(250000);
                    for (int i = y; i < y + h; i++)
                    {
                        s.append(fi[i].substr(x, w));
                    }
                    bool ct = true;
                    for(int i=0; i<u.size(); i++) {
                        if (s.find(u[i]) == s.npos) {
                            ct = false;
                            break;
                        }
                    }
                    if (ct)
                    {
                        v++;
                    }
                }
            }
        }
    }
    cout << v << '\n';
}Test details
Test 1
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 10 TNCTNPNTPC NPPNTNTPTP NTNTTCNTCT NPCPNPPNTT ...  | 
| correct output | 
|---|
| 2035 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 2
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 10 NFWQLWNWYS DZOQJVXFPJ CNHXPXMCQD QRTBVNLTQC ...  | 
| correct output | 
|---|
| 9 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 3
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 10 XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX XXXXXXXXXX ...  | 
| correct output | 
|---|
| 3025 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 4
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 10 FFFFFFFFFF FFFFFCFFFF FFFFFFJFFF FFFFFFFFFF ...  | 
| correct output | 
|---|
| 12 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 5
Group: 1, 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 1 X  | 
| correct output | 
|---|
| 1 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 6
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 20 BBCBUBOUOBBCUUBBCOUO BOUCOOCUBCOOOCOBOCUO UCCUUUOBCOCBCBUBUCOO BUOBUCUCUOOBCOOUBUOO ...  | 
| correct output | 
|---|
| 38724 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 7
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 20 CBGLSHGZHYZDWBNDBJUG SMUXOJQYPXZDTMJUIWOJ XIDSTNBGHKRKOVUVMINB MTQGCFRUHQKALXRNCQGS ...  | 
| correct output | 
|---|
| 8334 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 8
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 20 KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK KKKKKKKKKKKKKKKKKKKK ...  | 
| correct output | 
|---|
| 44100 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 9
Group: 2, 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 20 AAAAAAAAXAAAAAAAAAAA AAAWAAAAAAAAAAAAAOAA AAAAAAAAAAAAAAAAAPAA AAAAAAAAKAAAAAAAAAAZ ...  | 
| correct output | 
|---|
| 18 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 10
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 50 GRGREEEGREGXRXXEGXXREXGRRRGRRR...  | 
| correct output | 
|---|
| 1584665 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 11
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 50 AITIISJUHCCRZNKSDCNQKYSQRINFWJ...  | 
| correct output | 
|---|
| 1077746 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 12
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 50 OOOOOOOOOOOOOOOOOOOOOOOOOOOOOO...  | 
| correct output | 
|---|
| 1625625 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 13
Group: 3, 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 50 FFFFFFFFFFFFFFFFFFFFFFFFFFFFFF...  | 
| correct output | 
|---|
| 1680 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 14
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 NNCMDCDDCCNNNDNCMMNCDCDCCDCDNM...  | 
| correct output | 
|---|
| 25325366 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 15
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 LIMQQIHASECROEVILNVULGWZJPPKOG...  | 
| correct output | 
|---|
| 22342463 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 16
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 TTTTTTTTTTTTTTTTTTTTTTTTTTTTTT...  | 
| correct output | 
|---|
| 25502500 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 17
Group: 4, 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 QXQQQQQQQQQQQQQQQQQQQQQQQQQQQQ...  | 
| correct output | 
|---|
| 25650 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 18
Group: 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 200 NAANANMMKNKKAKMKMAKNKMNKMMNNAA...  | 
| correct output | 
|---|
| 403292767 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 19
Group: 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 200 OMYWATTLURKQPTKEFMGGYAOONXWVSC...  | 
| correct output | 
|---|
| 388111321 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 20
Group: 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 200 CCCCCCCCCCCCCCCCCCCCCCCCCCCCCC...  | 
| correct output | 
|---|
| 404010000 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 21
Group: 5, 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 200 LLLLLLLLLLLLLLLLLHLLLLLLLLLLLL...  | 
| correct output | 
|---|
| 14159445 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 22
Group: 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 500 VVHWVUHVHUWWWVUUUWVUUHUUWHWUVW...  | 
| correct output | 
|---|
| 15683003812 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 23
Group: 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 500 OIMZGEQSBMBDSDXSWRFNKSGFEBBTJE...  | 
| correct output | 
|---|
| 15575906951 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 24
Group: 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 500 IIIIIIIIIIIIIIIIIIIIIIIIIIIIII...  | 
| correct output | 
|---|
| 15687562500 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
Test 25
Group: 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 500 WWWWWWWWWWWWWWWWWWWWWWWWWWWWWW...  | 
| correct output | 
|---|
| 3058970930 | 
| user output | 
|---|
| (empty) | 
Error:
terminate called after throwing an instance of 'std::out_of_range' what(): basic_string::substr: __pos (which is 1) > this->size() (which is 0)
