結果

問題 No.161 制限ジャンケン
ユーザー 👑 rin204rin204
提出日時 2022-01-20 09:15:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 378 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-05-02 20:15:52
合計ジャッジ時間 1,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 35 ms
51,712 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

G, C, P = map(int, input().split())
S = input()
g = c = p = 0
for s in S:
    if s == "G":
        g += 1
    elif s == "C":
        c += 1
    else:
        p += 1
        
ans = min(G, c) * 3
G -= min(G, c)
c -= min(G, c)
ans += min(C, p) * 3
C -= min(C, p)
p -= min(C, p)
ans += min(P, g) * 3
P -= min(P, g)
g -= min(P, g)

ans += min(g, G) + min(c, C) + min(p, P)
print(ans)
0