結果
問題 | No.161 制限ジャンケン |
ユーザー | chiho_miyako |
提出日時 | 2015-04-13 13:25:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 125 ms / 5,000 ms |
コード長 | 1,659 bytes |
コンパイル時間 | 1,917 ms |
コンパイル使用メモリ | 77,304 KB |
実行使用メモリ | 41,620 KB |
最終ジャッジ日時 | 2024-11-30 04:32:06 |
合計ジャッジ時間 | 4,833 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 106 ms
40,108 KB |
testcase_01 | AC | 114 ms
41,620 KB |
testcase_02 | AC | 120 ms
41,068 KB |
testcase_03 | AC | 114 ms
41,048 KB |
testcase_04 | AC | 108 ms
40,680 KB |
testcase_05 | AC | 99 ms
39,720 KB |
testcase_06 | AC | 125 ms
41,428 KB |
testcase_07 | AC | 105 ms
40,112 KB |
testcase_08 | AC | 120 ms
41,192 KB |
testcase_09 | AC | 118 ms
41,472 KB |
testcase_10 | AC | 117 ms
40,920 KB |
testcase_11 | AC | 109 ms
39,872 KB |
testcase_12 | AC | 117 ms
41,044 KB |
testcase_13 | AC | 116 ms
40,948 KB |
testcase_14 | AC | 115 ms
41,152 KB |
testcase_15 | AC | 106 ms
40,300 KB |
testcase_16 | AC | 114 ms
41,448 KB |
testcase_17 | AC | 120 ms
41,340 KB |
testcase_18 | AC | 118 ms
41,100 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); int gi = koko.nextInt(); int ci = koko.nextInt(); int pi = koko.nextInt(); int gy = 0; int cy = 0; int py = 0; String s = koko.next(); for(int i=0; i<s.length(); i++){ if(s.charAt(i)=='G'){ gy++; }else if(s.charAt(i)=='C'){ cy++; }else{ py++; } } int gp=0; int cp=0; int pp=0; int gr=0; int cr=0; int pr=0; int rp=0; if(pi>=gy){ pp=3*gy; pr=pi-gy; if(ci>=py){ cp=3*py; cr=ci-py; gp=3*gi; rp=cr; }else if(ci<py){ cp=3*ci; if(pr>=(py-ci)){ rp=(py-ci); gp=3*gi; }else if(pr<(py-ci)){ rp=pr; gp=3*cy; } } }else if(pi<gy){ pp=3*pi; if(gi>=cy){ gp=3*cy; gr=gi-cy; if(gr>=(gy-pi)){ rp=gy-pi; cp=3*ci; }else if(gr<(gy-pi)){ rp=gr; cp=3*py; } }else if(gi<cy){ gp=3*gi; cp=3*py; rp=cy-gi; } } System.out.println(gp+cp+pp+rp); } }