| Task: | Ositus |
| Sender: | EeliH |
| Submission time: | 2021-10-04 23:10:48 +0300 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 40 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 40 |
| #2 | TIME LIMIT EXCEEDED | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #2 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #3 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #4 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
| #5 | TIME LIMIT EXCEEDED | -- | 2, 3 | details |
| #6 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #7 | RUNTIME ERROR | 0.32 s | 3 | details |
Compiler report
input/code.cpp: In function 'uint64_t sana_maara(std::__cxx11::string, int)':
input/code.cpp:14:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(i = s; i < t.length(); i++) {
~~^~~~~~~~~~~~
input/code.cpp:23:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(i == t.length()) {
~~^~~~~~~~~~~~~
input/code.cpp:33:13: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(i != t.length()) {
~~^~~~~~~~~~~~~Code
#include <iostream>
#include <string>
using namespace std;
const uint64_t AAAA = 1000000007;
uint64_t sana_maara(string t, int s)
{
uint64_t maara = 0;
char kirjaimet[26] = {0};
int i;
for(i = s; i < t.length(); i++) {
char kirjain = t[i];
if(kirjaimet[kirjain - 'a'] != 0) {
break;
}
kirjaimet[kirjain - 'a'] = 1;
}
if(i == t.length()) {
return 1 << (i - s - 1) % AAAA;
}
for(int j = 0; j < 26; j++) {
kirjaimet[j] = 0;
}
kirjaimet[t[s] - 'a'] = 1;
i = s + 1;
while(i != t.length()) {
maara += sana_maara(t, i);
if(kirjaimet[t[i] - 'a'] != 0) {
break;
}
kirjaimet[t[i] - 'a'] = 1;
i++;
}
return maara % AAAA;
}
int main()
{
string t;
cin >> t;
cout << sana_maara(t, 0) << endl;
}
Test details
Test 1
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| a |
| correct output |
|---|
| 1 |
| user output |
|---|
| 1 |
Test 2
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| abcdefghij |
| correct output |
|---|
| 512 |
| user output |
|---|
| 512 |
Test 3
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| abcabaacbc |
| correct output |
|---|
| 120 |
| user output |
|---|
| 120 |
Test 4
Group: 1, 2, 3
Verdict: ACCEPTED
| input |
|---|
| aaxxxxxxaa |
| correct output |
|---|
| 4 |
| user output |
|---|
| 4 |
Test 5
Group: 2, 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| mfyzvoxmppoxcvktmcjkryyocfweub... |
| correct output |
|---|
| 643221148 |
| user output |
|---|
| (empty) |
Test 6
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| weinscqmmpgbrlboocvtbptgbahmwv... |
| correct output |
|---|
| 831644159 |
| user output |
|---|
| (empty) |
Test 7
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| sxaoxcyrjoeieyinaqxwukgzdnhhsw... |
| correct output |
|---|
| 816016015 |
| user output |
|---|
| (empty) |
