#include<map>
#include<iostream>
#include<string>
using namespace std;
int main()
{
    string s;
    cin >> s;
    map <string,int> Map;
    Map[s] = 1;
    printf("%d",Map[s]);
}
Map

相关文章:

  • 2021-11-13
  • 2022-02-01
  • 2022-12-23
  • 2022-12-23
  • 2021-05-01
  • 2022-12-23
  • 2022-12-23
  • 2021-08-30
猜你喜欢
  • 2021-07-22
  • 2021-12-22
  • 2022-01-21
  • 2022-01-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案