結果

問題 No.345 最小チワワ問題
ユーザー sassysassy
提出日時 2024-04-13 14:52:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 739 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-04-13 14:52:21
合計ジャッジ時間 3,230 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def main():
    str_count = 0
    s = str(input())
    # print(s)
    first_c = s.split("c", 1) # 最初に"c"が出てきた時に、それ以降の文字のカウントをしたい。
    # print(first_c) 
    if len(first_c) == 1:
        print(-1)
    else:
        first_w = first_c[1].split("w", 1)
        str_count += len(first_w[0]) + 1
        # print(first_w)
        if len(first_w) == 1:
            print(-1)
        else:
            second_w = first_w[1].split("w", 1)
            # print(second_w)
            str_count += len(second_w[0]) + 2
            if len(second_w) == 1:
                print(-1)
            else:
                print(str_count)

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