結果

問題 No.161 制限ジャンケン
ユーザー imulanimulan
提出日時 2016-02-11 19:14:48
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 891 bytes
コンパイル時間 1,353 ms
コンパイル使用メモリ 159,540 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 00:44:00
合計ジャッジ時間 2,197 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define rep(i,n) for(i=0;i<n;++i)
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define mp make_pair
#define pb push_back
#define fi first
#define sc second

int main(int argc, char const *argv[]) {
  int i;

  int g,c,p;
  string s;
  cin >>g >>c >>p >>s;

  int ans=0;
  rep(i,s.size()){
    if(s[i]=='G'){
      if(p>0){
        --p;
        ans+=3;
      }
      else if(g>0){
        --g;
        ans+=1;
      }
      else --c;
    }
    else if(s[i]=='C'){
      if(g>0){
        --g;
        ans+=3;
      }
      else if(c>0){
        --c;
        ans+=1;
      }
      else --p;
    }
    else{
      if(c>0){
        --c;
        ans+=3;
      }
      else if(p>0){
        --p;
        ans+=1;
      }
      else --g;
    }
  }

  std::cout << ans << std::endl;
  return 0;
}
0