結果

問題 No.2738 CPC To F
ユーザー detteiuudetteiuu
提出日時 2024-04-24 21:29:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 120,484 KB
最終ジャッジ日時 2024-04-24 21:29:30
合計ジャッジ時間 3,388 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 264 ms
106,440 KB
testcase_03 AC 293 ms
120,484 KB
testcase_04 AC 44 ms
52,480 KB
testcase_05 AC 43 ms
52,736 KB
testcase_06 AC 42 ms
52,608 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 52 ms
61,184 KB
testcase_09 AC 79 ms
77,696 KB
testcase_10 AC 52 ms
61,440 KB
testcase_11 AC 75 ms
77,184 KB
testcase_12 AC 81 ms
78,080 KB
testcase_13 AC 82 ms
78,592 KB
testcase_14 AC 83 ms
78,720 KB
testcase_15 AC 83 ms
78,464 KB
testcase_16 AC 84 ms
78,720 KB
testcase_17 AC 83 ms
78,336 KB
testcase_18 AC 85 ms
78,720 KB
testcase_19 AC 86 ms
79,104 KB
testcase_20 AC 84 ms
78,848 KB
testcase_21 AC 83 ms
78,464 KB
testcase_22 AC 84 ms
78,848 KB
testcase_23 AC 83 ms
78,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

stack = []
ans = 0
for i in range(N):
    stack.append(S[i])
    if len(stack) >= 1 and stack[-5:] == ["C","P","C","T","F"]:
        ans += 1
    if len(stack) >= 7 and stack[-7:] == ["C","P","C","T","C","P","C"]:
        for _ in range(3):
            stack.pop()
        stack.append("F")
        ans += 1

print(ans)
0