AtCoder Beginner Contest 141 (ABC141)

4完13:28でパフォ1374 Eがそこそこ解かれると4完早解きのパフォが微妙ですね A - Weather Prediction ifで3通り書けばいいです S[0]で判定できるのでそうするとちょっとタイプ数が減ります 提出コード int main(){ cin.tie(0); ios::sync_with_stdio(false); string S; cin >> S; if(S[0] == 'S') cout << "Cloudy" << end…