結果

問題 No.436 ccw
ユーザー kohei2019kohei2019
提出日時 2022-01-25 00:08:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 290 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 61,356 KB
最終ジャッジ日時 2024-12-15 04:17:07
合計ジャッジ時間 2,186 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,024 KB
testcase_01 AC 37 ms
52,200 KB
testcase_02 AC 36 ms
53,564 KB
testcase_03 AC 37 ms
52,736 KB
testcase_04 AC 37 ms
52,560 KB
testcase_05 AC 33 ms
52,340 KB
testcase_06 AC 33 ms
52,412 KB
testcase_07 AC 33 ms
53,076 KB
testcase_08 AC 34 ms
52,884 KB
testcase_09 AC 33 ms
53,336 KB
testcase_10 AC 33 ms
52,628 KB
testcase_11 AC 33 ms
52,344 KB
testcase_12 AC 35 ms
52,860 KB
testcase_13 AC 35 ms
53,700 KB
testcase_14 AC 33 ms
53,312 KB
testcase_15 AC 31 ms
52,352 KB
testcase_16 AC 40 ms
60,684 KB
testcase_17 AC 38 ms
59,436 KB
testcase_18 AC 38 ms
58,632 KB
testcase_19 AC 40 ms
60,132 KB
testcase_20 AC 38 ms
60,540 KB
testcase_21 AC 41 ms
61,208 KB
testcase_22 AC 43 ms
60,964 KB
testcase_23 AC 41 ms
61,356 KB
testcase_24 AC 43 ms
61,172 KB
testcase_25 AC 40 ms
61,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)
# 右端から消すか左端から消すか
if not 'ccw' in S:
    print('0')
    exit()
ss = 'ccw'
a1 = 0
for i in range(N-2):
    if S[i:i+3] == 'ccw':
        a1 = i
a2 = N-1
for i in range(N,2,-1):
    if S[i-3:i] == 'ccw':
        a2 = i
print(min(a1+1,N-a2+1))
0