結果

問題 No.161 制限ジャンケン
ユーザー flippergoflippergo
提出日時 2024-12-07 07:50:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 352 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 53,860 KB
最終ジャッジ日時 2024-12-07 07:50:25
合計ジャッジ時間 2,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,600 KB
testcase_01 AC 37 ms
52,120 KB
testcase_02 AC 38 ms
52,212 KB
testcase_03 AC 38 ms
52,360 KB
testcase_04 AC 38 ms
52,836 KB
testcase_05 AC 36 ms
52,556 KB
testcase_06 AC 36 ms
53,624 KB
testcase_07 AC 37 ms
52,488 KB
testcase_08 AC 39 ms
52,264 KB
testcase_09 AC 37 ms
52,300 KB
testcase_10 AC 37 ms
52,748 KB
testcase_11 AC 37 ms
52,620 KB
testcase_12 AC 36 ms
53,860 KB
testcase_13 AC 37 ms
52,512 KB
testcase_14 AC 35 ms
52,344 KB
testcase_15 AC 37 ms
52,360 KB
testcase_16 AC 37 ms
52,776 KB
testcase_17 AC 41 ms
52,788 KB
testcase_18 AC 36 ms
52,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

G,C,P = map(int,input().split())
S = input().strip()
A = {"G":0,"C":0,"P":0}
for a in S:
    A[a] += 1
ans = 0
ans += 3*(min(G,A["C"])+min(C,A["P"])+min(P,A["G"]))
G,A["C"] = max(0,G-A["C"]),max(0,A["C"]-G)
C,A["P"] = max(0,C-A["P"]),max(0,A["P"]-C)
P,A["G"] = max(0,P-A["G"]),max(0,A["G"]-P)
ans += min(G,A["G"])+min(C,A["C"])+min(P,A["P"])
print(ans)
0