結果
問題 | No.161 制限ジャンケン |
ユーザー | kou6839 |
提出日時 | 2015-03-09 19:27:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 727 bytes |
コンパイル時間 | 2,157 ms |
コンパイル使用メモリ | 74,584 KB |
実行使用メモリ | 54,396 KB |
最終ジャッジ日時 | 2024-06-24 16:56:13 |
合計ジャッジ時間 | 5,608 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 136 ms
41,196 KB |
testcase_02 | AC | 133 ms
41,420 KB |
testcase_03 | AC | 136 ms
41,052 KB |
testcase_04 | WA | - |
testcase_05 | AC | 135 ms
41,172 KB |
testcase_06 | AC | 137 ms
41,088 KB |
testcase_07 | AC | 135 ms
41,464 KB |
testcase_08 | AC | 138 ms
41,456 KB |
testcase_09 | AC | 136 ms
41,300 KB |
testcase_10 | AC | 134 ms
41,424 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 121 ms
40,276 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
import java.beans.IntrospectionException; import java.util.*; 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 te = sc.next(); int ans =0 ; for(int i=0;i<te.length();i++){ if(te.charAt(i)=='G'){ if(p>0){ p--; ans+=3; }else if(g>0){ g--; ans+=1; }else{ c--; } }else if(te.charAt(i)=='C'){ if(g>0){ g--; ans+=3; }else if(c>0){ c--; ans+=1; }else{ p--; } }else{ if(c>0){ c--; ans+=3; }else if(p>0){ p--; ans+=1; }else{ g--; } } } System.out.println(ans); } }