結果
問題 | No.161 制限ジャンケン |
ユーザー | spacia |
提出日時 | 2016-01-04 16:02:06 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 51 ms / 5,000 ms |
コード長 | 1,220 bytes |
コンパイル時間 | 2,192 ms |
コンパイル使用メモリ | 77,980 KB |
実行使用メモリ | 37,236 KB |
最終ジャッジ日時 | 2024-11-30 04:47:24 |
合計ジャッジ時間 | 3,566 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
37,068 KB |
testcase_01 | AC | 48 ms
36,828 KB |
testcase_02 | AC | 45 ms
36,972 KB |
testcase_03 | AC | 48 ms
36,980 KB |
testcase_04 | AC | 46 ms
37,156 KB |
testcase_05 | AC | 47 ms
37,236 KB |
testcase_06 | AC | 47 ms
37,156 KB |
testcase_07 | AC | 47 ms
36,936 KB |
testcase_08 | AC | 48 ms
36,884 KB |
testcase_09 | AC | 51 ms
37,008 KB |
testcase_10 | AC | 49 ms
36,724 KB |
testcase_11 | AC | 48 ms
36,584 KB |
testcase_12 | AC | 49 ms
36,548 KB |
testcase_13 | AC | 50 ms
36,844 KB |
testcase_14 | AC | 49 ms
36,844 KB |
testcase_15 | AC | 47 ms
37,100 KB |
testcase_16 | AC | 46 ms
37,152 KB |
testcase_17 | AC | 47 ms
37,204 KB |
testcase_18 | AC | 45 ms
37,148 KB |
ソースコード
import java.io.*; import java.util.*; import java.math.*; class Main { public static void out (Object o) { System.out.println(o); } public static void main (String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] line = br.readLine().split(" "); int g = Integer.parseInt(line[0]); int c = Integer.parseInt(line[1]); int p = Integer.parseInt(line[2]); String s = br.readLine(); int[] h = new int[3]; for (int i = 0; i < s.length(); i++) { char t = s.charAt(i); if (t == 'G') h[0]++; else if (t == 'C') h[1]++; else h[2]++; } int winPoint = (Math.min(g , h[1]) + Math.min(c , h[2]) + Math.min(p , h[0])) * 3; //out("w : " + winPoint); //out("g = " + g + " , c = " + c + " , p = " + p + "\th = " + Arrays.toString(h)); int sub = Math.min(g , h[1]); g -= sub; h[1] -= sub; sub = Math.min(c , h[2]); c -= sub; h[2] -= sub; sub = Math.min(p , h[0]); p -= sub; h[0] -= sub; int drawPoint = Math.min(g , h[0]) + Math.min(c , h[1]) + Math.min(p , h[2]); //out("g = " + g + " , c = " + c + " , p = " + p + "\th = " + Arrays.toString(h)); out(winPoint + drawPoint); } }