結果

問題 No.436 ccw
ユーザー iad_2889iad_2889
提出日時 2019-05-18 16:59:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 176 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 11,728 KB
実行使用メモリ 14,504 KB
最終ジャッジ日時 2023-10-17 07:38:52
合計ジャッジ時間 8,096 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
9,932 KB
testcase_01 AC 29 ms
9,932 KB
testcase_02 AC 29 ms
9,932 KB
testcase_03 AC 29 ms
9,932 KB
testcase_04 AC 28 ms
9,932 KB
testcase_05 AC 29 ms
9,932 KB
testcase_06 AC 29 ms
9,932 KB
testcase_07 AC 29 ms
9,932 KB
testcase_08 AC 29 ms
9,932 KB
testcase_09 AC 29 ms
9,932 KB
testcase_10 AC 29 ms
9,932 KB
testcase_11 AC 28 ms
9,932 KB
testcase_12 AC 29 ms
9,932 KB
testcase_13 AC 28 ms
9,932 KB
testcase_14 AC 29 ms
9,932 KB
testcase_15 AC 29 ms
9,932 KB
testcase_16 AC 49 ms
9,944 KB
testcase_17 AC 31 ms
9,936 KB
testcase_18 AC 31 ms
9,944 KB
testcase_19 AC 38 ms
9,944 KB
testcase_20 AC 31 ms
9,944 KB
testcase_21 AC 380 ms
10,068 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
s = S
cnt = 0
while "ccw" in s:
    idx = s.index("ccw")
    cnt+=1
    if len(s) // 2 - 2 < idx:
        s = s[:-1]
    else:
        s = s[1:]
        
print(cnt)
0