結果

問題 No.161 制限ジャンケン
ユーザー kenkooookenkoooo
提出日時 2015-03-06 00:10:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 940 bytes
コンパイル時間 2,133 ms
コンパイル使用メモリ 77,736 KB
実行使用メモリ 41,972 KB
最終ジャッジ日時 2024-05-07 11:54:43
合計ジャッジ時間 5,349 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,336 KB
testcase_01 AC 126 ms
41,728 KB
testcase_02 AC 119 ms
41,504 KB
testcase_03 AC 125 ms
41,000 KB
testcase_04 AC 125 ms
41,600 KB
testcase_05 AC 126 ms
41,972 KB
testcase_06 AC 134 ms
41,460 KB
testcase_07 AC 132 ms
41,408 KB
testcase_08 AC 131 ms
41,600 KB
testcase_09 AC 128 ms
41,264 KB
testcase_10 AC 130 ms
41,212 KB
testcase_11 AC 127 ms
41,204 KB
testcase_12 AC 127 ms
41,288 KB
testcase_13 AC 121 ms
41,560 KB
testcase_14 AC 118 ms
41,276 KB
testcase_15 AC 130 ms
41,332 KB
testcase_16 AC 132 ms
41,064 KB
testcase_17 AC 132 ms
41,504 KB
testcase_18 AC 131 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
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();
		char[] string = sc.next().toCharArray();
		Arrays.sort(string);
		sc.close();

		int oG = 0;
		int oC = 0;
		int oP = 0;
		for (char d : string) {
			if (d == 'G') {
				oG++;
			} else if (d == 'C') {
				oC++;
			} else {
				oP++;
			}
		}
		int point = 0;
		point += Math.min(G, oC) * 3;
		point += Math.min(C, oP) * 3;
		point += Math.min(P, oG) * 3;

		if (G >= oC) {
			G -= oC;
			oC = 0;
		} else {
			oC -= G;
			G = 0;
		}

		if (C >= oP) {
			C -= oP;
			oP = 0;
		} else {
			oP -= C;
			C = 0;
		}

		if (P >= oG) {
			P -= oG;
			oG = 0;
		} else {
			oG -= P;
			P = 0;
		}

		point += Math.min(G, oG);
		point += Math.min(C, oC);
		point += Math.min(P, oP);

		System.out.println(point);

	}

}
0