摘要:
水题~。 string mp[]={"ling","yi","er","san","si", "wu","liu","qi","ba","jiu"}; int main() { string s; cin>>s; int sum=0; for(int i=0;i<s.size();i++) sum+ 阅读全文
摘要:
水题~。 int w[]={7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2}; char mp[15]; int n; void init() { mp[0]='1'; mp[1]='0'; mp[2]='X'; for(int i=3;i<=10;i++) mp[i]=12 阅读全文
摘要:
最多$1000$位,显然要用字符串存储辣。 map<char,int> mp; string s; int main() { cin>>s; for(int i=0;i<s.size();i++) mp[s[i]]++; for(auto t:mp) cout<<t.fi<<':'<<t.se<<e 阅读全文
摘要:
水题~。 int n; int main() { cin>>n; string res; int t=n/100; for(int i=0;i<t;i++) res+='B'; t=n%100/10; for(int i=0;i<t;i++) res+='S'; t=n%100%10; for(in 阅读全文
摘要:
不开long long见祖宗。 struct Node { LL galleon,sickle,knut; }a,b; int main() { scanf("%d.%d.%d",&a.galleon,&a.sickle,&a.knut); scanf("%d.%d.%d",&b.galleon,& 阅读全文