結果

問題 No.345 最小チワワ問題
ユーザー Fullmoon85072Fullmoon85072
提出日時 2020-08-01 21:03:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-07-08 07:36:07
合計ジャッジ時間 2,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 34 ms
51,584 KB
testcase_05 WA -
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 34 ms
51,328 KB
testcase_08 AC 34 ms
51,712 KB
testcase_09 AC 33 ms
51,328 KB
testcase_10 AC 34 ms
51,328 KB
testcase_11 AC 34 ms
51,456 KB
testcase_12 AC 34 ms
51,328 KB
testcase_13 AC 33 ms
51,840 KB
testcase_14 AC 34 ms
51,584 KB
testcase_15 AC 34 ms
51,328 KB
testcase_16 AC 34 ms
51,584 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 34 ms
51,456 KB
testcase_20 AC 33 ms
51,712 KB
testcase_21 AC 33 ms
51,712 KB
testcase_22 AC 33 ms
51,712 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 34 ms
51,584 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 34 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()

c_flg = False
finish_flg = False
w_count = 0
length = 0
for ch in S:

    if ch == "c":
        c_flg = True
        length = 1
        continue

    if c_flg:
        length += 1

        if ch == "w":
            w_count += 1

            if w_count == 2:
                finish_flg = True
                break

if finish_flg:
    print(length)
else:
    print(-1)
0