結果

問題 No.161 制限ジャンケン
ユーザー k_kadorak_kadora
提出日時 2015-06-14 20:27:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 880 bytes
コンパイル時間 4,035 ms
コンパイル使用メモリ 79,484 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-11-30 04:40:59
合計ジャッジ時間 7,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,320 KB
testcase_01 AC 136 ms
41,128 KB
testcase_02 AC 136 ms
41,396 KB
testcase_03 AC 142 ms
41,320 KB
testcase_04 AC 140 ms
41,332 KB
testcase_05 AC 139 ms
41,336 KB
testcase_06 AC 139 ms
41,236 KB
testcase_07 AC 138 ms
41,228 KB
testcase_08 AC 142 ms
41,108 KB
testcase_09 AC 136 ms
40,916 KB
testcase_10 AC 137 ms
41,200 KB
testcase_11 AC 140 ms
41,100 KB
testcase_12 AC 139 ms
41,484 KB
testcase_13 AC 140 ms
41,476 KB
testcase_14 AC 138 ms
41,472 KB
testcase_15 AC 138 ms
41,180 KB
testcase_16 AC 138 ms
41,452 KB
testcase_17 AC 137 ms
41,256 KB
testcase_18 AC 138 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki161{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int[] me = new int[3];
		int[] you = new int[3];
		int res=0;
		me[0] = sc.nextInt();
		me[1] = sc.nextInt();
		me[2] = sc.nextInt();
		String s = sc.next();
		for(int i = 0;i<s.length();i++){
			if(s.charAt(i) == 'G'){
				you[0]++;
			}else if(s.charAt(i) == 'C'){
				you[1]++;
			}else{
				you[2]++;
			}
		}
		for(int i = 0;i<3;i++){
			if(me[i] >= you[(i+1) % 3]){
				res += you[(i+1) % 3] * 3;
				me[i] -= you[(i+1) % 3];
				you[(i+1) % 3] = 0;
			}else{
				res += me[i] * 3;
				you[(i+1) % 3] -= me[i];
				me[i] = 0;
			}
		}
		for(int i = 0;i<3;i++){
			if(me[i] >= you[i]){
				res += you[i];
				me[i] -= you[i];
				you[i] = 0;
			}else{
				res += me[i];
				you[i] -= me[i];
				me[i] = 0;
			}
		}
		System.out.println(res);
	}
}
0