結果

問題 No.161 制限ジャンケン
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2017-10-21 22:58:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 899 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 79,804 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-01 09:20:47
合計ジャッジ時間 1,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;

int main() {
    
    int G,C,P,g,c,p;
    cin >> G >> C >> P;
    string S;
    cin >> S;
    
    g = c = p = 0;
    for ( int i = 0; i < S.length(); i++ ) {
        if ( S[i] == 'G' ) { g++; }
        else if ( S[i] == 'C' ) { c++; }
        else { p++; }
    }
    
    int ans = 0;
    
    ans += min( G, c )*3 + min( P, g )*3 + min( C, p )*3;
    
    G = max( 0, G-c );
    C = max( 0, C-p );
    P = max( 0, P-g );
    
    g = max( 0, g-P );
    c = max( 0, c-G );
    p = max( 0, p-C );
    
    ans += min( G, g ) + min( C, c ) + min( P, p );    
    
    cout << ans << endl;
    
    return 0;
}
0