結果

問題 No.161 制限ジャンケン
ユーザー jp_stejp_ste
提出日時 2015-03-16 07:59:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 765 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 77,604 KB
実行使用メモリ 56,300 KB
最終ジャッジ日時 2024-06-28 23:06:09
合計ジャッジ時間 4,781 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 109 ms
41,092 KB
testcase_02 AC 113 ms
41,040 KB
testcase_03 AC 95 ms
40,000 KB
testcase_04 WA -
testcase_05 AC 114 ms
41,052 KB
testcase_06 AC 116 ms
40,240 KB
testcase_07 AC 103 ms
40,152 KB
testcase_08 AC 116 ms
41,176 KB
testcase_09 AC 113 ms
41,484 KB
testcase_10 AC 118 ms
41,228 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 116 ms
41,508 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
		String S = sc.next();
		int ans = 0;
		
		for(int i=0; i<S.length(); i++) {
			
			if(G==0 && C==0 && P==0) break;
			
			char look = S.charAt(i);
			
			if(look == 'G') {
				if     (P>0) { P--; ans+=3; }
				else if(G>0) { G--; ans+=1; }
				else if(C>0) { C--; }	
				
			} else if(look == 'C') {
				if     (G>0) { G--; ans+=3; }
				else if(C>0) { C--; ans+=1; }
				else if(P>0) { P--; }
				
			} else if(look == 'P') {
				if     (C>0) { C--; ans+=3; }
				else if(P>0) { P--; ans+=1; }
				else if(G>0) { G--; }	
			}
		}
		System.out.println(ans);
	}
}
0