mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 17:18:47 +00:00
25 lines
512 B
C++
25 lines
512 B
C++
#include <iostream>
|
|
#include <numeric>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
const char endl = '\n';
|
|
|
|
int main() {
|
|
std::ios::sync_with_stdio(false);
|
|
cin.tie(nullptr);
|
|
|
|
std::string a, b;
|
|
std::unordered_map<char, int> map;
|
|
|
|
cin >> a >> b;
|
|
|
|
for (char c : b) map[c]++;
|
|
|
|
cout << (a.size() + 1) * (b.size() + 1) - std::accumulate(a.begin(), a.end(), 0ll, [&](long long lhs, char rhs) -> long long { return lhs + map[rhs]; }) << endl;
|
|
|
|
return 0;
|
|
}
|