| Task: | Osajono |
| Sender: | fergusq |
| Submission time: | 2015-09-28 16:32:09 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | 100 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 12 |
| #2 | ACCEPTED | 27 |
| #3 | ACCEPTED | 61 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.05 s | 1 | details |
| #2 | ACCEPTED | 0.05 s | 1 | details |
| #3 | ACCEPTED | 0.05 s | 1 | details |
| #4 | ACCEPTED | 0.05 s | 1 | details |
| #5 | ACCEPTED | 0.05 s | 1 | details |
| #6 | ACCEPTED | 0.05 s | 2 | details |
| #7 | ACCEPTED | 0.05 s | 2 | details |
| #8 | ACCEPTED | 0.06 s | 2 | details |
| #9 | ACCEPTED | 0.05 s | 2 | details |
| #10 | ACCEPTED | 0.06 s | 2 | details |
| #11 | ACCEPTED | 0.05 s | 3 | details |
| #12 | ACCEPTED | 0.05 s | 3 | details |
| #13 | ACCEPTED | 0.06 s | 3 | details |
| #14 | ACCEPTED | 0.05 s | 3 | details |
| #15 | ACCEPTED | 0.04 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:6:56: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
#define fromto(var, from, to) for (int var = from; var < to; var++)
^
input/code.cpp:14:2: note: in expansion of macro 'fromto'
fromto(i,0,s.length()) { m[s[i]-'A']++; }
^Code
#include <iostream>
using namespace std;
const int len = 'Z'-'A'+1;
#define fromto(var, from, to) for (int var = from; var < to; var++)
int main() {
cin.sync_with_stdio(false);
string s;
cin >> s;
long long m[len], z = 0;
fromto(i,0,len) { m[i] = 0; }
fromto(i,0,s.length()) { m[s[i]-'A']++; }
fromto(i,0,len) { z+=m[i]*(m[i]+1)/2; }
cout << z << endl;
}
Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| BBBAABBBAAAABBAAAABAABAABBBBBB... |
| correct output |
|---|
| 2554 |
| user output |
|---|
| 2554 |
Test 2
Group: 1
Verdict: ACCEPTED
| input |
|---|
| GDFVYWQCZAFGICSXOSWBZMGPDBSSVL... |
| correct output |
|---|
| 299 |
| user output |
|---|
| 299 |
Test 3
Group: 1
Verdict: ACCEPTED
| input |
|---|
| AAAAAAAAAAAAAAAAAAAAAAAAAZAAAA... |
| correct output |
|---|
| 4314 |
| user output |
|---|
| 4314 |
Test 4
Group: 1
Verdict: ACCEPTED
| input |
|---|
| AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| 4231 |
| user output |
|---|
| 4231 |
Test 5
Group: 1
Verdict: ACCEPTED
| input |
|---|
| QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ... |
| correct output |
|---|
| 5050 |
| user output |
|---|
| 5050 |
Test 6
Group: 2
Verdict: ACCEPTED
| input |
|---|
| BBABABBBABBAABBABBABAABAAABABA... |
| correct output |
|---|
| 6253029 |
| user output |
|---|
| 6253029 |
Test 7
Group: 2
Verdict: ACCEPTED
| input |
|---|
| RBKJMLDVQMKHYKCNDIVVKOMFUXTFMG... |
| correct output |
|---|
| 485173 |
| user output |
|---|
| 485173 |
Test 8
Group: 2
Verdict: ACCEPTED
| input |
|---|
| AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| 12427725 |
| user output |
|---|
| 12427725 |
Test 9
Group: 2
Verdict: ACCEPTED
| input |
|---|
| AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| 12467549 |
| user output |
|---|
| 12467549 |
Test 10
Group: 2
Verdict: ACCEPTED
| input |
|---|
| QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ... |
| correct output |
|---|
| 12502500 |
| user output |
|---|
| 12502500 |
Test 11
Group: 3
Verdict: ACCEPTED
| input |
|---|
| BAAAAABABBABAABAABABABBBABBAAB... |
| correct output |
|---|
| 2500051369 |
| user output |
|---|
| 2500051369 |
Test 12
Group: 3
Verdict: ACCEPTED
| input |
|---|
| ABBURXDRVXAYBPXXOQZNYHLWGUEEWR... |
| correct output |
|---|
| 192407124 |
| user output |
|---|
| 192407124 |
Test 13
Group: 3
Verdict: ACCEPTED
| input |
|---|
| AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| 4998050400 |
| user output |
|---|
| 4998050400 |
Test 14
Group: 3
Verdict: ACCEPTED
| input |
|---|
| AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
| correct output |
|---|
| 4998850144 |
| user output |
|---|
| 4998850144 |
Test 15
Group: 3
Verdict: ACCEPTED
| input |
|---|
| QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ... |
| correct output |
|---|
| 5000050000 |
| user output |
|---|
| 5000050000 |
