Codeforces 785A
Posted commario
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 785A相关的知识,希望对你有一定的参考价值。
#include <stdio.h> int main() { char line[30]; int n; scanf("%d", &n); getchar(); int ans=0; while(n--) { scanf("%s", line); if(line[0]==‘T‘) ans+=4; else if(line[0]==‘C‘) ans+=6; else if(line[0]==‘O‘) ans+=8; else if(line[0]==‘D‘) ans+=12; else if(line[0]==‘I‘) ans+=20; } printf("%d ", ans); return 0; }
以上是关于Codeforces 785A的主要内容,如果未能解决你的问题,请参考以下文章
题解 CF785A Anton and Polyhedrons
[Codeforces Round #522 (Div. 2, based on Technocup 2019 Elimination Round 3)][C. Playing Piano](代码片段
Codeforces 86C Genetic engineering(AC自动机+DP)