結果

問題 No.161 制限ジャンケン
ユーザー jp_stejp_ste
提出日時 2015-03-16 08:32:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 175 ms / 5,000 ms
コード長 971 bytes
コンパイル時間 2,285 ms
コンパイル使用メモリ 79,304 KB
実行使用メモリ 47,268 KB
最終ジャッジ日時 2024-11-30 04:31:12
合計ジャッジ時間 6,266 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
47,268 KB
testcase_01 AC 137 ms
46,236 KB
testcase_02 AC 167 ms
42,244 KB
testcase_03 AC 167 ms
42,420 KB
testcase_04 AC 164 ms
42,256 KB
testcase_05 AC 137 ms
41,480 KB
testcase_06 AC 172 ms
42,444 KB
testcase_07 AC 166 ms
42,380 KB
testcase_08 AC 167 ms
42,348 KB
testcase_09 AC 166 ms
42,548 KB
testcase_10 AC 175 ms
42,628 KB
testcase_11 AC 166 ms
42,628 KB
testcase_12 AC 151 ms
42,544 KB
testcase_13 AC 167 ms
42,552 KB
testcase_14 AC 165 ms
42,532 KB
testcase_15 AC 155 ms
42,364 KB
testcase_16 AC 171 ms
42,152 KB
testcase_17 AC 163 ms
42,608 KB
testcase_18 AC 165 ms
42,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		int G = sc.nextInt();
		int C = sc.nextInt();
		int P = sc.nextInt();
		String S = sc.next();
		
		int ans = 0;
		String nextS = "";
		
		//勝てる手
		for(int i=0; i<S.length(); i++) {
			
			char look = S.charAt(i);
			boolean find = false;
			
			if(look == 'G') {
				if(P>0) { P--; ans+=3; find=true; }
				
			} else if(look == 'C') {
				if(G>0) { G--; ans+=3; find=true; }
				
			} else if(look == 'P') {
				if(C>0) { C--; ans+=3; find=true; }
			}
		
			if(find==false) {
				nextS += look;
			}
		}
		
		S = nextS;
		
		//あいこの手
		for(int i=0; i<S.length(); i++) {
			
			char look = S.charAt(i);
			
			if(look == 'G') {
				if(G>0) { G--; ans+=1; }
				
			} else if(look == 'C') {
				if(C>0) { C--; ans+=1; }
				
			} else if(look == 'P') {
				if(P>0) { P--; ans+=1; }
			}	
		}
		System.out.println(ans);
	}
}
0