結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
46,720 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 30 ms
46,592 KB
testcase_04 AC 29 ms
46,720 KB
testcase_05 AC 29 ms
46,720 KB
testcase_06 AC 30 ms
46,720 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 29 ms
46,592 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 30 ms
46,720 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 29 ms
46,848 KB
testcase_26 AC 29 ms
46,720 KB
testcase_27 AC 29 ms
46,720 KB
testcase_28 AC 29 ms
46,848 KB
testcase_29 AC 30 ms
46,720 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