結果

問題 No.161 制限ジャンケン
ユーザー GrenacheGrenache
提出日時 2016-02-14 17:20:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 1,181 bytes
コンパイル時間 3,367 ms
コンパイル使用メモリ 77,864 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-11-30 04:49:39
合計ジャッジ時間 6,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,144 KB
testcase_01 AC 106 ms
40,536 KB
testcase_02 AC 115 ms
41,252 KB
testcase_03 AC 102 ms
40,072 KB
testcase_04 AC 119 ms
41,344 KB
testcase_05 AC 114 ms
41,160 KB
testcase_06 AC 118 ms
41,264 KB
testcase_07 AC 104 ms
40,276 KB
testcase_08 AC 119 ms
41,456 KB
testcase_09 AC 119 ms
41,528 KB
testcase_10 AC 116 ms
41,304 KB
testcase_11 AC 143 ms
41,332 KB
testcase_12 AC 120 ms
41,348 KB
testcase_13 AC 107 ms
40,308 KB
testcase_14 AC 120 ms
41,152 KB
testcase_15 AC 119 ms
41,184 KB
testcase_16 AC 102 ms
40,248 KB
testcase_17 AC 118 ms
41,424 KB
testcase_18 AC 116 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder161 {

    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[] s = sc.next().toCharArray();

        int og = 0;
        int oc = 0;
        int op = 0;
        for (char ch : s) {
        	if (ch == 'G') {
        		og++;
        	} else if (ch == 'C') {
        		oc++;
        	} else if (ch == 'P') {
        		op++;
        	}
        }

        int ret = 0;
        int tmp;

        tmp = Math.min(g, oc);
        g -= tmp;
        oc -= tmp;
        ret += 3 * tmp;
        tmp = Math.min(c, op);
        c -= tmp;
        op -= tmp;
        ret += 3 * tmp;
        tmp = Math.min(p, og);
        p -= tmp;
        og -= tmp;
        ret += 3 * tmp;

        tmp = Math.min(g, og);
        g -= tmp;
        og -= tmp;
        ret += tmp;
        tmp = Math.min(c, oc);
        c -= tmp;
        oc -= tmp;
        ret += tmp;
        tmp = Math.min(p, op);
        p -= tmp;
        op -= tmp;
        ret += tmp;

        System.out.println(ret);

        sc.close();
    }
}
0