結果

問題 No.671 1000000007
ユーザー PachicobuePachicobue
提出日時 2018-04-13 22:27:48
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 722 ms
コンパイル使用メモリ 78,036 KB
最終ジャッジ日時 2025-01-05 10:03:07
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    string s;
    cin >> s;
    int ans = 0;
    for (const char c : s) {
        if (c == '0') { ans++; }
    }
    cout << abs(ans - 8) << endl;
    return 0;
}
0