結果

問題 No.161 制限ジャンケン
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-28 13:07:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 955 bytes
コンパイル時間 3,053 ms
コンパイル使用メモリ 77,372 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-11-30 05:07:14
合計ジャッジ時間 6,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
53,672 KB
testcase_01 AC 135 ms
53,744 KB
testcase_02 AC 136 ms
53,612 KB
testcase_03 AC 135 ms
53,756 KB
testcase_04 AC 134 ms
54,048 KB
testcase_05 AC 136 ms
54,112 KB
testcase_06 AC 139 ms
53,980 KB
testcase_07 AC 136 ms
54,016 KB
testcase_08 AC 139 ms
53,808 KB
testcase_09 AC 135 ms
54,364 KB
testcase_10 AC 138 ms
54,072 KB
testcase_11 AC 138 ms
54,056 KB
testcase_12 AC 136 ms
53,884 KB
testcase_13 AC 138 ms
53,928 KB
testcase_14 AC 137 ms
53,716 KB
testcase_15 AC 139 ms
53,772 KB
testcase_16 AC 138 ms
53,884 KB
testcase_17 AC 139 ms
54,032 KB
testcase_18 AC 141 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int [] yuki_GCP = new int [3];
        for(int i=0; i<3; i++){
            yuki_GCP[i]=sc.nextInt();
        }
        String S = sc.next();
        int [] friend_GCP = new int [3];
        for(int i=0; i<S.length(); i++){
            int a = S.charAt(i);
            if(a=='G'){friend_GCP[0]++;}
            if(a=='C'){friend_GCP[1]++;}
            if(a=='P'){friend_GCP[2]++;}
        }
        int win=0;
        int draw=0;
        for(int i=0; i<3; i++){
            int t = Math.min(yuki_GCP[i],friend_GCP[(i+1)%3]);
            win+=t;
            yuki_GCP[i%3]-=t;
            friend_GCP[(i+1)%3]-=t;
        }
        for(int i=0; i<3; i++){
            int t = Math.min(yuki_GCP[i],friend_GCP[i]);
            draw+=t;
        }
        int point = 3*win + draw;
        System.out.println(point);
    }
}
0