mirror of
https://github.com/tiennm99/codeforces.git
synced 2026-06-09 16:13:53 +00:00
[Init] Solved solutions
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#include <iostream>
|
||||
#include <string>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
string s;
|
||||
int c = 0;
|
||||
getline(cin, s);
|
||||
for (int i = s.length() - 2; i > 0; i -= 3)
|
||||
{
|
||||
if (s.find(s[i]) == i)
|
||||
{
|
||||
c++;
|
||||
}
|
||||
}
|
||||
cout << c;
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user