結果

問題 No.161 制限ジャンケン
ユーザー convexineqconvexineq
提出日時 2020-12-08 06:24:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 829 ms
コンパイル使用メモリ 81,784 KB
実行使用メモリ 53,524 KB
最終ジャッジ日時 2023-10-17 16:59:18
合計ジャッジ時間 2,220 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

*r, = map(int,input().split())
s = [0,0,0]
for i in input():
    if i=="G": s[0]+=1
    if i=="C": s[1]+=1
    if i=="P": s[2]+=1
ans = 0
for i in range(3):
    v = min(r[i],s[(i+1)%3])
    ans += 3*v
    r[i] -= v
    s[(i+1)%3] -= v
for i in range(3):
    ans += min(r[i],s[i])
print(ans)
0