結果

問題 No.2738 CPC To F
ユーザー anonymouslyanonymously
提出日時 2024-04-20 10:23:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,900 KB
最終ジャッジ日時 2024-04-20 10:23:12
合計ジャッジ時間 1,742 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 82 ms
11,900 KB
testcase_03 AC 123 ms
11,772 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 WA -
testcase_09 AC 34 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 32 ms
11,008 KB
testcase_15 AC 32 ms
10,880 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 33 ms
10,880 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n,S):
    res=0
    i=3
    while i<n-1:
        if S[i]!='T':
            i+=1
            continue
        if S[i-3:i]!="CPC":
            i+=4
            continue
        if S[i+1:i+4]=="CPC":
            res+=1
            i+=5
        elif S[i+1]=='F':
            res+=1
            i+=2
        else:
            i+=4
    return res

print(solve(int(input()),input()))
0