1 Star 0 Fork 0

hsmath/PAT advanced

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
1120.cpp 566 Bytes
一键复制 编辑 原始数据 按行查看 历史
hsmath 提交于 2021-05-17 20:34 . 1120
/**
* @file 1120.cpp
* @author Shuang Hu <hsmath@ubuntu>
* @date Mon May 17 20:26:07 2021
*
* @brief PAT 1120
*
*
*/
#include<iostream>
#include<cmath>
#include<string>
#include<set>
using namespace std;
int main(){
int N;
cin>>N;
set<int> S;
for(int i=0;i<N;i++){
string s;
cin>>s;
int sum=0;
for(int j=0;j<s.length();j++){
sum=sum+s[j]-'0';
}
S.insert(sum);
}
cout<<S.size()<<endl;
cout<<*S.begin();
for(auto it=S.begin();it!=S.end();it++){
if(it!=S.begin()){
cout<<" "<<*it;
}
}
cout<<endl;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/hsmath/pat-advanced.git
git@gitee.com:hsmath/pat-advanced.git
hsmath
pat-advanced
PAT advanced
master

搜索帮助