秒客网

秒客网
  • 首页
  • 网络编程
    • Java
    • C/C++
    • 编程技术
    • Android
    • C#
    • VB
    • R语言
    • JavaScript
    • Swift
    • IOS
    • PHP
    • ASP.NET
    • ASP
    • 正则表达式
    • 易语言
    • vb.net
    • C语言
    • Python
    • Golang
    • bat
    • VBS
    • perl
    • Lua
    • Dos
    • Ruby
    • VBA
    • PowerShell
    • Erlang
    • autoit
  • 网络运营
    • 建站经验
    • 网络安全
    • 网站优化
    • 网站运营
    • 站长资源
  • 数据库
    • Redis
    • Oracle
    • Mysql
    • Sql Server
    • Access
    • mariadb
    • DB2
    • PostgreSQL
    • Sqlite
    • MongoDB
    • 数据库技术
    • Mssql
  • 服务器系统
    • Linux
    • Ubuntu
    • Centos
    • Windows10
    • Windows7
    • 系统进程
    • Bios
    • Fedora
    • Windows11
    • Solaris
    • 注册表
    • windows server
  • 服务器技术
    • 云服务器
    • 虚拟主机
    • DNS服务器
    • Nginx
    • FTP服务器
    • 服务器其它
    • 服务器安全
    • WEB服务器
    • Tomcat
    • 邮件服务器
    • IIS
    • 虚拟服务器
  • 建站程序
    • Wordpress
    • 极致CMS
    • ZBLOG
    • PHPCMS
    • DEDECMS
    • 帝国CMS
    • Discuz
    • 苹果CMS
    • ECSHOP
    • CMS系统
  • 电脑知识
    • 网络技术
    • 组装电脑
    • 软件教程
    • 电脑硬件
  • 数码知识
    • 智能家居
    • 智能电视
    • 机顶盒
    • 智能音箱
    • 手表手环
    • VR/AR
    • VR之家
  • 游戏
    • 手机游戏
    • 单机游戏
    • 网络游戏
  • 综合资讯
    • 百科知识
当前位置: 首页 >Codeforces Round #253 (Div. 2) A. Anton and Letters

Codeforces Round #253 (Div. 2) A. Anton and Letters

时间:2023-03-08 20:48:42

题目很简单,只需要注意带空格的输入用getline即可

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <set> using namespace std; int main(){
string str;
getline(cin,str);
set<char> a;
for(int i= ; i < str.length()-; i+= ){
a.insert(str[i]);
}
cout<<a.size()<<endl;
}

相关文章

  • Educational Codeforces Round 78 (Rated for Div. 2) A. Shuffle Hashing
  • Codeforces Round #248 (Div. 2) A. Kitahara Haruki's Gift
  • Codeforces Round #324 (Div. 2) E. Anton and Ira 贪心
  • Codeforces Round #497 (Div. 2) A. Romaji
  • Codeforces Round #325 (Div. 2) A. Alena's Schedule 水题
  • Codeforces Round #192 (Div. 2) (330A) A. Cakeminator
  • Codeforces Round #328 (Div. 2)_A. PawnChess
  • Codeforces Round #235 (Div. 2) A. Vanya and Cards
  • Codeforces Round #525 (Div. 2)A. Ehab and another construction problem
  • Codeforces Round #272 (Div. 2) A. Dreamoon and Stairs 水题
上一篇:android学习——error opening trace file: No such file or directory (2)
下一篇:ftp搭建后外网无法连接和访问阿里云服务器(非软件)

推荐文章

  • MongoDB的客户端管理工具--nosqlbooster 查询工具使用
  • 新安装Ubuntu加载时提示“为/检查磁盘时发生严重错误”的解决方法
  • mongo admin 客户端管理工具安装
  • 如何修改jupyter notebook的工作目录
  • wxGlade的图标,竟来自名画!
  • Python操作sqlserver 2000
  • 【原创】自己动手写一个能操作redis的客户端
  • 像素、决策、特征级融合区别
  • timm库安装
  • 微信小程序实训报告

相关下载

  • Codeforces Round #723 (Div. 2).md下载
  • Codeforces-Round-492-:解决问题shorturl.atetAIW下载
  • ForceCode:无需打开网站即可解决 CodeForces Round 问题!下载
  • round2kata下载
  • CodeForces-Div.2A下载
  • 最新编程技术文章
  • 网站地图

Copyright © 2021-2022 www.miaokee.com 秒客网 备案号:粤ICP备2021167564号

免责声明:本站文章多为用户分享,部分搜集自互联网,如有侵权请联系站长,我们将在72小时内删除。

