結果

問題 No.161 制限ジャンケン
ユーザー threepipes_sthreepipes_s
提出日時 2015-03-06 00:27:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 3,434 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 79,604 KB
実行使用メモリ 37,164 KB
最終ジャッジ日時 2024-05-07 11:54:50
合計ジャッジ時間 3,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
37,020 KB
testcase_01 AC 48 ms
37,164 KB
testcase_02 AC 49 ms
36,748 KB
testcase_03 AC 46 ms
36,788 KB
testcase_04 AC 48 ms
36,864 KB
testcase_05 AC 47 ms
36,820 KB
testcase_06 AC 48 ms
36,628 KB
testcase_07 AC 48 ms
36,848 KB
testcase_08 AC 48 ms
36,712 KB
testcase_09 AC 47 ms
37,036 KB
testcase_10 AC 47 ms
36,888 KB
testcase_11 AC 46 ms
36,984 KB
testcase_12 AC 47 ms
37,040 KB
testcase_13 AC 47 ms
37,020 KB
testcase_14 AC 47 ms
37,008 KB
testcase_15 AC 45 ms
36,560 KB
testcase_16 AC 47 ms
36,620 KB
testcase_17 AC 51 ms
36,664 KB
testcase_18 AC 50 ms
37,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Queue;
public class Main {
	public static void main(String[] args) throws NumberFormatException, IOException{
		ContestScanner in = new ContestScanner();
		int[] me = new int[3];
		me[0] = in.nextInt();
		me[1] = in.nextInt();
		me[2] = in.nextInt();
		char[] s = in.nextToken().toCharArray();
		int max = Math.min(s.length, me[0]+me[1]+me[2]);
		int[] te = new int[3];
		for(int i=0; i<max; i++){
			switch(s[i]){
			case 'G':
				te[0]++;
				break;
			case 'C':
				te[1]++;
				break;
			case 'P':
				te[2]++;
				break;
			}
		}
		int point = 0;
		for(int i=0; i<3; i++){
			if(me[i] >= te[(i+1)%3]){
				int dif = me[i]-te[(i+1)%3];
				me[i] -= te[(i+1)%3];
				point += te[(i+1)%3]*3;
				te[(i+1)%3] = 0;
			}else{
				int dif = te[(i+1)%3] - me[i];
				te[(i+1)%3] -= me[i];
				point += me[i]*3;
				me[i] = 0;
			}
		}
		
		for(int i=0; i<3; i++){
			if(me[i] >= te[i]){
				int dif = me[i]-te[i];
				me[i] -= te[i];
				point += te[i];
				te[i] = 0;
			}else{
				int dif = te[i] - me[i];
				te[i] -= me[i];
				point += me[i];
				me[i] = 0;
			}
		}
		
		System.out.println(point);
	}
}


class MyComp implements Comparator<int[]>{
	public int compare(int[] a, int[] b) {
		return a[0] - b[0];
	}
}

class Reverse implements Comparator<Integer>{
	public int compare(Integer arg0, Integer arg1) {
		return arg1 - arg0;
	}
}

class Node implements Comparable<Node>{
	int id;
	List<Node> edge = new ArrayList<Node>();
//	List<Integer> cost = new ArrayList<Integer>();
	int sum;
	public Node(int id){
		this.id = id;
		sum = 100000000;
	}
	public void createEdge(Node node){
		edge.add(node);
//		cost.add(c);
	}
	@Override
	public int compareTo(Node o) {
		// TODO 自動生成されたメソッド・スタブ
		return sum - o.sum;
	}
}

class ContestWriter{
	private PrintWriter out;
	public ContestWriter(String filename) throws IOException{
		out = new PrintWriter(new BufferedWriter(new FileWriter(filename)));
	}
	
	public ContestWriter() throws IOException{
		out = new PrintWriter(System.out);
	}
	
	public void println(String str){
		out.println(str);
	}
	
	public void print(String str){
		out.print(str);
	}
	
	public void close(){
		out.close();
	}
}

class ContestScanner{
	private BufferedReader reader;
	private String[] line;
	private int idx;
	public ContestScanner() throws FileNotFoundException{
		reader = new BufferedReader(new InputStreamReader(System.in));
	}

	public ContestScanner(String filename) throws FileNotFoundException{
		reader = new BufferedReader(new InputStreamReader(new FileInputStream(filename)));
	}
	
	public String nextToken() throws IOException{
		if(line == null || line.length <= idx){
			line = reader.readLine().trim().split(" ");
			idx = 0;
		}
		return line[idx++];
	}
	public long nextLong() throws IOException, NumberFormatException{
		return Long.parseLong(nextToken());
	}
	public int nextInt() throws NumberFormatException, IOException{
		return (int)nextLong();
	}
	public double nextDouble() throws NumberFormatException, IOException{
		return Double.parseDouble(nextToken());
	}
}
0