結果

問題 No.2738 CPC To F
ユーザー ThetaTheta
提出日時 2024-04-23 17:27:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 62,492 KB
最終ジャッジ日時 2024-10-15 18:00:51
合計ジャッジ時間 1,827 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,776 KB
testcase_01 AC 36 ms
52,288 KB
testcase_02 AC 47 ms
62,492 KB
testcase_03 AC 45 ms
61,124 KB
testcase_04 AC 33 ms
52,784 KB
testcase_05 AC 32 ms
52,188 KB
testcase_06 AC 38 ms
52,576 KB
testcase_07 AC 36 ms
52,316 KB
testcase_08 WA -
testcase_09 AC 37 ms
53,260 KB
testcase_10 AC 35 ms
52,272 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 39 ms
59,092 KB
testcase_15 AC 40 ms
60,216 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 37 ms
58,968 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    S = input()
    idx = -1
    ctr = 0
    while idx < N:
        search_idx = S.find("CPCT", idx + 1)
        if search_idx == -1:
            break
        if search_idx + 4 >= N:
            break
        if S[search_idx + 4] == "F":
            ctr += 1
            idx = search_idx
            continue
        if S[search_idx + 4:search_idx + 7] == "CPC":
            ctr += 1
            idx = search_idx + 4
            continue
        idx = search_idx
    print(ctr)


if __name__ == "__main__":
    main()
0