結果

問題 No.291 黒い文字列
ユーザー dshjdshj
提出日時 2019-08-30 20:08:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 384 bytes
コンパイル時間 1,232 ms
コンパイル使用メモリ 160,832 KB
実行使用メモリ 46,976 KB
最終ジャッジ日時 2024-11-21 18:58:09
合計ジャッジ時間 3,198 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
 
 
int main() {
 
    string str;
    cin >> str;

    int sum =0;
    int A[11111111];

    for(char el: str){
        ++A[el];

    }

    string str2 = "KUROI";
    vector<int> vec;

    for(char el2: str2){
        vec.push_back(A[el2]);
    }

    int min = *std::min_element(vec.begin(), vec.end());
    cout<<min;
    return 0;
}

0