https://yukicoder.me/problems/no/671
解法
https://yukicoder.me/submissions/251053
1000..0007の形で文字列が与えられているので、0の個数は「Nの文字数-2」である。
これと目標の8との差を求めればいい。
string N; //--------------------------------------------------------------------------------------------------- void _main() { cin >> N; int n = N.length() - 2; int ans = abs(n - 8); cout << ans << endl; }