結果

問題 No.161 制限ジャンケン
ユーザー titiatitia
提出日時 2022-04-03 00:17:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 366 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-01 22:39:39
合計ジャッジ時間 1,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 24 ms
10,752 KB
testcase_16 AC 24 ms
10,624 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

G,C,P=map(int,input().split())
S=input()

G2,C2,P2=0,0,0

for s in S:
    if s=="G":
        G2+=1
    elif s=="C":
        C2+=1
    else:
        P2+=1

ANS=0

x=min(G2,P)
ANS+=x*3
G2-=x
P-=x

x=min(C2,G)
ANS+=x*3
C2-=x
G-=x

x=min(P2,C)
ANS+=x*3
P2-=x
C-=x

x=min(G2,G)
ANS+=x
G2-=x
G-=x

x=min(C2,C)
ANS+=x
C2-=x
C-=x

x=min(P2,P)
ANS+=x
P2-=x
P-=x

print(ANS)

0