結果
問題 | No.161 制限ジャンケン |
ユーザー | ぴろず |
提出日時 | 2015-03-05 23:48:18 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 120 ms / 5,000 ms |
コード長 | 1,176 bytes |
コンパイル時間 | 2,027 ms |
コンパイル使用メモリ | 77,592 KB |
実行使用メモリ | 41,236 KB |
最終ジャッジ日時 | 2024-05-07 11:53:47 |
合計ジャッジ時間 | 4,913 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 117 ms
41,136 KB |
testcase_01 | AC | 103 ms
40,156 KB |
testcase_02 | AC | 102 ms
39,688 KB |
testcase_03 | AC | 117 ms
41,148 KB |
testcase_04 | AC | 106 ms
39,688 KB |
testcase_05 | AC | 110 ms
40,984 KB |
testcase_06 | AC | 104 ms
40,224 KB |
testcase_07 | AC | 114 ms
40,892 KB |
testcase_08 | AC | 120 ms
40,388 KB |
testcase_09 | AC | 116 ms
41,188 KB |
testcase_10 | AC | 109 ms
39,828 KB |
testcase_11 | AC | 111 ms
39,880 KB |
testcase_12 | AC | 116 ms
41,236 KB |
testcase_13 | AC | 120 ms
40,600 KB |
testcase_14 | AC | 115 ms
41,104 KB |
testcase_15 | AC | 120 ms
40,716 KB |
testcase_16 | AC | 118 ms
41,232 KB |
testcase_17 | AC | 106 ms
40,100 KB |
testcase_18 | AC | 107 ms
39,904 KB |
ソースコード
package no161; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int gx = sc.nextInt(); int cx = sc.nextInt(); int px = sc.nextInt(); int gy = 0, cy = 0, py = 0; char[] s = sc.next().toCharArray(); int n = s.length; for(int i=0;i<n;i++) { if (s[i] == 'G') { gy++; }else if(s[i] == 'C') { cy++; }else{ py++; } } int max = 0; for(int gg=0;gg<=300;gg++) { if (gg > gx || gg > gy) { break; } for(int gc=0;gc<=300;gc++) { if (gg+gc > gx || gc > cy) { break; } for(int cg=0;cg<=300;cg++) { if (gg+cg > gy || cg > cx) { break; } int gp = gx - gg - gc; int pg = gy - gg - cg; if (gp > py || pg > px) { continue; } int cp = Math.min(cx - cg, py - gp); int cc = cx - cg - cp; int pp = py - gp - cp; // System.out.println("---"); // System.out.println(gg + " " + gc + " " + gp + "\n" + cg + " " + cc + " " + cp + "\n" + pg + " " + (px - pg - pp) + " " + pp); max = Math.max(max, (gc + cp + pg) * 3 + gg + cc + pp); } } } System.out.println(max); } }