結果

問題 No.161 制限ジャンケン
ユーザー m2543315647m2543315647
提出日時 2015-05-14 10:26:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 824 bytes
コンパイル時間 3,587 ms
コンパイル使用メモリ 77,772 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-11-30 04:35:50
合計ジャッジ時間 7,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,176 KB
testcase_01 AC 137 ms
41,416 KB
testcase_02 AC 140 ms
41,036 KB
testcase_03 AC 138 ms
41,192 KB
testcase_04 AC 135 ms
41,684 KB
testcase_05 AC 135 ms
41,408 KB
testcase_06 AC 139 ms
41,280 KB
testcase_07 AC 136 ms
41,480 KB
testcase_08 AC 140 ms
41,344 KB
testcase_09 AC 138 ms
41,360 KB
testcase_10 AC 137 ms
41,328 KB
testcase_11 AC 138 ms
41,364 KB
testcase_12 AC 141 ms
41,440 KB
testcase_13 AC 140 ms
41,252 KB
testcase_14 AC 138 ms
41,048 KB
testcase_15 AC 142 ms
41,244 KB
testcase_16 AC 136 ms
41,300 KB
testcase_17 AC 139 ms
41,448 KB
testcase_18 AC 139 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No161 {
	static final int G = 0, C = 1, P = 2;
	static int[] m = new int[3], e = new int[3];
	public static void main(String[] args) {
		int point = 0;
		Scanner sc = new Scanner(System.in);
		m[G] = sc.nextInt();
		m[C] = sc.nextInt();
		m[P] = sc.nextInt();
		e[G] = e[C] = e[P] = 0;
		char[] s = new char[m[G] + m[C] + m[P]];
		s = sc.next().toCharArray();
		sc.close();
		for (int i = 0; i < s.length; i++) {
			if (s[i] == 'G')e[G]++;
			if (s[i] == 'C')e[C]++;
			if (s[i] == 'P')e[P]++;
		}
		point += (same(G, C) + same(C, P) + same(P, G)) * 3;
		point += same(G, G) + same(C, C) + same(P, P);
		System.out.println(point);
	}
	static int same(int me, int ene) {
		int buf = Math.max(m[me], e[ene]) - Math.abs(m[me] - e[ene]);
		m[me] -= buf;
		e[ene] -= buf;
		return buf;
	}
}
0