よじろめ覚書

私の理解度重視のソースコードです。

2019-07-27から1日間の記事一覧

ABC044B - 美しい文字列 / Beautiful Strings

ABC

問題:B - 美しい文字列 / Beautiful Strings #include <iostream> #include <string> using namespace std; #define REP(i, n) for (int i = 0; i < (n); ++i) int main(void) { string s; int cnt[26] = {0}; bool flg = true; cin.tie(0); ios::sync_with_stdio(false); cin</string></iostream>…