結果
問題 | No.161 制限ジャンケン |
ユーザー | threepipes_s |
提出日時 | 2015-03-06 00:27:58 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 51 ms / 5,000 ms |
コード長 | 3,434 bytes |
コンパイル時間 | 2,194 ms |
コンパイル使用メモリ | 79,948 KB |
実行使用メモリ | 37,292 KB |
最終ジャッジ日時 | 2024-11-30 04:27:14 |
合計ジャッジ時間 | 3,749 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
37,236 KB |
testcase_01 | AC | 46 ms
37,040 KB |
testcase_02 | AC | 47 ms
36,948 KB |
testcase_03 | AC | 45 ms
36,936 KB |
testcase_04 | AC | 48 ms
37,120 KB |
testcase_05 | AC | 48 ms
36,592 KB |
testcase_06 | AC | 47 ms
37,268 KB |
testcase_07 | AC | 47 ms
37,136 KB |
testcase_08 | AC | 50 ms
36,844 KB |
testcase_09 | AC | 49 ms
36,880 KB |
testcase_10 | AC | 48 ms
37,292 KB |
testcase_11 | AC | 49 ms
37,260 KB |
testcase_12 | AC | 51 ms
36,940 KB |
testcase_13 | AC | 50 ms
37,076 KB |
testcase_14 | AC | 47 ms
37,228 KB |
testcase_15 | AC | 46 ms
36,668 KB |
testcase_16 | AC | 47 ms
36,888 KB |
testcase_17 | AC | 48 ms
37,248 KB |
testcase_18 | AC | 46 ms
37,132 KB |
ソースコード
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()); } }