結果

問題 No.2738 CPC To F
ユーザー rlangevinrlangevin
提出日時 2024-04-21 00:53:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 114,936 KB
最終ジャッジ日時 2024-10-12 23:12:49
合計ジャッジ時間 2,666 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 167 ms
110,720 KB
testcase_03 AC 155 ms
114,936 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 40 ms
51,584 KB
testcase_08 AC 48 ms
59,776 KB
testcase_09 AC 66 ms
72,832 KB
testcase_10 AC 50 ms
60,416 KB
testcase_11 AC 64 ms
71,040 KB
testcase_12 AC 65 ms
72,192 KB
testcase_13 AC 71 ms
75,520 KB
testcase_14 AC 72 ms
76,544 KB
testcase_15 AC 72 ms
75,520 KB
testcase_16 AC 71 ms
75,776 KB
testcase_17 AC 71 ms
75,392 KB
testcase_18 AC 77 ms
80,000 KB
testcase_19 AC 71 ms
76,544 KB
testcase_20 AC 70 ms
76,672 KB
testcase_21 AC 71 ms
75,904 KB
testcase_22 AC 71 ms
76,800 KB
testcase_23 AC 71 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0
stack = ["?", "?", "?", "?", "?", "?"]
for i in range(N):
    if S[i] == "C":
        if stack[-6:] == ["C", "P", "C", "T", "C", "P"]:
            ans += 1
            stack.pop()
            stack.pop()
            stack.append("F")
            continue
    if S[i] == "F":
        if stack[-4:] == ["C", "P", "C", "T"]:
            ans += 1
        
    stack.append(S[i])
            
print(ans)        

        
0