結果

問題 No.161 制限ジャンケン
ユーザー k_kadorak_kadora
提出日時 2015-06-14 20:27:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 880 bytes
コンパイル時間 3,002 ms
コンパイル使用メモリ 77,416 KB
実行使用メモリ 41,244 KB
最終ジャッジ日時 2024-05-07 12:04:39
合計ジャッジ時間 5,865 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,212 KB
testcase_01 AC 110 ms
40,952 KB
testcase_02 AC 106 ms
40,312 KB
testcase_03 AC 104 ms
39,824 KB
testcase_04 AC 114 ms
41,220 KB
testcase_05 AC 105 ms
39,960 KB
testcase_06 AC 118 ms
41,244 KB
testcase_07 AC 118 ms
41,100 KB
testcase_08 AC 104 ms
40,336 KB
testcase_09 AC 107 ms
40,716 KB
testcase_10 AC 108 ms
40,856 KB
testcase_11 AC 108 ms
40,760 KB
testcase_12 AC 110 ms
41,032 KB
testcase_13 AC 113 ms
41,032 KB
testcase_14 AC 102 ms
39,860 KB
testcase_15 AC 102 ms
39,856 KB
testcase_16 AC 100 ms
40,116 KB
testcase_17 AC 112 ms
41,240 KB
testcase_18 AC 114 ms
41,224 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