結果

問題 No.161 制限ジャンケン
ユーザー 37zigen37zigen
提出日時 2016-05-20 12:53:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 723 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 77,328 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-11-30 04:53:22
合計ジャッジ時間 5,168 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,920 KB
testcase_01 AC 118 ms
41,240 KB
testcase_02 AC 122 ms
41,536 KB
testcase_03 AC 116 ms
41,588 KB
testcase_04 AC 115 ms
41,272 KB
testcase_05 AC 105 ms
40,312 KB
testcase_06 AC 118 ms
41,356 KB
testcase_07 AC 117 ms
41,056 KB
testcase_08 AC 107 ms
40,036 KB
testcase_09 AC 118 ms
41,392 KB
testcase_10 AC 122 ms
41,568 KB
testcase_11 AC 104 ms
40,164 KB
testcase_12 AC 103 ms
40,212 KB
testcase_13 AC 117 ms
41,052 KB
testcase_14 AC 105 ms
39,924 KB
testcase_15 AC 111 ms
41,260 KB
testcase_16 AC 116 ms
40,940 KB
testcase_17 AC 109 ms
40,312 KB
testcase_18 AC 117 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int[] me=new int[3];
		for(int i=0;i<3;i++)me[i]=sc.nextInt();

		String s=sc.next();
		int[] enemy=new int[3];
		for(int i=0;i<s.length();i++){
			if(s.charAt(i)=='G')enemy[0]++;
			else if(s.charAt(i)=='C')enemy[1]++;
			else if(s.charAt(i)=='P')enemy[2]++;
		}
		int c=0;
		for(int i=0;i<3;i++){
			int a=Math.min(me[i],enemy[(i+1)%3]);
			c+=3*a;
			me[i]-=a;
			enemy[(i+1)%3]-=a;
		}
		for(int i=0;i<3;i++){
			int a=Math.min(me[i], enemy[i]);
			c+=a;
			me[i]-=a;
			enemy[i]-=a;
		}
		System.out.println(c);
	}
}

0