結果

問題 No.346 チワワ数え上げ問題
ユーザー yumechiyumechi
提出日時 2016-03-08 22:09:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 441 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 284,536 KB
最終ジャッジ日時 2024-09-24 15:42:04
合計ジャッジ時間 5,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,948 KB
testcase_01 AC 38 ms
52,868 KB
testcase_02 AC 36 ms
53,356 KB
testcase_03 AC 36 ms
52,656 KB
testcase_04 AC 36 ms
53,200 KB
testcase_05 AC 34 ms
53,840 KB
testcase_06 AC 33 ms
52,196 KB
testcase_07 AC 35 ms
52,284 KB
testcase_08 AC 34 ms
53,232 KB
testcase_09 AC 36 ms
52,888 KB
testcase_10 AC 118 ms
77,576 KB
testcase_11 AC 74 ms
76,244 KB
testcase_12 AC 93 ms
76,220 KB
testcase_13 AC 70 ms
76,056 KB
testcase_14 AC 39 ms
60,272 KB
testcase_15 AC 92 ms
76,236 KB
testcase_16 AC 103 ms
76,208 KB
testcase_17 AC 115 ms
76,900 KB
testcase_18 AC 120 ms
77,148 KB
testcase_19 AC 94 ms
76,256 KB
testcase_20 AC 43 ms
66,196 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    s = input()
    cl, wl = [], []

    slen = len(s)
    for i in range(slen):
        if s[i] == "c":
            cl.append(i)
            continue
        elif s[i] == "w":
            wl.append(i)

    res = 0
    for cidx in cl:
        wl = [i for i in wl if i > cidx]
        wlen = len(wl)
        if wlen < 2:
            break
        res += (wlen * (wlen-1)) // 2
    print(res)

if __name__=="__main__":
    solve()
0