CodeForces 785A Anton and Polyhedrons
Posted Fighting Heart
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeForces 785A Anton and Polyhedrons相关的知识,希望对你有一定的参考价值。
简单判断。
分别判断每个单词是几面体,加起来就是答案。
#include <cstdio> #include <cmath> #include <cstring> #include <map> #include <algorithm> using namespace std; int n; char s[1000]; int sum; int main() { scanf("%d",&n); for(int i=1;i<=n;i++) { scanf("%s",s); if(s[0]==‘T‘) sum+=4; if(s[0]==‘C‘) sum+=6; if(s[0]==‘O‘) sum+=8; if(s[0]==‘D‘) sum+=12; if(s[0]==‘I‘) sum+=20; } printf("%d\n",sum); return 0; }
以上是关于CodeForces 785A Anton and Polyhedrons的主要内容,如果未能解决你的问题,请参考以下文章
CodeForces 734B Anton and Digits
codeforces785E Anton and Permutation
CodeForces 734F Anton and School
CodeForces 734E Anton and Tree