結果

問題 No.509 塗りつぶしツール
ユーザー @abcde@abcde
提出日時 2019-03-18 00:17:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 1,113 ms
コンパイル使用メモリ 158,204 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-08 07:43:20
合計ジャッジ時間 2,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 解答不能.
// 題意解読不能 及び ロジック誤りのため, 再提出.
#include <bits/stdc++.h>
using namespace std;

int main() {
    
    // 1. 入力情報取得.
    string N;
    cin >> N;
    
    // 2. 0 ~ 9 の 塗りなおし.
    // 1, 2, 3, 5, 7 … 3回, 0, 4, 6, 9 … 4回, 8 … 5回
    int ans = 0;
    int l = N.size();
    
    // 2-1. 文字を青色に塗りつぶす.
    // ans += l;
    
    // 2-2. 背景を黒色に塗りつぶす.
    // ans++;
    for(int i = 0; i < l; i++){
        if(N[i] == '0' || N[i] == '4' || N[i] == '6' || N[i] == '9') ans++;
        if(N[i] == '8') ans += 2;
    }

    // 2-3. 文字を白色に塗りつぶす.
    // ans += l;
    
    // 3. 後処理.
    // ex.
    // 1234567890987654321 -> 50回?
    // -> 正解者様の解答を実行すると, 43回なので, こっちが正解らしい.
    ans = min(l * 2 + ans + 1, (ans + 1) * 2 + l);
    cout << ans << endl;
    return 0;
    
}
0